Effacer les filtres
Effacer les filtres

Lateral Driver does not drive full circle

4 vues (au cours des 30 derniers jours)
Simon Klocker
Simon Klocker le 15 Mar 2022
Hi community,
i am building a vehicle simulation and i am stuck with the driver. Task is to drive a full circle but unforunatly the drive can't manage the jump of the yaw angle from pi to -pi. I am using the Lateral Driver from the Vehicle Dynamics Blockset in Stanley mode. I tried to play with the gains, but couldn't achive any better results. Any tips?
Thank you,
Simon
Pose1: X, Pose2 [m]: Y [m], Pose3: YAW [rad]

Réponses (1)

Yash Sharma
Yash Sharma le 22 Mar 2024
Hi Simon,
Dealing with the discontinuity in yaw angle (heading) that jumps from (\pi) to (-\pi) (or vice versa) is a common issue in vehicle simulations and robotics, particularly when using control systems like the Stanley controller in vehicle dynamics simulations. This discontinuity can confuse the controller, causing erratic behavior around the transition points.
One common approach to handle this discontinuity is to ensure that the yaw angle difference (error) passed to the controller is always within a continuous range, typically between (-\pi) and (\pi). This can be achieved by adjusting the calculation of the yaw error to account for the discontinuity.
Here's a conceptual approach to adjust the yaw error calculation:
function yaw_error = calculateYawError(target_yaw, current_yaw)
% Calculate the raw yaw error
raw_error = target_yaw - current_yaw;
% Adjust the yaw error to be within -pi to pi
yaw_error = atan2(sin(raw_error), cos(raw_error));
end
When integrating with the Stanley controller, you would use this approach to calculate the yaw error before passing it to the controller. Here's a conceptual example of how you might integrate the yaw error adjustment:
% Example values for demonstration
target_yaw = pi; % Target yaw angle
current_yaw = -pi + 0.1; % Current yaw angle close to the discontinuity
% Calculate the adjusted yaw error
yaw_error = calculateYawError(target_yaw, current_yaw);
% Now, use yaw_error with the Stanley controller or your control logic
% For example:
% control_signal = stanleyControlFunction(yaw_error, other_control_inputs...);
By carefully handling the yaw angle discontinuity and possibly adjusting the controller's parameters, you should be able to achieve smoother behavior from the vehicle simulation, even when driving in full circles or when the yaw angle transitions across the discontinuity.
Hope it helps!

Catégories

En savoir plus sur Vehicle Scenarios dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by