An object-based toolbox for robot dynamic simulation, analysis, control and planning.
Computed torque controller | Sliding mode controller |
---|---|
Dynamic programming | Optimal torque policy |
Rapidly-exploring random tree planning | Direct collocation trajectory optimisation |
The concept of this toolbox is a hierachy of dynamic system objects, from the most generic representation (any non-linear differential equations) to more system specific representations such as mechanical system (second order equations), linear state space, manipulator equations, etc. This structure is then leveraged by analysis tools, from generic tools that work for all sub-class of dynamic systems such as running simulation and phase-plane analysis, to system-specific tools that leverage specific system propreties such as modal analysis for linear sub-class:
The core of the library is a mother dynamic system class defined by a differential equation
To learn how to use pyro, see the following notebook tutorials hosted on colab:
- The Dynamic System class and basic functionnality
- Creating a custom dynamic class
- Closed-loop system and controllers objects
- The Linear System class (comin soon..)
- The Mechanical System class (coming soon..)
- The Manipulator Robot class
Also see exemples scripts in pyro/examples/
and tutorial video (in french) on youtube: here
Pyro is built only using core python librairies:
- numpy
- scipy
- matplotlib
!git clone https://github.com/SherbyRobotics/pyro
import sys
sys.path.append('/content/pyro')
import pyro
Download anaconda (including spyder IDE) available here: https://www.anaconda.com/products/individual
option a) Using git to clone the repo:
git clone https://github.com/SherbyRobotics/pyro.git
in the folder of your choice.
option b) Download the .zip using the Code/Download Zip link at the top of this page, and then unzip in the folder of your choice.
option a) [Easy spyder IDE only] Add it this the spyder menu at python/PYTHONPATH manager.
In order to run pyro in the terminal directly of in another IDE like VS code, option b) or c) should be used.
option b) [conda]
conda develop /PATH/TO/PYRO
option c) [pip] Go to the root directory of the pyro folder and run:
python -m pip install -e .
By default pyro will try to use matplotlib Qt5Agg backend and interactive mode. You can modify the default graphical behavior by modifying the headers of the file pyro/analysis/graphical.py In spyder IDE, you cand also change the graphics backend in the menu at python/Preferences/IPython console/Backend. Inline does not allow animations, it is best to use Automatic (for Windows and Ubuntu) or OS X (for Mac).
- Continuous Dynamic system :
$\dot{x} = f(x,u)$ - Linear System :
$\dot{x} = A x + B u $ - Transfer function
- Exemples: mass-spring-damper
- Mechanical System :
$H(q)\ddot{q} + C(\dot{q},q)\dot{q} = \sum F $ - Manipulator Robot :
$\dot{r} = J(q) \dot{q}$ - Exemples: two link plananr robot
- Exemples: five link plannar robot
- Exemples: three link robot
- Exemples: single pendulum
- Exemples: double pendulum
- Exemples: cart-pole
- Exemples: planar drone
- Exemples: rocket
- Manipulator Robot :
- Exemples: bicycle model (planar vehicle)
- Linear
- PID
- LQR
- Computed-Torque
- Sliding-mode controller
- End-point impedance controller for robot arms
- End-point trajectory controller for robot arms
- Tabular look-up table controller (generated by the value-iteration algorithm)
- RRT tree search
- Direct collocation trajectory optimisation
- Dynamic programming and value-iteration
- Copmuting simulation
- Phase-plane analysis
- Graphical animated output of the simulations
- Cost function computation
- Linearisation (from any dynamic class to the state-space class)
- Modal analysis
- Pole/zero computation
- Bode plot
- Reachability