Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
parallel_front_steering.hpp
Go to the documentation of this file.
1#pragma once
2
10public:
12 : SteeringModel(car_parameters) {}
13 Eigen::Vector4d calculate_steering_angles(double steering_wheel_angle) const override;
14};
Steering model that assumes parallel front steering, meaning that front wheels turn as much as the st...
Eigen::Vector4d calculate_steering_angles(double steering_wheel_angle) const override
Calculate the steering angles on each wheel based on the steering wheel angle.
ParallelFrontSteering(common_lib::car_parameters::CarParameters car_parameters)