ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

Terminal Freezes after roslaunch event

asked 2015-09-15 12:39:32 -0500

Arpit gravatar image

updated 2015-09-15 14:45:13 -0500

I want to spawn a pioneer3at robot in gazebo through ros so I created a file called p3at.launch and made the corresponding urdf file. When I roslaunch it, it started normally but freezes. Terminal looks like this -

//Terminal

arpit@arpit-SVE15137CNB:/opt/ros/indigo/share/urdf$ roslaunch gazebo_ros p3at.launch

... logging to /home/arpit/.ros/log/ee1fb8ae-5bcf-11e5-97ce-b8763fea9d09/roslaunch-arpit-SVE15137CNB-16521.log
Checking log directory for disk usage. This may take awhile.
Press Ctrl-C to interrupt
Done checking log file disk usage. Usage is <1GB.

started roslaunch server http://arpit-SVE15137CNB:54185/

SUMMARY
========

PARAMETERS

 * /robot_description: <?xml version="1....
 * /rosdistro: indigo
 * /rosversion: 1.11.13

NODES

 /
    robot_state_publisher (robot_state_publisher/robot_state_publisher)
    spawn_urdf (gazebo_ros/spawn_model)


auto-starting new master

process[master]: started with pid [16536]
ROS_MASTER_URI=http://localhost:11311
setting /run_id to ee1fb8ae-5bcf-11e5-97ce-b8763fea9d09
process[rosout-1]: started with pid [16549]
started core service [/rosout]
process[spawn_urdf-2]: started with pid [16566]
process[robot_state_publisher-3]: started with pid [16567]

And here is the launch file

  <launch>
  <env name="GAZEBO_MODEL_PATH" value="$GAZEBO_MODEL_PATH:~/.gazebo/models" />
  <env name="GAZEBO_RESOURCE_PATH" value="$GAZEBO_RESOURCE_PATH:~/.gazebo/models" />

  <arg name="world" default="worlds/empty.world" />

  <arg name="urdf" default="$(find urdf)/pioneer3at.urdf" />
  <arg name="name" default="pioneer3at" />
  <param name="robot_description" command="$(find xacro)/xacro.py $(arg urdf)" />
  <node name="spawn_urdf" pkg="gazebo_ros" type="spawn_model" args="-param robot_description -urdf -model $(arg name)" /> 
  <node name="robot_state_publisher" pkg="robot_state_publisher" type="robot_state_publisher" />

  </launch>
edit retag flag offensive close merge delete

Comments

That looks normal. What do you expect it to do?

ahendrix gravatar image ahendrix  ( 2015-09-15 13:19:32 -0500 )edit

It does not launch the gazebo simulator with the p3at robot. It is not doing anything after this whereas the other launch files are launched in the gazebo simulator.

Arpit gravatar image Arpit  ( 2015-09-15 13:42:32 -0500 )edit

May be your processor is slow or less RAM. What is your processor and how much RAM ?

bvbdort gravatar image bvbdort  ( 2015-09-15 15:40:39 -0500 )edit

1 Answer

Sort by ยป oldest newest most voted
2

answered 2015-09-15 14:21:16 -0500

ahendrix gravatar image

updated 2015-09-15 19:30:07 -0500

It looks like your launch file doesn't include an instance of gazebo; only the spawner, which expects to connect to gazebo.

If you want to solve this on your own, compare your launch file to an existing launch file that behaves the way you expect, with a different robot.

If you want more help, please edit your question to include the launch file that you've written.

EDIT

Your launch file does not start gazebo.

You can start gazebo by adding the following include to your launch file:

<include file="$(find gazebo_ros)/launch/empty_world.launch">
  <arg name="use_sim_time" value="true"/>
  <arg name="debug" value="false"/>
</include>
edit flag offensive delete link more

Comments

Yeah! Thanks !! :)

Arpit gravatar image Arpit  ( 2015-09-15 23:20:11 -0500 )edit

Thanks it worked

Shivam gravatar image Shivam  ( 2021-09-26 20:41:58 -0500 )edit

Question Tools

1 follower

Stats

Asked: 2015-09-15 12:39:32 -0500

Seen: 545 times

Last updated: Sep 15 '15