Difference Between Ackermann Kinematic Model and Bicycle Kinematic Model

40 views (last 30 days)
In the simulink Robotics System Toolbox, the Ackermann Kinematic Model block and Bicycle Kinematic block both output the x and y position states of the vehicle, using the kinematic equations. I want to know, what is the difference between the models used in these blocks, since a car kinematic model can be simplified as a bicycle model.
From what I understood, the ackermann model will gives us the steering angles of each wheel, since they are not the same. but in the end, what does this mean for the x and y position of the base? What is the difference between just using a bicycle model for the state estimation of a car-like robot, and the ackermann model, assuming our control inputs are steering angle, and vehicle velocity?

Accepted Answer

Prudhvi Peddagoni
Prudhvi Peddagoni on 1 Oct 2020
Hi,
There will be difference in the outputs of Ackermann Kinematic Model block and Bicycle Kinematic block. The working of various models like bicycle, unicycle, Ackermann and differential-drive kinematic models are documented in the examples section of this link.
Hope this helps.

More Answers (1)

Sajjad Monfared
Sajjad Monfared on 30 Sep 2021
Edited: Sajjad Monfared on 30 Sep 2021
Ackermann system and bicycle have exactly the same kinematic equations in their full-state formulation and therefore are equivalent. [θ: vehicle orientation, γ: steering angle]
Eq.(1)
Note that the inputs are v: vehicle speed, w: steering rate. But there is another variation in modeling such vehicles which leads to a different set of equations. This model is obtained by assuming that the steering angle γ (not its rate w) can be directly controlled. This assumption is justified if the steering rate limit w_max is high enough that the steering angle can be changed nearly instantaneously by a lower-level controller. This model is given by:
Eq.(2)
Note that the inputs are v: vehicle speed, γ: steering angle. Now we can further simplify this equation by a simple input transformation: , in which case we have:
Eq.(3)
Where the inputs are v: vehicle speed, w_hat: heading rate.
MATLAB uses Eq(1) for Ackermann system, eq(2) for bicycle model in "vehicle speed and steering angle" mode and eq(3) for bicycle model in "vehicle speed and heading angular velocity" mode.
As a final note, I want to emphasize that they both model the same underlying 'car', but with different input commnads.

Categories

Find more on General Applications in Help Center and File Exchange

Products


Release

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!