-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_1.urdf
31 lines (31 loc) · 1.02 KB
/
example_1.urdf
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
<?xml version="1.0"?>
<robot name="example">
<link name="link1">
<inertial>
<mass value="1"/>
<inertia ixx="1" iyy="1" izz="1" ixy="0" ixz="0" iyz="0"/>
</inertial>
</link>
<link name="link2">
<inertial>
<mass value="1"/>
<inertia ixx="1" iyy="1" izz="1" ixy="0" ixz="0" iyz="0"/>
</inertial>
</link>
<joint name="test_joint_1" type="continuous">
<parent link="link1"/>
<child link="link2"/>
<limit velocity="10.0" effort="10.0"/>
</joint>
<transmission name="test_joint_trans">
<type>transmission_interface/SimpleTransmission</type>
<joint name="test_joint_1">
<hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>
<hardwareInterface>hardware_interface/VelocityJointInterface</hardwareInterface>
<hardwareInterface>hardware_interface/EffortJointInterface</hardwareInterface>
</joint>
<actuator name="test_joint_motor_1">
<mechanicalReduction>66</mechanicalReduction>
</actuator>
</transmission>
</robot>