|
Formula Student Autonomous Systems
The code for the main driverless system
|
Class used to model tires. More...
#include <base_tire_model.hpp>


Public Member Functions | |
| TireModel (const common_lib::car_parameters::CarParameters &car_parameters) | |
| virtual std::pair< double, double > | tire_forces (double slip_angle, double slip_ratio, double vertical_load) const =0 |
| Calculate the forces acting in a tire based on the tire characteristics and dynamic state. | |
Protected Attributes | |
| std::shared_ptr< common_lib::car_parameters::CarParameters > | car_parameters_ |
Class used to model tires.
Currently used to model tire forces based on slip.
Definition at line 8 of file base_tire_model.hpp.
|
inline |
Definition at line 13 of file base_tire_model.hpp.
|
pure virtual |
Calculate the forces acting in a tire based on the tire characteristics and dynamic state.
| slip_angle | Slip angle of the tire in radians |
| slip_ratio | Slip ratio of the tire |
| load | Load on the tire in Newtons |
Implemented in PacejkaCombinedSlip.
|
protected |
Definition at line 10 of file base_tire_model.hpp.