Project

General

Profile

Wiki » History » Revision 9

Revision 8 (Martin Jacquet, 2020-10-19 20:02) → Revision 9/50 (Martin Jacquet, 2020-10-19 20:04)

h1. Perceptive and torque-control NMPC wiki 

 h2. I - Software Overview 

 h3. I.1. Openrobots 

 Collections of all the open-source software used at LAAS. You can find more details in "Openrobots Wiki-Homepage":https://www.openrobots.org/wiki 
 > 

 h3. I-2. Robotpkg 

 "Robotpkg":http://robotpkg.openrobots.org/ is a packaging system for installing robotics software developed by the robotic community. 
 We will use robotpkg to install the required modules for the simulations (state estimation, gazebo interface...) as well as third-party dependencies (qpOases). 
 > 

 h3. I-3. GenoM 

 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. 
 This allows a great code re-usability and to abstract the user from any specific choice of a middleware. 
 Originally GenoM has been developed tightly with Pocolibs, then from version 3, aka GenoM3, ROS templates has been provided. 
 > 
 Another specificity of GenoM is the interaction with and between components. 
 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.  
 > 

 h3. I-4. Pocolibs 

 "Pocolibs":https://www.openrobots.org/wiki/pocolibs/ is a middleware, like ROS. 
 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. 
 > 

 h3. I-5. TeleKyb 

 The "TeleKyb":https://git.openrobots.org/projects/telekyb3 software platform provides the aerial-robotic oriented softwares developped at LAAS-CNRS. 
 In particular, we will use: 
 * "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. 
 * "pom":https://git.openrobots.org/projects/pom-genom3 a UKF-based state estimator merging state feedback for different sources (e.g. mocap + IMU) 
 * "optitrack":https://git.openrobots.org/projects/optitrack-genom3 export the motion capture data to the genom software stack 
 * "rotorcraft":https://git.openrobots.org/projects/rotorcraft-genom3 low-level interface, with either the simulated or real platform 
 * "nhfc":https://git.openrobots.org/projects/nhfc-genom3 near-hovering flight controller, used for unmodeled take-off and post-failure recovery 
 * "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. 
 > 

 h3. I-6. Gazebo 

 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: 
 * "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) 
 * "optitrack-gazebo":https://git.openrobots.org/projects/optitrack-gazebo emulates the optitrack network interface to publish the model poses 
 > 

 h2. II - Installation procedure 

 This section is a tutorial on how to install the software architecture to run the simulations. 
 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. 
 > 

 h3. II-0. Clone the Perceptive and torque-control NMPC repository 

 Clone the repo associated to this project. Its root will act as the devel folder for the following. 
 <pre><code class="shell"> 
 git clone git://redmine.laas.fr/laas/perceptive-torque-nmpc.git 
 cd ./perceptive-torque-nmpc/ 
 </code></pre> 

 h3. II-1. Setup robotpkg 

 (Steps taken from http://robotpkg.openrobots.org/install.html) 
 > 
 1. Clone the robotpkg lastest release: 
 <pre><code class="shell"> 
 git clone git://git.openrobots.org/robots/robotpkg 
 </code></pre> 

 2. Create an install folder called @openrobots/@, and update the environement variables accordingly, to ease the future steps: 
 <pre><code class="shell"> 
 mkdir openrobots 
 export ROBOTPKG_BASE=`pwd`/openrobots 
 export PATH=$PATH:$ROBOTPKG_BASE/bin:$ROBOTPKG_BASE/sbin 
 </code></pre> 

 3. Install robotpkg 
 <pre><code class="shell"> 
 cd robotpkg/bootstrap 
 ./bootstrap --prefix=$ROBOTPKG_BASE 
 </code></pre> 

 4. Install the required components and there dependencies 
 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_. 
 To do so, we need to edit the config file: @$ROBOTPKG_BASE/etc/robotpkg.conf@. Add the following at the end of the file: 
 <pre><code class="shell"> 
 PKG_OPTIONS.%-genom3 = \ 
         codels \ 
         pocolibs-server \ 
         pocolibs-client-c 

 PKGSET.mpcset = \ 
     sysutils/arduio-genom3 \ 
     architecture/genom3 \ 
     architecture/genom3-pocolibs \ 
     net/genomix \ 
     simulation/optitrack-gazebo \ 
     robots/rotorcraft-genom3 \ 
     localization/pom-genom3 \ 
     localization/optitrack-genom3 \ 
     motion/nhfc-genom3 \ 
     optimization/qpoases path/maneuver-genom3 \ 
     net/genomix optimization/qpoases \ 
     supervision/tcl-genomix \ 
     supervision/matlab-genomix \ 
     simulation/mrsim-genom3 \ 
     simulation/mrsim-gazebo \ 
     simulation/libmrsim 

 PKGSET.robotset = \ 
     simulation/optitrack-gazebo sysutils/arduio-genom3 \ 
     architecture/genom3 \ 
     architecture/genom3-pocolibs \ 
     net/genomix \ 
     robots/rotorcraft-genom3 \ 
     localization/pom-genom3 \ 
     localization/optitrack-genom3 \ 
     motion/nhfc-genom3 \ 
     path/maneuver-genom3 

 PKGSET.robotmpcset = \ 
     sysutils/arduio-genom3 \ 
     architecture/genom3 \ 
     architecture/genom3-pocolibs \ 
     net/genomix \ 
     robots/rotorcraft-genom3 \ 
     localization/pom-genom3 \ 
     localization/optitrack-genom3 \ 
     motion/nhfc-genom3 \ 
     path/maneuver-genom3 \ 
     optimization/qpoases \ 

 PREFER.lapack = robotpkg 
 PREFIX.matlab = <path/to/Matlab> 
 </code></pre>