The Intelligent-Driver Model and its Variants

The basis model for the longitudinal dynamics, i.e., accelerations and braking decelerations of the drivers, is the Intelligent-Driver Model (IDM). In the actual simulation, we use a variant of it, the Adaptive Cruise Control Model (ACC Model), see the book Traffic Flow Dynamics, Chapter 11 (it's a free sample chapter).

Model Structure

The IDM and the ACC model are car-following model. In such models,

Notice that, in contrast to car-following, lane-changing decisions depend on all neighboring vehicles (see the lane-changing model MOBIL).

Model Equations

The IDM model equations read as follows:

IDM acceleration equation

where

relation for desired distance

Furthermore, to close this system (one dynamical equation for the two unknown quantities v and s), the gap s obeys its own kinematic equation since the changing rate of the gap is just the relative speed:

ds/dt=− Δ v


The IDM acceleration is divided into a "desired" acceleration a [1 − (v/v0)δ] on a free road (typically δ=4), and braking decelerations induced by the front vehicle. The acceleration on a free road decreases from the initial acceleration a to zero when approaching the "desired speed" v0.

The braking term is based on a comparison between the "desired dynamical distance" s*, and the actual gap s to the preceding vehicle. If the actual gap is approximatively equal to s*, then the breaking deceleration essentially compensates the free acceleration part, so the resulting acceleration is nearly zero. This means, s* corresponds to the gap when following other vehicles in steadily flowing traffic. In addition, s* increases dynamically when approaching slower vehicles and decreases when the front vehicle is faster. As a consequence, the imposed deceleration increases with

The mathematical form of the IDM model equations is that of coupled ordinary differential equations:

Model Parameters

The IDM and the ACC model has intuitive parameters as displayed in following table:

Parameter Value Car Value Truck Remarks
Desired speed v0 120 km/h 80 km/h For city traffic, one would adapt the desired speed while the other parameters essentially can be left unchanged.
Time headway T 1.5 s 1.7 s Recommendation in German driving schools: 1.8 s; realistic values vary between 2 s and 0.8 s and even below.
Minimum gap s0 2.0 m 2.0 m Kept at complete standstill, also in queues that are caused by red traffic lights.
Acceleration a 0.3 m/s2 0.3 m/s2 Very low values to enhance the formation of stop-and go traffic. Realistic values are 0.8 to 2.5 m/s2
Deceleration b 3.0 m/s2 2.0 m/s2 Realistic values are around 2 m/s2

In general, every "driver-vehicle unit" can have its individual parameter apply set, e.g., Often two different types are sufficient to show the main phenomena.

Simulation of the Model

Simulation means to numerically "integrate", i.e., approximatively solve the coupled differential equations of the model. For this, one defines a finite numerical update time interval Δt, and integrates over this time step assuming constant accelerations. This so-called ballistic method reads

new speed: v(t+Δt) = v(t) + (dv/dt) Δt,
new position:    x(t+Δt) = x(t) + v(t)Δt + 1/2 (dv/dt) (Δt)2,
new gap: s(t+Δt) = xl(t+Δt) − x(t+Δt)− Ll.


where dv/dt is the IDM acceleration calculated at time t, x is the position of the front bumper, and Ll the length of the leading vehicle. For the Intelligent-Driver Model, any update time steps below 0.5 seconds will essentially lead to the same result, i.e., sufficiently approximate the true solution.
    Strictly speaking, the model is only well defined if there is a leading vehicle and no other object impeding the driving. However, generalizations are straightforward:

Special Case of Stopped Vehicles

For vehicles approaching an already stopped vehicle or a red traffic light, the ballistic update method as described above will lead to negative speeds whenever the end of a time integration interval is not exactly equal to the true stopping time (of course, there is always a mismatch). Then, the ballistic method has to be generalized to simulate following approximate dynamics:

If the true stopping time is within an update time interval, decelerate at constant deceleration (dv/dt) to a complete stop and remain at standstill until this interval has ended.

Furthermore, it may happen that the actual gap of a stopped vehicle s is slightly below the minimum gap s0, in which case the unchanged IDM would give a negative acceleration, hence a negative velocity in the next time step. In most cases, however, real drivers will just keep that somewhat too low gap until the leader drives again rather than driving backwards. Both special cases can be implemented by following rules which are generally applicable to integrating any time-continuous car-following model, not just the IDM:

At least one of the above situations applies if:    v(t) + (dv/dt) Δt < 0,
new speed in this case: v(t+Δt)=0,
new position in this case: x(t+Δt)=x(t) − 1/2 v2(t) / (dv/dt),
new gap: s(t+Δt) =xl(t+Δt)− x(t+Δt)− Ll.


Notice that − 1/2 v2(t) / (dv/dt) is greater than zero if the special cases apply.

Further information: