Wiki » History » Version 8
Gianluca Corsini, 2022-02-28 17:09
1 | 1 | Gianluca Corsini | h1. NMPC for Human Aerial Handover WIKI |
---|---|---|---|
2 | |||
3 | {{toc}} |
||
4 | |||
5 | h2. Foreword |
||
6 | |||
7 | 8 | Gianluca Corsini | The present @WIKI@ may miss some details which can be added progressively. |
8 | 1 | Gianluca Corsini | |
9 | 8 | Gianluca Corsini | In case of questions, queries, comments, missing details, or bug reports, feel free to use the @ISSUES@ system or contact the corresponding authors (contact details in the project's "@OVERVIEW@ panel":https://redmine.laas.fr/projects/nmpc-handover). |
10 | |||
11 | 1 | Gianluca Corsini | h2. Prerequisites |
12 | |||
13 | 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. |
||
14 | Some issues have been found while installing the software on @Ubuntu 16.04@ because of version incompatibility with @Protoc@ and @Protobuf@. |
||
15 | The installation on a non-Linux OS has to be handled by the user. |
||
16 | |||
17 | 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 repository or by the LAAS-CNRS robotic platform aims to be installed locally in the repository folder to avoid polluting the user's system. |
||
18 | |||
19 | 4 | Gianluca Corsini | Finally, to run the simulations and interface with the middleware, it is assumed to have @MATLAB@ installed. |
20 | The provided code has been tested with @MATLAB >= r2019b@; other releases could be compatible but they have not been tested. If you run another version and notice any issue or that the code is compatible, please do not hesitate to contact the authors to point that out, so that this wiki can be updated. |
||
21 | 1 | Gianluca Corsini | |
22 | h2. I. Software Overview |
||
23 | |||
24 | h3. I.A. Openrobots |
||
25 | |||
26 | Collections of all the open-source software used at LAAS. You can find more details in "Openrobots Wiki-Homepage":https://www.openrobots.org/wiki. |
||
27 | |||
28 | h3. I.B. Robotpkg |
||
29 | |||
30 | "@Robotpkg@":http://robotpkg.openrobots.org/ is a packaging system for installing robotics software developed by the robotics community. |
||
31 | We will use @robotpkg@ to install the required modules for the simulations (state estimation, @Gazebo@ interface...) as well as third-party dependencies (@qpOases@). |
||
32 | |||
33 | h3. I.C. GenoM |
||
34 | |||
35 | @GenoM@ is a generator of modules, designed to be middleware independent, 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 abstracts the user from any specific choice of middleware. |
||
37 | Originally @GenoM@ has been developed tightly with @Pocolibs@, then from version 3, aka @GenoM3@, @ROS@ templates have been provided. |
||
38 | |||
39 | Another specificity of GenoM is the interaction with and between components. |
||
40 | Each component is started independently like a Linux executable (within a @roscore@, for @ROS@, or an @h2@ instance, 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 | 2 | Gianluca Corsini | h3. I.D. Pocolibs |
43 | 1 | Gianluca Corsini | |
44 | 2 | Gianluca Corsini | @Pocolibs@ is a middleware, like @ROS@. |
45 | 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, which leads to greater delays and loss of performance. |
||
46 | |||
47 | h3. I.E. TeleKyb |
||
48 | |||
49 | 1 | Gianluca Corsini | The "@TeleKyb@":https://git.openrobots.org/projects/telekyb3 software platform provides the aerial-robotic oriented software developed at LAAS-CNRS. |
50 | In particular, we will use: |
||
51 | 2 | Gianluca Corsini | * @mrsim@, a Multi-Robot SIMulator. It is designed to be a transparent interface w.r.t. the real aerial vehicles used in LAAS-CNRS. It makes the transition between simulation and experiments seamless, from the software point of view. |
52 | 1 | Gianluca Corsini | * @pom@, a UKF-based state estimator merging state-feedback measurements of different sources (e.g. Motion Capture + IMU). |
53 | * @optitrack@, to export the motion capture data to the @genom@ software stack. |
||
54 | * @rotorcraft@, the low-level interface, with either the simulated or real platform. |
||
55 | * @nhfc@, near-hovering flight controller, used for unmodeled take-off and landing. |
||
56 | * @maneuver@, a trajectory planner, providing position and attitude (as quaternions) as well as first- and second-order derivatives. It implements waypoint-to-waypoint trajectory generation. |
||
57 | |||
58 | 2 | Gianluca Corsini | h3. I.F. Gazebo |
59 | 1 | Gianluca Corsini | |
60 | To simulate the platform, we use the @Gazebo@ simulator. To interface it with the @genom@ software stack, we use two dedicated components: |
||
61 | * @mrsim-gazebo@ a plugin to interface the simulated multi-rotor with the @genom@ components (in place of @mrsim@). |
||
62 | * @optitrack-gazebo@ emulates the optitrack network interface to publish the model poses. |
||
63 | |||
64 | The installation procedure for @Gazebo@ can be found in the official documentation "Install Gazebo using Ubuntu packages -- ver. 9":http://www.gazebosim.org/tutorials?cat=install&tut=install_ubuntu&ver=9.0. |
||
65 | |||
66 | |||
67 | h2. II. Installation Procedure |
||
68 | |||
69 | This section is a tutorial on how to install the software architecture to run the simulations. |
||
70 | |||
71 | 5 | Gianluca Corsini | h3. II.A. Clone the "NMPC for Human Aerial Handover" repository |
72 | 1 | Gianluca Corsini | |
73 | Clone the repo associated with this project. Its root will act as the @devel@ folder for the following. |
||
74 | <pre><code class="shell"> |
||
75 | git clone git://redmine.laas.fr/laas/nmpc-handover.git |
||
76 | cd ./nmpc-handover |
||
77 | </code></pre> |
||
78 | |||
79 | To simplify the installation, we provide some environment variables in the @env.sh@ file. |
||
80 | In order to run all the installed executables, we need to set up the path to the newly created folders. |
||
81 | We provide an @env.sh@ script that exports all the required variables. |
||
82 | 2 | Gianluca Corsini | */!\ :* the @source@ command has to be called within this repository's root since it uses the @pwd@ command to export the paths. |
83 | 1 | Gianluca Corsini | <pre><code class="shell"> |
84 | source env.sh |
||
85 | </code></pre> |
||
86 | |||
87 | h3. II.B. Setup robotpkg |
||
88 | |||
89 | > These steps are taken from the official documentation "Install":http://robotpkg.openrobots.org/install.html. |
||
90 | |||
91 | # Clone the robotpkg latest release. |
||
92 | <pre><code class="shell"> |
||
93 | git clone git://git.openrobots.org/robots/robotpkg |
||
94 | </code></pre> |
||
95 | # Check that the @openrobots/@ folder exists in the repository root, and update the environement variables accordingly, if you haven't already sourced the @env.sh@ file. |
||
96 | <pre><code class="shell"> |
||
97 | export ROBOTPKG_BASE=`pwd`/openrobots |
||
98 | </code></pre> |
||
99 | # Install @robotpkg@. |
||
100 | <pre><code class="shell"> |
||
101 | cd robotpkg/bootstrap |
||
102 | ./bootstrap --prefix=$ROBOTPKG_BASE |
||
103 | </code></pre> |
||
104 | 7 | Gianluca Corsini | # Install the required components and their dependencies. |
105 | 1 | Gianluca Corsini | The installation can be done 'manually' by navigating to the desired folder in @./robotpkg/@ and install with @make update@. +Anyway, we will simplify the process using a set+. |
106 | 2 | Gianluca Corsini | To do so, we need to edit the config file: @$ROBOTPKG_BASE/etc/robotpkg.conf@. Add the following lines at the end of the file: |
107 | 1 | Gianluca Corsini | <pre><code class="shell"> |
108 | PKG_OPTIONS.%-genom3 = \ |
||
109 | codels \ |
||
110 | pocolibs-server \ |
||
111 | pocolibs-client-c |
||
112 | |||
113 | PKGSET.mpcset = \ |
||
114 | architecture/genom3 \ |
||
115 | architecture/genom3-pocolibs \ |
||
116 | localization/pom-genom3 \ |
||
117 | localization/optitrack-genom3 \ |
||
118 | hardware/joystick-genom3 \ |
||
119 | motion/nhfc-genom3 \ |
||
120 | net/genomix \ |
||
121 | optimization/qpoases \ |
||
122 | path/maneuver-genom3 \ |
||
123 | simulation/mrsim-gazebo \ |
||
124 | simulation/optitrack-gazebo \ |
||
125 | supervision/matlab-genomix \ |
||
126 | supervision/tcl-genomix \ |
||
127 | robots/rotorcraft-genom3 |
||
128 | |||
129 | PREFER.lapack = robotpkg |
||
130 | 2 | Gianluca Corsini | PREFIX.matlab = <path/to/MATLAB> |
131 | </code></pre> |
||
132 | 6 | Gianluca Corsini | The last line (@<path/to/MATLAB>@) needs to point to the @MATLAB@ root folder in the system (e.g. @/opt/Matlab@). |
133 | 3 | Gianluca Corsini | It is recommended to use @MATLAB@ for the proposed simulations since the syntax is more intuitive and comprehensible for an end-user who will modify them. |
134 | If @MATLAB@ is not installed on the system, please install it, since the provided interface to the @GenoM@ components is provided only in @MATLAB@. |
||
135 | 1 | Gianluca Corsini | Also, all the above is meant for using Pocolibs, not @ROS@. Future versions of this tutorial might come to use the @ROS@ install. |
136 | 3 | Gianluca Corsini | Now return to the @robotpkg@ folder and install the custom set by typing: |
137 | <pre><code class="shell"> |
||
138 | cd robotpkg |
||
139 | 1 | Gianluca Corsini | make update-mpcset |
140 | </code></pre> |
||
141 | During the installation, some required dependencies may need to be installed with the usual package manager (e.g. @apt@ on Ubuntu). When the install stops, install the required missing packages and re-run the command @make update-mpcset@. |
||
142 | 7 | Gianluca Corsini | # @MATLAB@ configuration. |
143 | The last step is to update the @MATLAB@ path to use the custom libraries, if relevant. |
||
144 | Add the following paths in the @Matlab@ path window (or in the file @startup.m): |
||
145 | <pre><code class="shell"> |
||
146 | </path/to/openrobots>/lib/matlab |
||
147 | </path/to/openrobots>/lib/matlab/simulink |
||
148 | </path/to/openrobots>/lib/matlab/simulink/genomix |
||
149 | </code></pre> |
||
150 | where @</path/to/openrobots>@ shall be changed with the value of @$ROBOTPKG_BASE@. |
||
151 | > You can find more details in @MATLAB@'s official documentation about "startup":https://fr.mathworks.com/help/matlab/ref/startup.html#d123e1348441. |
||
152 | |||
153 | |||
154 | h3. II.C. Install custom components |
||
155 | |||
156 | h4. List of the extra components |
||
157 | |||
158 | The @src/@ folder contains some additional components, in particular: |
||
159 | * @vision-idl@: the type declarations regarding the camera modules. |
||
160 | * @camgazebo-genom3@: read the data from the gazebo innate cameras, via the gazebo API. |
||
161 | * @camviz-genom3@: record and/or display the images from a camera. |
||
162 | * @arucotag-genom3@: detect and the ArUco markers. |
||
163 | * @uavmpc-genom3@: the NMPC controller presented in the paper manuscript. |
||
164 | * @humancontrol-genom3@: both a Gazebo plugin and a @Genom@ component that work together, in order to move the human model in the @Gazebo@ world |
||
165 | |||
166 | h4. Install the extra components |
||
167 | |||
168 | As the modules listed above are not considered 'stable' as the one provided in robotpkg, we rather install them in a devel folder. |
||
169 | Go to the project root, check that the @devel@ folder exists, export the path if you haven't already sourced the @env.sh@. |
||
170 | > */!\ :* sourcing @env.sh@ is mandatory now, since in the following steps the aliases in that file will be used. They will simplify the installation process of these extra components. |
||
171 | Then go to the sources folder: |
||
172 | <pre><code class="shell"> |
||
173 | export DEVEL_BASE=`pwd`/devel |
||
174 | cd src/ |
||
175 | </code></pre> |
||
176 | For the manual installation, @asciidoctor@ is needed. It can be installed using @apt@ or any package manager. |
||
177 | Each component here has to be installed manually, using @autoconf@. To do so, proceed as follow: |
||
178 | <pre><code class="shell"> |
||
179 | cd src/<component>/ |
||
180 | ./bootstrap.sh |
||
181 | mkdir build |
||
182 | cd build |
||
183 | configure_genom |
||
184 | make install |
||
185 | </code></pre> |
||
186 | */!\ :* The component @vision-idl@ must be installed first since it defines some type headers used by others. |
||
187 | *The installation of the main component, @uavmpc-genom3@, is described in the next subsection.* |
||
188 | > |
||
189 | |||
190 | h4. Install the MPC controller |
||
191 | |||
192 | Before installing the MPC controller, we have to generate the @C@ sources corresponding to the desired model. |
||
193 | To do so, go to the @model_generation/@ folder: |
||
194 | <pre><code class="shell"> |
||
195 | cd src/uavmpc-genom3/model_generation |
||
196 | </code></pre> |
||
197 | > |
||
198 | There is a @README.md@ file there, explaining the requirements. |
||
199 | In short, the model sources are exported to @C@ using @CasADi@ in @python3@. |
||
200 | @python3@ along with @NumPy@, @SciPy@ and @CasADi@ are required, and easily installable on most Linux distributions (e.g. with @apt@ and @pip3@). |
||
201 | Then, the sources are generated using: |
||
202 | <pre><code class="shell"> |
||
203 | python3 gen_model.py quad_human_ergonomy |
||
204 | </code></pre> |
||
205 | Then install the component as explained before, but add the following flags to the @configure@ command: |
||
206 | <pre><code class="shell"> |
||
207 | configure_uavmpc |
||
208 | 1 | Gianluca Corsini | </code></pre> |
209 | 8 | Gianluca Corsini | |
210 | h3. II-3. Setup the environment |
||
211 | |||
212 | In order to run all the installed executables, we need to setup the path to the newly created folders. |
||
213 | All the required variables are exported in the @env.sh@ file. |
||
214 | |||
215 | |||
216 | h2. III. Running the simulation |
||
217 | |||
218 | The @ws/@ folder contains all the material to run a basic simulation with the NMPC. |
||
219 | Firstly, navigate to the subdirectory @sh@. In a terminal, launch the @launch_1.sh@ script. It starts all the @Genom@ components, in the background. It is used as a console since it displays warnings or errors during runtime. |
||
220 | Then, after the message @>> Please run also launch_2.sh in another terminal <<@ is displayed, open a second terminal, and run the @launch_2.sh@ script. This runs the last Genom component. It has been decided to keep it apart from the others since it will print out many data during the execution of the simulations. You can ignore those warning messages. This prevents polluting the first terminal window, preventing from monitoring the main components. |
||
221 | In another terminal, start @Gazebo@ with the world file provided in @nmpc-handover/gazebo/worlds@. |
||
222 | > Use the command @gazebo --verbose handover.world@. |
||
223 | Finally, run @MATLAB@ and move to the next subsection. |
||
224 | > |
||
225 | |||
226 | h3. III.A. Running the simulations with @MATLAB@ |
||
227 | |||
228 | To run the simulation, you need to run the @main.m@ script. It runs the simulation scenario, it takes care of connecting all the @Genom@ modules, loading all the necessary parameters, and setting up the simulator. |
||
229 | Here is a description of the other files for convenience. |
||
230 | * The @enable_ergonomics.m@ script enables the ergonomics in the NMPC controller. It is run by @main.m@ during the execution of the simulation. |
||
231 | * The @ho_usropt.m@ script provides the flags related to the handover simulation. |
||
232 | * The @move_human.m@ script allows to move the human in a programmatically way. It is run by @main.m@ during the execution of the simulation. |
||
233 | * The @param_quad.m@ script provides the parameters for the colinear quadrotor (denoted @quad@). |
||
234 | * The @path_to_handover.m@ script allows to generate and feed to the controller the path to reach the handover position. It is run by @main.m@ during the execution of the simulation. If the @usropt.replay_path_handover@ flag is set to @1@, then the path to handover will be replayed by loading the @.mat@ file in @etc@. Instead, if set to @0@, the path-to-handover trajectory will be generated 'on-the-fly'. |
||
235 | */!\ :* The @path_to_handover.m@ requires the @MATLAB@'s "@Curve Fitting Toolbox@":https://fr.mathworks.com/products/curvefitting.html to generate the reference motion task 'on-the-fly'. |
||
236 | Here, instead, is a description of the subdirectories: |
||
237 | * The @etc@ folder contains the @traj.m@ file which contains a pre-recorded path-to-handover trajectory. |
||
238 | * The @utils@ folder contains some utility functions used by the @MATLAB@ code to run properly. It is not advisable to change them. |
||
239 | |||
240 | Therefore, run the @main.m@ script and wait until it displays the message @Arm the robot?@. |
||
241 | Then press enter between each step to proceed to the next one. The evolution can be watched in gazebo, and in the console terminal as well. |
||
242 | > |
||
243 | |||
244 | h3. III.B. Comments on how to use the simulator |
||
245 | |||
246 | * The MPC weights and parameters can be tuned in the @param_quad.m@ file. Those gains will be used to track the reference motion task. When, the robot is in front of the human, the ergonomics task is enabled, and the motion task disabled. Moreover, the gains in the controller will be changed accordingly. To tune this set of gains, open the @enable_ergonomics.m@ script. |
||
247 | * The marker can be moved, either using a joystick, or manually, using the interface of the tagcontrol component. |