Linear-quadratic regulator rapidly exploring random tree
This article, Linear-quadratic regulator rapidly exploring random tree, has recently been created via the Articles for creation process. Please check to see if the reviewer has accidentally left this template after accepting the draft and take appropriate action as necessary.
Reviewer tools: Inform author |
Comment: This appears to be original research and as such cannot be accepted as an article. To be notable as a Wikipedia topic, it needs multiple reliably published secondary sources (such as survey articles or books) that cover this specific topic in-depth and are independent of the topic (that is, by people other than its creators). Without such sources we cannot have an article. โDavid Eppstein (talk) 20:27, 7 July 2020 (UTC)
Class | Kinodynamic motion planning |
---|---|
Worst-case performance | O(n log n) |
Worst-case space complexity | O(n) |
Linear-quadratic regulator rapidly-exploring random tree (LQR-RRT) is a sampling based algorithm for kinodynamic planning. A solver is producing random actions which are forming a funnel in the state space. The generated tree is the action sequence which fulfills the cost function. The restriction is, that a prediction model, based on differential equations, is available to simulate a physical system.
Motivation

The control theory is using differential equations to describe complex physical systems like an inverted pendulum.[1] A set of differential equations forms a physics engine which maps the control input to the state space of the system. The forward model is able to simulate the given domain. For example, if the user pushes a cart to the left, a pendulum mounted on the cart will react with a motion. The exact force is determined by newton's laws of motion.
A solver, for example PID controllers and model predictive control, are able to bring the simulated system into a goal state. From an abstract point of view, the problem of controlling a complex physical system is a kinodynamic motion planning problem.[2] In contrast to a normal path planning problem, the state space isn't only a 2d map which contains of x and y coordinates. But a physical underactuated system has much more dimension, e.g. the applied forces, rotating angles and friction to the ground.[3] Finding a feasible trajectory in the complex state space is a demanding problem for mathematics.
Description
LQR tracking

Linear-quadratic regulator (LQR) is a goal formulation for a system of differential equations.[4] It defines a cost function but doesn't answer the question of how to bring the system into the desired state. In contrast to linear problems, for example a line following robot, kinodynamic problems can be solved not with a single action but with a trajectory of many control signals. These signals are determined and constantly updated with the receding horizon strategy, also known as model predictive control (MPC). LQR tracking means to find and evaluate trajectories for solving a system of differential equations.
In contrast to a PID controller, which is only able to find the next control action, a LQR tree is able to store a sequence of actions in advance.[5] This is equal to a multistage solver which keeps the time horizon in mind. An action taken in the now will affect the system indirectly in the future with a delayed feedback.
Criticism
Technical concerns
The algorithm wasn't able to stabilize the slipping bicycle model at certain configurations in the Matlab environment.[6] The reason is, that dynamical systems are too complex for the LQR-Tree searching algorithm. Another concern is, that the algorithm can't update the predictive model during runtime. Only learning based model predictive control is able to do so.[7]
From a reception perspective
The algorithm isn't recommended for practical applications, but it is a university-driven research project. The first version was developed at the Massachusetts Institute of Technology in 2012 in the AI laboratory.[3] With a small delay, the algorithm was adapted in the year 2016 by other academic robotics teams like University of Florida for building experimental path planners.[8] In 2018, the algorithm was included in the Pythonrobotics library.[9]
References
- ^ "How Long Does It Take for a Pencil to Tip Over?". WIRED. 2014-09-03. Retrieved 2020-08-19.
- ^ Adnan Tahirovic and Faris Janjos (2018). A Class of SDRE-RRT Based Kinodynamic Motion Planners. 2018 Annual American Control Conference (ACC). IEEE. doi:10.23919/acc.2018.8431412.
- ^ a b Alejandro Perez and Robert Platt and George Konidaris and Leslie Kaelbling and Tomas Lozano-Perez (2012). LQR-RRT*: Optimal sampling-based motion planning with automatically derived extension heuristics. 2012 IEEE International Conference on Robotics and Automation. IEEE. doi:10.1109/icra.2012.6225177.
- ^ "Watch An Inverted Pendulum - Arduino-Driven". i-programmer. 2018-06-02. Retrieved 2020-08-19.
- ^ Philipp Reist and Pascal Preiswerk and Russ Tedrake (2016). "Feedback-motion-planning with simulation-based LQR-trees". The International Journal of Robotics Research. 35 (11). SAGE Publications: 1393--1416. doi:10.1177/0278364916647192.
- ^ Steve M Levine (2012). Sampling-based Planning Algorithms Applied to Bicycles.
- ^ Patrick Bouffard and Anil Aswani and Claire Tomlin (2012). Learning-based model predictive control on a quadrotor: Onboard implementation and experimental results. 2012 IEEE International Conference on Robotics and Automation. IEEE. doi:10.1109/icra.2012.6225035.
- ^ Frank, Daniel and Gray, Andrew and Allen, Kevin and Bianchi, Tess and Cohen, Kipling and Dugger, Daniel and Easterling, Jake and Griessler, Matthew and Hyman, Sylvie and Langford, Matthew (2016). University of florida: Team navigator ams. RobotX Forum.
{{cite conference}}
: CS1 maint: multiple names: authors list (link) - ^ Sakai, Atsushi and Ingram, Daniel and Dinius, Joseph and Chawla, Karan and Raffin, Antonin and Paques, Alexis (2018). "PythonRobotics: a Python code collection of robotics algorithms". arXiv:1808.10703.
{{cite arXiv}}
: CS1 maint: multiple names: authors list (link)
- Category:Optimal control
- Category:Search algorithms
This article, Linear-quadratic regulator rapidly exploring random tree, has recently been created via the Articles for creation process. Please check to see if the reviewer has accidentally left this template after accepting the draft and take appropriate action as necessary.
Reviewer tools: Inform author |