You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/_01_aerostack2_concepts/architecture/index.rst
+9-3
Original file line number
Diff line number
Diff line change
@@ -50,9 +50,15 @@ Aerostack2 includes a set of software components that implement specialized algo
50
50
Behaviors
51
51
---------
52
52
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.
Copy file name to clipboardexpand all lines: docs/_01_aerostack2_concepts/behaviors/index.rst
+27-4
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,31 @@
4
4
Behaviors
5
5
=========
6
6
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.
8
12
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.
Copy file name to clipboardexpand all lines: docs/_02_examples/gazebo/project_gazebo/index.rst
+104-83
Original file line number
Diff line number
Diff line change
@@ -13,157 +13,178 @@ To install this project, clone the repository:
13
13
To start using this project, please go to the root folder of the project.
14
14
15
15
16
-
17
-
.. _project_gazebo_simulated:
16
+
.. _project_gazebo_launching:
18
17
19
18
---------
20
-
Execution
19
+
Launching
21
20
---------
22
21
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.
33
23
24
+
Launching Aerostack2
25
+
====================
34
26
35
-
.. _project_gazebo_simulated_single_drone:
27
+
To launch the Aerostack2 components, execute the following command:
36
28
37
-
Single drone
38
-
============
29
+
.. code-block:: bash
39
30
40
-
In order to launch the components for a **single drone**, do:
31
+
./launch_as2.bash
41
32
42
-
.. code-block:: bash
43
33
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.
45
35
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:
47
37
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.
49
42
50
-
.. figure:: images/single_drone_gz.png
51
-
:scale:50
52
-
:class:with-shadow
53
-
54
-
Gazebo simulator
43
+
Launching Ground Station
44
+
========================
55
45
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:
57
47
58
-
A window like the following image should popup:
48
+
.. code-block:: bash
59
49
60
-
.. figure:: images/keyboard_teleop_view.png
61
-
:scale:50
62
-
:class:with-shadow
63
-
64
-
Keyboard teleoperation
50
+
./launch_ground_station.bash
65
51
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:
67
53
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.
69
60
70
-
python3 mission.py
61
+
Closing
62
+
=======
71
63
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:
73
65
74
66
.. code-block:: bash
75
67
76
-
python3 mission_planner.py
68
+
./stop_tmuxinator.bash
77
69
78
-
Here it's what the execution should look like:
70
+
.. note::
79
71
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.
If launcher was executed with the flag ``-g``, closing should be done manually exiting all gnome-terminal tabs.
85
75
86
-
To do a clean exit of tmux, execute:
76
+
Close **only** the Aerostack2 nodes with the following command:
87
77
88
78
.. code-block:: bash
89
79
90
-
./stop.bash
91
-
92
-
80
+
./stop_tmuxinator_as2.bash
93
81
94
-
.. _project_gazebo_simulated_behavior_tree:
82
+
Close **only** the ground station nodes with the following command:
95
83
96
-
Behavior Tree
97
-
=============
84
+
.. code-block:: bash
98
85
99
-
In order to launch the components for using **behavior tree**, do:
86
+
./stop_tmuxinator_ground_station.bash
100
87
101
-
.. code-block:: bash
102
88
103
-
./launch_as2.bash -b
89
+
.. _project_gazebo_mission:
104
90
105
-
Then, you can start the mission with:
91
+
-----------------
92
+
Mission execution
93
+
-----------------
106
94
107
-
.. code-block:: bash
95
+
The project offers a few examples of mission execution.
108
96
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.
110
101
111
-
To do a clean exit of tmux, execute:
112
102
113
-
.. code-block:: bash
103
+
.. _project_gazebo_keyboard_teleoperation:
114
104
115
-
./stop.bash
105
+
Keyboard Teleoperation control
106
+
==============================
116
107
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.
117
110
111
+
.. figure:: images/single_drone_gz.png
112
+
:scale:50
113
+
:class:with-shadow
114
+
115
+
Gazebo simulator
118
116
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:
119
119
120
-
.. _project_gazebo_simulated_swarm_drones:
120
+
.. figure:: images/keyboard_teleop_view.png
121
+
:scale:50
122
+
:class:with-shadow
123
+
124
+
Keyboard teleoperation
121
125
122
-
Swarm drones
123
-
============
126
+
.. note::
124
127
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.
126
129
127
-
.. code-block:: bash
128
130
129
-
./launch_as2.bash -m -t
131
+
.. _project_gazebo_python_api:
130
132
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
+
===================
132
135
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.
134
138
135
139
.. figure:: images/swarm_gz.png
136
140
:scale:50
137
141
:class:with-shadow
138
142
139
143
Gazebo simulator
140
144
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:
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:
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)
Copy file name to clipboardexpand all lines: docs/_04_robot_behaviors/index.rst
+3-2
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,9 @@
4
4
Robot Behaviors
5
5
===============
6
6
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.
9
10
10
11
.. TDB: Reference msgs in parameters column to as2_msgs section.
11
12
.. TDB: Add description to request, result and feedback msgs.
0 commit comments