frenet coordinate system definition?

25 vues (au cours des 30 derniers jours)
Song Decn
Song Decn le 8 Fév 2021
Commenté : Walter Roberson le 21 Août 2023
Hi, is there any reference to the defition of frenet coordinate conversion definition in Matlab Toolboxes, like Automated Driving TB, Navigation TB ??
Inside MATLAB I cant find any description.
On some math. websites, frenet coordinates calculation is based on the closest point to the refrence path, but some refer to the othogonal point from reference path.
Thank u very much.
Also can someone help to explain how Matlab get this result? i.e. how [s ds dds l dl ddl] are calculated?
case 1:
case 2:

Réponses (2)

Cameron Stabile
Cameron Stabile le 26 Mar 2021
Hi Song,
The reference to these conversion functions can be found in the help text of the trajectoryOptimalFrenet feature, but you bring up a good point - we should add this reference to the help text of referencePathFrenet and trajectoryGeneratorFrenet as well.
The derivation of the global2frenet and frenet2global methods are defined in the appendix of Werling's Optimal Trajectory Generation for Dynamic Street Scenarios in a Frenet Frame.
% [1] M. Werling, J. Ziegler, S. Kammel, and S. Thrun. "Optimal
% trajectory generation for dynamic street scenarios in a frenet
% frame." In 2010 IEEE International Conference on Robotics and
% Automation, 2010, pp. 987-993.
As for how these values are calculated, here is the plain english explanation:
frenetState = global2frenet(refPath, globalState)
  • Find the point, , along the path that is nearest to the xy-coordinate of globalState, [x y θ κ v a]. Since the reference path is C1 continuous (tangentially continuous), the distance will be shortest where - is orthogonal to the path's tangent.
  • With the nearest point found, we evaluate the full state of the path [x y θ κ s] (x, y, tangent-angle, curvature, change-in-curvature vs change in arclength, arclength). This is equivalent to a moving reference frame located at [x y] whose longitudinal axis points along and whose lateral axis intersects with (right-hand rule). The instantaneous motion of this frame is described by [κ ]
  • The velocity and acceleration components of the globalState act along the tangent defined by , which itself evolves based on . Using the derivations from Werling's paper, we then map the global position, velocity, and acceleration to the local Frenet frame, giving us our frenetState. A visual representation of this is shown on the referencePathFrenet documentation page.
globalState = frenet2global(refPath, frenetState)
The process for frenet2global is the inverse of global2frenet:
  • Evaluate the path at the frenetState's arclength, =, once again giving us [x y θ κ s]
  • This point once again defines a reference frame whose axes and motion can be used to project the lon/lat and their 1st&2nd derivatives back into the global frame.
Lastly, we should note the following:
  1. The closestPoint orthogonality only holds when the path "covers" the region containing the global state. If the global state lies beyond the end of the path (i.e. the nearest point on the path lies at either end of the path), closestPoint's behavior is to simply snap to the limit.
  2. Werling offers two different ways of representing state in the Frenet frame, one where lateral derivatives are w.r.t. time [l ], and another where they are w.r.t. longitudinal [l ]. We currently only support lateral derivatives w.r.t longitude, which is the reason you see your lateral "velocity" = 1 rather than 0.
  3. We currently do not check for or handle cases where lies on a level set, or where there are multiple-equidistant points along the path, as depicted in your 3-sided square example. That said, we may consider doing so in the future, and we value any feedback you may have.
Hope this helps!
-Cameron

Hussein
Hussein le 20 Août 2023
Hello The Frenet coordinate system, also known as the Frenet-Serret frame or the moving frame, is a mathematical construct used in differential geometry to describe the local geometry of a curve in three-dimensional space.
  1 commentaire
Walter Roberson
Walter Roberson le 21 Août 2023
Yes, but the user was finding sources the defined frenet in different terms, and was asking which version that Mathworks was using.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Motion Planning dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by