File: urdf_joint_parameters.urdf

package info (click to toggle)
sdformat 4.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 4,492 kB
  • ctags: 6,349
  • sloc: cpp: 26,300; python: 1,633; ruby: 217; ansic: 79; sh: 77; makefile: 18
file content (115 lines) | stat: -rw-r--r-- 3,141 bytes parent folder | download | duplicates (3)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?xml version="1.0" ?>
<robot name="urdf_joint_parameters">

  <link name="world"/>

  <joint name="jointw0" type="continuous">
    <origin rpy="0 0 1.57079632679" xyz="0 0 1.0"/>
    <axis xyz="1 0 0"/>  <!-- in child (link1) frame -->
    <parent link="world"/>
    <child link="link0"/>
    <dynamics damping="0.0" friction="0.0" />
  </joint>

  <link name="link0">
    <inertial>
      <mass value="1000"/>
      <origin rpy="0 0 0" xyz="0 0 -0.5"/>
      <inertia ixx="1" ixy="0" ixz="0" iyy="1" iyz="0" izz="1"/>
    </inertial>
    <visual>
      <geometry>
        <box size="0.1 0.1 1.0"/>
      </geometry>
      <origin rpy="0 0 0" xyz="0 0 -0.5"/>
    </visual>
  </link>

  <joint name="joint01" type="continuous">
    <origin rpy="0 0 1.57079632679" xyz="0 0 -1"/>
    <axis xyz="1 0 0"/>  <!-- in child (link1) frame -->
    <parent link="link0"/>
    <child link="link1"/>
    <dynamics damping="1.0" friction="1.0" />
  </joint>

  <link name="link1">
    <inertial>
      <mass value="100"/>
      <origin rpy="1 3 4" xyz="0 -1.5 0"/>
      <inertia ixx="2" ixy="0" ixz="0" iyy="3" iyz="0" izz="4"/>
    </inertial>
    <visual>
      <geometry>
        <box size="0.2 3.0 0.2"/>
      </geometry>
      <origin rpy="0 0 0" xyz="0 -1.5 0"/>
    </visual>
  </link>

  <joint name="joint12" type="revolute">
    <origin rpy="-1.57079632679 0 -1.57079632679" xyz="0 -3.0 0.0"/>
    <axis xyz="0 1 0"/>  <!-- in child (link1) frame -->
    <limit lower="0" upper="0" velocity="1000" effort="10000"/>
    <parent link="link1"/>
    <child link="link2"/>
  </joint>

  <link name="link2">
    <inertial>
      <mass value="200"/>
      <origin rpy="2 -3 -1.57079632679" xyz="0.2 0.4 1.0"/>
      <inertia ixx="5" ixy="0" ixz="0" iyy="6" iyz="0" izz="7"/>
    </inertial>
    <visual>
      <geometry>
        <box size="0.3 0.3 2.0"/>
      </geometry>
      <origin rpy="0 0 0" xyz="0 0 1.0"/>
    </visual>
  </link>

  <joint name="joint23" type="revolute">
    <origin rpy="-1.57079632679 0 -1.57079632679" xyz="-0.5 0.5 2.5"/>
    <axis xyz="0 1 0"/>  <!-- in child (link1) frame -->
    <limit lower="0" upper="0" velocity="1000" effort="10000"/>
    <parent link="link2"/>
    <child link="link3"/>
  </joint>

  <link name="link3">
    <inertial>
      <mass value="400"/>
      <origin rpy="2 3 4" xyz="0.1 0.2 0.3"/>
      <inertia ixx="8" ixy="0" ixz="0" iyy="9" iyz="0" izz="10"/>
    </inertial>
    <visual>
      <geometry>
        <box size="0.3 0.4 0.5"/>
      </geometry>
      <origin rpy="2 3 4" xyz="0.1 0.2 0.3"/>
    </visual>
  </link>

  <joint name="joint01a" type="continuous">
    <origin rpy="0 0 1.57079632679" xyz="0 0 -1"/>
    <axis xyz="1 0 0"/>  <!-- in child (link1) frame -->
    <parent link="link0"/>
    <child link="link1a"/>
  </joint>

  <link name="link1a">
    <inertial>
      <mass value="100"/>
      <origin rpy="1 3 4" xyz="0 -1.5 0"/>
      <inertia ixx="2" ixy="0" ixz="0" iyy="3" iyz="0" izz="4"/>
    </inertial>
    <visual>
      <geometry>
        <box size="0.2 3.0 0.2"/>
      </geometry>
      <origin rpy="0 0 0" xyz="0 -1.5 0"/>
    </visual>
  </link>

</robot>