Project

General

Profile

Wiki » History » Version 8

Martin Jacquet, 2021-09-14 13:07

1 2 Martin Jacquet
h1. Perceptive and torque-control NMPC wiki
2 1 Martin Jacquet
3 3 Martin Jacquet
h2. Foreword
4
5
This wiki is not entirely up-to-date, but will be very soon.
6
In case of question, query, comment, or bug report, feel free to use the issues system or contact the corresponding author Martin Jacquet - martin.jacquet@laas.fr.
7
>
8
9 2 Martin Jacquet
h2. Prerequisite
10
11
The framework has been written and tested using *Ubuntu 18.04*, since it is the OS used by the LAAS-CNRS robotic platform. It should work seamlessly on a recent Linux version, but there is no guarantee.
12
Some issues has been found while installing the software on Ubuntu 16.04 because of version incompatibility with Protoc and Protobuf.
13
The installation on a non-Linux OS has to be handled by the user.
14
>
15
The installation assumes the use of a package manager (e.g. @apt@) to install some dependencies, as well as the Gazebo simulator. Everything provided in this repo or by the LAAS-CNRS robotic platform aims to be installed locally in the repository folder to avoid polluting the user's system.
16
>
17
18
h2. I - Software Overview
19
20
h3. I.1. Openrobots
21
22
Collections of all the open-source software used at LAAS. You can find more details in "Openrobots Wiki-Homepage":https://www.openrobots.org/wiki
23
>
24
25
26
h3. I-2. Robotpkg
27
28
"Robotpkg":http://robotpkg.openrobots.org/ is a packaging system for installing robotics software developed by the robotic community.
29
We will use robotpkg to install the required modules for the simulations (state estimation, gazebo interface...) as well as third-party dependencies (qpOases).
30
>
31
32
33
h3. I-3. GenoM
34
35
GenoM is a generator of modules, designed to be middleware independant, i.e. the same module can be compiled for, e.g., ROS, YARP, or Pocolibs, without any modification.
36
This allows a great code re-usability and to abstract the user from any specific choice of a middleware.
37
Originally GenoM has been developed tightly with Pocolibs, then from version 3, aka GenoM3, ROS templates has been provided.
38
>
39
Another specificity of GenoM is the interaction with and between components.
40
Each component is started independantly like a linux executable (within a roscore, for ROS, or a h2 intance, for Pocolibs), then the connection between ports (or topics) is made using a supervisor, "Genomix":https://git.openrobots.org/projects/genomix, either with "Matlab":https://git.openrobots.org/projects/matlab-genomix or "TCL":https://git.openrobots.org/projects/tcl-genomix. 
41
>
42
43
h3. I-4. Pocolibs
44
45
"Pocolibs":https://www.openrobots.org/wiki/pocolibs/ is a middleware, like ROS.
46
It aims at being lighter and faster than ROS, when running on a single machine, thanks to the exploitation of shared memory. ROS, on the other hand, uses a network layer for sending messages between nodes, this leads to greater delays and loss of performances.
47
>
48
49
h3. I-5. TeleKyb
50
51
The "TeleKyb":https://git.openrobots.org/projects/telekyb3 software platform provides the aerial-robotic oriented softwares developped at LAAS-CNRS.
52
In particular, we will use:
53
* "mrsim":https://git.openrobots.org/projects/mrsim-genom3, a Multi-Robot SIMulator. It is design to be a transparent interface w.r.t. the real aerial vehicles used in LAAS-CNRS. It makes the transition between simulation and experiment transparent, from the software point of view.
54
* "pom":https://git.openrobots.org/projects/pom-genom3, a UKF-based state estimator merging state feedback for different sources (e.g. mocap + IMU)
55
* "optitrack":https://git.openrobots.org/projects/optitrack-genom3,, to export the motion capture data to the genom software stack
56
* "rotorcraft":https://git.openrobots.org/projects/rotorcraft-genom3, the low-level interface, with either the simulated or real platform
57
* "nhfc":https://git.openrobots.org/projects/nhfc-genom3, near-hovering flight controller, used for unmodeled take-off and post-failure recoverues
58
* "maneuver":https://git.openrobots.org/projects/maneuver-genom3, a global trajectory planner, providing position and attitude (as quaternions) as well as first and second derivatives. It implement take-off and waypoint-to-waypoint motions.
59
>
60
61
h3. I-6. Gazebo
62
63
To simulate the platform, we use the "Gazebo":http://gazebosim.org/ simulator. To interface it with the genom software stack, we use two dedicated components:
64
* "mrsim-gazebo":https://git.openrobots.org/projects/mrsim-gazebo a plugin to interface the simulated multi-rotor with the genom components (in place of mrsim)
65
* "optitrack-gazebo":https://git.openrobots.org/projects/optitrack-gazebo emulates the optitrack network interface to publish the model poses
66
>
67
The installation procedure for Gazebo can be found at http://www.gazebosim.org/tutorials?cat=install&tut=install_ubuntu&ver=9.0
68
69
70
h2. II - Installation procedure
71
72
This section is a tutorial on how to install the software architecture to run the simulations.
73
>
74
75
h3. II-0. Clone the Perceptive and torque-control NMPC repository
76
77
Clone the repo associated to this project. Its root will act as the devel folder for the following.
78
<pre><code class="shell">
79
git clone git://redmine.laas.fr/laas/perceptive-torque-nmpc.git
80
cd ./perceptive-torque-nmpc/
81
</code></pre>
82
>
83
To simplify the installation, we provide some environment variables in the @env.sh@ file.
84
In order to run all the installed executables, we need to setup the path to the newly created folders.
85
We provide a @env.sh@ script that exports all the required variables.
86
*/!\* the source has to be called in the repository root since it uses the @pwd@ command to export the paths.
87
<pre><code class="shell">
88
source env.sh
89
</code></pre>
90
>
91
92
h3. II-1. Setup robotpkg
93
94
(Steps taken from http://robotpkg.openrobots.org/install.html)
95
96
h4. 1. Clone the robotpkg lastest release:
97
98
<pre><code class="shell">
99
git clone git://git.openrobots.org/robots/robotpkg
100
</code></pre>
101
102
h4. 2. Check that the @openrobots/@ folder exists in the repository root, and update the environement variables accordingly if you didn't source the @env.sh@ file:
103
104
<pre><code class="shell">
105
export ROBOTPKG_BASE=`pwd`/openrobots
106
</code></pre>
107
108
h4. 3. Install robotpkg
109
110
<pre><code class="shell">
111
cd robotpkg/bootstrap
112
./bootstrap --prefix=$ROBOTPKG_BASE
113
</code></pre>
114
115
h4. 4. Install the required components and their dependencies
116
117
The installation can be done 'manually' by navigating to the desired folder in @./robotpkg/@ and install with @make update@; but we will simplify the process using a _set_.
118
To do so, we need to edit the config file: @$ROBOTPKG_BASE/etc/robotpkg.conf@. Add the following at the end of the file:
119
<pre><code class="shell">
120
PKG_OPTIONS.%-genom3 = \
121
        codels \
122
        pocolibs-server \
123
        pocolibs-client-c
124
125
PKGSET.mpcset = \
126
    sysutils/arduio-genom3 \
127
    architecture/genom3 \
128
    architecture/genom3-pocolibs \
129
    robots/rotorcraft-genom3 \
130
    localization/pom-genom3 \
131
    localization/optitrack-genom3 \
132
    motion/nhfc-genom3 \
133
    path/libkdtp \
134
    optimization/qpoases \
135
    net/genomix \
136
    supervision/matlab-genomix \
137
    supervision/tcl-genomix \
138
    shell/eltclsh \
139
    simulation/mrsim-genom3 \
140
    simulation/mrsim-gazebo \
141
    simulation/libmrsim \
142
    simulation/optitrack-gazebo
143
144
PREFER.lapack = robotpkg
145
PREFIX.matlab = <path/to/Matlab>
146
</code></pre>
147
The last line need to point to the Matlab root folder in the system (e.g. @/opt/Matlab@).
148
It is recommanded to use Matlab for the proposed simulations since the syntax is more intuitive and comprehensible for the user to modify them. However, we also provide all the launch files in tcl, as well as the environment to run them (@shell/eltclsh@ in the above list is a custom tcl script shell).
149
If Matlab is not installed on the system, remove the lines @supervision/matlab-genomix \@ and @PREFIX.matlab = <path/to/Matlab>@ from the above list.
150
Also, all the above is meant for using Pocolibs, not ROS. Futur version of this tutorial might come to use the ROS install.
151
>
152
Now return to the robotpkg folder and install all the set:
153
<pre><code class="shell">
154
cd robotpkg
155
make update-mpcset
156
</code></pre>
157
>
158
During the installation, some required dependencies need to be install with the usual package manager (e.g. @apt@ on Ubuntu). When the install stops, install the required packages and rerun the above command.
159
>
160
161
h4. 5. Matlab configuration
162
163
The last step is to update Matlab path to use the custom libraries, if relevant.
164
Add the following paths in the Matlab path window:
165
<pre><code class="shell">
166
</path/to/openrobots>/lib/matlab
167
</path/to/openrobots>/lib/matlab/simulink
168
</path/to/openrobots>/lib/matlab/simulink/genomix
169
</code></pre>
170
(change </path/to/openrobots> to the value of @$ROBOTPKG_BASE@)
171
172
h3. II-2. Install custom components
173
174
h4. List of the components
175
176
The @src/@ folder contains some additional components, in particular:
177
* *vision-idl*: the type declaration regarding the camera modules
178
* *camgazebo-genom3*: read the data from the gazebo inate cameras, via the gazebo API
179
* *camviz-genom3*: record and/or display the images from a camera
180 4 Martin Jacquet
* *arucotag-genom3*: detect and the ArUco markers
181
* *ikf-genom3*: an implementation of the intermittent kalman filter presented in the paper
182 2 Martin Jacquet
* *uavmpc-genom3*: the NMPC controller presented in the paper
183
184
h4. Install the extra components
185
186
Since it they are not considered 'stable' as the one provided in robotpkg, we rather install them in a devel folder.
187
Go to the project root, check that the devel folder exists, export the path if you didn't source the @env.sh@. Then go to the sources folder:
188
<pre><code class="shell">
189
export DEVEL_BASE=`pwd`/devel
190
cd src/
191
</code></pre>
192
>
193
For the manual installation, @asciidoctor@ is needed. It can be installed using @apt@ or any package manager.
194
Each component here has to be installed manually, using @autoconf@. To do so, proceed as follow:
195
<pre><code class="shell">
196
cd src/<component>/
197
./bootstrap.sh
198
mkdir build
199
cd build
200
../configure --prefix=$DEVEL_BASE --with-templates=pocolibs/client/c,pocolibs/server
201
make install
202
</code></pre>
203
>
204
The component @vision-idl@ has to be installed first since it defines some type headers used by others.
205
The installation of the main component, @uavmpc-genom3@, is described in the next subection.
206
>
207
208
h4. Install the MPC controller
209
210
Before installing the MPC controller, we have to generate the @C@ sources corresponding to the desired model.
211
To do so, go to the @model_generation/@ folder:
212
<pre><code class="shell">
213
cd src/uavmpc-genom3/model_generation
214
</code></pre>
215
>
216
There is a README.md file there, explaining the requirements.
217
In short, the model sources are exported to @C@ using @CasADi@ in @python3@.
218
@python3@ along with @NumPy@, @SciPy@ and @CasADi@  are required, and easily installable on most Linux distributions (e.g. with @apt@ and @pip3@).
219
Then, the sources are generated using:
220
<pre><code class="shell">
221
python3 gen_model.py <quad or hexa>
222
</code></pre>
223
Then install the component as explained before, but add the following flags to the @configure@ command:
224
<pre><code class="shell">
225
configure --prefix=$GENOM_DEVEL --with-templates=pocolibs/client/c,pocolibs/server CPPFLAGS="-Wall -march=native -mfpmath=sse -I$ROBOTPKG_BASE/include" CXXFLAGS="-O3" CFLAGS="-O3" LDFLAGS="-L$ROBOTPKG_BASE/lib -Wl,-R$ROBOTPKG_BASE/lib"
226
</code></pre>
227
>
228
229 6 Martin Jacquet
Inside each model file, the variable @number_agents@ (l. 36) can be changed to specify the number of UAVs in the system. This is needed to define the size of the parameter matrix (containing the other agents variables).
230
231 2 Martin Jacquet
h3. II-3. Setup the environment
232
233
In order to run all the installed executables, we need to setup the path to the newly created folders.
234
All the required variables are exported in the @env.sh@ file.
235
236
h2. III - Running the simulation
237
238
We @ws/@ folder contains all the material to run a basic simulation with the NMPC.
239 5 Martin Jacquet
In a terminal, launch the @launch_mpc.sh@ scrip. It takes 1 argument, being the number of UAVs. It starts all the genom components, in background. It is used as a console since it displays warnings or error during runtime.
240 2 Martin Jacquet
In another terminal, start gazebo with one of the world file provided.
241
Finally, run @matlab@ or @eltclsh@ and go to the relevant subsection below.
242
>
243
244
h3. III.1. Running the simulations with Matlab
245
246
Change the flag at the top of the script to use either the quadrotor or the hexarotor.
247
>
248 1 Martin Jacquet
The provided scripts are organised as follow
249 7 Martin Jacquet
* The @param_*.m@ scripts provide the parameters for either a standard colinear quadrotor (denoted *QR*) and a tilted-propeller hexarotor (denoted *tx*).
250 2 Martin Jacquet
* The @init.m@ script that connects all the components together and call the initialization services for all provided components.
251
* The @traj_*.m@ that runs the specific trajectories for a specific scenario.
252
>
253
Run the init script and wait until it stops displaying in the console.
254
If no error occured, run any traj script then press enter between each step to proceed to the next one. The evolution can be watched in gazebo and in the console terminal in parallel.
255 1 Martin Jacquet
>
256 2 Martin Jacquet
257 7 Martin Jacquet
The init.m script contains some parameter at the top the script, in particular, n_UAV. It will specify the number of UAVs to initialize.
258 2 Martin Jacquet
259
h3. III.3. List of the provided trajectories
260
261
* @traj_mpc@ runs a flight using the nmpc without any perceptive constraint, reaching successive waypoints.
262
* @traj_track@ runs a flight using the nmpc with a couple of perceptive constraints, again reaching successive waypoints.
263
It corresponds to the experiment presented in section *V-B* in the paper.
264
* @traj_follow@ runs a flight where we follow a _target_ quadrotor equipped with a marker. The NMPC-controlled UAV needs to stay on top of it, while the _target_ quadrotor is given successive waypoints.
265
It corresponds to the experiment presented in Section *V-C* in the paper.
266
>
267
268
h3. III.4. Comments on how to use the simulator
269
270
* In order to perform the exact simulation performed in Section *V-E* of the paper, one need first to generate the @model_hexa3.py@ file and recompile @uavmpc-genom3@.
271
Then, modify the parameters in the @init@ script: @ground_tag = 1;@, @z_desired = 2;@ and @target_compliant = 0;@
272
* In the experiment presented in the paper, the wall target was 1m high while it is 2m high in the gazebo simulation.
273
* In order to recover from a failed simulation, reset the positions in Gazebo and rerun the scripts.
274
* The waypoints in the traj trajectories can be changed freely to change the scenarios. Of course, in the markers have to be visible when calling the @track@ or @follow@ services from the MPC.
275
* In order to "manually" control the UAV through the MPC software, one can run any @traj@ file up to the _MPC_ section. Then, waypoints can be provided to the maneuver trajectory planner.
276
** go to position _(x,y,z)_ rotated of _yaw_ radians, in _t_ seconds (t=0 means minimum time). (nb: is the trajectory is not feasible in _t_, nothing happens.)
277
** in tcl, use @maneuver::goto -f "x y z yaw t" &@ ; the @&@ runs the command in background to let the user call other waypoints of actions while the UAV moves.
278
** in matlab, use @maneuver.goto('-a', x, y, z, yaw, t);@ ; the @'-a'@ is equivalent to the @&@ above