Skip to content

Commit 21e6f59

Browse files
committed
Merge branch 'main' into gazebo-guide
2 parents 00782a5 + 603532a commit 21e6f59

File tree

8 files changed

+148
-95
lines changed

8 files changed

+148
-95
lines changed

docs/_01_aerostack2_concepts/architecture/index.rst

+9-3
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,15 @@ Aerostack2 includes a set of software components that implement specialized algo
5050
Behaviors
5151
---------
5252

53-
This level includes a set of components corresponding to different robot behaviors provided by Aerostack for autonomous operation.
54-
Each component encapsulates the algorithms used to implement a particular behavior (e.g., take off, hover, generate trajectory, etc.) together with mechanisms for execution monitoring to facilitate the specification of mission plans.
55-
Each behavior has a uniform interface that is common for all behaviors to facilitate its use.
53+
Aerostack2 uses a specialized type of component, called behavior, that implements functional robotic abilities such as motion control, motion planning, or perception processing.
54+
Behaviors provide a logical layer to formulate mission plans.
55+
Using behaviors, a mission plan is expressed as a controlled sequence of activations (or deactivations) of multiple behaviors that may operate concurrently.
56+
Each behavior activation initiates the execution of a particular task described with certain parameters (e.g., following a particular path described with a list of waypoints).
57+
Compared to directly use of state estimators and actuator controllers, behaviors provide a simple and uniform method to define missions.
58+
59+
Each behavior component corresponds to a specific robot skill allowing self-supervised and streamlined execution of tasks.
60+
Depending on the ability addressed by the behavior, it can correspond to motion control, e.g. taking off or hovering, to motion planning, e.g. trajectory generation,
61+
or perception processing, e.g. video recording or gimbal control.
5662

5763

5864

Loading

docs/_01_aerostack2_concepts/behaviors/index.rst

+27-4
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,31 @@
44
Behaviors
55
=========
66

7-
TDB
7+
Aerostack2 uses a specialized type of component, called behavior, that implements functional robotic abilities such as motion control, motion planning, or perception processing.
8+
Behaviors provide a logical layer to formulate mission plans.
9+
Using behaviors, a mission plan is expressed as a controlled sequence of activations (or deactivations) of multiple behaviors that may operate concurrently.
10+
Each behavior activation initiates the execution of a particular task described with certain parameters (e.g., following a particular path described with a list of waypoints).
11+
Compared to directly use of state estimators and actuator controllers, behaviors provide a simple and uniform method to define missions.
812

9-
* Motion behaviors
10-
* Perception behaviors
11-
* Trajectory generation behaviors
13+
Each behavior component encapsulates the implementation of the algorithms used to execute the task, providing a common interface for all behaviors.
14+
Therefore, the behavior implementation encapsulates how a specific task is accomplished, e.g. a landing maneuver can be done by descending until touching the ground, or using vision for centering the drone in a landing spot.
15+
In both cases, the system calls the landing behavior using an identical interface regardless of the implementation details are.
16+
17+
This common interface is used to control the execution of the behavior.
18+
Aerostack2 behaviors extend ROS2 actions with some ROS2 services.
19+
The main difference is the ability to pause, resume and modify the running goal, while standard ROS2 actions can only be activated and cancelled.
20+
The interface also informs about the execution of the behavior with two separate outputs: the execution state of the behavior (e.g., idle, running, or paused), and a periodic feedback.
21+
The feedback provides information about the progress of the behavior execution, e.g., the current position of the drone while following a path.
22+
23+
.. figure:: images/robot_behaviors.png
24+
:scale: 50
25+
:class: with-shadow
26+
27+
Aerostack2 behaviors interface.
28+
29+
30+
.. warning:: Do not mix up aerostack2 behaviors with behavior trees. Behaviors can be used with and without behavior trees. The BT is the "task planner" while the behavior system is the "executor". You can replace BT with other planners available in Aerostack2. ``as2_behavior_trees`` package contains BT NodeTrees wrappers to activate Aerostack2 behaviors. are used to specify the mission plan, while the behaviors are the components that implement the tasks of the mission plan.
31+
32+
The catalog of behaviors can be checked in the following section :ref:`behaviors`.
33+
34+
Finally, how to add your custom new behavior can be found in the :ref:`development_tutorials_behavior` section.

docs/_01_aerostack2_concepts/index.rst

+1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ deploy aerial robotics systems so the user can familiarize with them.
1414
aerial_platforms/index.rst
1515
motion_controller/index.rst
1616
state_estimator/index.rst
17+
behaviors/index.rst
1718

docs/_02_examples/gazebo/project_gazebo/index.rst

+104-83
Original file line numberDiff line numberDiff line change
@@ -13,157 +13,178 @@ To install this project, clone the repository:
1313
To start using this project, please go to the root folder of the project.
1414

1515

16-
17-
.. _project_gazebo_simulated:
16+
.. _project_gazebo_launching:
1817

1918
---------
20-
Execution
19+
Launching
2120
---------
2221

23-
The execution will open a simulation in Gazebo and the Aerostack2 components will use simulation time.
24-
25-
The flags for the components launcher are:
26-
27-
- ``-m``: launch the components for the swarm multiagent system.
28-
- ``-t``: launch keyboard teleoperation.
29-
- ``-r``: record rosbag.
30-
- ``-b``: use `Behavior Tree <https://www.behaviortree.dev/>`_.
31-
- ``-n``: use custom dron namespace.
32-
22+
The execution on the project is split into two parts: Aerostack2 components and ground station.
3323

24+
Launching Aerostack2
25+
====================
3426

35-
.. _project_gazebo_simulated_single_drone:
27+
To launch the Aerostack2 components, execute the following command:
3628

37-
Single drone
38-
============
29+
.. code-block:: bash
3930
40-
In order to launch the components for a **single drone**, do:
31+
./launch_as2.bash
4132
42-
.. code-block:: bash
4333
44-
./launch_as2.bash -t
34+
This will open a Gazebo simulation alongside with a tmux session with an Aerostack2 instance for each drone launched.
4535

46-
This will open a simulation for a single drone alongside the Aerostack2 components necessary for the mission execution.
36+
Launcher offers a few options to customize the execution. ``./launch_as2.bash -h`` will show option list. Options can be set with the following flags:
4737

48-
A window like the following image should open.
38+
- ``-m``: launch multiagent system simulation. By default not set.
39+
- ``-n``: select drones namespace to launch, values are comma separated. By default, it launches all drones from world description file.
40+
- ``-s``: disable launch Gazebo simulator. By default launch simulation.
41+
- ``-g``: launch using gnome-terminal. By default not set, uses tmux.
4942

50-
.. figure:: images/single_drone_gz.png
51-
:scale: 50
52-
:class: with-shadow
53-
54-
Gazebo simulator
43+
Launching Ground Station
44+
========================
5545

56-
It will also open a keyboard teleoperation (argument ``-t``), which you can use to teleoperate the drone with the :ref:`aerostack2 keyboard teleoperation user interface <user_interfaces_keyboard_teleoperation>`.
46+
To launch the ground station, execute the following command:
5747

58-
A window like the following image should popup:
48+
.. code-block:: bash
5949
60-
.. figure:: images/keyboard_teleop_view.png
61-
:scale: 50
62-
:class: with-shadow
63-
64-
Keyboard teleoperation
50+
./launch_ground_station.bash
6551
66-
To start the mission, execute:
52+
Launcher offers a different pool of options to customize the execution. ``./launch_ground_station.bash -h`` will show option list. Options can be set with the following flags:
6753

68-
.. code-block:: bash
54+
- ``-m``: launch multiagent system simulation. By default not set.
55+
- ``-t``: launch keyboard teleoperation. By default not set.
56+
- ``-v``: launch rviz. By default not set.
57+
- ``-r``: record rosbag. By default not set.
58+
- ``-n``: select drones namespace to launch, values are comma separated. By default, it launches all drones from world description file.
59+
- ``-g``: launch using gnome-terminal. By default not set, uses tmux.
6960

70-
python3 mission.py
61+
Closing
62+
=======
7163

72-
Also, you can try the mission planner, which describes the mission in a JSON format:
64+
Close all nodes (aerostack2 and ground_station) with the following command:
7365

7466
.. code-block:: bash
7567
76-
python3 mission_planner.py
68+
./stop_tmuxinator.bash
7769
78-
Here it's what the execution should look like:
70+
.. note::
7971

80-
.. raw:: html
72+
The command ``tmux kill-server`` will have a similar effect but closing all tmux sessions, so be careful if you have other tmux sessions running.
8173

82-
<div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; height: auto;">
83-
<iframe src="https://www.youtube.com/embed/57pg6cQ1MGw" frameborder="0" allowfullscreen style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;"></iframe>
84-
</div>
74+
If launcher was executed with the flag ``-g``, closing should be done manually exiting all gnome-terminal tabs.
8575

86-
To do a clean exit of tmux, execute:
76+
Close **only** the Aerostack2 nodes with the following command:
8777

8878
.. code-block:: bash
8979
90-
./stop.bash
91-
92-
80+
./stop_tmuxinator_as2.bash
9381
94-
.. _project_gazebo_simulated_behavior_tree:
82+
Close **only** the ground station nodes with the following command:
9583

96-
Behavior Tree
97-
=============
84+
.. code-block:: bash
9885
99-
In order to launch the components for using **behavior tree**, do:
86+
./stop_tmuxinator_ground_station.bash
10087
101-
.. code-block:: bash
10288
103-
./launch_as2.bash -b
89+
.. _project_gazebo_mission:
10490

105-
Then, you can start the mission with:
91+
-----------------
92+
Mission execution
93+
-----------------
10694

107-
.. code-block:: bash
95+
The project offers a few examples of mission execution.
10896

109-
python3 mission_behavior_tree.py
97+
- **Keyboard Teleoperation control**: Using reactive teleoperation control. For both single and multiagent swarms.
98+
- **Python API missions**: Using Aerostack2 python API for mission definition. For single drone, using GPS and multiple drones.
99+
- **Behavior Tree missions**: Using Behavior Tree as the mission planner. For single drone only.
100+
- **Mission Interpreter**: Using Aerostack2 mission interpreter. For single drone only.
110101

111-
To do a clean exit of tmux, execute:
112102

113-
.. code-block:: bash
103+
.. _project_gazebo_keyboard_teleoperation:
114104

115-
./stop.bash
105+
Keyboard Teleoperation control
106+
==============================
116107

108+
In order to launch the components for a **single drone**, Aerostack2 launcher does not need any additional flags. Just execute ``./launch_as2.bash``.
109+
This will open a simulation for a single drone alongside the Aerostack2 components necessary for the mission execution.
117110

111+
.. figure:: images/single_drone_gz.png
112+
:scale: 50
113+
:class: with-shadow
114+
115+
Gazebo simulator
118116

117+
Ground station should be launched with ``-t`` flag to enable keyboard teleoperation. Take a look at the :ref:`keyboard teleoperation user guide <user_interfaces_keyboard_teleoperation>` for more information.
118+
A window containing the teleoperation widget should pop up:
119119

120-
.. _project_gazebo_simulated_swarm_drones:
120+
.. figure:: images/keyboard_teleop_view.png
121+
:scale: 50
122+
:class: with-shadow
123+
124+
Keyboard teleoperation
121125

122-
Swarm drones
123-
============
126+
.. note::
124127

125-
In order to launch the components for a **swarm of 3 drones**, do:
128+
The teleoperation widget is also available for multi drone missions. To launch a multi drone simulation, use the flag ``-m`` in both launch commands.
126129

127-
.. code-block:: bash
128130

129-
./launch_as2.bash -m -t
131+
.. _project_gazebo_python_api:
130132

131-
This will open a simulation for a swarm of drones (argument ``-m``) alongside the Aerostack2 components necessary for the mission execution.
133+
Python API missions
134+
===================
132135

133-
A window like the following image should open.
136+
In order to launch the components for **multiple drones**, both launchers require the flag ``-m``.
137+
This will open a simulation for a swarm of drones alongside the Aerostack2 components necessary for the mission execution.
134138

135139
.. figure:: images/swarm_gz.png
136140
:scale: 50
137141
:class: with-shadow
138142

139143
Gazebo simulator
140144

141-
It will also open a keyboard teleoperation (argument ``-t``), which you can use to teleoperate the swarm with the :ref:`aerostack2 keyboard teleoperation user interface <user_interfaces_keyboard_teleoperation>`.
142-
143-
A window like the following image should popup:
144-
145-
.. figure:: images/keyboard_swarm_view.png
146-
:scale: 50
147-
:class: with-shadow
148-
149-
Keyboard teleoperation
145+
There are three python scripts available for mission execution in the project. For single drone missions, use ``python3 mission.py`` for flying a square.
146+
When flying using GPS, use ``python3 mission_gps.py`` which will fly a square using GPS waypoints. Here it is what the execution looks like:
150147

151-
To start the mission, execute:
148+
.. raw:: html
152149

153-
.. code-block:: bash
150+
<div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; height: auto;">
151+
<iframe src="https://www.youtube.com/embed/57pg6cQ1MGw" frameborder="0" allowfullscreen style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;"></iframe>
152+
</div>
154153

155-
python3 mission_swarm.py
156154

157-
Here it's what the execution should look like:
155+
For multi drone missions, use ``python3 mission_swarm.py`` where a group of drones will fly a swarm coreography. Here it is what the execution looks like:
158156

159157
.. raw:: html
160158

161159
<div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; height: auto;">
162160
<iframe src="https://www.youtube.com/embed/gyOPm7apPxo" frameborder="0" allowfullscreen style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;"></iframe>
163161
</div>
164162

165-
To do a clean exit of tmux, execute the following command with the list of the used drones:
163+
.. note::
166164

167-
.. code-block:: bash
165+
To understand how missions are built using the Aerostack2 python API, take a look at the :ref:`development_guide_api_python_api` reference guide.
166+
167+
168+
.. _project_gazebo_mission_interpreter:
169+
170+
Mission Interpreter
171+
===================
172+
173+
Previous missions were defined using python syntaxis. Aerostask2 offers a mission interpreter that allows mission definition using a JSON format.
174+
Currently, the mission interpreter script at the project is only available for single drone missions.
175+
To launch the mission interpreter, execute ``python3 mission_interpreter.py``.
176+
The execution is similar to the python API mission where the drone will fly a square.
177+
178+
179+
.. _project_gazebo_behavior_tree:
180+
181+
Behavior Tree
182+
=============
183+
184+
Missions can also be defined using a behavior tree. The project offers a mission example using a behavior tree for a single drone.
185+
To launch the behavior tree mission, execute ``python3 mission_behavior_tree.py``.
186+
The execution is similar to the python API mission where the drone will fly a square.
187+
188+
.. note::
168189

169-
./stop.bash drone0 drone1 drone2
190+
Trees can be defined using GUIs like :ref:`Groot <https://www.behaviortree.dev/groot/>`.

docs/_03_aerial_platforms/_gazebo_simulation/index.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -365,12 +365,13 @@ Example of launch command:
365365

366366
.. code-block:: bash
367367
368-
ros2 launch as2_platform_gazebo platform_gazebo_launch.py namespace:=drone_sim_0 config_file:=world_json_path
368+
ros2 launch as2_platform_gazebo platform_gazebo_launch.py namespace:=drone_sim_0 simulation_config_file:=world_json_path
369369
370370
For launch the simulation, run the following command:
371371

372372
.. code-block:: bash
373373
374-
ros2 launch as2_gazebo_assets launch_simulation.py config_file:=world_json_path
374+
ros2 launch as2_gazebo_assets launch_simulation.py simulation_config_file:=world_json_path
375375
376376
377+
Additionally, for launching teleoperation and trying out a basic mission, continue to the [Gazebo Example Project](https://aerostack2.github.io/_02_examples/gazebo/project_gazebo/index.html)

docs/_04_robot_behaviors/index.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
Robot Behaviors
55
===============
66

7-
In this section, we give a list of behaviors that has been implemented in Aerostack2.
8-
For more information about what a behavior is, please refer to the :ref:`as2_concepts_behaviors` section, and how work on Aerostack2 architecture in the :ref:`as2_concepts_architecture_behaviors` section.
7+
This catalog shows the list of behaviors according to the tasks that they perform.
8+
9+
.. note:: For more information about what a behavior is, please refer to the :ref:`as2_concepts_behaviors` section, or how they interact with other Aerostack2 components at :ref:`as2_concepts_architecture` section.
910

1011
.. TDB: Reference msgs in parameters column to as2_msgs section.
1112
.. TDB: Add description to request, result and feedback msgs.

docs/_09_development/_tutorials/_tutorials/behavior.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _development_tutorials_behavior:
22

33
======================
4-
Writing a New Bheavior
4+
Writing a New Behavior
55
======================
66

77
.. contents:: Table of Contents

0 commit comments

Comments
 (0)