From 1932c282e973883c6cfce9a2b9b769623780c179 Mon Sep 17 00:00:00 2001 From: Stefanos Doumpoulakis <dubulak@gmail.com> Date: Tue, 21 Nov 2023 16:57:03 +0200 Subject: [PATCH] Fix issue #216: correct number of gears for IEPC in CIF --- .../CustomerInformationFile_0_9/CIFWriter/VehicleWriter.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/VectoCore/VectoCore/OutputData/XML/DeclarationReports/CustomerInformationFile/CustomerInformationFile_0_9/CIFWriter/VehicleWriter.cs b/VectoCore/VectoCore/OutputData/XML/DeclarationReports/CustomerInformationFile/CustomerInformationFile_0_9/CIFWriter/VehicleWriter.cs index 21550a41c8..f3a54b028f 100644 --- a/VectoCore/VectoCore/OutputData/XML/DeclarationReports/CustomerInformationFile/CustomerInformationFile_0_9/CIFWriter/VehicleWriter.cs +++ b/VectoCore/VectoCore/OutputData/XML/DeclarationReports/CustomerInformationFile/CustomerInformationFile_0_9/CIFWriter/VehicleWriter.cs @@ -214,7 +214,7 @@ namespace TUGraz.VectoCore.OutputData.XML.DeclarationReports.CustomerInformation _cifFactory.GetEngineGroup().GetElements(inputData), _cifFactory.GetElectricMachineGroup().GetElements(inputData), _cifFactory.GetREESSGroup().GetElements(inputData), - _cifFactory.GetTransmissionGroupNoGearbox().GetElements(inputData), + _cifFactory.GetIEPCTransmissionGroup().GetElements(inputData), GetRetarder(inputData), GetAxleRatio(inputData, true), _cifFactory.GetAxleWheelsGroup().GetElements(inputData), @@ -312,7 +312,7 @@ namespace TUGraz.VectoCore.OutputData.XML.DeclarationReports.CustomerInformation _cifFactory.GetPEVADASType().GetXmlType(inputData.JobInputData.Vehicle.ADAS).WithXName(_cif + "ADAS"), _cifFactory.GetElectricMachineGroup().GetElements(inputData), _cifFactory.GetREESSGroup().GetElements(inputData), - _cifFactory.GetTransmissionGroupNoGearbox().GetElements(inputData), + _cifFactory.GetIEPCTransmissionGroup().GetElements(inputData), GetRetarder(inputData), GetAxleRatio(inputData, true), _cifFactory.GetAxleWheelsGroup().GetElements(inputData), @@ -518,7 +518,7 @@ namespace TUGraz.VectoCore.OutputData.XML.DeclarationReports.CustomerInformation _cifFactory.GetEngineGroup().GetElements(inputData), _cifFactory.GetElectricMachineGroup().GetElements(inputData), _cifFactory.GetREESSGroup().GetElements(inputData), - _cifFactory.GetTransmissionGroupNoGearbox().GetElements(inputData), + _cifFactory.GetIEPCTransmissionGroup().GetElements(inputData), _cifFactory.GetAxleWheelsGroup().GetElements(inputData), _cifFactory.GetHEV_Sx_CompletedBusAuxGroup().GetElements(inputData) -- GitLab