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

Creating a frictionless caster wheel

asked 2017-03-25 09:41:35 -0500

Benjimen44 gravatar image

I am trying to simulate a robot my team is building using Gazebo. I created a URDF file and I can not get the front caster wheels of my robot to work. I have been following the logic of the code from this site but when I try to drive the robot the front wheels are not actually frictionless. I tried changing the wight of the main body that was suggested in another thread but that did not work. Does anyone know how to fix this problem?

The Code is located here link text

-Thank you

edit retag flag offensive close merge delete

Comments

For future questions about Gazebo (robot modelling, physics setup), please ask them on answers.gazebosim.org. ROS Answers is about ROS, and we try to stay on topic as much as possible.

Thanks.

gvdhoorn gravatar image gvdhoorn  ( 2017-09-23 16:26:09 -0500 )edit

1 Answer

Sort by ยป oldest newest most voted
1

answered 2017-09-23 15:57:43 -0500

just set mu1 and mu2 values to 0.0

in other words in lines 195, 196, 145, 146 of your code

replace this:

<mu1 value="1.0"/>
<mu2 value="1.0"/>

with this:

<mu1 value="0.0"/>
<mu2 value="0.0"/>
edit flag offensive delete link more

Question Tools

Stats

Asked: 2017-03-25 08:56:45 -0500

Seen: 2,081 times

Last updated: Sep 23 '17