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

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

added iepc to conditioning

parent 1a9a5b47
No related branches found
No related tags found
No related merge requests found
......@@ -66,17 +66,17 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl.Auxiliaries
{
switch (dataBus.PowertrainInfo.VehicleArchitecutre) {
case VectoSimulationJobType.BatteryElectricVehicle:
case VectoSimulationJobType.IEPC_E:
case VectoSimulationJobType.SerialHybridVehicle:
case VectoSimulationJobType.IEPC_S:
return GetPEV_SHEV_PowerDemand(dataBus);
case VectoSimulationJobType.ParallelHybridVehicle:
return GetP_HEV_PowerDemand(dataBus);
case VectoSimulationJobType.EngineOnlySimulation:
case VectoSimulationJobType.IEPC_E:
case VectoSimulationJobType.IEPC_S:
case VectoSimulationJobType.IHPC:
case VectoSimulationJobType.ConventionalVehicle:
default:
throw new ArgumentOutOfRangeException();
throw new ArgumentOutOfRangeException($"{nameof(dataBus)}");
}
}
......
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