From be3fddc6fc7f2719adfa50c37e9935c12b583e14 Mon Sep 17 00:00:00 2001 From: Markus Quaritsch <markus.quaritsch@tugraz.at> Date: Fri, 4 Mar 2016 12:16:08 +0100 Subject: [PATCH] fix: correct mod-data column headers --- VectoCore/Models/Simulation/Data/ModalResult.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/VectoCore/Models/Simulation/Data/ModalResult.cs b/VectoCore/Models/Simulation/Data/ModalResult.cs index a890950131..b215dd5dc2 100644 --- a/VectoCore/Models/Simulation/Data/ModalResult.cs +++ b/VectoCore/Models/Simulation/Data/ModalResult.cs @@ -223,7 +223,7 @@ namespace TUGraz.VectoCore.Models.Simulation.Data /// <summary> /// [kW] Gearbox losses. /// </summary> - [ModalResultField(typeof(SI), name: "Ploss GB", caption: "P_gbx_loss GB [kW]", outputFactor: 1e-3)] P_gbx_loss, + [ModalResultField(typeof(SI), name: "P_gbx_loss", caption: "P_gbx_loss [kW]", outputFactor: 1e-3)] P_gbx_loss, /// <summary> /// [kW] Losses in differential / axle transmission. @@ -233,17 +233,17 @@ namespace TUGraz.VectoCore.Models.Simulation.Data /// <summary> /// [kW] Retarder losses. /// </summary> - [ModalResultField(typeof(SI), name: "Ploss Retarder", caption: "Ploss Retarder [kW]", outputFactor: 1e-3)] P_ret_loss, + [ModalResultField(typeof(SI), name: "P_ret_loss", caption: "P_ret_loss [kW]", outputFactor: 1e-3)] P_ret_loss, /// <summary> /// [kW] Rotational acceleration power: Gearbox. /// </summary> - [ModalResultField(typeof(SI), name: "Pa GB", caption: "Pa GB [kW]", outputFactor: 1e-3)] P_gbx_inertia, + [ModalResultField(typeof(SI), name: "P_gbx_inertia", caption: "P_gbx_inertia [kW]", outputFactor: 1e-3)] P_gbx_inertia, /// <summary> /// [kW] Vehicle acceleration power. /// </summary> - [ModalResultField(typeof(SI), name: "Pa Veh", caption: "Pa Veh [kW]", outputFactor: 1e-3)] P_veh_inertia, + [ModalResultField(typeof(SI), name: "P_veh_inertia", caption: "P_veh_inertia [kW]", outputFactor: 1e-3)] P_veh_inertia, /// <summary> /// [kW] Rolling resistance power demand. -- GitLab