From 1262318f8ade1190e40c8f9665982c2f489d0c7f Mon Sep 17 00:00:00 2001 From: Markus Quaritsch <markus.quaritsch@tugraz.at> Date: Thu, 23 Jun 2022 16:57:57 +0200 Subject: [PATCH] IHPC: use correct ADAS input provider for IHPC to ignore EcoRoll etc. --- VectoCore/VectoCore/InputData/FileIO/JSON/JSONVehicleData.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/VectoCore/VectoCore/InputData/FileIO/JSON/JSONVehicleData.cs b/VectoCore/VectoCore/InputData/FileIO/JSON/JSONVehicleData.cs index fa51f7d3a9..c6f024ab18 100644 --- a/VectoCore/VectoCore/InputData/FileIO/JSON/JSONVehicleData.cs +++ b/VectoCore/VectoCore/InputData/FileIO/JSON/JSONVehicleData.cs @@ -146,6 +146,7 @@ namespace TUGraz.VectoCore.InputData.FileIO.JSON case VectoSimulationJobType.IEPC_E: return _adasInputData = new JSONADASInputDataV10BEV(this); case VectoSimulationJobType.ParallelHybridVehicle: + case VectoSimulationJobType.IHPC: case VectoSimulationJobType.SerialHybridVehicle: case VectoSimulationJobType.IEPC_S: return _adasInputData = new JSONADASInputDataV10HEV(this); -- GitLab