File: linear.xml

package info (click to toggle)
mujoco 2.2.2-3.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 39,796 kB
  • sloc: ansic: 28,947; cpp: 28,897; cs: 14,241; python: 10,465; xml: 5,104; sh: 93; makefile: 34
file content (28 lines) | stat: -rw-r--r-- 672 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<mujoco>
  <!--  linear dynamical system with fixed, anaylticaly computable derivatives  -->
  <default>
    <joint axis="1 0 0" damping=".01" stiffness=".1"/>
    <geom type="box" size=".05 .05 .05"/>
  </default>

  <worldbody>
    <light pos="0 0 1"/>
    <body>
      <joint name="joint0"/>
      <geom/>
      <body pos=".15 0 0">
        <joint name="joint1"/>
        <geom/>
        <body pos=".15 0 0">
          <joint/>
          <geom/>
        </body>
      </body>
    </body>
  </worldbody>

  <actuator>
    <motor joint="joint0" ctrllimited="true" ctrlrange="-1 1"/>
    <motor joint="joint1" ctrllimited="true" ctrlrange="-1 1"/>
  </actuator>
</mujoco>