diff --git a/VectoCore/VectoCore/Models/SimulationComponent/Impl/TorqueConverter.cs b/VectoCore/VectoCore/Models/SimulationComponent/Impl/TorqueConverter.cs index b88d3b7e23596f38940a989ae921515d16da2068..d66de465800b1b27b9976f64c94300457a4ab7a2 100644 --- a/VectoCore/VectoCore/Models/SimulationComponent/Impl/TorqueConverter.cs +++ b/VectoCore/VectoCore/Models/SimulationComponent/Impl/TorqueConverter.cs @@ -177,8 +177,11 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Impl var dryOperatingPointMax = GetMaxPowerOperatingPoint( absTime, dt, outAngularVelocity, engineResponse, PreviousState.InTorque * PreviousState.InAngularVelocity); - var avgOutSpeedMax = (PreviousState.OutAngularVelocity + dryOperatingPointMax.OutAngularVelocity) / 2.0; - var deltaMax = (outTorque - dryOperatingPointMax.OutTorque) * avgOutSpeedMax; + var deltaMax = double.MaxValue.SI<Watt>() / 20; + if (dryOperatingPointMax != null) { + var avgOutSpeedMax = (PreviousState.OutAngularVelocity + dryOperatingPointMax.OutAngularVelocity) / 2.0; + deltaMax = (outTorque - dryOperatingPointMax.OutTorque) * avgOutSpeedMax; + } var dryOperatingPointMin = GetDragPowerOperatingPoint( absTime, dt, outAngularVelocity, engineResponse,