Skip to content

Commit 43f6ee9

Browse files
committed
Adjust slip control conditions
1 parent 89a0f99 commit 43f6ee9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Orts.Simulation/Simulation/RollingStocks/MSTSLocomotive.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2466,7 +2466,7 @@ protected virtual void UpdateAxleDriveForce()
24662466
// Simple slip control
24672467
// Motive force is reduced to the maximum adhesive force
24682468
// 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));
2469+
axle.DriveForceN = Math.Sign(axle.DriveForceN) * Math.Min(axle.MaximumPolachWheelAdhesion * axle.AxleWeightN, Math.Abs(axle.DriveForceN));
24702470
if (axle.IsWheelSlip) axle.DriveForceN = 0;
24712471
}
24722472
}

0 commit comments

Comments
 (0)