Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
map.hpp File Reference
#include <map>
#include <memory>
#include <string>
#include "pacejka_combined_slip.hpp"
Include dependency graph for map.hpp:

Go to the source code of this file.

Variables

const std::map< std::string, std::function< std::shared_ptr< TireModel >(const common_lib::car_parameters::CarParameters &)>, std::less<> > tire_models_map
 

Variable Documentation

◆ tire_models_map

const std::map< std::string, std::function<std::shared_ptr<TireModel>(const common_lib::car_parameters::CarParameters&)>, std::less<> > tire_models_map
Initial value:
= {
{"pacejka_combined_slip",
[](const common_lib::car_parameters::CarParameters& params) -> std::shared_ptr<TireModel> {
return std::make_shared<PacejkaCombinedSlip>(params);
}},
}

Definition at line 17 of file map.hpp.