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

This robot has a joint named "foo" which is not in the gazebo model.

asked 2015-04-28 09:17:43 -0500

Mehdi. gravatar image

I know this question exists already but it doesn't help. I want to spawn a robot from urdf using the gazebo_ros package. I noticed that this happens whenever I define a link in my urdf with no additional parameters. for example in my case:

This robot has a joint named "pusher_joint" which is not in the gazebo model.

Where

<link name="pusher_base"/>

  <joint name="base_to_pusher" type="fixed">
      <parent link="base_link"/>
      <child link="pusher_base"/>
      <origin xyz="0.74 -1.058 0.18" rpy="0.000 -0.000 ${pi -1.045}"/> 
  </joint>

 <joint name="pusher_joint" type="prismatic">
     <axis xyz="-1 0 0" />
      <limit effort="20" velocity="10"  lower="0" upper="1.5"/>
      <parent link="pusher_base"/>
      <child link="pusher_end_effector"/>
      <origin xyz="0.0 0.0 0.0" rpy="0 0 0"/>
  </joint>

How can I fix this?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2015-04-28 22:48:02 -0500

marguedas gravatar image

Gazebo doesn't handle links without physical properties. You need to add the inertial tag (inertia and mass) for Gazebo to recognize it as a "simulable link"
If you don't care about the physics you can give dummy values, that's what I do here because I don't know any of the physics of these links.

Hope this helps,

edit flag offensive delete link more

Comments

So except base_link all other links have to have an explicitly defined inertia?

Mehdi. gravatar image Mehdi.  ( 2015-04-30 03:52:54 -0500 )edit
1

yes all the ones who are part of a kinematic chain ( so only the physics link, not the sensor links)

marguedas gravatar image marguedas  ( 2015-04-30 08:07:50 -0500 )edit

Question Tools

1 follower

Stats

Asked: 2015-04-28 09:17:43 -0500

Seen: 1,080 times

Last updated: Apr 28 '15