Robotics StackExchange | Archived questions

Having issue trying to run Island threads in gazebo_ros using roslaunch

Am trying to simulate multiple robots in my gazebo and do not wish to use Parallel simulations as i wish to test for collisions. https://github.com/alidemir1/RosGazeboParallelSimulations

I wish to input this command

gazebo --verbose -o split_unthrottled2 \

mentioned in http://gazebosim.org/tutorials?tut=parallel&cat=physics and place them inside my roslaunch file.

<include file="$(find gazebo_ros)/launch/empty_world.launch">
<arg name="paused" default="false"/>
    <arg name="use_sim_time" default="true"/>
    <arg name="gui" default="true"/>
    <arg name="headless" default="false"/>
    <arg name="debug" default="false"/>
    <arg name="verbose" default="true"/>
    <arg name="world_name" default="$(find multi_robot_test)/worlds/test.world"/>

How can i place this (-o split_unthrottled2 \ ) to perform my functionality?

Asked by Dickson on 2020-01-15 04:58:59 UTC

Comments

Answers

Try changing the physics parameters on your world file. You can check the documentation here: SDF Format Physics

Check the example file on the right, the island threading parameter should go inside the solver tags.

Asked by idoria on 2020-04-01 11:24:01 UTC

Comments