Tire models¶
The tire models describe the forces in the road-tire interactions according to the dynamic condition of the vehicle.
The typical relation between the lateral force and the slip angle can be observed in Fig. 61. Besides, it is possible to verify the definition of slip angle.
Linear¶
The linear tire model describes a linear relationship between tire lateral force and slip angle.
The lateral force of the tire can be calculated as
where \(F_y\) is the lateral force, \(K\) is the cornering stiffness and \(\alpha\) is the tire slip angle.
This model is only valid for small values of slip angle
Pacejka (Magic Formula)¶
Nonlinear relationship between tire lateral force and slip angle expressed by a semi-empirical model with experimental coefficients [BPL89].
The lateral force can be written as
where \(\alpha_{eq}\) is the equivalent slip angle
and \(F_{y, n}\) is the reference function of the lateral force
The coefficients \(B\), \(C\), \(D\) and \(E\) can be written as
The horizontal and vertical shifts of the curve are calculated as
The model implemented here converts the slip angle using the following equation
_ALPHA = asin(sin(alpha));_
This equation alters the slip angle in such way that the characteristic equation becames symmetric in relation to the vertical line at 90 degrees and the lateral force becomes zero at 180 degrees. The same analogy can be made with negative values of the slip angle. Thus, this model covers the whole range of slip angles (-180 to 180 degrees).
Polynomial¶
Nonlinear relation between tire lateral force and slip angle expressed by a third order polinomial equation.
This model is used by several authors [JH84][SW13][SH98].
The equation of the model is given by
where \(F_y\) is the lateral force and \(\alpha\) is the tire slip angle. \(k_1\) and \(k_2\) are the model coefficients. This model is valid up to the maximal lateral force (Tire saturation).
Tire comparison¶
Under construction.