System Overview

Overview

We present a comprehensive design and implementation for a micro aerial vehicle (MAV) that is able to perform 3D autonomous navigation and obstacle avoidance in cluttered and realistic unknown environments without the aid of GPS and other external sensors or markers.

The branch leviosa-master is made for the fast flight project. Proposed modularized components are developed and tested for the MAVs, including MPC trajectory generator, task manager, simulator, as well as a friendly user interface.

Demo Video

Hardware Design

The final platform was a 2.6kg octo-rotor configuration utilizing a 2213 size brushless dc motor rated at 920kV which was paired with a 9.5” in diameter by 4.5” pitch propeller with self-locking propeller hubs together with electronic speed controllers rated for 20A continuous current usage at up to 500Hz. Each propulsor was capable of providing up to 1kg of thrust when used with a 4S lithium polymer battery.

Hardware Design

Software Architecture

ROS was chosen as our communication framework because it provides a convenient way to realize the interaction between different modules. The modules can be categorized into the following main parts: state estimation, mapping and motion planning, target detection, and tracking, etc. The modules can be categorized into the following main parts: state estimation, mapping & motion planning, and flight controller unit. Sensor data consists of velocity from the camera, acceleration and angular velocity from IMU are fused into the error-state extended Kalman filter to get state estimation result, which will be feed into the extended Kalman filter on Pixhawk with height measurement from laser to further improve the result. The depth image is used to generate an occupancy grid map which will be transferred to the Euclidean distance field as a cost map. Mission targets from either UI selection or the target tracking results and the cost map are given to the motion planner to create a valid and obstacle-free trajectory to control the UAV.

System Design with Obstacle Avoidance (Ddrone)

System Design with no Obstacle Avoidance (Kerrigan)

Installation

Take leviosa_drone repo as an example. Others can refer to the following steps or the readme file within the repo.

1. Prerequisite

  • TX2 or PC installed with Ubuntu 18.04, check out this TX2 Flashing Guide.
  • ROS melodic and catkin installed
  • screen installed `sudo apt-get install screen`
  • for flight mode, pixhawk is installed with correct version of firmware.

2. Download package and compile

Running following command to download the script for install, replace the <username>:<Pwd> with your account.

$ wget --ask-password --user=YOURNAME -c https://bitbucket.org/nusuav/leviosa_drone/src/master/leviosa_setup.sh

eg:

wget --ask-password --user=yu_zhou -c https://bitbucket.org/nusuav/leviosa_drone/src/master/leviosa_setup.sh 

Setup working Dir and install. Noted that the script will make the directory of catkin_ws.

$ sh leviosa_setup.sh

The default directory is /media/nvidia/SD/. if you want to install the package in other directory, set the KERRIGAN_DRONE_DIR before running the script:

$ export KERRIGAN_DRONE_DIR="/media/nvidia/SD/"
$ sh leviosa_setup.sh

3. Install VIO

$git clone https://github.com/chengguizi/tiscamera_ros.git
$git clone https://github.com/chengguizi/basalt-mirror.git
$catkin build

The Image for TX2

If you need to set up a new TX2, kindly refer to the the steps in TX2 flashing guide in post section.

Usage

1. Configuration

Normally the only thing you need to config is the system_id and simulator_id, which is handled by the person who installed the package. There are several parameters in /ddrone_task_manager/launch/kerrigan.launch. Kindly don’t change any of them in the file directly. You can modify the param you want by adding param_name:=value at the end of your launch command.

  • simulation (Default: “ture” )

  • camera (Default: “false”)

  • simulator_server_ip (Default: 192.168.1.144): IP of Unity simulator

  • simulator_id: id of multiple simulators

  • flightHeight (Default: 10): Take off height

  • ctrlpred_location: the loacation of the trajectory generation policy

  • points_file: waypoints of trajectory file locations

  • pointsSource: set waypoints command from UI or file directly

  • yaw_control: set whether you want to control yaw angle or not

  • log_dir (Default: /media/nvidia/SD/catkin_ws/logs/rt_ref_gen) Directory of log files: trajectory, velocity command and position command.

    "traj*" is output from MPC with the data format of:  time, px, py, pz, vx, vy, vz, ax, ay, az, yaw.
    "vcmd*" is velocity command from the swarm algo : time, vx, vy, vz.
    "pcmd*" is the position command from either task manager or swarm algo: time, px, py, pz.
    

Kindly refer to the documentation page for published and subscribed topics.

2. Script Files

Script files are provided under ddrone_task_manager for use with common application:

Examples:
simulation mode:

roscd ddrone_task_manager/
sh scripts/kerrigan_simulation.sh

Flight mode:

roscd ddrone_task_manager/
sh scripts/kerrigan.sh
  • After running the command, you should see output like

    “The system is booting…
    roscore ready.
    kerrigan_drone_id: 18
    simulator_id: 5
    kerrigan Drone Ready.
    caApp Ready. purpleBox Ready”

  • The system ID and simulator ID are set in \ddrone_task_manager\configs\System_ID.param. It will auto generate if the file is not existing when you run script. Id the id out is none or not the same as your want, please change the id in System_ID.param. and run the script again.

  • To stop the ROS program, please run:
    pkill screen

  • If you don’t want to test it with swarm algo, then you can using launch file:

    roslaunch ddrone_task_manager kerrigan.launch

  • Append param_name:=value if you want to change some parameters at the same time. Examples:
    roslaunch ddrone_task_manager kerrigan.launch simulation:="false"

3. launch web-based UI

Please check out the page of web-based UI

4. Usage of waypoints fly function

  1. set ‘pointsSource’ as 0 in your launch file.

    Simply add <arg name="pointsSource" default="0"/>

  2. set waypoints location in your launch file

    E.g. ‘

  3. waypoints format

    Each line of the file should be x y and z value in NWU frame of the waypoint.

    For example.

    1.0 1.0 2.5
    1.0 4.0 2.5
    1.0 7.0 2.5
    2.0 7.0 2.5
    
  4. Using the commandline to send command to the drone

MISSION means waypoints fly.

rostopic /pub /mission_from_ui_16 std_msgs/Byte '{data: 0}'

The meaning of the number in the command:
#define ENGINE0 0
#define TAKEOFF 1
#define MISSION 2
#define SWARM 3
#define HOVER 4
#define LAND 5
Change 16 according to your UAV's id.
  1. Using the Web-UI to send command to the drone

Just click MISSION button.

4. ros nodegraphs between packages

overview nodegraph

Last update: 08/08/2020

Yu Zhou
Yu Zhou
Associate Scientist @Temasek Laboratories

My research interests lie in 3D visual perception and navigation, applied machine learning and autonomous systems!