What's the meaning of <friction> tag under Joint->axis->dynamic
Hi, there,
In the documentation, the definition of
One link of my model will bend under the gravity from initial position around its joint axis, I just want to prevent this happening, so I tried to set the value between
Thanks!
The code for that joint is:
<joint type="revolute" name="Center_hinge">
<pose>0 0 0 0 0 0</pose>
<child>UHolderBody</child>
<parent>CircuitHolder</parent>
<axis>
<dynamics>
<!--amping>0.20000</damping-->
<friction>1000</friction>
</dynamics>
<xyz>1 0 0</xyz>
<limit>
<lower>-1.5707963</lower>
<upper>1.5707963</upper>
</limit>
</axis>
</joint>
Asked by EdwardC on 2013-09-06 16:16:48 UTC
Answers
Joint friction is a place holder. It's not implemented in the source code yet.
You can disable gravity on your link using the
Asked by nkoenig on 2013-09-14 20:46:44 UTC
Comments