ORTS extended friction test
#31
Posted 24 June 2020 - 10:19 PM
ORTSDavis_A ( 2771.100615 )
ORTSDavis_B ( 25.525386 )
ORTSDavis_C ( 1.607582 )
ORTSStandstillFriction ( 3213.85 )
ORTSMergeSpeed ( 0.306274 )
It seems the Davis A value is now higher, but this was my fault on the older version of said program. Also the difference between the Davis A and standstill friction values are quite close now, which using given bearings is more faithful. When using standard roller bearings instead standstill friction is proportionally greater and there are also slight differences in Davis A/B and merge speed as, you said it, newer bearing are more efficient and it only makes sense rolling friction is something different too.
#32
Posted 29 June 2020 - 01:06 PM
For most current rolling stock wagons, a very small inclination of the track to start spontaneously is sufficient.
For example, in the case of national regulations (Czech Railways), the need to secure vehicles at a slope of more than 2.5 ‰ is stated.
If I enter the train resistances calculated, for example according to FCalc2.0, in the .eng settings of the railway vehicle - it works.
But if I use the new ORTSStandstillFriction and ORTSMergeSpeed parameters, the initial train resistances will be greater and the vehicle's behavior will no longer correspond to the real situation.
#33
Posted 29 June 2020 - 11:53 PM
The starting friction when using ORTSStandstillFriction is greater than the value in wag/eng file because this newer system also uses bearing temperature settings, the given value is only reached above 25 degrees Celsius just as the older one. When keeping this in mind it´s a good idea to compare values of the MSTS friction settings and FCalC with what is now possible, something I did when developing a new calculation tool.
#34
Posted 30 June 2020 - 09:33 PM
However, I noticed notes on the effect of the ORTSStandstillFriction parameter at temperatures of 25 °C and higher.
Bearing temperature 25 °C will be sometime in the summer months. In other cases, the temperature only rises with greater axle rotation (aka higher speed).
In this case, the ORTSStandstillFriction parameter limited by the ORTSMergeSpeed parameter does not find use.
#35
Posted 30 June 2020 - 11:12 PM
#36
Posted 30 June 2020 - 11:32 PM
private void UpdateTrainBaseResistance() { IsDavisFriction = DavisAN != 0 && DavisBNSpM != 0 && DavisCNSSpMM != 0; // test to see if OR thinks that Davis Values have been entered in WG file. IsBelowMergeSpeed = AbsSpeedMpS < MergeSpeedMpS; IsStandStill = AbsSpeedMpS < 0.1f; bool isStartingFriction = StandstillFrictionN != 0; if (IsDavisFriction) // If set to use next Davis friction then do so { if (isStartingFriction && IsBelowMergeSpeed) // Davis formulas only apply above merge speed, so different treatment required for low speed UpdateTrainBaseResistance_StartingFriction(); else if (IsBelowMergeSpeed) UpdateTrainBaseResistance_DavisLowSpeed(); else UpdateTrainBaseResistance_DavisHighSpeed(); } else if (isStartingFriction && IsBelowMergeSpeed) { UpdateTrainBaseResistance_StartingFriction(); } else { UpdateTrainBaseResistance_ORTS(); } }
StartingFriction() uses Nick's static friction model, DavisLowSpeed() and DavisHighSpeed() use the Davis curves, and ORTS() uess the conventional MSTS-compatible simulation. I hope this makes clear which model applies under which conditions.
#37
Posted 03 July 2020 - 06:55 AM
#38
Posted 05 July 2020 - 05:31 PM
#39
Posted 06 July 2020 - 02:36 AM
I compared NewYear MG Rev 67 with U2020.05.08-1451 and tested wellcars off TS Mullan Pass, one uses
Friction ( 666.1N/m/s -0.05 1.4mph 2.827N/m/s 1.866 1N/rad/s 1 -1rad/s 0 1 )
in older versions this gives a starting friction value of 184lbf compared to newer versions which have 1641lbf, one very big difference. I reworked all vehicles for Mullan Pass with MSTS frcition settings and now got a huge mess. Reworking them again using the extended ORTS friction system is obviously exhaustive, but that´s just me.
#40
Posted 06 July 2020 - 11:37 AM
#41
Posted 14 July 2020 - 07:10 AM
YoRyan, on 06 July 2020 - 11:37 AM, said:
Thanks Ryan, not the bug got fixed. Just one other question; how often does the source download section of http://openrails.org/download/source/ get updated? If I can get a newer version, with all changes of recent versions regarding all the friction stuff I could then try to make such improvements to variable weight friction settings as described before.
#42
Posted 14 July 2020 - 07:58 AM
#43
Posted 04 August 2020 - 05:08 AM