Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
weight_transfer.cpp
Go to the documentation of this file.
2
3namespace common_lib::car_model {
4
5
6Eigen::Vector4d weight_transfer(const Eigen::Vector2d accelerations,
7 const Eigen::Vector3d& aero_forces,
9 Eigen::Vector4d weight_transfer;
10 weight_transfer.setZero();
11
12 return weight_transfer;
13}
14
15} // namespace common_lib::car_model
Eigen::Vector4d weight_transfer(const Eigen::Vector2d accelerations, const Eigen::Vector3d &aero_forces, const common_lib::car_parameters::CarParameters &car_params)
Calculate the weight transfer based on car parameters, on accelerations and aerodynamic forces.