Fastest-lap is a vehicle dynamics simulator. It can be used to understand vehicle dynamics, to learn about driving techniques, to design car prototypes, or just for fun!
I am using the example code to run an optimal_laptime simulation.
I see how the outputs are defined through the options and then the values are retrieved through:
fastest_lap.download_vector("run/output_value")
Is there a place where I can find all the possible outputs from the simulation? Inside a C++ file perhaps?
I guess this will be available in the documentation in the future.
If they are available, I am particularly interested in:
info about what's happening at each tire (speeds, accelerations, energies...)
distance and time channels (I thought s might be time channel but max value doesn't make sense for laptime I'm targeting)
braking
lateral and longitudinal accelerations
x, y position of the car in latitude/longitude to export Ideal line as kml to Google Earth. If not available, where can I find the code that does the conversion lat/long -> x/y?
I see you have some of these details in the videos so I'm guessing it is somewhere.
I am using the example code to run an optimal_laptime simulation. I see how the outputs are defined through the options and then the values are retrieved through:
fastest_lap.download_vector("run/output_value")
Is there a place where I can find all the possible outputs from the simulation? Inside a C++ file perhaps? I guess this will be available in the documentation in the future. If they are available, I am particularly interested in:
I see you have some of these details in the videos so I'm guessing it is somewhere.
Thanks in advance!