Paparazzi UAS  v5.18.0_stable
Paparazzi is a free software Unmanned Aircraft System.
fdm_gazebo module

Gazebo backend for NPS simulator

NPS doc: http://wiki.paparazziuav.org/wiki/NPS

Usage:

  1. Make sure gazebo 9 is installed. (sudo apt-get install gazebo9 libgazebo9-dev)
  2. Prepare the Gazebo world and model:
    1. Prepare the UAV model (see conf/simulator/gazebo/models/ardrone/):
      • Place the aircraft model in the conf/simulator/gazebo/models/ folder, this folder is added to Gazebo's search path when NPS is launched.
      • Gazebo uses a Front, Left, Up coordinate system for aircraft, so make sure the +x axis points forwards.
      • The model should include a link for each motor with the same names as those listed in NPS_ACTUATOR_NAMES (see below), e.g. 'nw_motor'.
      • Camera links should have the name specified in .dev_name in the corresponding video_config_t struct, see sw/airborne/boards/pc_sim.h and sw/airborne/modules/computer_vision/video_thread_nps.c.
    2. Prepare the world (see conf/simulator/gazebo/worlds/ardrone.world). Pay attention to the following:
      • The real-time update rate should be set to zero, as this is already handled by Paparazzi:
        <physics type="ode">
        <max_step_size>0.001</max_step_size>
        <real_time_update_rate>0</real_time_update_rate><!-- Handled by Paparazzi! -->
        </physics>
      • Spherical coordinates should be provided for navigation. At this moment, there is an issue where Gazebo incorrectly uses a WSU coordinate system instead of ENU. This can be fixed by setting the heading to 180 degrees as shown below:
        <spherical_coordinates>
        <surface_model>EARTH_WGS84</surface_model>
        <latitude_deg>51.9906</latitude_deg>
        <longitude_deg>4.37679</longitude_deg>
        <elevation>0</elevation>
        <heading_deg>180</heading_deg><!-- Temporary fix for issue https://bitbucket.org/osrf/gazebo/issues/2022/default-sphericalcoordinates-frame-should -->
        </spherical_coordinates>
  3. Prepare the airframe file (see examples/ardrone2_gazebo.xml):
    1. Select Gazebo as the FDM (Flight Dynamics Model)
      <target name="nps" board="pc">
      <module name="fdm" type="gazebo"/>
      </target>
    2. Include the gazebo defines for the vehicle:
      <section name="SIMULATOR" prefix="NPS_">
      ...
      </section>
      <include href="conf/simulator/gazebo/airframes/ardrone2.xml"/>
      • If conf/simulator/gazebo/airframes does not contain an xml for the vehicle model, it should be created with the following contents:
        1. Actuator thrusts and torques
          <!DOCTYPE airframe SYSTEM "../../../airframes/airframe.dtd">
          <airframe>
          <section name="SIMULATOR" prefix="NPS_">
          <define name="ACTUATOR_THRUSTS" value="1.55, 1.55, 1.55, 1.55" type="float[]"/>
          <define name="ACTUATOR_TORQUES" value="0.155, 0.155, 0.155, 0.155" type="float[]"/>
          ...
          </section>
          </airframe>
          The thrusts and torques are expressed in SI units (N, Nm) and should be in the same order as the ACTUATOR_NAMES defined in the airframe file. The torque direction is determined automatically from the motor mixing.
        2. (Optional) Add actuator dynamics to the SIMULATOR section:
          <section name="SIMULATOR" prefix="NPS_">
          ...
          <define name="ACTUATOR_TIME_CONSTANTS" value="0.02, 0.02, 0.02, 0.02" type="float[]"/>
          <define name="ACTUATOR_MAX_ANGULAR_MOMENTUM" value="0.19, 0.19, 0.19, 0.19" type="float[]"/>
          ...
          </section>
          Actuator time constants can be provided without specifying the actuator's maximum angular momentum. If the maximum angular momentum is provided as well, it is used to calculate the rotor spin-up torque.
        3. In the same section, bypass the AHRS and INS as these are not supported yet:
          <section name="SIMULATOR" prefix="NPS_">
          ...
          <define name="BYPASS_AHRS" value="1"/>
          <define name="BYPASS_INS" value="1"/>
          ...
          </section>
        4. If required, enable video thread simulation:
          <section name="SIMULATOR" prefix="NPS_">
          ...
          <define name="SIMULATE_VIDEO" value="1"/>
          ...
          </section>
        5. Set the aircraft model in the xml file:
          <section name="SIMULATOR" prefix="NPS_">
          ...
          <define name="GAZEBO_AC_NAME" value="my_uav"/>
          </section>
    3. Make sure all included modules work with nps. At the moment, most of the modules that depend on video_thread are only built when ap is selected as the target. To fix this, add nps to the target attribute in the module xml, e.g.:
      <makefile target="ap|nps">
  4. The simulation environment is set in the flight plan file:
    <flight_plan ...>
    <header>
    ...
    #define NPS_GAZEBO_WORLD "my.world"
    </header>
    ...
    </flight_plan>

Example for airframe file

Add to your firmware section: This example contains all possible configuration options, not all of them are mandatory!

<module name="fdm_gazebo">
b'<configure name="NPS_DEBUG_VIDEO" value="0|1" />\n '
</module>

Module configuration options

Configure Options

  • name: NPS_DEBUG_VIDEO value: 0|1
    Description: show window with video for debugging

Files

Source Files

Raw fdm_gazebo.xml file:

<!DOCTYPE module SYSTEM "module.dtd">
<module name="fdm_gazebo" dir="fdm">
<doc>
<description>
Gazebo backend for NPS simulator
NPS doc: http://wiki.paparazziuav.org/wiki/NPS
Usage:
1. Make sure gazebo 9 is installed. (sudo apt-get install gazebo9 libgazebo9-dev)
2. Prepare the Gazebo world and model:
1. Prepare the UAV model (see conf/simulator/gazebo/models/ardrone/):
- Place the aircraft model in the conf/simulator/gazebo/models/
folder, this folder is added to Gazebo&apos;s search path when NPS is
launched.
- Gazebo uses a Front, Left, Up coordinate system for aircraft, so
make sure the +x axis points forwards.
- The model should include a link for each motor with the same names
as those listed in NPS_ACTUATOR_NAMES (see below), e.g. &apos;nw_motor&apos;.
- Camera links should have the name specified in .dev_name in the
corresponding video_config_t struct, see sw/airborne/boards/pc_sim.h
and sw/airborne/modules/computer_vision/video_thread_nps.c.
2. Prepare the world (see conf/simulator/gazebo/worlds/ardrone.world).
Pay attention to the following:
- The real-time update rate should be set to zero, as this is
already handled by Paparazzi:
@code{.xml}
&lt;physics type=&quot;ode&quot;&gt;
&lt;max_step_size&gt;0.001&lt;/max_step_size&gt;
&lt;real_time_update_rate&gt;0&lt;/real_time_update_rate&gt;&lt;!-- Handled by Paparazzi! --&gt;
&lt;/physics&gt;
@endcode
- Spherical coordinates should be provided for navigation.
At this moment, there is an issue where Gazebo incorrectly
uses a WSU coordinate system instead of ENU. This can be fixed
by setting the heading to 180 degrees as shown below:
@code{.xml}
&lt;spherical_coordinates&gt;
&lt;surface_model&gt;EARTH_WGS84&lt;/surface_model&gt;
&lt;latitude_deg&gt;51.9906&lt;/latitude_deg&gt;
&lt;longitude_deg&gt;4.37679&lt;/longitude_deg&gt;
&lt;elevation&gt;0&lt;/elevation&gt;
&lt;heading_deg&gt;180&lt;/heading_deg&gt;&lt;!-- Temporary fix for issue https://bitbucket.org/osrf/gazebo/issues/2022/default-sphericalcoordinates-frame-should --&gt;
&lt;/spherical_coordinates&gt;
@endcode
3. Prepare the airframe file (see examples/ardrone2_gazebo.xml):
1. Select Gazebo as the FDM (Flight Dynamics Model)
@code{.xml}
&lt;target name=&quot;nps&quot; board=&quot;pc&quot;&gt;
&lt;module name=&quot;fdm&quot; type=&quot;gazebo&quot;/&gt;
&lt;/target&gt;
@endcode
2. Include the gazebo defines for the vehicle:
@code{.xml}
&lt;section name=&quot;SIMULATOR&quot; prefix=&quot;NPS_&quot;&gt;
...
&lt;/section&gt;
&lt;include href=&quot;conf/simulator/gazebo/airframes/ardrone2.xml&quot;/&gt;
@endcode
- If conf/simulator/gazebo/airframes does not contain an xml for the
vehicle model, it should be created with the following contents:
1. Actuator thrusts and torques
@code{.xml}
&lt;!DOCTYPE airframe SYSTEM &quot;../../../airframes/airframe.dtd&quot;&gt;
&lt;airframe&gt;
&lt;section name=&quot;SIMULATOR&quot; prefix=&quot;NPS_&quot;&gt;
&lt;define name=&quot;ACTUATOR_THRUSTS&quot; value=&quot;1.55, 1.55, 1.55, 1.55&quot; type=&quot;float[]&quot;/&gt;
&lt;define name=&quot;ACTUATOR_TORQUES&quot; value=&quot;0.155, 0.155, 0.155, 0.155&quot; type=&quot;float[]&quot;/&gt;
...
&lt;/section&gt;
&lt;/airframe&gt;
@endcode
The thrusts and torques are expressed in SI units (N, Nm) and should
be in the same order as the ACTUATOR_NAMES defined in the airframe file.
The torque direction is determined automatically from the motor mixing.
2. (Optional) Add actuator dynamics to the SIMULATOR section:
@code{.xml}
&lt;section name=&quot;SIMULATOR&quot; prefix=&quot;NPS_&quot;&gt;
...
&lt;define name=&quot;ACTUATOR_TIME_CONSTANTS&quot; value=&quot;0.02, 0.02, 0.02, 0.02&quot; type=&quot;float[]&quot;/&gt;
&lt;define name=&quot;ACTUATOR_MAX_ANGULAR_MOMENTUM&quot; value=&quot;0.19, 0.19, 0.19, 0.19&quot; type=&quot;float[]&quot;/&gt;
...
&lt;/section&gt;
@endcode
Actuator time constants can be provided without specifying the
actuator's maximum angular momentum. If the maximum angular momentum
is provided as well, it is used to calculate the rotor spin-up torque.
3. In the same section, bypass the AHRS and INS as these are not
supported yet:
@code{.xml}
&lt;section name=&quot;SIMULATOR&quot; prefix=&quot;NPS_&quot;&gt;
...
&lt;define name=&quot;BYPASS_AHRS&quot; value=&quot;1&quot;/&gt;
&lt;define name=&quot;BYPASS_INS&quot; value=&quot;1&quot;/&gt;
...
&lt;/section&gt;
@endcode
4. If required, enable video thread simulation:
@code{.xml}
&lt;section name=&quot;SIMULATOR&quot; prefix=&quot;NPS_&quot;&gt;
...
&lt;define name=&quot;SIMULATE_VIDEO&quot; value=&quot;1&quot;/&gt;
...
&lt;/section&gt;
@endcode
5. Set the aircraft model in the xml file:
@code{.xml}
&lt;section name=&quot;SIMULATOR&quot; prefix=&quot;NPS_&quot;&gt;
...
&lt;define name=&quot;GAZEBO_AC_NAME&quot; value=&quot;my_uav&quot;/&gt;
&lt;/section&gt;
@endcode
3. Make sure all included modules work with nps. At the moment, most of
the modules that depend on video_thread are only built when ap is
selected as the target. To fix this, add nps to the target attribute
in the module xml, e.g.:
@code{.xml}
&lt;makefile target=&quot;ap|nps&quot;&gt;
@endcode
4. The simulation environment is set in the flight plan file:
@code{.xml}
&lt;flight_plan ...&gt;
&lt;header&gt;
...
#define NPS_GAZEBO_WORLD &quot;my.world&quot;
&lt;/header&gt;
...
&lt;/flight_plan&gt;
@endcode
</description>
<configure name="NPS_DEBUG_VIDEO" value="0|1" description="show window with video for debugging"/>
</doc>
<header/>
<makefile target="nps">
<raw>
nps.CXXFLAGS += $(shell pkg-config gazebo --cflags)
nps.LDFLAGS += $(shell pkg-config gazebo --libs)
<!-- OpenCV for video debugging -->
NPS_DEBUG_VIDEO ?= 0
ifeq (,$(findstring $(NPS_DEBUG_VIDEO),0 FALSE))
nps.CXXFLAGS += -DNPS_DEBUG_VIDEO
nps.CXXFLAGS += $(shell pkg-config opencv)
nps.LDFLAGS += -lopencv_imgproc -lopencv_highgui -lopencv_core
endif
</raw>
<file name="nps_fdm_gazebo.cpp" dir="nps"/>
</makefile>
</module>