I had a plan of using RW_Tools to change the values for all the US rolling stock and I have some questions for anyone who has dug in there before. Specifically, what are the interactions between these values that I found in one of my default locos:
- Code: Select all
<DryFriction d:type="sFloat32" d:precision="string">1</DryFriction>
<WetFriction d:type="sFloat32" d:precision="string">0.5</WetFriction>
<SnowFriction d:type="sFloat32" d:precision="string">0.3</SnowFriction>
<SandFrictionMultiplier d:type="sFloat32" d:precision="string">2</SandFrictionMultiplier>
<MaxForcePercentOfVehicleWeight d:type="sFloat32" d:precision="string">61</MaxForcePercentOfVehicleWeight>
What is a reasonable value for "MaxForcePercentOfVehicleWeight"? 61 seems way too high for me.
Looking at how the sim might be using these numbers, it seems that:
- on dry rails the wheels will slip when the force reaches Loco weight x 1 x 0.61 = 61% of the loco weight.
- on wet rails the wheels will slip when the force reaches Loco weight x 0.5 x 0.61 = 30.5% of the loco weight.
- on icy rails the wheels will slip when the force reaches Loco weight x 0.3 x 0.61 = 18% of the loco weight
But then is you add sand into the equation, doesn't this mean that:
- on dry rails + sand the wheels will slip when the force reaches Loco weight x 1 x 0.61 x 2 = 122% of the loco weight. <-- oops!
- on wet rails + sand the wheels will slip when the force reaches Loco weight x 0.5 x 0.61 x 2 = 61% of the loco weight.
- on icy rails + sand the wheels will slip when the force reaches Loco weight x 0.3 x 0.61 x 2 = 30.5% of the loco weight.
Obviously that can't happen in reality. Am I interpreting these values correctly? Does sand even make a difference on dry rails in reality?
What is a reasonable set of numbers for these 5 values for a locomotive?
What about for a freight car? (both locos and freight cars have these values in their files). I assume these apply to brakes on a freight car.
What does it mean to have a sand multiplier for a freight car? Is this number applied when the loco sanders are on, or is it ignored because freight cars don't have sanders?