Gazebo | Ignition | Community
Ask Your Question
0

How to make select parts of composite models static

asked 2015-04-12 01:21:10 -0600

Cerin gravatar image

In a composite model, is it possible to make one part of a model static while make other parts dynamic?

I'd like to position a platform in a static position a few meters in the air, while allowing actuators attached below it to move, simulating the platform being mounted to a ceiling. I tried making the platform model static, while making the actuator models dynamic, but Gazebo seems to interpret the entire model as static if even one part is static.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2015-04-12 14:18:31 -0600

chapulina gravatar image

Currently, it isn't possible to make some links of a model static while the others are dynamic.

A workaround would be to fix the platform to the world with a joint that has very low limits to make it almost fixed (you can try making it completely fixed by setting upper and lower limits == 0, but that might cause instability). I'd also make it very heavy to make sure it doesn't move. See the foosball table as an example, it would look something like this:

<joint name='platform_world' type='prismatic'>
  <parent>world</parent>
  <child>platform</child>
  <axis>
    <xyz>0 0 1</xyz>
    <limit>
      <lower>0</lower>
      <upper>0.1</upper>
    </limit>
  </axis>
</joint>
edit flag offensive delete link more

Question Tools

Stats

Asked: 2015-04-12 01:21:10 -0600

Seen: 192 times

Last updated: Apr 12 '15