diff --git a/VectoCore/VectoCore/Models/SimulationComponent/Impl/ATGearbox.cs b/VectoCore/VectoCore/Models/SimulationComponent/Impl/ATGearbox.cs index ff8fc30a4160e679ca79e5fe155fc2b4ffb75388..5a7b6c997889aae905c01d93b43803fd5d78a3f4 100644 --- a/VectoCore/VectoCore/Models/SimulationComponent/Impl/ATGearbox.cs +++ b/VectoCore/VectoCore/Models/SimulationComponent/Impl/ATGearbox.cs @@ -153,7 +153,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl var inAngularVelocity = outAngularVelocity * effectiveRatio; var torqueLossResult = torqueConverterLocked ? ModelData.Gears[gear].LossMap.GetTorqueLoss(outAngularVelocity, outTorque) - : ModelData.Gears[Gear].TorqueConverterGearLossMap.GetTorqueLoss(outAngularVelocity, outTorque); + : ModelData.Gears[gear].TorqueConverterGearLossMap.GetTorqueLoss(outAngularVelocity, outTorque); var inTorque = outTorque / effectiveRatio + torqueLossResult.Value;