Project

General

Profile

Wiki » History » Version 27

Martin Jacquet, 2020-10-22 11:18

1 1 Martin Jacquet
h1. Perceptive and torque-control NMPC wiki
2
3 2 Martin Jacquet
h2. I - Software Overview
4 1 Martin Jacquet
5 2 Martin Jacquet
h3. I.1. Openrobots
6 1 Martin Jacquet
7
Collections of all the open-source software used at LAAS. You can find more details in "Openrobots Wiki-Homepage":https://www.openrobots.org/wiki
8
>
9
10 11 Martin Jacquet
11 2 Martin Jacquet
h3. I-2. Robotpkg
12 1 Martin Jacquet
13 2 Martin Jacquet
"Robotpkg":http://robotpkg.openrobots.org/ is a packaging system for installing robotics software developed by the robotic community.
14
We will use robotpkg to install the required modules for the simulations (state estimation, gazebo interface...) as well as third-party dependencies (qpOases).
15 1 Martin Jacquet
>
16
17 11 Martin Jacquet
18 2 Martin Jacquet
h3. I-3. GenoM
19 1 Martin Jacquet
20 5 Martin Jacquet
The Generator of Modules, aka GenoM, generator of modules, designed to be middleware independant, i.e. the same module can be compiled for, e.g., ROS or Pocolibs, without any modification.
21 2 Martin Jacquet
This allows a great code re-usability and to abstract the user from any specific choice of a middleware.
22 5 Martin Jacquet
Originally GenoM has been developed tightly with Pocolibs, then from version 3, aka GenoM3, ROS templates has been provided.
23 1 Martin Jacquet
>
24 2 Martin Jacquet
Another specificity of GenoM is the interaction with and between components.
25
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 it "Matlab":https://git.openrobots.org/projects/matlab-genomix or "TCL":https://git.openrobots.org/projects/tcl-genomix. 
26
>
27 1 Martin Jacquet
28 11 Martin Jacquet
29 2 Martin Jacquet
h3. I-4. Pocolibs
30 1 Martin Jacquet
31 2 Martin Jacquet
"Pocolibs":https://www.openrobots.org/wiki/pocolibs/ is a middleware, like ROS.
32 6 Martin Jacquet
It aims at being more performant 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.
33 1 Martin Jacquet
>
34
35 11 Martin Jacquet
36 4 Martin Jacquet
h3. I-5. TeleKyb
37 2 Martin Jacquet
38
The "TeleKyb":https://git.openrobots.org/projects/telekyb3 software platform provides the aerial-robotic oriented softwares developped at LAAS-CNRS.
39
In particular, we will use:
40
* "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.
41 3 Martin Jacquet
* "pom":https://git.openrobots.org/projects/pom-genom3 a UKF-based state estimator merging state feedback for different sources (e.g. mocap + IMU)
42
* "optitrack":https://git.openrobots.org/projects/optitrack-genom3 export the motion capture data to the genom software stack
43
* "rotorcraft":https://git.openrobots.org/projects/rotorcraft-genom3 low-level interface, with either the simulated or real platform
44
* "nhfc":https://git.openrobots.org/projects/nhfc-genom3 near-hovering flight controller, used for unmodeled take-off and post-failure recovery
45
* "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. A joystick-based velocity control is implemented, but not used in this project.
46 1 Martin Jacquet
>
47
48 11 Martin Jacquet
49 4 Martin Jacquet
h3. I-6. Gazebo
50 1 Martin Jacquet
51 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:
52
* "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)
53
* "optitrack-gazebo":https://git.openrobots.org/projects/optitrack-gazebo emulates the optitrack network interface to publish the model poses
54
>
55 2 Martin Jacquet
56 11 Martin Jacquet
57
58 2 Martin Jacquet
h2. II - Installation procedure
59 7 Martin Jacquet
60
This section is a tutorial on how to install the software architecture to run the simulations.
61
Note that everything has been tested on Ubuntu 18.04 since it is the OS used by the LAAS-CNRS robotic platform. It should work seamlessly on other OS, but there is no guarantee.
62
>
63
64 11 Martin Jacquet
65 7 Martin Jacquet
h3. II-0. Clone the Perceptive and torque-control NMPC repository
66
67
Clone the repo associated to this project. Its root will act as the devel folder for the following.
68
<pre><code class="shell">
69
git clone git://redmine.laas.fr/laas/perceptive-torque-nmpc.git
70
cd ./perceptive-torque-nmpc/
71
</code></pre>
72 11 Martin Jacquet
>
73 15 Martin Jacquet
To simplify the installation, we provide some environment variables in the @env.sh@ file.
74
In order to run all the installed executables, we need to setup the path to the newly created folders.
75
We provide a @env.sh@ script that exports all the required variables. In the root folder, do:
76
<pre><code class="shell">
77
source env.sh
78
</code></pre>
79
>
80 7 Martin Jacquet
81 11 Martin Jacquet
82 7 Martin Jacquet
h3. II-1. Setup robotpkg
83
84
(Steps taken from http://robotpkg.openrobots.org/install.html)
85 10 Martin Jacquet
86
h4. 1. Clone the robotpkg lastest release:
87 7 Martin Jacquet
88 1 Martin Jacquet
<pre><code class="shell">
89
git clone git://git.openrobots.org/robots/robotpkg
90 7 Martin Jacquet
</code></pre>
91 10 Martin Jacquet
92 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:
93 7 Martin Jacquet
94
<pre><code class="shell">
95 1 Martin Jacquet
export ROBOTPKG_BASE=`pwd`/openrobots
96 7 Martin Jacquet
</code></pre>
97
98 10 Martin Jacquet
h4. 3. Install robotpkg
99
100 1 Martin Jacquet
<pre><code class="shell">
101
cd robotpkg/bootstrap
102 7 Martin Jacquet
./bootstrap --prefix=$ROBOTPKG_BASE
103
</code></pre>
104
105 10 Martin Jacquet
h4. 4. Install the required components and there dependencies
106
107 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_.
108
To do so, we need to edit the config file: @$ROBOTPKG_BASE/etc/robotpkg.conf@. Add the following at the end of the file:
109
<pre><code class="shell">
110
PKG_OPTIONS.%-genom3 = \
111
        codels \
112
        pocolibs-server \
113
        pocolibs-client-c
114
115
PKGSET.mpcset = \
116
    sysutils/arduio-genom3 \
117
    architecture/genom3 \
118
    architecture/genom3-pocolibs \
119
    robots/rotorcraft-genom3 \
120 1 Martin Jacquet
    localization/pom-genom3 \
121
    localization/optitrack-genom3 \
122 8 Martin Jacquet
    motion/nhfc-genom3 \
123 1 Martin Jacquet
    optimization/qpoases \
124 8 Martin Jacquet
    net/genomix \
125 9 Martin Jacquet
    supervision/matlab-genomix \
126 10 Martin Jacquet
    supervision/tcl-genomix \
127
    shell/eltclsh \
128 1 Martin Jacquet
    simulation/mrsim-genom3 \
129 8 Martin Jacquet
    simulation/mrsim-gazebo \
130 1 Martin Jacquet
    simulation/libmrsim \
131
    simulation/optitrack-gazebo
132
133
PREFER.lapack = robotpkg
134
PREFIX.matlab = <path/to/Matlab>
135
</code></pre>
136 10 Martin Jacquet
The last line need to point to the Matlab root folder in the system (e.g. @/opt/Matlab@).
137
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).
138 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.
139 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.
140
>
141
Now return to the robotpkg folder and install all the set:
142
<pre><code class="shell">
143
cd ..
144
make update-mpcset
145
</code></pre>
146
>
147
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.
148
>
149
150
h4. 5. Matlab configuration
151
152
The last step is to update Matlab path to use the custom libraries, if relevant.
153
Add the following paths in the Matlab path window:
154
<pre><code class="shell">
155
</path/to/openrobots>/lib/matlab
156
</path/to/openrobots>/lib/matlab/simulink
157
</path/to/openrobots>/lib/matlab/simulink/genomix
158
</code></pre>
159 25 Martin Jacquet
(change </path/to/openrobots> to the vlaue of @$ROBOTPKG_BASE@)
160 11 Martin Jacquet
161
h3. II-2. Install custom components
162 1 Martin Jacquet
163 18 Martin Jacquet
h4. List of the components
164
165
The @src/@ folder contains some additional components, in particular:
166
* *vision-idl*: the type declaration regarding the camera modules
167
* *camgazebo-genom3*: read the data from the gazebo inate cameras, via the gazebo API
168
* *camviz-genom3*: record and/or display the images from a camera
169
* *arucotag-genom3*: detect and filter (EKF-based) the ArUco markers/tags
170
* *maneuver-genom3*: custom version of maneuver (already mentionned) that publishes the reference trajectory for a specified receding horizon
171
* *uavmpc-genom3*: the NMPC controller presented in the pape
172
173 14 Martin Jacquet
h4. Install the extra components
174 11 Martin Jacquet
175
Since it they are not considered 'stable' as the one provided in robotpkg, we rather install them in a devel folder.
176 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:
177 11 Martin Jacquet
<pre><code class="shell">
178
export DEVEL_BASE=`pwd`/devel
179
cd src/
180
</code></pre>
181
>
182
Each component here has to be installed manually, using @autoconf@. To do so, proceed as follow:
183 1 Martin Jacquet
<pre><code class="shell">
184 19 Martin Jacquet
cd src/<component>/
185 11 Martin Jacquet
./bootstrap.sh
186
mkdir build
187
cd build
188
../configure --prefix=$DEVEL_BASE --with-templates=pocolibs/client/c,pocolibs/server
189
make
190
make install
191 1 Martin Jacquet
</code></pre>
192 11 Martin Jacquet
>
193
The component @vision-idl@ has to be installed first since it defines some type headers used by others.
194 14 Martin Jacquet
The installation of the main component, @uavmpc-genom3@, is described in the next subection.
195 11 Martin Jacquet
>
196 1 Martin Jacquet
197 14 Martin Jacquet
h4. Install the MPC controller
198 1 Martin Jacquet
199 14 Martin Jacquet
Before installing the MPC controller, we have to generate the @C@ sources corresponding to the desired model.
200
To do so, go to the @model_generation/@ folder:
201
<pre><code class="shell">
202
cd src/uavmpc-genom3/model_generation
203
</code></pre>
204
>
205
There is a README.md file there, explaining the requirements.
206
In short, the model sources are exported to @C@ using @CasADi@ in @python3@.
207
@python3@ along with @NumPy@, @SciPy@ and @CasADi@  are required, and easily installable on most Linux distributions (e.g. with @apt@ and @pip3@).
208
Then, the sources are generated using:
209
<pre><code class="shell">
210
python3 gen_model.py <quad or hexa>
211
</code></pre>
212
Then install the component as explained before, but add the following flags to the @configure@ command:
213
<pre><code class="shell">
214 12 Martin Jacquet
../configure --prefix=$GENOM_DEVEL --with-templates=pocolibs/client/c,pocolibs/server CFLAGS='-Wall -O3 -march=native -mfpmath=sse' CXXFLAGS='-std=c++14 -Wall -O3 -march=native -mfpmath=sse' CPPFLAGS='-I$ROBOTPKG_BASE/include' LDFLAGS='-L$ROBOTPKG_BASE/lib -Wl,-R$ROBOTPKG_BASE/lib'
215 1 Martin Jacquet
</code></pre>
216 12 Martin Jacquet
>
217
218
h3. II-3. Setup the environment
219
220
In order to run all the installed executables, we need to setup the path to the newly created folders.
221 15 Martin Jacquet
All the required variables are exported in the @env.sh@ file.
222 12 Martin Jacquet
223
h2. III - Running the simulation
224
225
We @ws/@ folder contains all the material to run a basic simulation with the NMPC.
226
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.
227 13 Martin Jacquet
In another terminal, start gazebo with one of the world file provided.
228 1 Martin Jacquet
Finally, run @matlab@ or @eltclsh@ and go to the relevant subsection below.
229 13 Martin Jacquet
>
230
231 14 Martin Jacquet
232 1 Martin Jacquet
h3. III.1. Running the simulations with Matlab
233
234 20 Martin Jacquet
Change the flag at the top of the script to use either the quadrotor or the hexarotor.
235
Change also the variable @devel_path@ to the value of @$DEVEL_BASE@
236
>
237 14 Martin Jacquet
The provided scripts are organised as follow
238
* The two @param_*.m@ scripts provide the parameters for either a standard colinear quadrotor (denoted *qr*) and a tilted-propeller hexarotor (denoted *hr*).
239
* The @init.m@ script that connects all the components together and call the initialization services for all provided components.
240
* The @traj_*.m@ that runs the specific trajectories for a specific scenario.
241
Launch the 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.
242 13 Martin Jacquet
>
243 1 Martin Jacquet
244
245
h3. III.2. Running the simulations with tcl
246
247 22 Martin Jacquet
_The TCL scripts are not included yet_
248
_I will wait for the the current matlab scripts to be tested by other users, include potential feedback, then finalize the tcl versions_
249 14 Martin Jacquet
The tcl scripts are called from the @eltclsh@ shell environment.
250
In order to run the script and keep the variables in the environment, use the @source@ command.
251 20 Martin Jacquet
The script architecture is the same as the matlab one. Change the flag and @devel_path@ in the init.tcl script, then:
252 14 Martin Jacquet
<pre><code class="tcl">
253
source init.tcl
254
source traj_<name_name>.tcl
255
</code></pre>
256
>
257
258
h3. III.3. List of the provided trajectories
259
260
* @traj_mpc@ runs a flight using the nmpc without any perceptive constraint, reaching successive waypoints.
261
* @traj_track@ runs a flight using the nmpc with a couple of perceptive constraints, again reaching successive waypoints.
262
It corresponds to the experiment presented in section *V-B* in the paper.
263
* @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.
264
It corresponds to the experiment presented in Section *V-C* in the paper.
265 22 Martin Jacquet
>
266
In order to perform the exact simulation performed in Section *V-E* of the paper, one need first to uncomment the tracking of the second tag in the @model_hexa.py@ file and recompile @uavmpc-genom3@.
267
Then, modify the parameters in @init.m@: @z_desired = 2;@ and @target_compliant = 0;@