![]() | ![]() | ![]() | Convoy Car example |
In this example, there is leading car followed by one or two cars behind it, trying to maintain their position at 50m from each other.
The equations are:
for i in [1,N-1], with x"i, x'i and xi the acceleration, speed and position of vehicle i. i=0 corresponds to the leading car, N being the toal number of cars.
To ease the analysis of the results, we reformulate the problems by considering the deltas of positions and speeds, dvi=x'i-x'i+1 and dpi = xi-xi+1. After discretization using the time step delta, we have the following system:
The purpose of the analysis is to show that there is no collision, and to compute bounds on the relative positions and speeds of the cars.
In experiments, we will use a constant acceleration for the leading car inside an interval, and we will constrain other initial values by intervals as well.
This example is interesting as the real Jordan form of the loop body has blocks associated to complex eigenvalues of size N-1, where N is the number of cars.
With a constant acceleraton for the leading car, for N=2 we have the real Jordan form
(the 6th dimension corresponds to the constant dimension added to model the affine transformation with a linear one).
For N=3 we have the real Jordan form
In practice, this corresponds to the common experience that with such a control law, the farther is a car from the leading car, the larger will be its oscillations (in relative position and speed).
Some comments:
![]() | ![]() | ![]() | Convoy Car example |