github_url: | https://github.com/ros-controls/ros2_controllers/blob/{REPOS_FILE_BRANCH}/doc/mobile_robot_kinematics.rst |
---|
This page introduces the kinematics of different wheeled mobile robots. For further reference see Siciliano et.al - Robotics: Modelling, Planning and Control and Kevin M. Lynch and Frank C. Park - Modern Robotics: Mechanics, Planning, And Control.
Wheeled mobile robots can be classified in two categories:
- Omnidirectional robots
- which can move instantaneously in any direction in the plane, and
- Nonholonomic robots
- which cannot move instantaneously in any direction in the plane.
The forward integration of the kinematic model using the encoders of the wheel actuators — is referred to as odometric localization or passive localization or dead reckoning. We will call it just odometry.
Robots with omniwheels or mecanum wheels. Section will be updated if controllers for these robots are implemented.
To define the coordinate systems (ROS coordinate frame conventions, the coordinate systems follow the right-hand rule), consider the following simple unicycle model
- x_b,y_b is the robot's body-frame coordinate system, located at the contact point of the wheel on the ground.
- x_w,y_w is the world coordinate system.
- x,y are the robot's Cartesian coordinates in the world coordinate system.
- \theta is the robot's heading angle, i.e. the orientation of the robot's x_b-axis w.r.t. the world's x_w-axis.
In the following, we want to command the robot with a desired body twist
\vec{\nu}_b = \begin{bmatrix} \vec{\omega}_{b} \\ \vec{v}_{b} \end{bmatrix},
where \vec{v}_{b} is the linear velocity of the robot in its body-frame, and \vec\omega_{b} is the angular velocity of the robot in its body-frame. As we consider steering robots on a flat surface, it is sufficient to give
- v_{b,x}, i.e. the linear velocity of the robot in direction of the x_b axis.
- \omega_{b,z}, i.e. the angular velocity of the robot about the x_z axis.
as desired system inputs. The forward kinematics of the unicycle can be calculated with
\dot{x} &= v_{b,x} \cos(\theta) \\ \dot{y} &= v_{b,x} \sin(\theta) \\ \dot{\theta} &= \omega_{b,z}
We will formulate the inverse kinematics to calculate the desired commands for the robot (wheel speed or steering) from the given body twist.
Citing Siciliano et.al - Robotics: Modelling, Planning and Control:
A unicycle in the strict sense (i.e., a vehicle equipped with a single wheel)
is a robot with a serious problem of balance in static conditions. However,
there exist vehicles that are kinematically equivalent to a unicycle but more
stable from a mechanical viewpoint.
One of these vehicles is the differential drive robot, which has two wheels, each of which is driven independently.
- w is the wheel track (the distance between the wheels).
Forward Kinematics
The forward kinematics of the differential drive model can be calculated from the unicycle model above using
v_{b,x} &= \frac{v_{right} + v_{left}}{2} \\ \omega_{b,z} &= \frac{v_{right} - v_{left}}{w}
Inverse Kinematics
The necessary wheel speeds to achieve a desired body twist can be calculated with:
v_{left} &= v_{b,x} - \omega_{b,z} w / 2 \\ v_{right} &= v_{b,x} + \omega_{b,z} w / 2
Odometry
We can use the forward kinematics equations above to calculate the robot's odometry directly from the encoder readings.
The following picture shows a car-like robot with two wheels, where the front wheel is steerable. This model is also known as the bicycle model.
- \phi is the steering angle of the front wheel, counted positive in direction of rotation around x_z-axis.
- v_{rear}, v_{front} is the velocity of the rear and front wheel.
- l is the wheelbase.
We assume that the wheels are rolling without slipping. This means that the velocity of the contact point of the wheel with the ground is zero and the wheel's velocity points in the direction perpendicular to the wheel's axis. The Instantaneous Center of Rotation (ICR), i.e. the center of the circle around which the robot rotates, is located at the intersection of the lines that are perpendicular to the wheels' axes and pass through the contact points of the wheels with the ground.
As a consequence of the no-slip condition, the velocity of the two wheels must satisfy the following constraint:
v_{rear} = v_{front} \cos(\phi)
Forward Kinematics
The forward kinematics of the car-like model can be calculated with
\dot{x} &= v_{b,x} \cos(\theta) \\ \dot{y} &= v_{b,x} \sin(\theta) \\ \dot{\theta} &= \frac{v_{b,x}}{l} \tan(\phi)
Inverse Kinematics
The steering angle is one command input of the robot:
\phi = \arctan\left(\frac{l w_{b,z}}{v_{b,x}} \right)
For the rear-wheel drive, the velocity of the rear wheel is the second input of the robot:
v_{rear} = v_{b,x}
For the front-wheel drive, the velocity of the front wheel is the second input of the robot:
v_{front} = \frac{v_{b,x}}{\cos(\phi)}
Odometry
We have to distinguish between two cases: Encoders on the rear wheel or on the front wheel.
For the rear wheel case:
\dot{x} &= v_{rear} \cos(\theta) \\ \dot{y} &= v_{rear} \sin(\theta) \\ \dot{\theta} &= \frac{v_{rear}}{l} \tan(\phi)
For the front wheel case:
\dot{x} &= v_{front} \cos(\theta) \cos(\phi)\\ \dot{y} &= v_{front} \sin(\theta) \cos(\phi)\\ \dot{\theta} &= \frac{v_{front}}{l} \sin(\phi)
The following image shows a car-like robot with three wheels, with two independent traction wheels at the rear.
- w_r is the wheel track of the rear axle.
Forward Kinematics
The forward kinematics is the same as the car-like model above.
Inverse Kinematics
The turning radius of the robot is
R_b = \frac{l}{\tan(\phi)}
Then the velocity of the rear wheels must satisfy these conditions to avoid skidding
v_{rear,left} &= v_{b,x}\frac{R_b - w_r/2}{R_b}\\ v_{rear,right} &= v_{b,x}\frac{R_b + w_r/2}{R_b}
Odometry
The calculation of v_{b,x} from two encoder measurements of the traction axle is overdetermined. If there is no slip and the encoders are ideal,
v_{b,x} = v_{rear,left} \frac{R_b}{R_b - w_r/2} = v_{rear,right} \frac{R_b}{R_b + w_r/2}
holds. But to get a more robust solution, we take the average of both , i.e.,
v_{b,x} = 0.5 \left(v_{rear,left} \frac{R_b}{R_b - w_r/2} + v_{rear,right} \frac{R_b}{R_b + w_r/2}\right).
The following image shows a four-wheeled robot with two independent steering wheels in the front.
- w_f is the wheel track of the front axle, measured between the two kingpins.
To prevent the front wheels from slipping, the steering angle of the front wheels cannot be equal. This is the so-called Ackermann steering.
Note
Ackermann steering can also be achieved by a mechanical linkage between the two front wheels. In this case the robot has only one steering input, and the steering angle of the two front wheels is mechanically coupled. The inverse kinematics of the robot will then be the same as in the car-like model above.
Forward Kinematics
The forward kinematics is the same as for the car-like model above.
Inverse Kinematics
The turning radius of the robot is
R_b = \frac{l}{\tan(\phi)}
Then the steering angles of the front wheels must satisfy these conditions to avoid skidding
\phi_{left} &= \arctan\left(\frac{l}{R_b - w_f/2}\right) &= \arctan\left(\frac{2l\sin(\phi)}{2l\cos(\phi) - w_f\sin(\phi)}\right)\\ \phi_{right} &= \arctan\left(\frac{l}{R_b + w_f/2}\right) &= \arctan\left(\frac{2l\sin(\phi)}{2l\cos(\phi) + w_f\sin(\phi)}\right)
Odometry
The calculation of \phi from two angle measurements of the steering axle is overdetermined. If there is no slip and the measurements are ideal,
\phi = \arctan\left(\frac{l\tan(\phi_{left})}{l + w_f/2 \tan(\phi_{left})}\right) = \arctan\left(\frac{l\tan(\phi_{right})}{l - w_f/2 \tan(\phi_{right})}\right)
holds. But to get a more robust solution, we take the average of both , i.e.,
\phi = 0.5 \left(\arctan\left(\frac{l\tan(\phi_{left})}{l + w_f/2 \tan(\phi_{left})}\right) + \arctan\left(\frac{l\tan(\phi_{right})}{l - w_f/2 \tan(\phi_{right})}\right)\right).
The following image shows a four-wheeled car-like robot with two independent steering wheels at the front, which are also driven independently.
- d_{kp} is the distance from the kingpin to the contact point of the front wheel with the ground.
Forward Kinematics
The forward kinematics is the same as the car-like model above.
Inverse Kinematics
To avoid slipping of the front wheels, the velocity of the front wheels cannot be equal and
\frac{v_{front,left}}{R_{left}} = \frac{v_{front,right}}{R_{right}} = \frac{v_{b,x}}{R_b}
with turning radius of the robot and the left/right front wheel
R_b &= \frac{l}{\tan(\phi)} \\ R_{left} &= \frac{l-d_{kp}\sin(\phi_{left})}{\sin(\phi_{left})}\\ R_{right} &= \frac{l+d_{kp}\sin(\phi_{right})}{\sin(\phi_{right})}.
This results in the following inverse kinematics equations
v_{front,left} &= \frac{v_{b,x}(l-d_{kp}\sin(\phi_{left}))}{R_b\sin(\phi_{left})}\\ v_{front,right} &= \frac{v_{b,x}(l+d_{kp}\sin(\phi_{right}))}{R_b\sin(\phi_{right})}
with the steering angles of the front wheels from the Ackermann steering equations above.
Odometry
The calculation of v_{b,x} from two encoder measurements of the traction axle is again overdetermined. If there is no slip and the encoders are ideal,
v_{b,x} = v_{front,left} \frac{R_b\sin(\phi_{left})}{l-d_{kp}\sin(\phi_{left})} = v_{front,right} \frac{R_b\sin(\phi_{right})}{l+d_{kp}\sin(\phi_{right})}
holds. But to get a more robust solution, we take the average of both , i.e.,
v_{b,x} = 0.5 \left( v_{front,left} \frac{R_b\sin(\phi_{left})}{l-d_{kp}\sin(\phi_{left})} + v_{front,right} \frac{R_b\sin(\phi_{right})}{l+d_{kp}\sin(\phi_{right})}\right).