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
Copy file name to clipboardExpand all lines: Source/Orts.Simulation/Simulation/RollingStocks/TrainCar.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3318,15 +3318,15 @@ public virtual float GetBrakeShoeFrictionCoefficientHuD()
3318
3318
}
3319
3319
else
3320
3320
{
3321
-
frictionfraction=(7.6f/(MpS.ToKpH(AbsSpeedMpS)+17.5f)+0.07f)*AdhesionMultiplier;// Base Curtius - Kniffler equation - u = 0.50, all other values are scaled off this formula
3321
+
frictionfraction=7.6f/((MpS.ToKpH(AbsSpeedMpS)+17.5f)+0.07f)*AdhesionMultiplier;// Base Curtius - Kniffler equation - u = 0.50, all other values are scaled off this formula
3322
3322
}
3323
3323
}
3324
3324
3325
3325
returnfrictionfraction;
3326
3326
}
3327
3327
else
3328
3328
{
3329
-
frictionfraction=(7.6f/(MpS.ToKpH(AbsSpeedMpS)+17.5f)+0.07f);// Base Curtius - Kniffler equation - u = 0.50, all other values are scaled off this formula; // For simple friction use "default" curve
3329
+
frictionfraction=7.6f/((MpS.ToKpH(AbsSpeedMpS)+17.5f)+0.07f);// Base Curtius - Kniffler equation - u = 0.50, all other values are scaled off this formula; // For simple friction use "default" curve
0 commit comments