nado59
Automotive
- Mar 23, 2008
- 7
Hi,
I had a look of the Motec i2 pro software. There is a maths function delivered with it, which calculates oversteer. According to my (very limited) knowledge, there is no low-cost way to get a reliable measure of oversteer/understeer. The formula in the software uses only the vehicle speed, LatG, Steered angle and the vehicle wheel base to come up with a figure. I am wondering if someone of you uses this and would be willing to comment on the measure vs driver feedback.
The complete formula is:
smooth(choose('Corr Speed'[km/h] < 50, 0, sgn('G Force Lat'[m/s/s]) * (('Vehicle Wheelbase'[m] * 'G Force Lat'[m/s/s] / sqr('Corr Speed'[m/s])) - sgn(stat_mean('Steered Angle'[rad] * 'G Force Lat'[m/s/s])) * 'Steered Angle'[rad])), 0.2)
Ignoring the filtering (smooth) and the condition to evaluate above 50 km/h (choose), this is just:
+/-(wheel base x LatG / speed^2) x (-/+ steer angle)
The +/- and -/+ represent change of sign (sgn in the function) in the first case in agreement with to the sign of the LatG. In the second case as the inverse of the stat-mean of the product of the LatG and Steered angle.
Does anyone have any comment about the deduction of this formula?
Thanks!
Nado
I had a look of the Motec i2 pro software. There is a maths function delivered with it, which calculates oversteer. According to my (very limited) knowledge, there is no low-cost way to get a reliable measure of oversteer/understeer. The formula in the software uses only the vehicle speed, LatG, Steered angle and the vehicle wheel base to come up with a figure. I am wondering if someone of you uses this and would be willing to comment on the measure vs driver feedback.
The complete formula is:
smooth(choose('Corr Speed'[km/h] < 50, 0, sgn('G Force Lat'[m/s/s]) * (('Vehicle Wheelbase'[m] * 'G Force Lat'[m/s/s] / sqr('Corr Speed'[m/s])) - sgn(stat_mean('Steered Angle'[rad] * 'G Force Lat'[m/s/s])) * 'Steered Angle'[rad])), 0.2)
Ignoring the filtering (smooth) and the condition to evaluate above 50 km/h (choose), this is just:
+/-(wheel base x LatG / speed^2) x (-/+ steer angle)
The +/- and -/+ represent change of sign (sgn in the function) in the first case in agreement with to the sign of the LatG. In the second case as the inverse of the stat-mean of the product of the LatG and Steered angle.
Does anyone have any comment about the deduction of this formula?
Thanks!
Nado