e250ff0d5a
- Added new `cable` composite type: * The `initial` parameter specifies the joint at the starting boundary: `free`, `ball`, or `none`. * The boundary bodies are exposed with the names:`B_left` and `B_right`. * The vertex initial positions can be specified directly in the XML with the parameter `vertex`. * The orientation of the body frame **is** the orientation of the material frame of the curve. - Added new `cable` passive force plugin: * Twist and bending stiffness can be set separately with the parameters `twist` and `bend`. * The stress-free configuration can be set to be the initial one or flat with the flag `flat`. * New cable example showing the formation of plectoneme. * New coil example. * New belt example showing interaction between twist and anisotropy. * Added test using cantilever exact solution. PiperOrigin-RevId: 480033694 Change-Id: I491271bce8fccb185961477e903e5a72d172c8a3
56 lines
1.8 KiB
XML
56 lines
1.8 KiB
XML
<!-- Copyright 2021 DeepMind Technologies Limited
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<mujoco model="Cable">
|
|
<include file="scene.xml"/>
|
|
|
|
<extension>
|
|
<required plugin="mujoco.elasticity.cable"/>
|
|
</extension>
|
|
|
|
<statistic center="0 0 .3" extent="1"/>
|
|
<visual>
|
|
<global elevation="-30"/>
|
|
</visual>
|
|
|
|
<compiler autolimits="true"/>
|
|
|
|
<size nconmax="100" njmax="300" nstack="500000"/>
|
|
|
|
<worldbody>
|
|
<composite type="cable" curve="s" count="41 1 1" size="1" offset="-.3 0 .6" initial="none">
|
|
<plugin plugin="mujoco.elasticity.cable">
|
|
<!--Units are in Pa (SI)-->
|
|
<config key="twist" value="1e7"/>
|
|
<config key="bend" value="4e6"/>
|
|
</plugin>
|
|
<joint kind="main" damping=".015"/>
|
|
<geom type="capsule" size=".005" rgba=".8 .2 .1 1" condim="1"/>
|
|
</composite>
|
|
<body name="slider" pos=".7 0 .6">
|
|
<joint type="slide" axis="1 0 0" damping=".1"/>
|
|
<geom size=".01"/>
|
|
</body>
|
|
</worldbody>
|
|
<equality>
|
|
<connect name="right_boundary" body1="B_last" body2="slider" anchor=".025 0 0"/>
|
|
</equality>
|
|
<contact>
|
|
<exclude body1="B_last" body2="slider"/>
|
|
</contact>
|
|
<actuator>
|
|
<motor site="S_last" gear="0 0 0 1 0 0" ctrlrange="-.03 .03"/>
|
|
</actuator>
|
|
</mujoco> |