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 89a0f99 commit 43f6ee9Copy full SHA for 43f6ee9
Source/Orts.Simulation/Simulation/RollingStocks/MSTSLocomotive.cs
@@ -2466,7 +2466,7 @@ protected virtual void UpdateAxleDriveForce()
2466
// Simple slip control
2467
// Motive force is reduced to the maximum adhesive force
2468
// In wheelslip situations, motive force is set to zero
2469
- axle.DriveForceN = Math.Sign(axle.DriveForceN) * Math.Min(axle.AdhesionLimit * axle.AxleWeightN, Math.Abs(axle.DriveForceN));
+ axle.DriveForceN = Math.Sign(axle.DriveForceN) * Math.Min(axle.MaximumPolachWheelAdhesion * axle.AxleWeightN, Math.Abs(axle.DriveForceN));
2470
if (axle.IsWheelSlip) axle.DriveForceN = 0;
2471
}
2472
0 commit comments