Wiki » History » Version 11
François Félix Ingrand, 2018-05-29 11:10
1 | 3 | François Félix Ingrand | h1. LAAS Code (GenoM3) for the OSMOSIS show case. |
---|---|---|---|
2 | 1 | François Félix Ingrand | |
3 | 11 | François Félix Ingrand | This project contains all the GenoM3 components needed for the OSMOSIS case study. It can be used with ROS or PocoLibs middleware, with the simulation in gazebo or on the real robot. If you want to run all the components in |
4 | 3 | François Félix Ingrand | |
5 | h2. Robot setup |
||
6 | |||
7 | 11 | François Félix Ingrand | Below is a drawing of the Robot Setup (the components with bold name are available as sub-projects). |
8 | 3 | François Félix Ingrand | |
9 | 11 | François Félix Ingrand | The components are: |
10 | 10 | François Félix Ingrand | * "IMUDriver-genom3":https://redmine.laas.fr/projects/imudriver : complete and compiles, properly tested on the real IMU. |
11 | * "LaserDriver-genom3":https://redmine.laas.fr/projects/laserdriver : tested with an Hokuyo UTM-30LX at LAAS and on the real robot. |
||
12 | * "PotentialField-genom3":https://redmine.laas.fr/projects/potentialfield : complete and compiles, tested with the simulator and the real robot. |
||
13 | * "SafetyPilot-genom3":https://redmine.laas.fr/projects/safetypilot : complete and compiles, tested with the simulator and the real robot. |
||
14 | * "Teleop-genom3":https://redmine.laas.fr/projects/teleop : complete and compiles, tested on the real robot. |
||
15 | * "RobotDriver-genom3":https://redmine.laas.fr/projects/robotdriver : we do not have the source to fully implement this component. For now it is a proxy to get the /odom and /joy topics from the real robot controler (and copy them in the proper port), and provides the /summit_xl_control/cmd_vel topic to the real controller from the Safety Pilot Cmd port. This module only makes sense when using PocoLibs as it will "translate" topics from ROS to GenoM3 ports and vice versa. Otherwise, you may as well directly map to the ros topics. |
||
16 | * "GPSDriver-genom3":https://redmine.laas.fr/projects/gpsdriver : complete and compiles, tested with the simulator and on the real robot. |
||
17 | * "Localization-genom3":https://redmine.laas.fr/projects/localization-g3 : this component is basically "pom-genom3":https://git.openrobots.org/projects/pom-genom3?jump=welcome . In simulation, it will grab the /odom Odometry topics from gazebo, translate it ina pose-estimator format used by pom-genom3 and then pom will produce the pose which can be used directly. On the real robot, we use pom which grab GPS position, Odometry speed and IMU speed/accel and merge them. |
||
18 | * "Navigation-genom3":https://redmine.laas.fr/projects/navigation : complete and compiles, tested with the simulator. |
||
19 | * "NRWLSensor-genom3":https://redmine.laas.fr/projects/rwlsensor : complete and compiles, tested with the simulator. |
||
20 | 1 | François Félix Ingrand | |
21 | 3 | François Félix Ingrand | !{width:600px}OSMOSIS.png! |
22 | 1 | François Félix Ingrand | |
23 | 11 | François Félix Ingrand | |
24 | 1 | François Félix Ingrand | h2. Simulation setup |
25 | |||
26 | 11 | François Félix Ingrand | There is also a simulation setup which can be used. It has less functional modules (as some of them are handled by the Gazebo simulator). All the ports shared with the simulator (IMU, LaserScan, Odometry, Cmd) are ROS topics and are properly defined in IDL as to correspond to their ROS counterpart. Still, Pom does a poor job when merging Odometry, GPS and IMU in simulation (probably because the Odometry is terrain truth, so using a kahlman does not make sense). So we just grab /odom for position. |
27 | 8 | François Félix Ingrand | |
28 | 3 | François Félix Ingrand | !{width:600px}simu.png! |
29 | 11 | François Félix Ingrand | |
30 | h2. Scripts to run the whole demo |