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 87cdd9f commit ccc5c4dCopy full SHA for ccc5c4d
Source/Orts.Simulation/Simulation/RollingStocks/MSTSLocomotive.cs
@@ -3521,6 +3521,17 @@ public virtual void UpdateFrictionCoefficient(float elapsedClockSeconds)
3521
axle.CurtiusKnifflerZeroSpeed = ZeroBaseuMax;
3522
}
3523
3524
+ else
3525
+ {
3526
+ foreach (var axle in LocomotiveAxles)
3527
3528
+ if (axle.AdhesionLimit == 0)
3529
3530
+ axle.AdhesionLimit = BaseFrictionCoefficientFactor * AdhesionMultiplier;
3531
+ axle.CurtiusKnifflerZeroSpeed = ZeroBaseuMax;
3532
+ }
3533
3534
3535
3536
// Set adhesion conditions for other steam locomotives
3537
if (EngineType == EngineTypes.Steam && SteamEngineType != MSTSSteamLocomotive.SteamEngineTypes.Geared) // ToDo explore adhesion factors
0 commit comments