We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc2a907 commit dc485c5Copy full SHA for dc485c5
Source/Orts.Simulation/Simulation/RollingStocks/MSTSLocomotive.cs
@@ -3422,6 +3422,7 @@ public virtual void UpdateFrictionCoefficient(float elapsedClockSeconds)
3422
}
3423
3424
var AdhesionMultiplier = Simulator.Settings.AdhesionFactor / 100.0f; // Convert to a factor where 100% = no change to adhesion
3425
+ if (!AdvancedAdhesionModel) AdhesionMultiplier = Math.Max(AdhesionMultiplier, 1.3f);
3426
var AdhesionRandom = (float)((float)(Simulator.Settings.AdhesionFactorChange) * 0.01f * 2f * (Simulator.Random.NextDouble() - 0.5f));
3427
3428
Train.LocomotiveCoefficientFriction = BaseuMax * BaseFrictionCoefficientFactor * AdhesionMultiplier; // Find friction coefficient factor for locomotive
0 commit comments