Wiki » History » Version 25
Gianluca Corsini, 2021-07-05 18:46
1 | 23 | Gianluca Corsini | h1. Wiki |
---|---|---|---|
2 | |||
3 | 20 | Gianluca Corsini | {{toc}} |
4 | |||
5 | 8 | Martin Jacquet | *TODO*: |
6 | 24 | Gianluca Corsini | * provide an alternative for joystick |
7 | 8 | Martin Jacquet | * adapt paths in airpharo_user as much as possible |
8 | 24 | Gianluca Corsini | * use default paths of the EEPROMs in gazebo world (for plugin) |
9 | 13 | Martin Jacquet | * explain libdynamixel and dynamixel-gazebo (section II-2) |
10 | 8 | Martin Jacquet | * how to use GInterface (section III) |
11 | 1 | Martin Jacquet | |
12 | 23 | Gianluca Corsini | h2. Prerequisites |
13 | 18 | Gianluca Corsini | > |
14 | 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. |
15 | 1 | Martin Jacquet | The installation on a non-Linux OS has to be handled by the user. |
16 | 2 | Martin Jacquet | > |
17 | 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. |
18 | 1 | Martin Jacquet | > |
19 | In order to use our launcher, it is required to use a USB joystick. |
||
20 | > |
||
21 | |||
22 | 23 | Gianluca Corsini | h2. I - Software Overview |
23 | 22 | Gianluca Corsini | > |
24 | 23 | Gianluca Corsini | |
25 | h3. I.1. Openrobots |
||
26 | 1 | Martin Jacquet | > |
27 | 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 |
28 | > |
||
29 | 22 | Gianluca Corsini | |
30 | 23 | Gianluca Corsini | h3. I-2. Robotpkg |
31 | 1 | Martin Jacquet | > |
32 | 2 | Martin Jacquet | "Robotpkg":http://robotpkg.openrobots.org/ is a packaging system for installing robotics software developed by the robotic community. |
33 | We will use robotpkg to install the required modules for the simulations (state estimation, gazebo interface...) as well as third-party dependencies (qpOases). |
||
34 | > |
||
35 | |||
36 | 23 | Gianluca Corsini | h3. I-3. GenoM |
37 | 2 | Martin Jacquet | > |
38 | 18 | Gianluca Corsini | 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. |
39 | This allows a great code re-usability and to abstracts the user from any specific choice of a middleware. |
||
40 | 1 | Martin Jacquet | Originally GenoM has been developed tightly with Pocolibs, then from version 3, aka GenoM3, ROS templates have been provided. |
41 | 18 | Gianluca Corsini | > |
42 | 2 | Martin Jacquet | Another specificity of GenoM is the interaction with and between components. |
43 | 18 | Gianluca Corsini | 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. |
44 | 2 | Martin Jacquet | > |
45 | 1 | Martin Jacquet | |
46 | 23 | Gianluca Corsini | h3. I-4. Pocolibs |
47 | 18 | Gianluca Corsini | > |
48 | 2 | Martin Jacquet | "Pocolibs":https://www.openrobots.org/wiki/pocolibs/ is a middleware, like ROS. |
49 | 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. |
50 | 2 | Martin Jacquet | > |
51 | |||
52 | 23 | Gianluca Corsini | h3. I-5. TeleKyb |
53 | 18 | Gianluca Corsini | > |
54 | The "TeleKyb":https://git.openrobots.org/projects/telekyb3 software platform provides the aerial-robotic oriented software developed at LAAS-CNRS. |
||
55 | 2 | Martin Jacquet | In particular, we will use: |
56 | 1 | 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) |
57 | 18 | Gianluca Corsini | * "optitrack":https://git.openrobots.org/projects/optitrack-genom3, to export the motion capture data to the genom software stack |
58 | 2 | Martin Jacquet | * "rotorcraft":https://git.openrobots.org/projects/rotorcraft-genom3, the low-level interface, with either the simulated or real platform |
59 | 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. |
60 | * "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). |
||
61 | 11 | Martin Jacquet | * "joystick":https://git.openrobots.org/projects/joystick-genom3, a component to read the joystick inputs. |
62 | 2 | Martin Jacquet | > |
63 | 22 | Gianluca Corsini | |
64 | 23 | Gianluca Corsini | h3. I-6. Gazebo |
65 | 18 | Gianluca Corsini | > |
66 | 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: |
67 | 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. |
68 | * "optitrack-gazebo":https://git.openrobots.org/projects/optitrack-gazebo emulates the optitrack network interface to publish the model poses. |
||
69 | 2 | Martin Jacquet | > |
70 | 1 | Martin Jacquet | The installation procedure for Gazebo can be found at http://www.gazebosim.org/tutorials?cat=install&tut=install_ubuntu&ver=9.0 |
71 | 16 | Martin Jacquet | > |
72 | 22 | Gianluca Corsini | |
73 | 23 | Gianluca Corsini | h3. I-7. TCL |
74 | 1 | Martin Jacquet | > |
75 | 16 | Martin Jacquet | 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. |
76 | There are two available language interfaces: "matlab":https://git.openrobots.org/projects/matlab-genomix and "tcl":https://git.openrobots.org/projects/tcl-genomix. |
||
77 | 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. |
78 | > |
||
79 | 2 | Martin Jacquet | |
80 | 23 | Gianluca Corsini | h2. II - Installation procedure |
81 | 18 | Gianluca Corsini | > |
82 | 2 | Martin Jacquet | This section is a tutorial on how to install the software architecture to run the simulations. |
83 | > |
||
84 | |||
85 | 23 | Gianluca Corsini | h3. II-0. Clone the Visual and Physical Control Architecture for Flying End-Effector repository |
86 | 18 | Gianluca Corsini | > |
87 | 4 | Martin Jacquet | Clone the repo associated to this project, using the git daemon. Its root will act as the devel folder for the following. |
88 | 2 | Martin Jacquet | <pre><code class="shell"> |
89 | 1 | Martin Jacquet | git git://redmine.laas.fr/laas/visual-physical-control-architecture.git |
90 | 4 | Martin Jacquet | cd ./visual-physical-control-architecture/ |
91 | 2 | Martin Jacquet | </code></pre> |
92 | 1 | Martin Jacquet | > |
93 | 21 | Gianluca Corsini | To simplify the installation, we provide a @env.sh@ script that exports all the required variables. |
94 | 24 | Gianluca Corsini | In order to run all the installed executables, we need to set up the path to the newly created folders. |
95 | 2 | Martin Jacquet | */!\* the source has to be called in the repository root since it uses the @pwd@ command to export the paths. |
96 | <pre><code class="shell"> |
||
97 | 1 | Martin Jacquet | source env.sh |
98 | </code></pre> |
||
99 | 2 | Martin Jacquet | > |
100 | 22 | Gianluca Corsini | |
101 | 24 | Gianluca Corsini | h3. II-1. Set up robotpkg |
102 | 1 | Martin Jacquet | > |
103 | 2 | Martin Jacquet | (Steps taken from http://robotpkg.openrobots.org/install.html) |
104 | 18 | Gianluca Corsini | > |
105 | 23 | Gianluca Corsini | h4. 1. Clone the robotpkg lastest release: |
106 | 2 | Martin Jacquet | |
107 | <pre><code class="shell"> |
||
108 | 1 | Martin Jacquet | git clone git://git.openrobots.org/robots/robotpkg |
109 | 2 | Martin Jacquet | </code></pre> |
110 | |||
111 | 23 | Gianluca Corsini | 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: |
112 | 2 | Martin Jacquet | |
113 | <pre><code class="shell"> |
||
114 | export ROBOTPKG_BASE=`pwd`/openrobots |
||
115 | </code></pre> |
||
116 | |||
117 | 23 | Gianluca Corsini | h4. 3. Install robotpkg |
118 | 2 | Martin Jacquet | |
119 | <pre><code class="shell"> |
||
120 | cd robotpkg/bootstrap |
||
121 | ./bootstrap --prefix=$ROBOTPKG_BASE |
||
122 | </code></pre> |
||
123 | |||
124 | 23 | Gianluca Corsini | h4. 4. Install the required components and their dependencies |
125 | 18 | Gianluca Corsini | > |
126 | 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_. |
127 | To do so, we need to edit the config file: @$ROBOTPKG_BASE/etc/robotpkg.conf@. Add the following at the end of the file: |
||
128 | 18 | Gianluca Corsini | |
129 | 2 | Martin Jacquet | <pre><code class="shell"> |
130 | PKG_OPTIONS.%-genom3 = \ |
||
131 | codels \ |
||
132 | pocolibs-server \ |
||
133 | pocolibs-client-c |
||
134 | |||
135 | PKGSET.mpcset = \ |
||
136 | 1 | Martin Jacquet | middleware/pocolibs \ |
137 | architecture/genom3 \ |
||
138 | 2 | Martin Jacquet | architecture/genom3-pocolibs \ |
139 | 1 | Martin Jacquet | robots/rotorcraft-genom3 \ |
140 | localization/pom-genom3 \ |
||
141 | 2 | Martin Jacquet | localization/optitrack-genom3 \ |
142 | net/genomix \ |
||
143 | supervision/tcl-genomix \ |
||
144 | 1 | Martin Jacquet | shell/eltclsh \ |
145 | simulation/mrsim-gazebo \ |
||
146 | simulation/libmrsim \ |
||
147 | simulation/optitrack-gazebo \ |
||
148 | 2 | Martin Jacquet | hardware/dynamixel-genom3 \ |
149 | 1 | Martin Jacquet | joystick-genom3 |
150 | |||
151 | PREFER.lapack = robotpkg |
||
152 | PREFIX.matlab = <path/to/Matlab> |
||
153 | </code></pre> |
||
154 | 2 | Martin Jacquet | |
155 | 22 | Gianluca Corsini | The last line needs to point to the Matlab root folder in the system (e.g. @/opt/Matlab@). |
156 | 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). |
||
157 | 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. |
158 | 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. |
159 | > |
||
160 | 2 | Martin Jacquet | Now return to the robotpkg folder and install all the set: |
161 | <pre><code class="shell"> |
||
162 | cd robotpkg |
||
163 | 1 | Martin Jacquet | make update-mpcset |
164 | </code></pre> |
||
165 | 22 | Gianluca Corsini | > |
166 | 1 | Martin Jacquet | 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. |
167 | 2 | Martin Jacquet | > |
168 | |||
169 | 23 | Gianluca Corsini | h3. II-2. Install custom components |
170 | 2 | Martin Jacquet | > |
171 | 23 | Gianluca Corsini | h4. List of the components |
172 | 18 | Gianluca Corsini | > |
173 | 2 | Martin Jacquet | The @src/@ folder contains some additional components, in particular: |
174 | 24 | Gianluca Corsini | * *vision-idl*: provide the type declarations regarding the camera modules. |
175 | * *camgazebo-genom3*: read the data from the gazebo innate camera, via the gazebo API. |
||
176 | * *camviz-genom3*: record and/or display the images from a camera. |
||
177 | * *arucotag-genom3*: detect and filter (EKF-based) the ArUco markers/tags. |
||
178 | * *phynt-genom3*: handle physical interaction (wrench observer and admittance filter). |
||
179 | * *uavatt-genom3*: attitude controller for fully-actuated UAVs. |
||
180 | * *uavpos-genom3*: position controler for fully-actuated UAVs. |
||
181 | * *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). |
||
182 | * *libdynamixel*: provide the type and function declarations used by magdynamixel-gazebo. |
||
183 | * *magdynamixel-gazebo*: gazebo plugin that emulates a magnetic gripper and adopts the Dynamixel Protocol 2.0. |
||
184 | 1 | Martin Jacquet | > |
185 | 23 | Gianluca Corsini | h4. Install the extra components |
186 | 1 | Martin Jacquet | > |
187 | 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. |
188 | 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: |
189 | 2 | Martin Jacquet | |
190 | <pre><code class="shell"> |
||
191 | 1 | Martin Jacquet | export DEVEL_BASE=`pwd`/devel |
192 | 2 | Martin Jacquet | cd src/ |
193 | 1 | Martin Jacquet | </code></pre> |
194 | 2 | Martin Jacquet | |
195 | 1 | Martin Jacquet | For the manual installation, @asciidoctor@ is needed. It can be installed using @apt@ or any package manager. |
196 | 22 | Gianluca Corsini | Each component here has to be installed manually, using @autoconf@. To do so, proceed as follow: |
197 | 1 | Martin Jacquet | |
198 | 2 | Martin Jacquet | <pre><code class="shell"> |
199 | 1 | Martin Jacquet | cd src/<component>/ |
200 | 2 | Martin Jacquet | ./bootstrap.sh |
201 | mkdir build |
||
202 | cd build |
||
203 | ../configure --prefix=$DEVEL_BASE --with-templates=pocolibs/client/c,pocolibs/server |
||
204 | 22 | Gianluca Corsini | make install |
205 | 2 | Martin Jacquet | </code></pre> |
206 | 1 | Martin Jacquet | |
207 | The component @vision-idl@ has to be installed first since it defines some type headers used by others. |
||
208 | > |
||
209 | 2 | Martin Jacquet | |
210 | 23 | Gianluca Corsini | h3. II-3. Set up the environment |
211 | 18 | Gianluca Corsini | > |
212 | 24 | Gianluca Corsini | In order to run all the installed executables, we need to set up the path to the newly created folders. |
213 | 2 | Martin Jacquet | All the required variables are exported in the @env.sh@ file. |
214 | 18 | Gianluca Corsini | > |
215 | 2 | Martin Jacquet | |
216 | 23 | Gianluca Corsini | h2. III - Running the simulation |
217 | 18 | Gianluca Corsini | > |
218 | 2 | Martin Jacquet | *The part is going to be filled soon.* |
219 | 18 | Gianluca Corsini | > |
220 | 2 | Martin Jacquet | |
221 | 23 | Gianluca Corsini | h3. III-1. GInterface |
222 | 18 | Gianluca Corsini | > |
223 | 24 | Gianluca Corsini | In order to start all the required software, connect the components together and store the parameters, we use a TCL-based interface. |
224 | The folder called @ginterface@ contains all the necessary scripts. |
||
225 | For convenience, we provide as many generic scripts as possible. |
||
226 | The next section explains how to set up the GInterface, then how to use it to run the proposed simulation. |
||
227 | We also provide the "mission" script used in the experiment presented in the paper, so that the reader can have a glance at the parameters used in this experiment. |
||
228 | 15 | Martin Jacquet | |
229 | 24 | Gianluca Corsini | h3. III-2. Set up the GInterface |
230 | 18 | Gianluca Corsini | > |
231 | 25 | Gianluca Corsini | h4. Install dependencies |
232 | > |
||
233 | Before being able to run @GInterface@, the following packages might be required to be installed with the usual package manager (e.g. @apt@ on Ubuntu): @tcllib@, @rsync@, @grsync@, @rpcbind@, @python-pandas@, @python-qt4@. |
||
234 | > |
||
235 | h4. Configuration |
||
236 | > |
||
237 | Navigate inside the @GInterface@ repository and then in the folder @users@. |
||
238 | Here open the file @airpharo_user.tcl@, whose content is reported below for convenience. |
||
239 | 15 | Martin Jacquet | |
240 | 25 | Gianluca Corsini | <pre> |
241 | #!/bin/sh |
||
242 | |||
243 | # -*-Tcl-*- \ |
||
244 | |||
245 | exec tclsh "$0" ${1+"$@"} |
||
246 | |||
247 | set user [dict create \ |
||
248 | nickname "airpharo_user" \ |
||
249 | pc_name "pandartin" \ |
||
250 | ground_station_hostname "pandartin-wifi" \ |
||
251 | path_tcl "/opt/openrobots/lib/tcl-genomix" \ |
||
252 | path_rep "/home/mjacquet/RIS/work/ginterface" \ |
||
253 | path_sup "/home/mjacquet/ginterface" \ |
||
254 | path_log "/tmp" \ |
||
255 | path_log_sim "/tmp" \ |
||
256 | path_launch "/home/mjacquet/RIS/work/ginterface/launchers" \ |
||
257 | path_devel "/home/mjacquet/RIS/genom_devel" \ |
||
258 | path_openrobots "/opt/openrobots" \ |
||
259 | path_gazebo_world "/home/mjacquet/RIS/work/ginterface/gazebo/worlds" \ |
||
260 | modules {rotorcraft pom optitrack dynamixel joystick uavatt uavpos maneuver phynt arduio t265 arucotag camgazebo visualservoing camviz} \ |
||
261 | ] |
||
262 | </pre> |
||
263 | |||
264 | Modify the paths and other user configurations according to your system setup. Below more details regarding these parameters are reported: |
||
265 | * *pc_name*: the name of your machine, when running simulations, otherwise it is the name of the machine on the aerial platform when running experiments. |
||
266 | * *ground_station_hostname*: the name of your machine when accessing it through the network (e.g. through @ssh@). |
||
267 | * *path_tcl*: path to @tcl-genomix@ where the software in @robotpkg@ has been installed. If you followed the instructions of this wiki it should be @<path-to-ginterface>/ginterface/openrobots/lib/tcl-genomix@. |
||
268 | * *path_rep*: path to the @GInterface@ repository. |
||
269 | * *path_sup*: path to the @GInterface@ repository in the machine mounted in the aerial platform. This path is not required for running the provided simulation. |
||
270 | * *path_log*: path where the logs are saved during experiments (in the machine specified at @pc_name@). |
||
271 | * *path_log_sim*: path where the logs are saved during simulations (in the machine specified at @ground_station_hostname@). |
||
272 | * *path_launch*: path to the @launchers@ folder of the @GInterface@ repository in your machine. |
||
273 | * *path_devel*: path to the @devel@ folder where the extra necessary components have been installed. If you follow the instructions of this wiki it should be @<path-to-ginterface>/ginterface/devel@. |
||
274 | * *path_openrobots*: path where the software in robotpkg has been installed. If you followed the instructions of this wiki it should be @<path-to-ginterface>/ginterface/openrobots@. |
||
275 | * *path_gazebo_world*: path where the world files for Gazebo are located. If you followed the instructions of this wiki it should be @<path-to-ginterface>/ginterface/gazebo/worlds@. |
||
276 | |||
277 | 22 | Gianluca Corsini | h2. III-3. Run the simulation |
278 | 18 | Gianluca Corsini | > |
279 | 25 | Gianluca Corsini | |
280 | First of all, source the @env.sh@ file. Then, connect a USB joystick to your pc, prior to running the simulation. |
||
281 | Open a terminal and navigate to the repository root and run the following command: |
||
282 | |||
283 | <pre> |
||
284 | $ ./GInterface.tcl |
||
285 | </pre> |
||
286 | |||
287 | At this point, a window should appear. Click on @File@, then on @Missions@ and select @sim_fiberthex@. |
||
288 | After that, @Gazebo@ should be launched, and right after a @XTerm@ console should appear. |
||
289 | ** Then other two graphical interfaces should appear. |
||
290 | ** You should have something similar to what depicted in the next picture. |
||
291 | !{width:80%}sim_fiberthex.png! |
||
292 | ** Press the central button of the joypad until the propellers start to run. If everything went well, the propellers should spin. |
||
293 | ** Then, on the graphical interface with the labels @POM@, @IMU@ and @OPTITRACK@, click on @Options@ and then on @Command Waypoint@. |
||
294 | ** Press the button @Take Off@. The drone now should have taken off. |
||
295 | ** Insert a desired z in the related field and press @send@. The drone now should fly at the commanded altitude. |
||
296 | |||
297 | Now some configurations steps are necessary, in order to run correctly @GInterface@. |
||
298 | To test that the configuration is correct, a simple demo will be launched. |
||
299 | * Open your @.bashrc@ and add the following line: |
||
300 | <pre> |
||
301 | export GAZEBO_MODEL_PATH=${GAZEBO_MODEL_PATH}:$<somewhere>/ginterface/gazebo/models |
||
302 | </pre> |
||
303 | this will allow Gazebo to see all the models contained in @GInterface@ repository. |
||
304 | Replace @<somewhere>@ in order to match the location in which you cloned the @GInterface@ repository. |
||
305 | *NB:* If you have already an SDF model for Gazebo, which is contained in a folder with the same name of those contained into @ginterface/gazebo/models@ but at a different path, then the world files, which include these models, may include the wrong version. |
||
306 | *Please verify to do +not+ have model folders with same names of those contained in @ginterface/gazebo/models@, at other locations which are added to @$GAZEBO_MODEL_PATH@!* |