You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MaxDynamicBrakeForceN=Math.Min(MaxContinuousForceN*0.5f,150000);// 20000 is suggested as standard value in the MSTS documentation, but in general it is a too low value
2037
2027
}
2038
2028
}
@@ -4222,7 +4212,7 @@ public void StartThrottleToZero(float? target)
4222
4212
/// Returns the position of the throttle handle considering
4223
4213
/// whether it is used for cruise control or not
4224
4214
/// </summary>
4225
-
/// <param name="intermediateValue">Whather asking for intermediate (for mouse operation) or notched (for displaying) value.</param>
4215
+
/// <param name="intermediateValue">Whether asking for intermediate (for mouse operation) or notched (for displaying) value.</param>
Copy file name to clipboardExpand all lines: Source/Orts.Simulation/Simulation/RollingStocks/SubSystems/Brakes/MSTS/AirSinglePipe.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2171,7 +2171,7 @@ protected static void PropagateBrakeLinePressures(float elapsedClockSeconds, Tra
2171
2171
floatsupplyPressure=locoAirSystem.SupplyReservoirPresent?locoAirSystem.SupplyResPressurePSI:loco.MainResPressurePSI;// Pressure of reservoir used for brake pipe charging
2172
2172
2173
2173
if(supplyPressure-locoAirSystem.BrakeLine1PressurePSI<15.0f)// Reduce recharge rate if near MR pressure as per reality
if(train.EqualReservoirPressurePSIorInHg-locoAirSystem.BrakeLine1PressurePSI<chargeSlowdown)// Reduce recharge rate if near EQ to simulate feed valve behavior
0 commit comments