Parking trajectory for diff-drive robot #2592
-
Hi, I am using autoware for the development of mobile robot of differential drive type for indoor application, but I've found out that in executing return-to-home behavior (like returning to charging spot) to the parking lane (we already have the lanelet map, and placed parking spot there) the trajectory resembles the one of car-like vehicle and includes turning points. We also tried to decrease Can you educate us on how to customize the (parking) trajectory generation module by any chance ? |
Beta Was this translation helpful? Give feedback.
Replies: 0 comments 3 replies
-
Here we use Hybrid A* search for parking planning. In Hybrid A* search, we assume that the vehicle's following path as reeds shepp curves. That's why the generated trajectory is like car-like vehicle's one. |
Beta Was this translation helpful? Give feedback.
Here we use Hybrid A* search for parking planning.
https://github.com/autowarefoundation/autoware.universe/tree/main/planning/freespace_planning_algorithms/src
In Hybrid A* search, we assume that the vehicle's following path as reeds shepp curves. That's why the generated trajectory is like car-like vehicle's one.
To handle diff drive robot, we have to add its dynamics or kinematics model instead of reeds shepp in Hybrid A* search.