Motion Planning in Robotics
27 July 2023
[ papers , robotics ]

There are many books and papers on robotics motion planning. Please dive deep into motion planning by some questions below.

Q1. What is motion planning?

Motion planning robotics arm is the process of finding a collision-free path for a robotic arm to move from its starting configuration to its goal configuration while avoiding obstacles. It is an essential component of robotics that enables robots to perform tasks autonomously and safely. Motion planning robotics arm involves finding the optimal path for the robot arm to move from its starting configuration to its goal configuration while avoiding obstacles and minimizing some objective function. The objective function can be related to energy consumption, time, or other performance metrics.

Q2. Path planning versus motion planning?

The path planning problem is a subproblem of the general motion planning problem. Path planning is the purely geometric problem of finding a collision-free path q(s), s ∈ [0, 1], from a start configuration q(0) = q(start) to a goal configuration q(1) = q(goal) , without concern for the dynamics, the duration of motion, or constraints on the motion or on the control inputs. It is assumed that the path returned by the path planner can be time scaled to create a feasible tra- jectory. This problem is sometimes called the piano mover’s problem, emphasizing the focus on the geometry of cluttered spaces. Modern Robotics

Q3. What are some common motion planning algorithms used for robotic arms?

Some common motion planning algorithms used for robotic arms include:

  1. Rapidly-Exploring Random Tree (RRT): RRT is a popular algorithm for motion planning in robotics. It generates a tree of random configurations and expands it towards the goal configuration, exploring the configuration space efficiently1
  2. Probabilistic Roadmap (PRM): PRM is another widely used algorithm that constructs a roadmap of valid configurations and connects them to form a graph. It then searches for a path on this graph to reach the goal configuration1
  3. Potential Field Methods: Potential field methods use attractive and repulsive forces to guide the robot arm towards the goal configuration while avoiding obstacles. The robot arm moves along the gradient of the potential field to find a collision-free path2.
  4. Sampling-Based Methods: Sampling-based methods, such as the Monte Carlo method, randomly sample the configuration space and check for collision-free paths. These methods are efficient for high-dimensional spaces and can handle complex robot arm configurations3.
  5. Optimization-Based Methods: Optimization-based methods formulate the motion planning problem as an optimization problem and use optimization algorithms, such as the Newton-Raphson method or the Levenberg-Marquardt algorithm, to find the optimal path or trajectory for the robot arm4.
  6. Particle Swarm Optimization (PSO): PSO is a population-based optimization algorithm inspired by the behavior of bird flocking. It can be used for trajectory planning and optimization of robot arm movements5.
  7. Motion planning with dynamic system: A dynamic system approach to motion planning is a framework that uses dynamical systems to generate and re-plan trajectories for robots in real-time. Dynamical systems are mathematical models that describe how systems change over time. In the context of robotics, they can be used to generate motion and force for contact tasks. This approach is useful because it allows robots to react to changes in their environment and adjust their trajectories accordingly. For example, if a robot is moving towards an object and the object moves, the robot can use a dynamic system approach to re-plan its trajectory and still reach the object 6

Resources

Rapidly-Exploring Random Tree (RRT):

  • RRT: Rapidly-Exploring Random Tree, which is an algorithm designed to efficiently search nonconvex, high-dimensional spaces by randomly building a space-filling tree. The tree is constructed incrementally from samples drawn randomly from the search space and is inherently biased to grow towards large unsearched areas of the problem. RRTs were developed by Steven M. LaValle and James J. Kuffner Jr pdf

  • RRT-Connect: a variation of the Rapidly-Exploring Random Tree (RRT) algorithm that is used for single-query path planning in high-dimensional configuration spaces. It is an efficient approach that aims to find a path from a start configuration to a goal configuration by growing two trees simultaneously, one from the start and one from the goal, until they meet pdf

Opimization-Based Method:

  • CHOMP: Covariant Hamiltonian Optimization for Motion Planning, which is a gradient-based trajectory optimization procedure for robotic motion planning. It uses functional gradient techniques to iteratively improve the quality of an initial trajectory, optimizing a functional that trades off between a smoothness cost and a collision cost. pdf

  • STOMP: Stochastic Trajectory Optimization for Motion Planning, which is an approach to motion planning that utilizes a stochastic trajectory optimization framework. The goal of STOMP is to find a smooth trajectory that minimizes costs associated with collisions and constraints. Unlike deterministic optimization methods, STOMP generates noisy trajectories and uses them to explore the search space. By incorporating randomness into the trajectory generation process, STOMP can efficiently find solutions for motion planning problems, even for robots with a high degree of freedom. pdf

  • TrajOpt: TrajOpt planning is a trajectory optimization framework for generating robot trajectories by local optimization. It models the path planning problem as an optimization problem and uses Sequential Quadratic Programming (SQP) to find the optimal trajectory. TrajOpt is a sequential convex optimization algorithm for motion planning problems where the non-convex, non-affine equality, and non-equality constraints are handled by linearizing them around the current trajectory pdf

  • NEO: Novel Expeditious Optimisation Algorithm is a reactive motion controller for manipulators that can avoid static and dynamic obstacles while moving toward the desired goal. It is a fast and purely reactive motion controller that uses optimization techniques to generate smooth and collision-free trajectories in real-time. NEO is designed to be used as a local controller in conjunction with a global motion planner for more complex scenes pdf

Moveit Q&A

Q1. What are differences between joint space and cartesian space in Moveit?

The differences between joint space and Cartesian space in MoveIt are as follows: Joint space:

  • Joint space refers to the space of all possible joint configurations of the robot6.
  • It is defined by the values of the robot’s joint angles, which determine the position of each joint.
  • Joint space planning involves specifying exact joint positions to achieve a desired end-effector position or trajectory3.
  • Joint space planning is useful for precise control of the robot’s motion and can be used for tasks such as pick-and-place operations1.

Cartesian space:

  • Cartesian space refers to the space of all possible end-effector positions and orientations of the robot3.
  • It is defined by the position and orientation of the robot’s end-effector in three-dimensional space.
  • Cartesian space planning involves specifying a desired end-effector position or trajectory to achieve a task3.
  • Cartesian space planning is useful for tasks that require the robot to follow a specific path or trajectory, such as painting or welding3.

In MoveIt, depending on the planning problem, the planner can choose between joint space and Cartesian space for problem representation 2. Joint space planning involves specifying exact joint positions, while Cartesian space planning involves specifying desired end-effector positions or trajectories 3. The choice between joint space and Cartesian space depends on the specific task requirements and the level of control needed over the robot’s motion.

Q2. Can RRT be used for planning in both joint space and cartesian space in OMPL?

RRT (Rapidly-exploring Random Tree) in OMPL can be used in both joint space and Cartesian space1245. OMPL provides planners for both joint space and Cartesian space, including RRT, allowing users to choose the appropriate space for their planning problem1. The implementation of RRT in OMPL is built on top of the Open Motion Planning Library, which allows the user to define a custom state space and control space1. Therefore, RRT in OMPL can be used in both joint space and Cartesian space, depending on the specific planning problem and the user’s preference.

Q3. RRT for planning in joint space versus cartesian space in OMPL

Advantages and disadvantages of using RRT for planning in joint space versus Cartesian space in OMPL are: Advantages of using RRT in joint space:

  • Joint space planning is useful for precise control of the robot’s motion, and RRT can provide a feasible path to achieve a desired end-effector position or trajectory12.
  • Joint space planning can be faster than Cartesian space planning, especially for low-dimensional robots2.
  • Joint space planning can handle complex constraints, such as joint limits, singularities, and collisions2.

Disadvantages of using RRT in joint space:

  • Joint space planning can be computationally expensive for high-dimensional robots2.
  • Joint space planning may not be suitable for tasks that require the robot to follow a specific path or trajectory in Cartesian space3.
  • Joint space planning may require a good initial guess for the joint angles to find a feasible path2.

Advantages of using RRT in Cartesian space:

  • Cartesian space planning can handle tasks that require the robot to follow a specific path or trajectory in Cartesian space, such as painting or welding3.
  • Cartesian space planning can be more intuitive for users who are not familiar with the robot’s joint angles3.
  • Cartesian space planning can be faster for high-dimensional robots with complex kinematics2.

Disadvantages of using RRT in Cartesian space:

  • Cartesian space planning can be computationally expensive, especially for high-dimensional robots2.
  • Cartesian space planning may not be able to handle complex constraints, such as joint limits, singularities, and collisions2.
  • Cartesian space planning may require a good initial guess for the end-effector position to find a feasible path2.

Overall, the choice between joint space and Cartesian space planning with RRT in OMPL depends on the specific planning problem and the user’s preference. Joint space planning is suitable for precise control of the robot’s motion, while Cartesian space planning is suitable for tasks that require the robot to follow a specific path or trajectory in Cartesian space.


References

  1. Bruno Siciliano and Oussama Khatib. 2007. Springer Handbook of Robotics. Springer-Verlag, Berlin, Heidelberg.
  2. Common Control Concepts Used in Robot Motion Planning, April 16, 2021, Anish Devasia https://control.com/technical-articles/common-control-concepts-used-in-robot-motion-planning/

  3. Liu, S., Liu, P. (2021). A Review of Motion Planning Algorithms for Robotic Arm Systems. In: Chew, E., et al. RiTA 2020. Lecture Notes in Mechanical Engineering. Springer, Singapore. https://doi.org/10.1007/978-981-16-4803-8_7

  4. K. Gochev, V. Narayanan, B. Cohen, A. Safonova and M. Likhachev, “Motion planning for robotic manipulators with independent wrist joints,” 2014 IEEE International Conference on Robotics and Automation (ICRA), Hong Kong, China, 2014, pp. 461-468, doi: 10.1109/ICRA.2014.6906896.

  5. Özge Ekrem, Bekir Aksoy,”Trajectory planning for a 6-axis robotic arm with particle swarm optimization algorithm”, Engineering Applications of Artificial Intelligence, Volume 122,2023,106099,ISSN 0952-1976, https://doi.org/10.1016/j.engappai.2023.106099.

  6. Amanhoud, Walid, Mahdi Khoramshahi and Aude Billard. “A Dynamical System Approach to Motion and Force Generation in Contact Tasks.” Robotics: Science and Systems XV (2019)

  7. Matt Zucker, Nathan Ratliff , Dragan AD, et al. “CHOMP: Covariant Hamiltonian optimization for motion planning.” The International Journal of Robotics Research. 2013;32(9-10):1164-1193. doi:10.1177/0278364913488805

OMPL Tutorial

  1. https://theairlab.org/summer2020/, Motion Planning Tutorial
  2. https://bitbucket.org/castacks/core_planning_tutorial/src/master/
  3. https://ompl.kavrakilab.org/geometricPlanningSE3.html