Path Planning

Motion Profiles and S-shaped driving paths.

Concept

Path Planning is a subject of robotics software that involves pre-calculating a series of poses for a robot to follow between a start and end point. Most basic robotics movement simply specifies the starting and ending position, using something like a PID Controller to determine how the robot should make that movement. These simpler controllers, however, don't have a concept of many tricky real-world requirements for robot movements like:

  • Moving in 2D, both forward/backward and sideways of the starting position

  • Avoiding obstacles in the path between the start and end point

  • Accelerating and decelerating at a rate that the robot can handle without slipping the wheels

That's where path planning comes in. It's possible to calculate a path, or series of "in-between" points and associated velocities/accelerations, that matches these criteria. A planned path typically comes in the form an array of objects containing:

  • The (x, y, heading) coordinates of the point along the path

  • The forward velocity and/or the angular velocity that should be commanded to the robot to reach the next point along the path

The calculations for planning a path are typically split into two steps representing the two sets of information specified above: First the points along the path are calculated, and then the required velocity values needed to get to those points are determined.

Usage

Most teams that use Path Planning do not write their own implementations of the calculations mentioned above. Okapilib, a library included by default with PROS, contains an easy interface for planning paths using the Squiggles path planning library. A tutorial for using this interface is included on the Okapilib documentation site here: https://okapilib.github.io/OkapiLib/md_docs_tutorials_concepts_twodmotionprofiling.html

Using a library like Okapilib to plan paths makes it easier than writing all of the necessary code yourself, but it is still vital to understand the underlying concepts of path planning even when using a library. For starters, you'll need to know enough about what your code is doing to describe it in a Judges Interview, but beyond that, debugging your code and writing code that builds on the path planning library requires an understanding of how path planning works. The Squiggles documentation contains some helpful resources on:

Feedback Controllers

Okapilib and Squiggles only provide the Path Planning part of 2D movement -- you'll most likely want to supplement that Path Planning with a feedback controller. Running a planned path with Okapilib will send the path's planned velocities to your robot with no way of determining if the robot is actually on course; it's entirely possible that obstacles like game objects, opponent robots, or overheated motors could have caused the robot to not be able to follow the expected path. Using a planned path with no feedback controller is effectively flying blind as a result. It is highly recommended to supplement your planned path with one of the feedback controllers that are designed for path following, such as the:

Teams Contributed to this Article:

  • BLRS (Purdue SIGBots)

Last updated

Logo

This work is licensed under a Attribution-ShareAlike 2.0 Generic License