Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 1.51 KB

multi_vehicle_jmavsim.md

File metadata and controls

40 lines (30 loc) · 1.51 KB

Multi-Vehicle Simulation with JMAVSim

This topic explains how to simulate multiple UAV (multicopter) vehicles using JMAVSim and SITL. All vehicle instances are started at the same position in the simulation.

Tip This is the easiest way to simulate multiple vehicles running PX4. It is suitable for testing multi-vehicle support in QGroundControl (or the Dronecode SDK, etc.). Multi-Vehicle Simulation with Gazebo should be used for swarm simulations with many vehicles, or for testing features like computer vision that are only supported by Gazebo.

Note JMAVSim multi-vehicle simulation works on PX4 v1.8.0 and later.

How to Start Multiple Instances

To start multiple instances (on separate ports):

  1. Build PX4
    make posix_sitl_default
    
  2. Run sitl_multiple_run.sh, specifying the number of instances to start (e.g. 2):
    ./Tools/sitl_multiple_run.sh 2
    
  3. Start the first instance:
    ./Tools/jmavsim_run.sh
    
1. Start subsequent instances, specifying the *simulation* UDP port for the instance:

./Tools/jmavsim_run.sh -p 14561

The port should be set to `14560+i` for `i` in `[0, N-1]`.

*QGroundControl* and developer APIs (e.g. Dronecode SDK) connect to all instances using the normal/default ports (14550 and 14540, respectively).

## Additional Resources

* See [Simulation](../simulation/README.md) for more information about the UDP port configuration.