No version for distro humble. Known supported distros are highlighted in the buttons above.
No version for distro jazzy. Known supported distros are highlighted in the buttons above.
No version for distro rolling. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 0.0.0
License TODO: License declaration
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/tim-hw/ros2-path-planning-turtlebot3-potential-field.git
VCS Type git
VCS Version main
Last Updated 2024-12-22
Dev Status UNMAINTAINED
CI status No Continuous Integration
Released UNRELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

TODO: Package description

Additional Links

No additional links.

Maintainers

  • tim

Authors

No additional authors.

ROS2-Turtlebot3 Path Planning

ROS2 Package for turtlebot3 to execute local path planning using the potential field methods. This package is an excuse to learn C++ and ROS2. Feel free to use it as you want :D

alt text

Installation

cd ros_ws/src
git clone https://github.com/Tim-HW/ROS2-PotentialField.git
cd ..
colcon build
source install/setup.bash

For the robot to go at the x : 3 and y : 5

ros2 run potential_field potential_field_node 3 5

Potential Field paradigm

The potential field method is a widely used technique in robotics and motion planning to guide a robot towards a desired goal while avoiding obstacles in its environment. The method operates based on the concept of potential fields, where each point in the robot’s environment is assigned a “potential” value.

Here’s a step-by-step explanation of the potential field method:

  1. Goal Attraction: The robot is assigned a “goal” location, which represents the desired position it needs to reach. The goal location is associated with an attractive potential that pulls the robot towards it. The potential field around the goal creates a force that influences the robot’s motion, directing it towards the goal.

  2. Obstacle Repulsion: Obstacles in the environment are assigned repulsive potentials. These potentials create a repulsive force that pushes the robot away from obstacles. The strength of the repulsion increases as the robot gets closer to the obstacles, preventing collisions.

  3. Superposition: The total potential at any given point in the environment is the combination of the attractive potential towards the goal and the repulsive potential due to nearby obstacles. The robot calculates the net force at its current position based on these potential fields.

  4. Motion Planning: Using the net force calculation, the robot determines the direction it should move in to minimize the potential function. Typically, the robot follows a gradient descent approach, which means it moves in the direction opposite to the gradient of the potential function at its current position. This allows the robot to naturally move towards the goal and avoid obstacles.

Iterative Process: The robot repeats this process multiple times, making small adjustments to its position based on the current net force calculation. This iterative process continues until the robot reaches the goal or a predefined termination condition is met.

Advantages of the Potential Field Method:

It is relatively simple to implement and computationally efficient, making it suitable for real-time applications. The method naturally handles dynamic environments, as obstacles are continuously avoided based on their current positions and the robot’s movement. It allows for the incorporation of different weights and functions for attractive and repulsive potentials, enabling fine-tuning of the robot’s behavior.

However, the potential field method also has some limitations:

It may suffer from local minima, where the robot becomes trapped in a potential well and cannot reach the goal. In complex environments, the robot may experience oscillations or get stuck in narrow passages between obstacles. It does not guarantee optimality in finding the shortest path to the goal, as it relies on local information rather than global planning.

In practice, the potential field method can be combined with other planning algorithms to address its limitations and improve the robot’s overall performance.

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged potential_field at Robotics Stack Exchange

No version for distro noetic. Known supported distros are highlighted in the buttons above.
No version for distro ardent. Known supported distros are highlighted in the buttons above.
No version for distro bouncy. Known supported distros are highlighted in the buttons above.
No version for distro crystal. Known supported distros are highlighted in the buttons above.
No version for distro eloquent. Known supported distros are highlighted in the buttons above.
No version for distro dashing. Known supported distros are highlighted in the buttons above.
No version for distro galactic. Known supported distros are highlighted in the buttons above.
No version for distro foxy. Known supported distros are highlighted in the buttons above.
No version for distro iron. Known supported distros are highlighted in the buttons above.
No version for distro lunar. Known supported distros are highlighted in the buttons above.
No version for distro jade. Known supported distros are highlighted in the buttons above.
No version for distro indigo. Known supported distros are highlighted in the buttons above.
No version for distro hydro. Known supported distros are highlighted in the buttons above.
No version for distro kinetic. Known supported distros are highlighted in the buttons above.
No version for distro melodic. Known supported distros are highlighted in the buttons above.