From 77c0123a335faa9f6afba8bc1c94798f29078e36 Mon Sep 17 00:00:00 2001 From: Michael Krisper <michael.krisper@tugraz.at> Date: Tue, 1 Mar 2016 09:37:14 +0100 Subject: [PATCH] added correct factors for FC-WHTC and FC-AUXc --- VectoCore/Models/Simulation/Data/ModalResult.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/VectoCore/Models/Simulation/Data/ModalResult.cs b/VectoCore/Models/Simulation/Data/ModalResult.cs index 3639176152..a890950131 100644 --- a/VectoCore/Models/Simulation/Data/ModalResult.cs +++ b/VectoCore/Models/Simulation/Data/ModalResult.cs @@ -175,19 +175,19 @@ namespace TUGraz.VectoCore.Models.Simulation.Data [ModalResultField(typeof(SI), caption: "P_aux [kW]", outputFactor: 1e-3)] P_aux, /// <summary> - /// [g/h] Fuel consumption from FC map.. + /// [g/h] Fuel consumption from FC map.. /// </summary> [ModalResultField(typeof(SI), name: "FC-Map", caption: "FC-Map [g/h]", outputFactor: 3600 * 1000)] FCMap, /// <summary> - /// [g/h] Fuel consumption after Auxiliary-Start/Stop Correction. (Based on FC.) + /// [g/h] Fuel consumption after Auxiliary-Start/Stop Correction. (Based on FC.) /// </summary> - [ModalResultField(typeof(SI), name: "FC-AUXc", caption: "FC-AUXc [g/h]", outputFactor: 3600)] FCAUXc, + [ModalResultField(typeof(SI), name: "FC-AUXc", caption: "FC-AUXc [g/h]", outputFactor: 3600 * 1000)] FCAUXc, /// <summary> - /// [g/h] Fuel consumption after WHTC Correction. (Based on FC-AUXc.) + /// [g/h] Fuel consumption after WHTC Correction. (Based on FC-AUXc.) /// </summary> - [ModalResultField(typeof(SI), name: "FC-WHTCc", caption: "FC-WHTCc [g/h]", outputFactor: 3600)] FCWHTCc, + [ModalResultField(typeof(SI), name: "FC-WHTCc", caption: "FC-WHTCc [g/h]", outputFactor: 3600 * 1000)] FCWHTCc, /// <summary> /// [km] Travelled distance. -- GitLab