File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
Source/Orts.Simulation/Simulation/RollingStocks Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -1586,7 +1586,7 @@ protected void CorrectBrakingParams()
15861586 /// </summary>
15871587 public void DynamicBrakeBlending ( float elapsedClockSeconds )
15881588 {
1589- if ( airPipeSystem != null && ( ( airPipeSystem is EPBrakeSystem && Train . BrakeLine4 > 0f ) || airPipeSystem . BrakeLine1PressurePSI < TrainBrakeController . MaxPressurePSI - 1f )
1589+ if ( Math . Abs ( SpeedMpS ) > DynamicBrakeSpeed1MpS && airPipeSystem != null && ( ( airPipeSystem is EPBrakeSystem && Train . BrakeLine4 > 0f ) || airPipeSystem . BrakeLine1PressurePSI < TrainBrakeController . MaxPressurePSI - 1f )
15901590 && ThrottleController . CurrentValue == 0f && ! ( DynamicBrakeController != null && DynamicBrakeBlendingOverride && DynamicBrakeController . CurrentValue > 0f )
15911591 /* && (!DynamicBrakeBlendingLeverOverride && DynamicBrakeController != null && DynamicBrakeIntervention < DynamicBrakeController.CurrentValue)*/ )
15921592 {
You can’t perform that action at this time.
0 commit comments