Path Planning · Potential Field Back
Robotics · Path Planning

Robot Path Planning · Potential Field Method Simulator

Real-time robot (point mass) path computation in a combined attractive/repulsive potential field. Includes potential color map, local minima detection, and simple RRT comparison.

Parameters
Potential Coefficients
Attractive coefficient k_att1.00
Repulsive coefficient k_rep1.00
Influence radius d₀0.30
Start / Goal
Start X0.10
Start Y0.10
Goal X0.90
Goal Y0.90
Obstacles (3)
Path Length
Iterations
Local Minima
Compute Time [ms]
Path Efficiency
Goal Reached

Potential Field Equations

Attractive potential:

$$U_{att} = \tfrac{1}{2} k_{att} \cdot d_{goal}^2$$

Repulsive potential (when $d_{obs} < d_0$):

$$U_{rep} = \tfrac{1}{2} k_{rep} \left(\frac{1}{d_{obs}} - \frac{1}{d_0}\right)^2$$

Resultant force: $\mathbf{F} = -\nabla(U_{att} + \sum U_{rep})$

CAE Integration: Path computation for autonomous transport robots (AGV/AMR) / initial design of space debris avoidance trajectories / analogous concept to sensitivity fields in structural topology optimization.