andretag / mav_sim

A simple, lightweight Python/PyBullet-based Micro Aerial Vehicles simulator - Code for our work "Output-Feedback Tube MPC Guided Data Augmentation for Efficient, Robust Sensorimotor Policy Learning", IROS 2022

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mav_sim: a Simple, Minimal Micro Aerial Vehicles Simulator for Sensorimotor Policy Learning

Quadcopter artwork: Chiara Tagliabue

mav_sim is a simple, lightweight simulator for Micro Aerial Vehicles (quadrotors and any generic multirotor), based on Python/Pybullet, ideal to be used as simulation engine when wrapped around an Open AI gym interface for motor/sensorimotor policy learning. mav_sim simulates the 6-degrees of freedom rigid body dynamics of an UAV with an onboard camera that generates syntetic images of the MIT Highbay, an indoor flight space.

This is the simulation framework associated with the following publication:

A. Tagliabue, J. P. How, "Output Feedback Tube MPC-Guided Data Augmentation for Efficient, Robust Sensorimotor Policy Learning", IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), 2022. Arxiv PDF.

Earlier/modified versions of this work were also used for the following publications:

A. Tagliabue, D.-K. Kim, M. Everett and J. P. How, "Demonstration-Efficient Guided Policy Search via Imitation of Robust Tube MPC", International Conference on Robotics and Automation (ICRA), 2022. Arxiv PDF, Video.

Citation

If you find this work useful for your research, please consider citing:

@INPROCEEDINGS{tagliabue2022output,
  author={Tagliabue, Andrea and How, Jonathan P.},
  booktitle={2022 International Conference on Intelligent Robots and Systems (IROS)}, 
  title={Output Feedback Tube MPC-Guided Data Augmentation for Efficient, Robust Sensorimotor Policy Learning}, 
  year={2022},
  volume={},
  number={},
  pages={},
  doi={}}

or

@INPROCEEDINGS{tagliabue2022demonstration,
  author={Tagliabue, Andrea and Kim, Dong-Ki and Everett, Michael and How, Jonathan P.},
  booktitle={2022 International Conference on Robotics and Automation (ICRA)}, 
  title={Demonstration-Efficient Guided Policy Search via Imitation of Robust Tube MPC}, 
  year={2022},
  volume={},
  number={},
  pages={462-468},
  doi={10.1109/ICRA46639.2022.9812122}}

Credits

mav_sim is inspired by the excellent Gym Pybullet Drones. mav_sim focus is on providing a simple, minimal, single agent simulation framework that can be easily adapted and interfaced with your own Python pipelines (Gym, ROS, ...), with a focus on accurate MAV dynamics, easily configurable parameters (via yacs), and the generation of photorelistic images from a 3D mesh obtained from real images. Our framework additionally includes a state-of-the-art geometric attitude controller, based on this work:

T. Lee, M. Leok and N. H. McClamroch, "Geometric tracking control of a quadrotor UAV on SE(3)," 49th IEEE Conference on Decision and Control (CDC), 2010, pp. 5420-5425, doi: 10.1109/CDC.2010.5717652.

Installation:

pip install -e mav_sim

Example usage:

import numpy as np
from mav_sim.simulator import MavSim
from mav_sim.config import cfg # exposes all the loaded parameters
mav_sim = MavSim("HX14.yaml")  # can replace "HX14.yaml" with your own custom UAV & simulation parameters.

# Define setpoints for attitude controller
B_thrust = np.array([0.0, 0.0, cfg.rbt.mass*cfg.sim.gravity]) # Dummy, computed by high-level controller
B_rpy_ref = np.zeros(3)   # Dummy, computed by high-level controller
B_omega_ref = np.zeros(3) # Dummy, computed by high-level controller

# Step attitude-controlled simualtion: 
N_steps = 100
for i in range(N_steps):
  obs = mav_sim.step_attitude_control_and_dynamics(B_thrust, B_rpy_ref, B_omega_ref) 
  # obs contains pos, vel, roll, pitch in world-aligned frame

for a more complete example, please see mav_sim_example.ipynb.

Useful resources:

TODOs:

  • Add examples with simple position control feedback.
  • Add examples to visualize images.
  • Document in readme input output of controllers.
  • Add examples of gym interface.

Acknowledgement

This work was funded by the Air Force Office of Scientific Research MURI FA9550-19-1-0386.

About

A simple, lightweight Python/PyBullet-based Micro Aerial Vehicles simulator - Code for our work "Output-Feedback Tube MPC Guided Data Augmentation for Efficient, Robust Sensorimotor Policy Learning", IROS 2022

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Jupyter Notebook 68.4%Language:Python 31.6%