Skip to main content
Acceleration maps show the g-forces experienced by the car around the circuit. This includes longitudinal acceleration (braking and acceleration) and lateral acceleration (cornering forces). Track acceleration map showing g-forces

Understanding Acceleration Data

  • Longitudinal acceleration: Forward/backward forces during acceleration and braking
  • Lateral acceleration: Sideways forces during cornering
  • Measured in g-forces (1g = 9.81 m/s²)

Loading the Session

Calculating Longitudinal Acceleration

Longitudinal acceleration is derived from speed changes over time.

Creating the Acceleration Map

Parameters

The native chart accepts the shared filters plus a few chart-specific options. Change the color scale with cmap, or write the figure straight to a file with save_path:
The default cmap='RdBu_r' matches the chart above.

Complete Example

The whole workflow above is wrapped in a single native function:

Interpreting the Colors

  • Red: Positive acceleration (accelerating)
  • Blue: Negative acceleration (braking)
  • White/neutral: Constant speed
  • Intensity: Magnitude of g-forces
Modern F1 cars can achieve:
  • Up to 5g under braking
  • Up to 2g during acceleration
  • Up to 6g in high-speed corners (lateral)

Lateral Acceleration

For cornering forces, calculate lateral acceleration from speed and track curvature:
The G-G diagram and telemetry comparison tutorials use a numerically safer smooth-derivative approach for both acceleration components.

Next Steps

Last modified on September 3, 2026