Embedded Motion Control 2013/Simulator
Installation
If you followed all steps specified on the installation page , you will already have downloaded the simulator Gazebo and our specific Jazz simulator. To be able to use the Jazz simulator, you first have to compile the downloaded ROS packages:
- Open a terminal (ctrl-alt-t)
- Build and compile the jazz simulator and other necessary packages:
rosmake jazz_gazebo gazebo_map_spawner
Furthermore, Gazebo needs to know where to find the robot description (located in jazz_description) which includes its meshes, textures, kinematic chain, etc, and where to find the plugins for the controllers and sensors. This information can be set in the environment variables GAZEBO_PLUGIN_PATH and GAZEBO_MODEL_PATH:
- Open a terminal (ctrl-alt-t)
- Open .bashrc:
gedit ~/.bashrc
- Add the following lines:
export GAZEBO_PLUGIN_PATH=~/ros/general/jazz_gazebo/lib:~/ros/general/tue_gazebo_plugins/lib:$GAZEBO_PLUGIN_PATH
export GAZEBO_MODEL_PATH=~/ros/general/jazz_description:$GAZEBO_MODEL_PATH
Starting the Simulator
- Start Gazebo:
gazebo
- Spawn the maze:
rosrun gazebo_map_spawner spawn_maze
- Spawn Jazz:
roslaunch jazz_gazebo jazz.launch
Notice that the Jazz robot is spawned in the Gazebo world. The Gazebo GUI shows how the world actually is. We can also visualize how the robot perceives it through its sensors, by using the ROS tool Rviz. You can start RViz with a pre-defined config showing most of Jazz' sensors using:
rosrun jazz_visualization rviz
In fact, this simply runs the following command:
rosrun rviz rviz -d ~/ros/general/jazz_visualization/rviz/jazz.vcg
If you are running the Gazebo simulation, you will see the Jazz robot model and white dots which represent the sensor data originating from the (simulated) laser range finder. RViz allows you to visualize many more things. For example, to show the data from the camera:
- Click on the Add button in the lower left
- Select Camera and click OK. A Camera item will pop up in the Displays view on the left.
- Click in the field right next to Image Topic and click the ... button. Now you can select the camera topic (/pico/camera/image)
You will see the camera images visualized in the lower left of your screen.
Examples
Here are some examples on how to use the simulator and how to practice the corridor competition in simulation.
Jazz Driving Example
- Have a look at the file jazz_node.cpp in the src folder of the jazz_example package. You should be able to understand what the program will do.
- Build the package:
rosmake jazz_example
- Run the node (make sure the simulator is still running):
rosrun jazz_example jazz_node
Check the result in both Gazebo and RViz. - Feel free to use this example as a start for your project
Troubleshoot
Gazebo does not stop gracefully upon exit or interrupt (ctrl-c)
You may get the warning:
Warning [gazebo_main.cc:59] escalating to SIGKILL on server
when stopping Gazebo. This is a known bug and has no consequences, other than that it takes a bit longer to kill Gazebo.