diff --git a/VectoCore/VectoCore/Models/SimulationComponent/Impl/ATGearbox.cs b/VectoCore/VectoCore/Models/SimulationComponent/Impl/ATGearbox.cs index 087876ce24f6f1f24b288f591f5599b543301928..0ff958d56c87143be5a7846009106ac64c52e60b 100644 --- a/VectoCore/VectoCore/Models/SimulationComponent/Impl/ATGearbox.cs +++ b/VectoCore/VectoCore/Models/SimulationComponent/Impl/ATGearbox.cs @@ -543,6 +543,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl container[ModalResultField.P_gbx_in] = CurrentState.InTorque * avgInAngularSpeed; container[ModalResultField.P_gbx_shift_loss] = CurrentState.PowershiftLoss.DefaultIfNull(0) * avgInAngularSpeed; container[ModalResultField.n_gbx_out_avg] = avgOutAngularSpeed; + container[ModalResultField.n_gbx_in_avg] = avgInAngularSpeed; container[ModalResultField.T_gbx_out] = CurrentState.OutTorque; container[ModalResultField.T_gbx_in] = CurrentState.InTorque; diff --git a/VectoCore/VectoCore/OutputData/ModalDataContainer.cs b/VectoCore/VectoCore/OutputData/ModalDataContainer.cs index ef66ce6b931f042856fdf2ab7ad30d41697777a8..8b5242c660ce9dd7b462450b6aa8c22c445db8f5 100644 --- a/VectoCore/VectoCore/OutputData/ModalDataContainer.cs +++ b/VectoCore/VectoCore/OutputData/ModalDataContainer.cs @@ -669,10 +669,13 @@ namespace TUGraz.VectoCore.OutputData ModalResultField.P_gbx_in, ModalResultField.P_gbx_loss, ModalResultField.P_gbx_inertia, - ModalResultField.n_gbx_out_avg, + ModalResultField.n_gbx_in_avg, - ModalResultField.T_gbx_out, + ModalResultField.n_gbx_out_avg, + ModalResultField.T_gbx_in, + ModalResultField.T_gbx_out, + // retarder ModalResultField.P_retarder_in, ModalResultField.P_ret_loss,