All Projects → ZJU-FAST-Lab → CMPCC

ZJU-FAST-Lab / CMPCC

Licence: other
CMPCC: Corridor-based Model PredictiveContouring Control for Aggressive Drone Flight

Programming Languages

c
50402 projects - #5 most used programming language
C++
36643 projects - #6 most used programming language
python
139335 projects - #7 most used programming language
CMake
9771 projects
EmberScript
38 projects
shell
77523 projects

CMPCC

Corridor-based Model Predictive Contouring Control for Aggressive Drone Flight

0. Overview

CMPCC is an efficient, receding horizon, local adaptive low level planner as the middle layer between our original planner and controller trr.

Author: Jialin Ji, Xin Zhou and Fei Gao from the ZJU Fast Lab.

Related Paper: CMPCC: Corridor-based Model PredictiveContouring Control for Aggressive Drone Flight, Jialin Ji, Xin Zhou, Chao Xu, Fei Gao, accepted, International Symposium on Experimental Robotics (ISER 2020).

Video Links: youtube or bilibili

Features

  • online flight speed optimization
  • strict safety and feasibility
  • real-time performance

File Structure

  • src/cmpcc: key module of CMPCC, which is a single ros package
  • src/simualtion: a lightweight simulator for quadrotors
  • src/utils: some functional codes and plugins
  • osqp: a copy of OSQP source code for solving qp problem.
  • key2joy.py: a user-interface tool based on pygame for setting disturbance

1. Prerequisites

Our software is developed and tested in Ubuntu 18.04, ROS Melodic. Other version may require minor modification.

You can clone this repository:

git clone https://github.com/ZJU-FAST-Lab/CMPCC.git
cd CMPCC

To install the following dependencies, you can run the auto-install script by

chmod +x install_tools.sh
./install_tools.sh

If failed, you can manually install them one by one:

  • install dependencies
sudo apt-get install libyaml-cpp-dev
sudo apt-get install libarmadillo-dev
  • install pygame for key2joy.py
sudo apt-get install python-pip
pip install pygame
  • install osqp
cd osqp
mkdir build
cd build
cmake -G "Unix Makefiles" ..
cmake --build .
sudo cmake --build . --target install

2. Build on ROS

After the prerequisites are satisfied, you can catkin_make in this repository directory, which is already a ros-workspace:

catkin_make

3. Run the Simulation

source devel/setup.bash
./simulation.sh

You can set wind disturbance with keyboard "WASD". The default disturbance is quite fierce. If the drone flew outside the corridor, you would have to relauch the nodes.

4. Licence

The source code is released under GPLv3 license.

5. Maintaince

For any technical issues, please contact Jialin JI ([email protected]) or Fei GAO ([email protected]).

For commercial inquiries, please contact Fei GAO ([email protected]).

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].