Project

General

Profile

Wiki » History » Version 50

Martin Jacquet, 2023-03-08 16:18

1 45 Martin Jacquet
h1. Perceptive and torque-control NMPC wiki
2 1 Martin Jacquet
3 44 Martin Jacquet
h2. Prerequisite
4
5
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.
6
Some issues has been found while installing the software on Ubuntu 16.04 because of version incompatibility with Protoc and Protobuf.
7
The installation on a non-Linux OS has to be handled by the user.
8
>
9
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.
10
>
11
12 50 Martin Jacquet
h3. List of dependencies (Thanks to Filippo Boldrin)
13
14
* git
15
* build-essential
16
* bzip2
17
* libbz2-dev
18
* zlib1g-dev
19
* libssl-dev
20
* libncurses-dev
21
* pax
22
* tar
23
* libeigen3-dev
24
* pkg-config
25
* tcl-dev
26
* cmake
27
* gfortran
28
* libboost-filesystem-dev
29
* libboost-iostreams-dev
30
* libboost-math-dev
31
* libboost-thread-dev
32
* gazebo
33
* libgazebo-dev
34
* tk-dev
35
* flex
36
* bison
37
* libtool-bin
38
* doxygen
39
* libudev-dev (could be causing dependency issues, check the "source code" box in software sources)
40
* asciidoctor
41
42 2 Martin Jacquet
h2. I - Software Overview
43 1 Martin Jacquet
44 2 Martin Jacquet
h3. I.1. Openrobots
45 1 Martin Jacquet
46
Collections of all the open-source software used at LAAS. You can find more details in "Openrobots Wiki-Homepage":https://www.openrobots.org/wiki
47
>
48
49 11 Martin Jacquet
50 2 Martin Jacquet
h3. I-2. Robotpkg
51 1 Martin Jacquet
52 2 Martin Jacquet
"Robotpkg":http://robotpkg.openrobots.org/ is a packaging system for installing robotics software developed by the robotic community.
53
We will use robotpkg to install the required modules for the simulations (state estimation, gazebo interface...) as well as third-party dependencies (qpOases).
54 1 Martin Jacquet
>
55
56 11 Martin Jacquet
57 2 Martin Jacquet
h3. I-3. GenoM
58 1 Martin Jacquet
59 31 Martin Jacquet
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.
60 2 Martin Jacquet
This allows a great code re-usability and to abstract the user from any specific choice of a middleware.
61 5 Martin Jacquet
Originally GenoM has been developed tightly with Pocolibs, then from version 3, aka GenoM3, ROS templates has been provided.
62 1 Martin Jacquet
>
63 2 Martin Jacquet
Another specificity of GenoM is the interaction with and between components.
64 32 Martin Jacquet
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. 
65 2 Martin Jacquet
>
66 1 Martin Jacquet
67 2 Martin Jacquet
h3. I-4. Pocolibs
68 1 Martin Jacquet
69
"Pocolibs":https://www.openrobots.org/wiki/pocolibs/ is a middleware, like ROS.
70 33 Martin Jacquet
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.
71 1 Martin Jacquet
>
72 11 Martin Jacquet
73 4 Martin Jacquet
h3. I-5. TeleKyb
74 2 Martin Jacquet
75
The "TeleKyb":https://git.openrobots.org/projects/telekyb3 software platform provides the aerial-robotic oriented softwares developped at LAAS-CNRS.
76
In particular, we will use:
77 34 Martin Jacquet
* "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.
78
* "pom":https://git.openrobots.org/projects/pom-genom3, a UKF-based state estimator merging state feedback for different sources (e.g. mocap + IMU)
79
* "optitrack":https://git.openrobots.org/projects/optitrack-genom3,, to export the motion capture data to the genom software stack
80
* "rotorcraft":https://git.openrobots.org/projects/rotorcraft-genom3, the low-level interface, with either the simulated or real platform
81 35 Martin Jacquet
* "nhfc":https://git.openrobots.org/projects/nhfc-genom3, near-hovering flight controller, used for unmodeled take-off and post-failure recoverues
82 49 Martin Jacquet
* "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.
83 1 Martin Jacquet
>
84 11 Martin Jacquet
85 4 Martin Jacquet
h3. I-6. Gazebo
86 1 Martin Jacquet
87 4 Martin Jacquet
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:
88
* "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)
89
* "optitrack-gazebo":https://git.openrobots.org/projects/optitrack-gazebo emulates the optitrack network interface to publish the model poses
90 39 Martin Jacquet
>
91 11 Martin Jacquet
The installation procedure for Gazebo can be found at http://www.gazebosim.org/tutorials?cat=install&tut=install_ubuntu&ver=9.0
92
93 2 Martin Jacquet
94 7 Martin Jacquet
h2. II - Installation procedure
95
96
This section is a tutorial on how to install the software architecture to run the simulations.
97
>
98
99
h3. II-0. Clone the Perceptive and torque-control NMPC repository
100
101
Clone the repo associated to this project. Its root will act as the devel folder for the following.
102
<pre><code class="shell">
103
git clone git://redmine.laas.fr/laas/perceptive-torque-nmpc.git
104
cd ./perceptive-torque-nmpc/
105
</code></pre>
106 11 Martin Jacquet
>
107 15 Martin Jacquet
To simplify the installation, we provide some environment variables in the @env.sh@ file.
108
In order to run all the installed executables, we need to setup the path to the newly created folders.
109 1 Martin Jacquet
We provide a @env.sh@ script that exports all the required variables.
110 42 Martin Jacquet
*/!\* the source has to be called in the repository root since it uses the @pwd@ command to export the paths.
111 15 Martin Jacquet
<pre><code class="shell">
112
source env.sh
113
</code></pre>
114 7 Martin Jacquet
>
115 11 Martin Jacquet
116 7 Martin Jacquet
h3. II-1. Setup robotpkg
117
118
(Steps taken from http://robotpkg.openrobots.org/install.html)
119 10 Martin Jacquet
120
h4. 1. Clone the robotpkg lastest release:
121 7 Martin Jacquet
122 1 Martin Jacquet
<pre><code class="shell">
123
git clone git://git.openrobots.org/robots/robotpkg
124 7 Martin Jacquet
</code></pre>
125 10 Martin Jacquet
126 26 Martin Jacquet
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:
127 7 Martin Jacquet
128
<pre><code class="shell">
129 1 Martin Jacquet
export ROBOTPKG_BASE=`pwd`/openrobots
130 7 Martin Jacquet
</code></pre>
131
132 10 Martin Jacquet
h4. 3. Install robotpkg
133
134 1 Martin Jacquet
<pre><code class="shell">
135
cd robotpkg/bootstrap
136 7 Martin Jacquet
./bootstrap --prefix=$ROBOTPKG_BASE
137
</code></pre>
138
139 48 Martin Jacquet
h4. 4. Install the required components and their dependencies
140 10 Martin Jacquet
141 8 Martin Jacquet
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_.
142
To do so, we need to edit the config file: @$ROBOTPKG_BASE/etc/robotpkg.conf@. Add the following at the end of the file:
143
<pre><code class="shell">
144
PKG_OPTIONS.%-genom3 = \
145
        codels \
146
        pocolibs-server \
147
        pocolibs-client-c
148
149
PKGSET.mpcset = \
150
    sysutils/arduio-genom3 \
151
    architecture/genom3 \
152
    architecture/genom3-pocolibs \
153
    robots/rotorcraft-genom3 \
154 1 Martin Jacquet
    localization/pom-genom3 \
155
    localization/optitrack-genom3 \
156 8 Martin Jacquet
    motion/nhfc-genom3 \
157 30 Martin Jacquet
    path/libkdtp \
158 1 Martin Jacquet
    optimization/qpoases \
159 8 Martin Jacquet
    net/genomix \
160 9 Martin Jacquet
    supervision/matlab-genomix \
161 10 Martin Jacquet
    supervision/tcl-genomix \
162
    shell/eltclsh \
163 1 Martin Jacquet
    simulation/mrsim-genom3 \
164 8 Martin Jacquet
    simulation/mrsim-gazebo \
165 1 Martin Jacquet
    simulation/libmrsim \
166
    simulation/optitrack-gazebo
167
168
PREFER.lapack = robotpkg
169
PREFIX.matlab = <path/to/Matlab>
170
</code></pre>
171 10 Martin Jacquet
The last line need to point to the Matlab root folder in the system (e.g. @/opt/Matlab@).
172
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).
173 24 Martin Jacquet
If Matlab is not installed on the system, remove the lines @supervision/matlab-genomix \@ and @PREFIX.matlab = <path/to/Matlab>@ from the above list.
174 10 Martin Jacquet
Also, all the above is meant for using Pocolibs, not ROS. Futur version of this tutorial might come to use the ROS install.
175
>
176
Now return to the robotpkg folder and install all the set:
177
<pre><code class="shell">
178 38 Martin Jacquet
cd robotpkg
179 10 Martin Jacquet
make update-mpcset
180
</code></pre>
181
>
182
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.
183
>
184
185
h4. 5. Matlab configuration
186
187
The last step is to update Matlab path to use the custom libraries, if relevant.
188
Add the following paths in the Matlab path window:
189
<pre><code class="shell">
190
</path/to/openrobots>/lib/matlab
191
</path/to/openrobots>/lib/matlab/simulink
192
</path/to/openrobots>/lib/matlab/simulink/genomix
193
</code></pre>
194 37 Martin Jacquet
(change </path/to/openrobots> to the value of @$ROBOTPKG_BASE@)
195 11 Martin Jacquet
196
h3. II-2. Install custom components
197 1 Martin Jacquet
198 18 Martin Jacquet
h4. List of the components
199
200
The @src/@ folder contains some additional components, in particular:
201
* *vision-idl*: the type declaration regarding the camera modules
202
* *camgazebo-genom3*: read the data from the gazebo inate cameras, via the gazebo API
203
* *camviz-genom3*: record and/or display the images from a camera
204
* *arucotag-genom3*: detect and filter (EKF-based) the ArUco markers/tags
205
* *maneuver-genom3*: custom version of maneuver (already mentionned) that publishes the reference trajectory for a specified receding horizon
206 36 Martin Jacquet
* *uavmpc-genom3*: the NMPC controller presented in the paper
207 18 Martin Jacquet
208 14 Martin Jacquet
h4. Install the extra components
209 11 Martin Jacquet
210
Since it they are not considered 'stable' as the one provided in robotpkg, we rather install them in a devel folder.
211 27 Martin Jacquet
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:
212 11 Martin Jacquet
<pre><code class="shell">
213
export DEVEL_BASE=`pwd`/devel
214
cd src/
215
</code></pre>
216
>
217 29 Martin Jacquet
For the manual installation, @asciidoctor@ is needed. It can be installed using @apt@ or any package manager.
218 11 Martin Jacquet
Each component here has to be installed manually, using @autoconf@. To do so, proceed as follow:
219 1 Martin Jacquet
<pre><code class="shell">
220 19 Martin Jacquet
cd src/<component>/
221 11 Martin Jacquet
./bootstrap.sh
222
mkdir build
223
cd build
224
../configure --prefix=$DEVEL_BASE --with-templates=pocolibs/client/c,pocolibs/server
225
make install
226 1 Martin Jacquet
</code></pre>
227 11 Martin Jacquet
>
228
The component @vision-idl@ has to be installed first since it defines some type headers used by others.
229 14 Martin Jacquet
The installation of the main component, @uavmpc-genom3@, is described in the next subection.
230 11 Martin Jacquet
>
231 1 Martin Jacquet
232 14 Martin Jacquet
h4. Install the MPC controller
233 1 Martin Jacquet
234 14 Martin Jacquet
Before installing the MPC controller, we have to generate the @C@ sources corresponding to the desired model.
235
To do so, go to the @model_generation/@ folder:
236
<pre><code class="shell">
237
cd src/uavmpc-genom3/model_generation
238
</code></pre>
239
>
240
There is a README.md file there, explaining the requirements.
241
In short, the model sources are exported to @C@ using @CasADi@ in @python3@.
242
@python3@ along with @NumPy@, @SciPy@ and @CasADi@  are required, and easily installable on most Linux distributions (e.g. with @apt@ and @pip3@).
243
Then, the sources are generated using:
244
<pre><code class="shell">
245
python3 gen_model.py <quad or hexa>
246
</code></pre>
247
Then install the component as explained before, but add the following flags to the @configure@ command:
248
<pre><code class="shell">
249 47 Martin Jacquet
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"
250 1 Martin Jacquet
</code></pre>
251 12 Martin Jacquet
>
252
253
h3. II-3. Setup the environment
254
255
In order to run all the installed executables, we need to setup the path to the newly created folders.
256 15 Martin Jacquet
All the required variables are exported in the @env.sh@ file.
257 12 Martin Jacquet
258
h2. III - Running the simulation
259
260
We @ws/@ folder contains all the material to run a basic simulation with the NMPC.
261 13 Martin Jacquet
In a terminal, launch the @launch.sh@ script. It starts all the genom components, in background. It is used as a console since it displays warnings or error during runtime.
262 1 Martin Jacquet
In another terminal, start gazebo with one of the world file provided.
263 13 Martin Jacquet
Finally, run @matlab@ or @eltclsh@ and go to the relevant subsection below.
264
>
265 14 Martin Jacquet
266 1 Martin Jacquet
267 20 Martin Jacquet
h3. III.1. Running the simulations with Matlab
268
269
Change the flag at the top of the script to use either the quadrotor or the hexarotor.
270 14 Martin Jacquet
>
271
The provided scripts are organised as follow
272 1 Martin Jacquet
* The two @param_*.m@ scripts provide the parameters for either a standard colinear quadrotor (denoted *qr*) and a tilted-propeller hexarotor (denoted *hr*).
273
* The @init.m@ script that connects all the components together and call the initialization services for all provided components.
274
* The @traj_*.m@ that runs the specific trajectories for a specific scenario.
275
>
276 44 Martin Jacquet
Run the init script and wait until it stops displaying in the console.
277
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.
278
>
279 1 Martin Jacquet
280
281
h3. III.2. Running the simulations with tcl
282
283 44 Martin Jacquet
The tcl scripts are called from the @eltclsh@ shell environment. In a terminal, run:
284
<pre><code class="tcl">
285
eltclsh
286
</code></pre>
287
>
288 14 Martin Jacquet
In order to run the script and keep the variables in the environment, use the @source@ command.
289 44 Martin Jacquet
The script architecture is the same as the matlab one. Change the flags init.tcl script, then:
290 14 Martin Jacquet
<pre><code class="tcl">
291
source init.tcl
292
source traj_<name_name>.tcl
293
</code></pre>
294
>
295 1 Martin Jacquet
296
h3. III.3. List of the provided trajectories
297
298
* @traj_mpc@ runs a flight using the nmpc without any perceptive constraint, reaching successive waypoints.
299
* @traj_track@ runs a flight using the nmpc with a couple of perceptive constraints, again reaching successive waypoints.
300
It corresponds to the experiment presented in section *V-B* in the paper.
301
* @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.
302
It corresponds to the experiment presented in Section *V-C* in the paper.
303
>
304 44 Martin Jacquet
305
h3. III.4. Comments on how to use the simulator
306
307
* 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@.
308
Then, modify the parameters in the @init@ script: @ground_tag = 1;@, @z_desired = 2;@ and @target_compliant = 0;@
309
* In the experiment presented in the paper, the wall target was 1m high while it is 2m high in the gazebo simulation.
310
* In order to recover from a failed simulation, reset the positions in Gazebo and rerun the scripts.
311
* 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.
312
* 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.
313
** 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.)
314
** 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.
315
** in matlab, use @maneuver.goto('-a', x, y, z, yaw, t);@ ; the @'-a'@ is equivalent to the @&@ above