Gazebo | Ignition | Community
Ask Your Question
0

Best practices for programmatic start, unpause, and shutdown of Gazebo simulation

asked 2018-06-22 13:55:25 -0600

Ubuntu 16.04
Gazebo 7.0
ROS Kinetic

Objective:
For both regression testing and experiments, I want to set up a framework that:
1) Launches Gazebo and loads the payload models/plugins, etc. w/ the simulation paused
2) Unpauses Gazebo once it has finished loading
3) Run my experiment
4) Closes gz_server & client
5) Repeat
6) Profit?!

Does anyone have advice/suggestions/templates for this type of use-pattern?


I was planning to start Gazebo via the gazebo_ros package using subprocess wtih roslaunch.

My primary concern is 2). Does Gazebo broadcast some kind of signal once it's finished starting up completely?

edit retag flag offensive close merge delete

2 Answers

Sort by ยป oldest newest most voted
2

answered 2018-06-25 06:04:15 -0600

wentz gravatar image

I did something like you mentioned in my work as research assistant in the university. Probably this will become open source in the next month. So I will describe how i did it and give you some hints.

I have 4 packages.

  • first generate's yaml files with the description of the simulation (models, poses ,plugins, parameter, etc)
  • second loads these files and starts all launchfiles, spawn objects, etc.
  • an observer to determine if a test has ended and if it was successful
  • a logger to collect datas like rosbag, test time, etc
  • (5.) a small visualization library

I also used python and the subprocess-API this worked fine for me. More problematic is to kill all the programs/nodes that was running (specially action_server like move_base). So at the end of the test i just reset the simulation and only kill nodes that i really need to be kill. Also over time the memory usage of my system getting really high. Couldn't figure out why is that. But for this reason i restart the framework every 100 tests.

Hope that will help you. If you have more questions please ask me.

edit flag offensive delete link more

Comments

Thank you for the hints/tips! Very helpful. I'll be sure to ask as I run into more questions.

josephcoombe gravatar imagejosephcoombe ( 2018-06-25 10:44:24 -0600 )edit

Can you provide more info on how you used python?

jc gravatar imagejc ( 2018-08-14 11:30:26 -0600 )edit

Hi @wentz, Did your code get publish as open source? Thanks.

jesus gravatar imagejesus ( 2019-03-07 00:04:03 -0600 )edit
2

answered 2018-07-20 03:16:04 -0600

musamorena gravatar image

I am also working on something similar to run repetitive experiments. Some things that helped my in addition to similar things in the last answer are the following:

  • I have a very simple ROS node that I always start with my simulation to unpause the simulation at every iteration to make sure all nodes have time to start.
  • To end every iteration after a fixed max. simulation time, I start also this node with a timer using the simulation time with the required="true" option to kill all nodes in the launch file once the timeout is reached.
  • I wrote a simulation runner script that starts the launch file with all my nodes, including Gazebo and then makes sure to store log files and the ROS bag in a user-defined folder, being also possible to override some of the input arguments of the launch file using this YAML configuration in order to allow an optimizer, for example, to change the parameters of the simulation run. This simulation pool also orchestrates the different runs just in case you want to have multiple simulations running in parallel.

I have found out that the number of Gazebo instances running at the same time cannot be too high, otherwise they start having Seg Faults, showing some errors that are related to the rendering. I still haven't figured out why that happens. If you pack your simulation in a Docker container, you might also control that by setting, for example, the number of CPUs used, that helped my simulations a little bit so I could run multiple instances on the same machine.

I would just advise you not to use Gazebo 9 right away because of this issue. The gzserver is not being finished correctly after the gazebo_ros node dies, so it starts building up a bunch of processes with each iterations. Starting ROS_MASTER_URI and GAZEBO_MASTER_URI with different ports every time like done here in the simulation wrapper script is really important, especially if you want to still keep working on other things and running simulations manually while your simulations run in the background.

edit flag offensive delete link more

Comments

Thanks this is helpful - especially links to example scripts!

josephcoombe gravatar imagejosephcoombe ( 2018-07-23 09:06:24 -0600 )edit
1

No problem, feel free to try it out. I am still changing and tweaking the scripts, I had a hard time finding examples on how to do this when I started. You can post also in the [Issues page](https://github.com/uuvsimulator/uuv_simulation_evaluation/issues) if you have questions, feature requests or bugs to report.

musamorena gravatar imagemusamorena ( 2018-07-24 07:07:55 -0600 )edit

Question Tools

2 followers

Stats

Asked: 2018-06-22 13:55:25 -0600

Seen: 4,149 times

Last updated: Jul 20 '18