Navigation function
Navigation function usually refers to a function of position, velocity, acceleration and time which is used to plan robot trajectories through the environment. Generally, the goal of a navigation function is to create feasible, safe paths that avoid obstacles while allowing a robot to move from its starting configuration to its goal configuration.
Potential functions as navigation functions

Potential functions assume that the environment or work space is known. Obstacles are assigned a high potential value, and the goal position is assigned a low potential. To reach the goal position, a robot only needs to follow the negative gradient of the surface.
We can formalize this concept mathematically as following: Let be the state space of all possible configurations of a robot. Let denote the goal region of the state space.
Then a potential function is called a (feasible) navigation function if [1]
- if and only if no point in is reachable from .
- For every reachable state, , the local operator produces a state for which .
Probabilistic navigation function
Probabilistic navigation function is an extension of the classical NF for static stochastic scenarios. Such a function is defined by introducing an additional permitted collision probability, which limits the risks (to a set value) during motion. The Minkowski sum used for in the classical definition is replaced with their respective Probability Density Functions, that represent their locations’ uncertainties. The probability for a collision is therefore the convolution of the geometries and the Probability Density Functionss of their locations.[2]
Denoting the target position by , the NF is defined at a point as: where is a predefined constant, which ensures the Morse nature of the function. is the distance to the target position , and accounts for all obstacles and is independent of the target position .
The numerator is defined in such a way to attracted to the target position, while the denominator ensures obstacle avoidance. Considering a stochastic scenario, one would like to minimize the probability for a collision while maintaining the shortest path to the target. Defining, where is based on the probability for a collision at location for the deterministic scenario, is a function of the distance between and the obstacle's boundary).
Since the pairwise separation constraint between the obstacles makes the obstacles’ locations dependent, the function is not a probability function. A threshold value for collision probability is set by replacing the obstacles' geometric edges with the edges of that probability region. In a deterministic scenario, decreases the distance between and the target position while avoiding the obstacles. In a stochastic scenario, the probability for a collision is limited by a predetermined value . In order to do so, one defines as a function that encloses the risk for a collision at : and,
Thus, and vanish on the extended boundaries of each obstacle defined by , where the maximal probability for a collision is . Note that refers to the external boundary, computed on the PDF of the robot. Moreover, is computed for each obstacle, while the PNF integrates these for all obstacles throughout the workspace.
A map is said to be a probabilistic navigation function if it satisfies the following conditions:
- It is a navigation function.
- The probability for a collision is bounded by a predefined probability .
Navigation Function in Optimal Control
While for certain applications, it suffices to have a feasible navigation function, in many cases it is desirable to have an optimal navigation function with respect to a given cost functional . Formalized as an optimal control problem, we can write
whereby is the state, is the control to apply, is a cost at a certain state if we apply a control , and models the transition dynamics of the system.
Applying Bellman's principle of optimality the optimal cost-to-go function is defined as
Together with the above defined axioms we can define the optimal navigation function as
- if and only if no point in is reachable from .
- For every reachable state, , the local operator produces a state for which .
Stochastic Navigation Function
If we assume the transition dynamics of the system or the cost function as subjected to noise, we obtain a stochastic optimal control problem with a cost and dynamics . In the field of reinforcement learning the cost is replaced by a reward function and the dynamics by the transition probabilities .
See also
References
- ^ Lavalle, Steven, Planning Algorithms Chapter 8
- ^ Hacohen, S., Shoval, S. and Shvalb, N. Hacohen, Shlomi et al. "Probability Navigation Function For Stochastic Static Environments". International Journal Of Control, Automation And Systems, vol 17, no. 8, 2019, pp. 2097-2113. Springer Science And Business Media LLC, doi:10.1007/s12555-018-0563-2. Accessed 20 Aug 2020.
- Sources
- LaValle, Steven M. (2006), Planning Algorithms (First ed.), Cambridge University Press, ISBN 978-0-521-86205-9
- Laumond, Jean-Paul (1998), Robot Motion Planning and Control (First ed.), Springer, ISBN 3-540-76219-1
External links
- NFsim: MATLAB Toolbox for motion planning using Navigation Functions.