|
Formula Student Autonomous Systems
The code for the main driverless system
|
Steering model that assumes parallel front steering, meaning that front wheels turn as much as the steering wheel angle, and rear wheels do not steer. More...
#include <parallel_front_steering.hpp>


Public Member Functions | |
| ParallelFrontSteering (common_lib::car_parameters::CarParameters car_parameters) | |
| Eigen::Vector4d | calculate_steering_angles (double steering_wheel_angle) const override |
| Calculate the steering angles on each wheel based on the steering wheel angle. | |
Public Member Functions inherited from SteeringModel | |
| SteeringModel (const common_lib::car_parameters::CarParameters &car_parameters) | |
Additional Inherited Members | |
Protected Attributes inherited from SteeringModel | |
| std::shared_ptr< common_lib::car_parameters::CarParameters > | car_parameters_ |
Steering model that assumes parallel front steering, meaning that front wheels turn as much as the steering wheel angle, and rear wheels do not steer.
Definition at line 9 of file parallel_front_steering.hpp.
|
inlineexplicit |
Definition at line 11 of file parallel_front_steering.hpp.
|
overridevirtual |
Calculate the steering angles on each wheel based on the steering wheel angle.
| steering_wheel_angle | The angle of the steering wheel in radians. |
Implements SteeringModel.
Definition at line 3 of file parallel_front_steering.cpp.