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

Skip to content
Snippets Groups Projects
Commit b6349514 authored by Harald Martini's avatar Harald Martini
Browse files

implemented ovchev and maxcharging power in...

implemented ovchev and maxcharging power in XMLDeclarationMultistage_Conventional_PrimaryVehicleBusDataProviderV01
parent a47643ce
No related branches found
No related tags found
No related merge requests found
...@@ -553,14 +553,11 @@ namespace TUGraz.VectoCore.InputData.FileIO.XML.Declaration.DataProvider ...@@ -553,14 +553,11 @@ namespace TUGraz.VectoCore.InputData.FileIO.XML.Declaration.DataProvider
public virtual VehicleDeclarationType VehicleDeclarationType { get; } public virtual VehicleDeclarationType VehicleDeclarationType { get; }
public virtual Dictionary<PowertrainPosition, List<Tuple<Volt, TableData>>> ElectricMotorTorqueLimits { get; } public virtual Dictionary<PowertrainPosition, List<Tuple<Volt, TableData>>> ElectricMotorTorqueLimits { get; }
public virtual TableData BoostingLimitations { get; } public virtual TableData BoostingLimitations { get; }
public virtual string VehicleTypeApprovalNumber { get; } public virtual string VehicleTypeApprovalNumber { get; }
public virtual IVehicleComponentsDeclaration Components => _components ?? (_components = ComponentReader.ComponentInputData); public virtual IVehicleComponentsDeclaration Components => _components ?? (_components = ComponentReader.ComponentInputData);
public virtual ArchitectureID ArchitectureID => ElementExists(XMLNames.Vehicle_ArchitectureID) ? ArchitectureIDHelper.Parse(GetString(XMLNames.Vehicle_ArchitectureID)) : ArchitectureID.UNKNOWN; public virtual ArchitectureID ArchitectureID => ElementExists(XMLNames.Vehicle_ArchitectureID) ? ArchitectureIDHelper.Parse(GetString(XMLNames.Vehicle_ArchitectureID)) : ArchitectureID.UNKNOWN;
public virtual bool OvcHev { get; } public virtual bool OvcHev => ElementExists(XMLNames.Vehicle_OvcHev) && GetBool(XMLNames.Vehicle_OvcHev);
public virtual Watt MaxChargingPower { get; } public virtual Watt MaxChargingPower => ElementExists(XMLNames.Vehicle_MaxChargingPower) ? GetDouble(XMLNames.Vehicle_MaxChargingPower).SI<Watt>() : null;
#region Non seeded Properties #region Non seeded Properties
......
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