Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit c2105b6a authored by Michael KRISPER's avatar Michael KRISPER
Browse files

StandardWeights in DeclarationData

parent 1fa71687
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,7 @@ namespace TUGraz.VectoCore.Models.Declaration
private WHTCCorrection _whtcCorrection;
private AirDrag _airDrag;
private TorqueConverter _torqueConverter;
private StandardWeigths _standardWeigths;
private StandardWeights _standardWeights;
public static Kilogram MaximumGrossVehicleWeight = 40000.SI<Kilogram>();
public static Wheels Wheels
......@@ -137,9 +137,9 @@ namespace TUGraz.VectoCore.Models.Declaration
}
}
public static StandardWeigths StandardWeights
public static StandardWeights StandardWeights
{
get { return Instance()._standardWeigths ?? (Instance()._standardWeigths = new StandardWeigths()); }
get { return Instance()._standardWeights ?? (Instance()._standardWeights = new StandardWeights()); }
}
public static PneumaticSystem PneumaticSystem
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment