Project

General

Profile

Wiki » History » Version 22

Gianluca Corsini, 2021-07-05 17:31

1 20 Gianluca Corsini
{{toc}}
2
3 8 Martin Jacquet
*TODO*:
4
* provide alternative for joystick
5
* adapt paths in airpharo_user as much as possible
6
* use default paths of the eeproms in gazebo world (for plugin)
7 13 Martin Jacquet
* explain libdynamixel and dynamixel-gazebo (section II-2)
8 19 Gianluca Corsini
* how to use GInterface (section III)
9 8 Martin Jacquet
10 22 Gianluca Corsini
h1. Prerequisites
11 18 Gianluca Corsini
>
12 2 Martin Jacquet
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.
13 1 Martin Jacquet
The installation on a non-Linux OS has to be handled by the user.
14 2 Martin Jacquet
>
15 18 Gianluca Corsini
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.
16 1 Martin Jacquet
>
17
In order to use our launcher, it is required to use a USB joystick.
18
>
19 18 Gianluca Corsini
20 22 Gianluca Corsini
h1. I - Software Overview
21 1 Martin Jacquet
>
22 22 Gianluca Corsini
h2. I.1. Openrobots
23 1 Martin Jacquet
>
24 2 Martin Jacquet
Collections of all the open-source software used at LAAS. You can find more details in "Openrobots Wiki-Homepage":https://www.openrobots.org/wiki
25
>
26 1 Martin Jacquet
27 22 Gianluca Corsini
h2. I-2. Robotpkg
28 1 Martin Jacquet
>
29 2 Martin Jacquet
"Robotpkg":http://robotpkg.openrobots.org/ is a packaging system for installing robotics software developed by the robotic community.
30
We will use robotpkg to install the required modules for the simulations (state estimation, gazebo interface...) as well as third-party dependencies (qpOases).
31
>
32
33 22 Gianluca Corsini
h2. I-3. GenoM
34 2 Martin Jacquet
>
35 1 Martin Jacquet
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 18 Gianluca Corsini
This allows a great code re-usability and to abstracts 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 have been provided.
38
>
39 2 Martin Jacquet
Another specificity of GenoM is the interaction with and between components.
40 1 Martin Jacquet
Each component is started independently 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 18 Gianluca Corsini
>
42 2 Martin Jacquet
43 22 Gianluca Corsini
h2. I-4. Pocolibs
44 18 Gianluca Corsini
>
45 2 Martin Jacquet
"Pocolibs":https://www.openrobots.org/wiki/pocolibs/ is a middleware, like ROS.
46 18 Gianluca Corsini
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 performance.
47 2 Martin Jacquet
>
48
49 22 Gianluca Corsini
h2. I-5. TeleKyb
50 18 Gianluca Corsini
>
51 1 Martin Jacquet
The "TeleKyb":https://git.openrobots.org/projects/telekyb3 software platform provides the aerial-robotic oriented software developed at LAAS-CNRS.
52 18 Gianluca Corsini
In particular, we will use:
53 2 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)
54 18 Gianluca Corsini
* "optitrack":https://git.openrobots.org/projects/optitrack-genom3, to export the motion capture data to the genom software stack
55 2 Martin Jacquet
* "rotorcraft":https://git.openrobots.org/projects/rotorcraft-genom3, the low-level interface, with either the simulated or real platform
56 18 Gianluca Corsini
* "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 implements take-off and waypoint-to-waypoint motions. A joystick-based velocity control is implemented, but not used in this project.
57
* "dynamixel":https://git.openrobots.org/projects/dynamixel-genom3, an interface to control the Dynamixel motors. It is used since the gazebo gripper plugin used for the simulation (presented below) adopts the same interface protocol as the Dynamixel motors (precisely Dynamixel Protocol 2.0).
58 11 Martin Jacquet
* "joystick":https://git.openrobots.org/projects/joystick-genom3, a component to read the joystick inputs.
59 1 Martin Jacquet
>
60 2 Martin Jacquet
61 22 Gianluca Corsini
h2. I-6. Gazebo
62 18 Gianluca Corsini
>
63 2 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:
64 18 Gianluca Corsini
* "mrsim-gazebo":https://git.openrobots.org/projects/mrsim-gazebo a plugin to interface the simulated multi-rotor with the genom components. It uses "libmrsim":https://git.openrobots.org/projects/libmrsim, a Multi-Robot SIMulator interface, 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 transparent, from the software point of view.
65 1 Martin Jacquet
* "optitrack-gazebo":https://git.openrobots.org/projects/optitrack-gazebo emulates the optitrack network interface to publish the model poses.
66 18 Gianluca Corsini
>
67 2 Martin Jacquet
The installation procedure for Gazebo can be found at http://www.gazebosim.org/tutorials?cat=install&tut=install_ubuntu&ver=9.0
68 16 Martin Jacquet
>
69 1 Martin Jacquet
70 22 Gianluca Corsini
h2. I-7. TCL
71 16 Martin Jacquet
>
72
The interaction with the GenoM components is handled using a scripting language, implementing the communication through the "genomix":https://git.openrobots.org/projects/genomix HTTP server.
73
There are two available language interfaces: "matlab":https://git.openrobots.org/projects/matlab-genomix and "tcl":https://git.openrobots.org/projects/tcl-genomix.
74 18 Gianluca Corsini
"eltclsh":https://git.openrobots.org/projects/eltclsh is an in-terminal TCL shell to interact with the components. However, in the following, we provide a TCL-based software that is all-embedded to avoid the use of the inline interaction through eltclsh.
75
>
76 2 Martin Jacquet
77 22 Gianluca Corsini
h1. II - Installation procedure
78 18 Gianluca Corsini
>
79 2 Martin Jacquet
This section is a tutorial on how to install the software architecture to run the simulations.
80
>
81
82 22 Gianluca Corsini
h2. II-0. Clone the Visual and Physical Control Architecture for Flying End-Effector repository
83 18 Gianluca Corsini
>
84 1 Martin Jacquet
Clone the repo associated to this project, using the git daemon. Its root will act as the devel folder for the following.
85 4 Martin Jacquet
<pre><code class="shell">
86 2 Martin Jacquet
git git://redmine.laas.fr/laas/visual-physical-control-architecture.git
87 1 Martin Jacquet
cd ./visual-physical-control-architecture/
88 4 Martin Jacquet
</code></pre>
89 2 Martin Jacquet
>
90 21 Gianluca Corsini
To simplify the installation, we provide a @env.sh@ script that exports all the required variables.
91 2 Martin Jacquet
In order to run all the installed executables, we need to setup the path to the newly created folders.
92 1 Martin Jacquet
*/!\* the source has to be called in the repository root since it uses the @pwd@ command to export the paths.
93 2 Martin Jacquet
<pre><code class="shell">
94
source env.sh
95 1 Martin Jacquet
</code></pre>
96 2 Martin Jacquet
>
97 1 Martin Jacquet
98 22 Gianluca Corsini
h2. II-1. Setup robotpkg
99 2 Martin Jacquet
>
100
(Steps taken from http://robotpkg.openrobots.org/install.html)
101 18 Gianluca Corsini
>
102 22 Gianluca Corsini
h3. 1. Clone the robotpkg lastest release:
103 1 Martin Jacquet
104 2 Martin Jacquet
<pre><code class="shell">
105
git clone git://git.openrobots.org/robots/robotpkg
106
</code></pre>
107
108 22 Gianluca Corsini
h3. 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:
109 2 Martin Jacquet
110
<pre><code class="shell">
111
export ROBOTPKG_BASE=`pwd`/openrobots
112
</code></pre>
113
114 22 Gianluca Corsini
h3. 3. Install robotpkg
115 2 Martin Jacquet
116
<pre><code class="shell">
117
cd robotpkg/bootstrap
118
./bootstrap --prefix=$ROBOTPKG_BASE
119
</code></pre>
120
121 22 Gianluca Corsini
h3. 4. Install the required components and their dependencies
122 18 Gianluca Corsini
>
123 2 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_.
124
To do so, we need to edit the config file: @$ROBOTPKG_BASE/etc/robotpkg.conf@. Add the following at the end of the file:
125 18 Gianluca Corsini
126 2 Martin Jacquet
<pre><code class="shell">
127
PKG_OPTIONS.%-genom3 = \
128
        codels \
129
        pocolibs-server \
130
        pocolibs-client-c
131
132
PKGSET.mpcset = \
133 1 Martin Jacquet
    middleware/pocolibs \
134
    architecture/genom3 \
135 2 Martin Jacquet
    architecture/genom3-pocolibs \
136 1 Martin Jacquet
    robots/rotorcraft-genom3 \
137
    localization/pom-genom3 \
138 2 Martin Jacquet
    localization/optitrack-genom3 \
139
    net/genomix \
140
    supervision/tcl-genomix \
141 1 Martin Jacquet
    shell/eltclsh \
142
    simulation/mrsim-gazebo \
143
    simulation/libmrsim \
144
    simulation/optitrack-gazebo \
145 2 Martin Jacquet
    hardware/dynamixel-genom3 \
146 1 Martin Jacquet
    joystick-genom3
147 6 Martin Jacquet
148 1 Martin Jacquet
PREFER.lapack = robotpkg
149 5 Martin Jacquet
PREFIX.matlab = <path/to/Matlab>
150 1 Martin Jacquet
</code></pre>
151 2 Martin Jacquet
152 22 Gianluca Corsini
The last line needs to point to the Matlab root folder in the system (e.g. @/opt/Matlab@).
153
It is recommended 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).
154 2 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.
155 1 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.
156
>
157 2 Martin Jacquet
Now return to the robotpkg folder and install all the set:
158
<pre><code class="shell">
159
cd robotpkg
160 1 Martin Jacquet
make update-mpcset
161 2 Martin Jacquet
</code></pre>
162 1 Martin Jacquet
>
163 22 Gianluca Corsini
During the installation, some required dependencies need to be installed with the usual package manager (e.g. @apt@ on Ubuntu). When the install stops, install the required packages and rerun the command above.
164 2 Martin Jacquet
>
165
166 22 Gianluca Corsini
h2. II-2. Install custom components
167 2 Martin Jacquet
>
168 22 Gianluca Corsini
h3. List of the components
169 18 Gianluca Corsini
>
170 2 Martin Jacquet
The @src/@ folder contains some additional components, in particular:
171 22 Gianluca Corsini
* *vision-idl*: provide the type declarations regarding the camera modules
172
* *camgazebo-genom3*: read the data from the gazebo innate camera, via the gazebo API
173 12 Martin Jacquet
* *camviz-genom3*: record and/or display the images from a camera
174 1 Martin Jacquet
* *arucotag-genom3*: detect and filter (EKF-based) the ArUco markers/tags
175 2 Martin Jacquet
* *phynt-genom3*: handle physical interaction (wrench observer and admittance filter)
176 22 Gianluca Corsini
* *uavatt-genom3*: attitude controller for fully-actuated UAVs
177 1 Martin Jacquet
* *uavpos-genom3*: position controler for fully-actuated UAVs
178 12 Martin Jacquet
* *visualservoing-genom3*: implement the state machine for the pick-n-place experiment and provide the reference trajectory (either based on visual-servoing, or based on waypoints for takeoff/exploration)
179 22 Gianluca Corsini
* *libdynamixel*: provide the type and function declarations used by @magdynamixel-gazebo@
180
* *magdynamixel-gazebo*: gazebo plugin that emulates a magnetic gripper and adopts the Dynamixel Protocol 2.0
181 1 Martin Jacquet
>
182 22 Gianluca Corsini
h3. Install the extra components
183 1 Martin Jacquet
>
184 22 Gianluca Corsini
Since the extra necessary components are not considered 'stable' as the one provided in robotpkg, we rather install them in a devel folder.
185 18 Gianluca Corsini
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:
186 22 Gianluca Corsini
187 2 Martin Jacquet
<pre><code class="shell">
188
export DEVEL_BASE=`pwd`/devel
189
cd src/
190 1 Martin Jacquet
</code></pre>
191 22 Gianluca Corsini
192 1 Martin Jacquet
For the manual installation, @asciidoctor@ is needed. It can be installed using @apt@ or any package manager.
193 2 Martin Jacquet
Each component here has to be installed manually, using @autoconf@. To do so, proceed as follow:
194 22 Gianluca Corsini
195 2 Martin Jacquet
<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 22 Gianluca Corsini
204 2 Martin Jacquet
The component @vision-idl@ has to be installed first since it defines some type headers used by others.
205 22 Gianluca Corsini
The installation of the main component, @uavmpc-genom3@, is described in the next subsection.
206 2 Martin Jacquet
>
207
208 22 Gianluca Corsini
h2. II-3. Set up the environment
209 18 Gianluca Corsini
>
210 2 Martin Jacquet
In order to run all the installed executables, we need to setup the path to the newly created folders.
211
All the required variables are exported in the @env.sh@ file.
212 18 Gianluca Corsini
>
213 2 Martin Jacquet
214 22 Gianluca Corsini
h1. III - Running the simulation
215 18 Gianluca Corsini
>
216 2 Martin Jacquet
*The part is going to be filled soon.*
217 18 Gianluca Corsini
>
218 2 Martin Jacquet
219 22 Gianluca Corsini
h2. III-1. GInterface
220 18 Gianluca Corsini
>
221 15 Martin Jacquet
In order to start all the required softwares, connect the components together and store the parameters, we use a TCL-based interface.
222
The folder called ginterface contains all the necessary scripts.
223
For convenience, we provide as much generic scripts as possible.
224
The next section explains how to setup the ginterface, then how to use it to run the proposed simulation.
225
We also provide the "mission" script used in the experiment presented in the paper, so that the reader can have a glance to the parameters used in this experiment.
226
227 22 Gianluca Corsini
h2. III-2. Setup the GInterface
228 18 Gianluca Corsini
>
229 15 Martin Jacquet
230 22 Gianluca Corsini
h2. III-3. Run the simulation
231 18 Gianluca Corsini
>