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/Documentation/Manual/physics.rst
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2753,7 +2753,8 @@ Brake Shoe Force - This is the current change being implemented. The following c
2753
2753
2754
2754
``ORTSBrakeShoeType`` - this defines a number of different brake shoe types and curves. To provide a more realistic representation of the braking force the default CoF curves are 2D, ie
2755
2755
they are impacted by both the speed and Brake Shoe Force. Typically ``ORTSBrakeShoeType`` will have one of the following keywords included -
2756
-
``Cast_Iron`` - cast iron brake shoe, 2D as above, ``Hi_Friction_Composite`` - high friction composite shoe, 2D as above, ``User_Defined`` - is a user defined curve
2756
+
``Cast_Iron_P6`` - older cast iron brake shoes, 2D as above, ``Cast_Iron_P10`` - newer cast iron brake shoes with increased phosphorous, 2D as above, ``Hi_Friction_Composite``
2757
+
- high friction composite shoe, 2D as above, ``Disc_Pads`` - brakes with disc pads, 2D as above, ``User_Defined`` - is a user defined curve
2757
2758
using the ORTSBrakeShoeFriction parameter, 1D (ie, speed only, see above section for the parameter format).
2758
2759
2759
2760
``ORTSNumberCarBrakeShoes`` - to facilitate the operation of the default 2D curves above it is necessary to configure the number of brake shoes for each car.
Copy file name to clipboardExpand all lines: Source/Orts.Simulation/Simulation/RollingStocks/TrainCar.cs
+43-13Lines changed: 43 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -684,7 +684,9 @@ public enum WagonSpecialTypes
684
684
publicenumBrakeShoeTypes
685
685
{
686
686
Unknown,
687
-
Cast_Iron,
687
+
Cast_Iron_P6,
688
+
Cast_Iron_P10,
689
+
Disc_Pads,
688
690
High_Friction_Composite,
689
691
User_Defined,
690
692
}
@@ -3236,17 +3238,26 @@ public virtual float GetBrakeShoeFrictionFactor()
3236
3238
// Formula 9 and 10 from the paper "Study of the influence of the brake shoe temperature and wheel tread on braking effectiveness" by P Ivanov1, A Khudonogov1,
3237
3239
// E Dulskiy1, N Manuilov1, A Khamnaeva1, A Korsun1, S Treskin is used for the Cast Iron and Hi Friction Composite brake shoe friction curves.
@@ -3303,17 +3314,26 @@ public virtual float GetBrakeShoeFrictionCoefficientHuD()
3303
3314
// Formula 9 and 10 from the paper "Study of the influence of the brake shoe temperature and wheel tread on braking effectiveness" by P Ivanov1, A Khudonogov1,
3304
3315
// E Dulskiy1, N Manuilov1, A Khamnaeva1, A Korsun1, S Treskin is used for the Cast Iron and Hi Friction Composite brake shoe friction curves.
0 commit comments