byml commited on
Commit
66f71ec
·
verified ·
1 Parent(s): da3da2b

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. embodiments/franka-panda/__init__.py +88 -0
  2. embodiments/franka-panda/config.yml +54 -0
  3. embodiments/franka-panda/franka_description/meshes/collision/finger.stl +0 -0
  4. embodiments/franka-panda/franka_description/meshes/collision/hand.stl +0 -0
  5. embodiments/franka-panda/franka_description/meshes/collision/link0.stl +0 -0
  6. embodiments/franka-panda/franka_description/meshes/collision/link1.stl +0 -0
  7. embodiments/franka-panda/franka_description/meshes/collision/link2.stl +0 -0
  8. embodiments/franka-panda/franka_description/meshes/collision/link3.stl +0 -0
  9. embodiments/franka-panda/franka_description/meshes/collision/link4.stl +0 -0
  10. embodiments/franka-panda/franka_description/meshes/collision/link5.stl +0 -0
  11. embodiments/franka-panda/franka_description/meshes/collision/link6.stl +0 -0
  12. embodiments/franka-panda/franka_description/meshes/collision/link7.stl +0 -0
  13. embodiments/franka-panda/franka_description/meshes/visual/finger.glb +0 -0
  14. embodiments/franka-panda/panda.srdf +80 -0
  15. embodiments/franka-panda/panda.urdf +225 -0
  16. embodiments/piper/config.yml +51 -0
  17. embodiments/piper/meshes/base_link.dae +0 -0
  18. embodiments/piper/meshes/link1.dae +0 -0
  19. embodiments/piper/meshes/link2.dae +0 -0
  20. embodiments/piper/meshes/link3.dae +0 -0
  21. embodiments/piper/meshes/link4.dae +0 -0
  22. embodiments/piper/meshes/link5.dae +0 -0
  23. embodiments/piper/meshes/link6.dae +0 -0
  24. embodiments/piper/meshes/link7.STL +0 -0
  25. embodiments/piper/meshes/link7.dae +0 -0
  26. embodiments/piper/meshes/link8.STL +0 -0
  27. embodiments/piper/meshes/link8.dae +0 -0
  28. embodiments/piper/piper_description.srdf +35 -0
  29. embodiments/piper/piper_description.urdf +511 -0
  30. embodiments/piper/piper_description_0211.urdf +511 -0
  31. embodiments/piper/urdf/backup/piper_description copy.urdf +568 -0
  32. embodiments/piper/urdf/backup/piper_description copy.xacro +584 -0
  33. embodiments/piper/urdf/moveit/piper_no_gripper_description.urdf +373 -0
  34. embodiments/piper/urdf/piper_description.csv +10 -0
  35. embodiments/piper/urdf/piper_description.urdf +511 -0
  36. embodiments/piper/urdf/piper_description.xacro +582 -0
  37. embodiments/piper/urdf/piper_description_v00.urdf +511 -0
  38. embodiments/piper/urdf/piper_description_v00.xacro +582 -0
  39. embodiments/piper/urdf/piper_no_gripper_description.csv +7 -0
  40. embodiments/piper/urdf/piper_no_gripper_description.urdf +338 -0
  41. embodiments/piper/urdf/piper_no_gripper_description.xacro +394 -0
  42. embodiments/piper/urdf/piper_no_gripper_description_v00.urdf +338 -0
  43. embodiments/piper/urdf/piper_no_gripper_description_v00.xacro +394 -0
  44. embodiments/ur5-robotic85-gripper/config.yml +52 -0
  45. embodiments/ur5-robotic85-gripper/meshes/robotiq_85/collision/robotiq_85_knuckle_link.stl +0 -0
  46. embodiments/ur5-robotic85-gripper/meshes/ur5/collision/forearm.stl +0 -0
  47. embodiments/ur5-robotic85-gripper/meshes/ur5/collision/shoulder.stl +0 -0
  48. embodiments/ur5-robotic85-gripper/meshes/ur5/collision/wrist1.stl +0 -0
  49. embodiments/ur5-robotic85-gripper/meshes/ur5/collision/wrist3.stl +0 -0
  50. embodiments/ur5-robotic85-gripper/meshes/ur5/visual/base.dae +0 -0
embodiments/franka-panda/__init__.py ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+
3
+ import numpy as np
4
+ import sapien
5
+
6
+
7
+ class Franka(sapien.Widget):
8
+ def __init__(self):
9
+ pass
10
+
11
+ def load(self, scene: sapien.Scene):
12
+ loader = scene.create_urdf_loader()
13
+ loader.set_material(0.3, 0.3, 0.0)
14
+
15
+ loader.set_link_material("panda_leftfinger", 1.0, 1.0, 0.0)
16
+ loader.set_link_material("panda_rightfinger", 1.0, 1.0, 0.0)
17
+ loader.set_link_patch_radius("panda_leftfinger", 0.05)
18
+ loader.set_link_patch_radius("panda_rightfinger", 0.05)
19
+ loader.set_link_min_patch_radius("panda_leftfinger", 0.05)
20
+ loader.set_link_min_patch_radius("panda_rightfinger", 0.05)
21
+
22
+ path = os.path.join(os.path.dirname(__file__), "panda.urdf")
23
+ self.robot = loader.load(path)
24
+ for link in self.robot.links:
25
+ link.disable_gravity = True
26
+
27
+ self.arm_joints = self.robot.active_joints[:7]
28
+ self.gripper_joints = self.robot.active_joints[7:]
29
+
30
+ self.set_arm_pd([200] * 7, [100] * 7, [36] * 7)
31
+ self.set_gripper_pd(1e4, 1e3, 0.3)
32
+
33
+ self.robot.set_qpos(
34
+ [
35
+ 0,
36
+ 0.19634954084936207,
37
+ 0.0,
38
+ -2.617993877991494,
39
+ 0.0,
40
+ 2.941592653589793,
41
+ 0.7853981633974483,
42
+ 0.04,
43
+ 0.04,
44
+ ]
45
+ )
46
+ self.robot.set_qvel([0] * 9)
47
+ self.set_arm_target(
48
+ [
49
+ 0,
50
+ 0.19634954084936207,
51
+ 0.0,
52
+ -2.617993877991494,
53
+ 0.0,
54
+ 2.941592653589793,
55
+ 0.7853981633974483,
56
+ ]
57
+ )
58
+
59
+ l2 = self.robot.active_joints[-1].child_link
60
+ l1 = self.robot.active_joints[-2].child_link
61
+ l0 = l1.parent
62
+
63
+ self.robot.create_fixed_tendon(
64
+ [l0, l1, l2], [0, 1, -1], [0, 1, -1], stiffness=1e10
65
+ )
66
+
67
+ def set_arm_pd(self, ps, ds, limits):
68
+ for j, p, d, l in zip(self.arm_joints, ps, ds, limits):
69
+ j.set_drive_property(p, d, l, "acceleration")
70
+
71
+ def set_gripper_pd(self, p, d, limit):
72
+ for j in self.gripper_joints:
73
+ j.set_drive_property(p, d, limit, "acceleration")
74
+
75
+ def set_gripper_target(self, target):
76
+ for j in self.gripper_joints:
77
+ j.set_drive_target(target)
78
+
79
+ def set_arm_target(self, target):
80
+ for t, j in zip(target, self.arm_joints):
81
+ j.set_drive_target(t)
82
+
83
+ def set_arm_target_velocity(self, target):
84
+ for t, j in zip(target, self.arm_joints):
85
+ j.set_drive_velocity_target(t)
86
+
87
+ def unload(self, scene: sapien.Scene):
88
+ scene.remove_articulation(self.robot)
embodiments/franka-panda/config.yml ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ urdf_path: "./panda.urdf"
2
+ srdf_path: "./panda.srdf"
3
+ joint_stiffness: 1000
4
+ joint_damping: 200
5
+ gripper_stiffnes: 1000
6
+ gripper_damping: 200
7
+ move_group: ["panda_hand","panda_hand"]
8
+ ee_joints: ["panda_hand_joint","panda_hand_joint"]
9
+ arm_joints_name: [['panda_joint1', 'panda_joint2', 'panda_joint3', 'panda_joint4', 'panda_joint5', 'panda_joint6', 'panda_joint7'],
10
+ ['panda_joint1', 'panda_joint2', 'panda_joint3', 'panda_joint4', 'panda_joint5', 'panda_joint6', 'panda_joint7']]
11
+ # gripper_name: [["panda_finger_joint1", "panda_finger_joint2"],
12
+ # ["panda_finger_joint1", "panda_finger_joint2"]]
13
+ gripper_name:
14
+ - base: "panda_finger_joint1"
15
+ mimic: [["panda_finger_joint2", 1., 0.]]
16
+ - base: "panda_finger_joint1"
17
+ mimic: [["panda_finger_joint2", 1., 0.]]
18
+ gripper_bias: 0.08
19
+ gripper_scale: [-0.01, 0.045]
20
+ homestate: [[0, 0.19634954084936207, 0.0, -2.617993877991494, 0.0, 2.941592653589793, 0.7853981633974483],
21
+ [0, 0.19634954084936207, 0.0, -2.617993877991494, 0.0, 2.941592653589793, 0.7853981633974483]]
22
+ delta_matrix: [[0,0,1],[0,-1,0],[1,0,0]]
23
+ global_trans_matrix: [[1,0,0],[0,-1,0],[0,0,-1]]
24
+ robot_pose: [0, -0.65, 0.75, 0.707, 0, 0, 0.707] # modify
25
+ planner: "mplib_RRT" # mplib_screw
26
+ dual_arm: False
27
+ static_camera_list:
28
+ - name: head_camera
29
+ position:
30
+ - -0.032
31
+ - -0.45
32
+ - 1.35
33
+ forward:
34
+ - 0
35
+ - 0.6
36
+ - -0.8
37
+ left:
38
+ - -1
39
+ - 0
40
+ - 0
41
+ # - name: front_camera
42
+ # type: D435
43
+ # position:
44
+ # - 0
45
+ # - -0.45
46
+ # - 0.85
47
+ # forward:
48
+ # - 0
49
+ # - 1
50
+ # - -0.1
51
+ # left:
52
+ # - -1
53
+ # - 0
54
+ # - 0
embodiments/franka-panda/franka_description/meshes/collision/finger.stl ADDED
Binary file (1.68 kB). View file
 
embodiments/franka-panda/franka_description/meshes/collision/hand.stl ADDED
Binary file (10.1 kB). View file
 
embodiments/franka-panda/franka_description/meshes/collision/link0.stl ADDED
Binary file (10.1 kB). View file
 
embodiments/franka-panda/franka_description/meshes/collision/link1.stl ADDED
Binary file (15.1 kB). View file
 
embodiments/franka-panda/franka_description/meshes/collision/link2.stl ADDED
Binary file (15.1 kB). View file
 
embodiments/franka-panda/franka_description/meshes/collision/link3.stl ADDED
Binary file (15.1 kB). View file
 
embodiments/franka-panda/franka_description/meshes/collision/link4.stl ADDED
Binary file (15.1 kB). View file
 
embodiments/franka-panda/franka_description/meshes/collision/link5.stl ADDED
Binary file (15.1 kB). View file
 
embodiments/franka-panda/franka_description/meshes/collision/link6.stl ADDED
Binary file (10.1 kB). View file
 
embodiments/franka-panda/franka_description/meshes/collision/link7.stl ADDED
Binary file (10.1 kB). View file
 
embodiments/franka-panda/franka_description/meshes/visual/finger.glb ADDED
Binary file (50 kB). View file
 
embodiments/franka-panda/panda.srdf ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" ?>
2
+ <!--This does not replace URDF, and is not an extension of URDF.
3
+ This is a format for representing semantic information about the robot structure.
4
+ A URDF file must exist for this robot as well, where the joints and the links that are referenced are defined
5
+ -->
6
+ <robot name="panda">
7
+ <!--GROUPS: Representation of a set of joints and links. This can be useful for specifying DOF to plan for, defining arms, end effectors, etc-->
8
+ <!--LINKS: When a link is specified, the parent joint of that link (if it exists) is automatically included-->
9
+ <!--JOINTS: When a joint is specified, the child link of that joint (which will always exist) is automatically included-->
10
+ <!--CHAINS: When a chain is specified, all the links along the chain (including endpoints) are included in the group. Additionally, all the joints that are parents to included links are also included. This means that joints along the chain and the parent joint of the base link are included in the group-->
11
+ <!--SUBGROUPS: Groups can also be formed by referencing to already defined group names-->
12
+ <group name="panda_arm">
13
+ <joint name="virtual_joint"/>
14
+ <joint name="panda_joint1"/>
15
+ <joint name="panda_joint2"/>
16
+ <joint name="panda_joint3"/>
17
+ <joint name="panda_joint4"/>
18
+ <joint name="panda_joint5"/>
19
+ <joint name="panda_joint6"/>
20
+ <joint name="panda_joint7"/>
21
+ <joint name="panda_joint8"/>
22
+ <joint name="panda_hand_joint"/>
23
+ </group>
24
+ <group name="hand">
25
+ <link name="panda_hand"/>
26
+ <link name="panda_leftfinger"/>
27
+ <link name="panda_rightfinger"/>
28
+ </group>
29
+ <!--GROUP STATES: Purpose: Define a named state for a particular group, in terms of joint values. This is useful to define states like 'folded arms'-->
30
+ <group_state name="home" group="panda_arm">
31
+ <joint name="panda_joint1" value="0"/>
32
+ <joint name="panda_joint2" value="0"/>
33
+ <joint name="panda_joint3" value="0"/>
34
+ <joint name="panda_joint4" value="0"/>
35
+ <joint name="panda_joint5" value="0"/>
36
+ <joint name="panda_joint6" value="3.1416"/>
37
+ <joint name="panda_joint7" value="1.5708"/>
38
+ </group_state>
39
+ <!--END EFFECTOR: Purpose: Represent information about an end effector.-->
40
+ <end_effector name="eef" parent_link="panda_link8" group="hand"/>
41
+ <!--VIRTUAL JOINT: Purpose: this element defines a virtual joint between a robot link and an external frame of reference (considered fixed with respect to the robot)-->
42
+ <virtual_joint name="virtual_joint" type="fixed" parent_frame="world" child_link="panda_link0"/>
43
+ <!--DISABLE COLLISIONS: By default it is assumed that any link of the robot could potentially come into collision with any other link in the robot. This tag disables collision checking between a specified pair of links. -->
44
+ <disable_collisions link1="panda_hand" link2="panda_leftfinger" reason="Adjacent"/>
45
+ <disable_collisions link1="panda_hand" link2="panda_link3" reason="Never"/>
46
+ <disable_collisions link1="panda_hand" link2="panda_link4" reason="Never"/>
47
+ <disable_collisions link1="panda_hand" link2="panda_link5" reason="Default"/>
48
+ <disable_collisions link1="panda_hand" link2="panda_link6" reason="Never"/>
49
+ <disable_collisions link1="panda_hand" link2="panda_link7" reason="Default"/>
50
+ <disable_collisions link1="panda_hand" link2="panda_rightfinger" reason="Adjacent"/>
51
+ <disable_collisions link1="panda_leftfinger" link2="panda_link3" reason="Never"/>
52
+ <disable_collisions link1="panda_leftfinger" link2="panda_link4" reason="Never"/>
53
+ <disable_collisions link1="panda_leftfinger" link2="panda_link6" reason="Never"/>
54
+ <disable_collisions link1="panda_leftfinger" link2="panda_link7" reason="Never"/>
55
+ <disable_collisions link1="panda_leftfinger" link2="panda_rightfinger" reason="Default"/>
56
+ <disable_collisions link1="panda_link0" link2="panda_link1" reason="Adjacent"/>
57
+ <disable_collisions link1="panda_link0" link2="panda_link2" reason="Never"/>
58
+ <disable_collisions link1="panda_link0" link2="panda_link3" reason="Never"/>
59
+ <disable_collisions link1="panda_link0" link2="panda_link4" reason="Never"/>
60
+ <disable_collisions link1="panda_link1" link2="panda_link2" reason="Adjacent"/>
61
+ <disable_collisions link1="panda_link1" link2="panda_link3" reason="Never"/>
62
+ <disable_collisions link1="panda_link1" link2="panda_link4" reason="Never"/>
63
+ <disable_collisions link1="panda_link2" link2="panda_link3" reason="Adjacent"/>
64
+ <disable_collisions link1="panda_link2" link2="panda_link4" reason="Never"/>
65
+ <disable_collisions link1="panda_link2" link2="panda_link6" reason="Never"/>
66
+ <disable_collisions link1="panda_link3" link2="panda_link4" reason="Adjacent"/>
67
+ <disable_collisions link1="panda_link3" link2="panda_link5" reason="Never"/>
68
+ <disable_collisions link1="panda_link3" link2="panda_link6" reason="Never"/>
69
+ <disable_collisions link1="panda_link3" link2="panda_link7" reason="Never"/>
70
+ <disable_collisions link1="panda_link3" link2="panda_rightfinger" reason="Never"/>
71
+ <disable_collisions link1="panda_link4" link2="panda_link5" reason="Adjacent"/>
72
+ <disable_collisions link1="panda_link4" link2="panda_link6" reason="Never"/>
73
+ <disable_collisions link1="panda_link4" link2="panda_link7" reason="Never"/>
74
+ <disable_collisions link1="panda_link4" link2="panda_rightfinger" reason="Never"/>
75
+ <disable_collisions link1="panda_link5" link2="panda_link6" reason="Adjacent"/>
76
+ <disable_collisions link1="panda_link5" link2="panda_link7" reason="Default"/>
77
+ <disable_collisions link1="panda_link6" link2="panda_link7" reason="Adjacent"/>
78
+ <disable_collisions link1="panda_link6" link2="panda_rightfinger" reason="Never"/>
79
+ <disable_collisions link1="panda_link7" link2="panda_rightfinger" reason="Never"/>
80
+ </robot>
embodiments/franka-panda/panda.urdf ADDED
@@ -0,0 +1,225 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- =================================================================================== -->
3
+ <!-- | This document was autogenerated by xacro from panda_arm_hand.urdf.xacro | -->
4
+ <!-- | EDITING THIS FILE BY HAND IS NOT RECOMMENDED | -->
5
+ <!-- =================================================================================== -->
6
+ <robot name="panda" xmlns:xacro="http://www.ros.org/wiki/xacro">
7
+ <link name="panda_link0">
8
+ <visual>
9
+ <geometry>
10
+ <mesh filename="franka_description/meshes/visual/link0.glb"/>
11
+ </geometry>
12
+ </visual>
13
+ <collision>
14
+ <geometry>
15
+ <mesh filename="franka_description/meshes/collision/link0.stl"/>
16
+ </geometry>
17
+ </collision>
18
+ </link>
19
+ <link name="panda_link1">
20
+ <visual>
21
+ <geometry>
22
+ <mesh filename="franka_description/meshes/visual/link1.glb"/>
23
+ </geometry>
24
+ </visual>
25
+ <collision>
26
+ <geometry>
27
+ <mesh filename="franka_description/meshes/collision/link1.stl"/>
28
+ </geometry>
29
+ </collision>
30
+ </link>
31
+ <joint name="panda_joint1" type="revolute">
32
+ <safety_controller k_position="100.0" k_velocity="40.0" soft_lower_limit="-2.8973" soft_upper_limit="2.8973"/>
33
+ <origin rpy="0 0 0" xyz="0 0 0.333"/>
34
+ <parent link="panda_link0"/>
35
+ <child link="panda_link1"/>
36
+ <axis xyz="0 0 1"/>
37
+ <limit effort="87" lower="-2.8973" upper="2.8973" velocity="2.1750"/>
38
+ </joint>
39
+ <link name="panda_link2">
40
+ <visual>
41
+ <geometry>
42
+ <mesh filename="franka_description/meshes/visual/link2.glb"/>
43
+ </geometry>
44
+ </visual>
45
+ <collision>
46
+ <geometry>
47
+ <mesh filename="franka_description/meshes/collision/link2.stl"/>
48
+ </geometry>
49
+ </collision>
50
+ </link>
51
+ <joint name="panda_joint2" type="revolute">
52
+ <safety_controller k_position="100.0" k_velocity="40.0" soft_lower_limit="-1.7628" soft_upper_limit="1.7628"/>
53
+ <origin rpy="-1.57079632679 0 0" xyz="0 0 0"/>
54
+ <parent link="panda_link1"/>
55
+ <child link="panda_link2"/>
56
+ <axis xyz="0 0 1"/>
57
+ <limit effort="87" lower="-1.7628" upper="1.7628" velocity="2.1750"/>
58
+ </joint>
59
+ <link name="panda_link3">
60
+ <visual>
61
+ <geometry>
62
+ <mesh filename="franka_description/meshes/visual/link3.glb"/>
63
+ </geometry>
64
+ </visual>
65
+ <collision>
66
+ <geometry>
67
+ <mesh filename="franka_description/meshes/collision/link3.stl"/>
68
+ </geometry>
69
+ </collision>
70
+ </link>
71
+ <joint name="panda_joint3" type="revolute">
72
+ <safety_controller k_position="100.0" k_velocity="40.0" soft_lower_limit="-2.8973" soft_upper_limit="2.8973"/>
73
+ <origin rpy="1.57079632679 0 0" xyz="0 -0.316 0"/>
74
+ <parent link="panda_link2"/>
75
+ <child link="panda_link3"/>
76
+ <axis xyz="0 0 1"/>
77
+ <limit effort="87" lower="-2.8973" upper="2.8973" velocity="2.1750"/>
78
+ </joint>
79
+ <link name="panda_link4">
80
+ <visual>
81
+ <geometry>
82
+ <mesh filename="franka_description/meshes/visual/link4.glb"/>
83
+ </geometry>
84
+ </visual>
85
+ <collision>
86
+ <geometry>
87
+ <mesh filename="franka_description/meshes/collision/link4.stl"/>
88
+ </geometry>
89
+ </collision>
90
+ </link>
91
+ <joint name="panda_joint4" type="revolute">
92
+ <safety_controller k_position="100.0" k_velocity="40.0" soft_lower_limit="-3.0718" soft_upper_limit="-0.0698"/>
93
+ <origin rpy="1.57079632679 0 0" xyz="0.0825 0 0"/>
94
+ <parent link="panda_link3"/>
95
+ <child link="panda_link4"/>
96
+ <axis xyz="0 0 1"/>
97
+ <limit effort="87" lower="-3.0718" upper="-0.0698" velocity="2.1750"/>
98
+ </joint>
99
+ <link name="panda_link5">
100
+ <visual>
101
+ <geometry>
102
+ <mesh filename="franka_description/meshes/visual/link5.glb"/>
103
+ </geometry>
104
+ </visual>
105
+ <collision>
106
+ <geometry>
107
+ <mesh filename="franka_description/meshes/collision/link5.stl"/>
108
+ </geometry>
109
+ </collision>
110
+ </link>
111
+ <joint name="panda_joint5" type="revolute">
112
+ <safety_controller k_position="100.0" k_velocity="40.0" soft_lower_limit="-2.8973" soft_upper_limit="2.8973"/>
113
+ <origin rpy="-1.57079632679 0 0" xyz="-0.0825 0.384 0"/>
114
+ <parent link="panda_link4"/>
115
+ <child link="panda_link5"/>
116
+ <axis xyz="0 0 1"/>
117
+ <limit effort="12" lower="-2.8973" upper="2.8973" velocity="2.6100"/>
118
+ </joint>
119
+ <link name="panda_link6">
120
+ <visual>
121
+ <geometry>
122
+ <mesh filename="franka_description/meshes/visual/link6.glb"/>
123
+ </geometry>
124
+ </visual>
125
+ <collision>
126
+ <geometry>
127
+ <mesh filename="franka_description/meshes/collision/link6.stl"/>
128
+ </geometry>
129
+ </collision>
130
+ </link>
131
+ <joint name="panda_joint6" type="revolute">
132
+ <safety_controller k_position="100.0" k_velocity="40.0" soft_lower_limit="-0.0175" soft_upper_limit="3.7525"/>
133
+ <origin rpy="1.57079632679 0 0" xyz="0 0 0"/>
134
+ <parent link="panda_link5"/>
135
+ <child link="panda_link6"/>
136
+ <axis xyz="0 0 1"/>
137
+ <limit effort="12" lower="-0.0175" upper="3.7525" velocity="2.6100"/>
138
+ </joint>
139
+ <link name="panda_link7">
140
+ <visual>
141
+ <geometry>
142
+ <mesh filename="franka_description/meshes/visual/link7.glb"/>
143
+ </geometry>
144
+ </visual>
145
+ <collision>
146
+ <geometry>
147
+ <mesh filename="franka_description/meshes/collision/link7.stl"/>
148
+ </geometry>
149
+ </collision>
150
+ </link>
151
+ <joint name="panda_joint7" type="revolute">
152
+ <safety_controller k_position="100.0" k_velocity="40.0" soft_lower_limit="-2.8973" soft_upper_limit="2.8973"/>
153
+ <origin rpy="1.57079632679 0 0" xyz="0.088 0 0"/>
154
+ <parent link="panda_link6"/>
155
+ <child link="panda_link7"/>
156
+ <axis xyz="0 0 1"/>
157
+ <limit effort="12" lower="-2.8973" upper="2.8973" velocity="2.6100"/>
158
+ </joint>
159
+ <link name="panda_link8"/>
160
+ <joint name="panda_joint8" type="fixed">
161
+ <origin rpy="0 0 0" xyz="0 0 0.107"/>
162
+ <parent link="panda_link7"/>
163
+ <child link="panda_link8"/>
164
+ <axis xyz="0 0 0"/>
165
+ </joint>
166
+ <joint name="panda_hand_joint" type="fixed">
167
+ <parent link="panda_link8"/>
168
+ <child link="panda_hand"/>
169
+ <origin rpy="0 0 -0.785398163397" xyz="0 0 0"/>
170
+ </joint>
171
+ <link name="panda_hand">
172
+ <visual>
173
+ <geometry>
174
+ <mesh filename="franka_description/meshes/visual/hand.glb"/>
175
+ </geometry>
176
+ </visual>
177
+ <collision>
178
+ <geometry>
179
+ <mesh filename="franka_description/meshes/collision/hand.stl"/>
180
+ </geometry>
181
+ </collision>
182
+ </link>
183
+ <link name="panda_leftfinger">
184
+ <visual>
185
+ <geometry>
186
+ <mesh filename="franka_description/meshes/visual/finger.glb"/>
187
+ </geometry>
188
+ </visual>
189
+ <collision>
190
+ <geometry>
191
+ <mesh filename="franka_description/meshes/collision/finger.stl"/>
192
+ </geometry>
193
+ </collision>
194
+ </link>
195
+ <link name="panda_rightfinger">
196
+ <visual>
197
+ <origin rpy="0 0 3.14159265359" xyz="0 0 0"/>
198
+ <geometry>
199
+ <mesh filename="franka_description/meshes/visual/finger.glb"/>
200
+ </geometry>
201
+ </visual>
202
+ <collision>
203
+ <origin rpy="0 0 3.14159265359" xyz="0 0 0"/>
204
+ <geometry>
205
+ <mesh filename="franka_description/meshes/collision/finger.stl"/>
206
+ </geometry>
207
+ </collision>
208
+ </link>
209
+ <joint name="panda_finger_joint1" type="prismatic">
210
+ <parent link="panda_hand"/>
211
+ <child link="panda_leftfinger"/>
212
+ <origin rpy="0 0 0" xyz="0 0 0.0584"/>
213
+ <axis xyz="0 1 0"/>
214
+ <limit effort="20" lower="0.0" upper="0.04" velocity="0.2"/>
215
+ </joint>
216
+ <joint name="panda_finger_joint2" type="prismatic">
217
+ <parent link="panda_hand"/>
218
+ <child link="panda_rightfinger"/>
219
+ <origin rpy="0 0 0" xyz="0 0 0.0584"/>
220
+ <axis xyz="0 -1 0"/>
221
+ <limit effort="20" lower="0.0" upper="0.04" velocity="0.2"/>
222
+ <mimic joint="panda_finger_joint1"/>
223
+ </joint>
224
+ </robot>
225
+
embodiments/piper/config.yml ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ urdf_path: "./piper_description.urdf"
2
+ srdf_path: "./piper_description.srdf"
3
+ joint_stiffness: 1000
4
+ joint_damping: 200
5
+ gripper_stiffnes: 1000
6
+ gripper_damping: 200
7
+ move_group: ["link6","link6"]
8
+ ee_joints: ["joint6","joint6"]
9
+ arm_joints_name: [['joint1', 'joint2', 'joint3', 'joint4', 'joint5', 'joint6'],
10
+ ['joint1', 'joint2', 'joint3', 'joint4', 'joint5', 'joint6']]
11
+ gripper_name:
12
+ - base: "joint7"
13
+ mimic: [["joint8", 1., 0.]]
14
+ - base: "joint7"
15
+ mimic: [["joint8", 1., 0.]]
16
+ gripper_bias: 0.12
17
+ gripper_scale: [-0.01, 0.04]
18
+ homestate: [[0,0,0,0,0,0],[0,0,0,0,0,0]]
19
+ delta_matrix: [[0,0,-1],[0,1,0],[1,0,0]]
20
+ global_trans_matrix: [[0,0,1],[0,1,0],[-1,0,0]]
21
+ robot_pose: [0, -0.35, 0.75, 0.707, 0, 0, 0.707] # modify
22
+ planner: "mplib_RRT"
23
+ dual_arm: False
24
+ static_camera_list:
25
+ - name: head_camera
26
+ position:
27
+ - -0.032
28
+ - -0.45
29
+ - 1.35
30
+ forward:
31
+ - 0
32
+ - 0.6
33
+ - -0.8
34
+ left:
35
+ - -1
36
+ - 0
37
+ - 0
38
+ # - name: front_camera
39
+ # type: D435
40
+ # position:
41
+ # - 0
42
+ # - -0.45
43
+ # - 0.85
44
+ # forward:
45
+ # - 0
46
+ # - 1
47
+ # - -0.1
48
+ # left:
49
+ # - -1
50
+ # - 0
51
+ # - 0
embodiments/piper/meshes/base_link.dae ADDED
The diff for this file is too large to render. See raw diff
 
embodiments/piper/meshes/link1.dae ADDED
The diff for this file is too large to render. See raw diff
 
embodiments/piper/meshes/link2.dae ADDED
The diff for this file is too large to render. See raw diff
 
embodiments/piper/meshes/link3.dae ADDED
The diff for this file is too large to render. See raw diff
 
embodiments/piper/meshes/link4.dae ADDED
The diff for this file is too large to render. See raw diff
 
embodiments/piper/meshes/link5.dae ADDED
The diff for this file is too large to render. See raw diff
 
embodiments/piper/meshes/link6.dae ADDED
The diff for this file is too large to render. See raw diff
 
embodiments/piper/meshes/link7.STL ADDED
Binary file (92 kB). View file
 
embodiments/piper/meshes/link7.dae ADDED
The diff for this file is too large to render. See raw diff
 
embodiments/piper/meshes/link8.STL ADDED
Binary file (91.9 kB). View file
 
embodiments/piper/meshes/link8.dae ADDED
The diff for this file is too large to render. See raw diff
 
embodiments/piper/piper_description.srdf ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" ?>
2
+ <robot name="piper_description">
3
+ <group name="arm">
4
+ <joint name="joint1"/>
5
+ <joint name="joint2"/>
6
+ <joint name="joint3"/>
7
+ <joint name="joint4"/>
8
+ <joint name="joint5"/>
9
+ <joint name="joint6"/>
10
+ <chain base_link="base_link" tip_link="link6"/>
11
+ </group>
12
+
13
+ <disable_collisions link1="link5" link2="link6" reason="Adjacent"/>
14
+ <disable_collisions link1="link2" link2="link3" reason="Adjacent"/>
15
+ <disable_collisions link1="link6" link2="link7" reason="Adjacent"/>
16
+ <disable_collisions link1="link3" link2="link4" reason="Adjacent"/>
17
+ <disable_collisions link1="link6" link2="link8" reason="Adjacent"/>
18
+ <disable_collisions link1="link1" link2="link2" reason="Adjacent"/>
19
+ <disable_collisions link1="base_link" link2="link1" reason="Adjacent"/>
20
+ <disable_collisions link1="link4" link2="link5" reason="Adjacent"/>
21
+ <disable_collisions link1="link7" link2="link8" reason="Default"/>
22
+ <disable_collisions link1="base_link" link2="link2" reason="Never"/>
23
+ <disable_collisions link1="base_link" link2="link3" reason="Never"/>
24
+ <disable_collisions link1="link1" link2="link3" reason="Never"/>
25
+ <disable_collisions link1="link2" link2="link4" reason="Never"/>
26
+ <disable_collisions link1="link3" link2="link5" reason="Never"/>
27
+ <disable_collisions link1="link3" link2="link6" reason="Never"/>
28
+ <disable_collisions link1="link3" link2="link7" reason="Never"/>
29
+ <disable_collisions link1="link3" link2="link8" reason="Never"/>
30
+ <disable_collisions link1="link4" link2="link6" reason="Never"/>
31
+ <disable_collisions link1="link4" link2="link7" reason="Never"/>
32
+ <disable_collisions link1="link4" link2="link8" reason="Never"/>
33
+ <disable_collisions link1="link5" link2="link7" reason="Never"/>
34
+ <disable_collisions link1="link5" link2="link8" reason="Never"/>
35
+ </robot>
embodiments/piper/piper_description.urdf ADDED
@@ -0,0 +1,511 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- This URDF was automatically created by SolidWorks to URDF Exporter! Originally created by Stephen Brawner (brawner@gmail.com)
3
+ Commit Version: 1.6.0-4-g7f85cfe Build Version: 1.6.7995.38578
4
+ For more information, please see http://wiki.ros.org/sw_urdf_exporter -->
5
+ <robot
6
+ name="piper_description">
7
+ <link
8
+ name="base_link">
9
+ <inertial>
10
+ <origin
11
+ xyz="-0.00979274765955341 1.82905827587138E-06 0.0410100126360189"
12
+ rpy="0 0 0" />
13
+ <mass
14
+ value="0.162548567403693" />
15
+ <inertia
16
+ ixx="0.000226596924525071"
17
+ ixy="-7.33972270153965E-08"
18
+ ixz="2.13249977802622E-06"
19
+ iyy="0.000269444772561524"
20
+ iyz="8.15169009611054E-09"
21
+ izz="0.000222318258878636" />
22
+ </inertial>
23
+ <visual>
24
+ <origin
25
+ xyz="0 0 0"
26
+ rpy="0 0 0" />
27
+ <geometry>
28
+ <mesh
29
+ filename="meshes/base_link.dae" />
30
+ </geometry>
31
+ <material
32
+ name="">
33
+ <color
34
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
35
+ </material>
36
+ </visual>
37
+ <collision>
38
+ <origin
39
+ xyz="0 0 0"
40
+ rpy="0 0 0" />
41
+ <geometry>
42
+ <mesh
43
+ filename="meshes/base_link.STL" />
44
+ </geometry>
45
+ </collision>
46
+ </link>
47
+ <link
48
+ name="link1">
49
+ <inertial>
50
+ <origin
51
+ xyz="0.00131676031927024 0.000310288842008612 -0.00922874512303437"
52
+ rpy="0 0 0" />
53
+ <mass
54
+ value="0.0978679932242825" />
55
+ <inertia
56
+ ixx="7.76684558296782E-05"
57
+ ixy="1.09084650459924E-07"
58
+ ixz="-1.9748053243241E-06"
59
+ iyy="9.24967780161547E-05"
60
+ iyz="9.91284646834582E-07"
61
+ izz="8.24589062407807E-05" />
62
+ </inertial>
63
+ <visual>
64
+ <origin
65
+ xyz="0 0 0"
66
+ rpy="0 0 0" />
67
+ <geometry>
68
+ <mesh
69
+ filename="meshes/link1.dae" />
70
+ </geometry>
71
+ <material
72
+ name="">
73
+ <color
74
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
75
+ </material>
76
+ </visual>
77
+ <collision>
78
+ <origin
79
+ xyz="0 0 0"
80
+ rpy="0 0 0" />
81
+ <geometry>
82
+ <mesh
83
+ filename="meshes/link1.STL" />
84
+ </geometry>
85
+ </collision>
86
+ </link>
87
+ <joint
88
+ name="joint1"
89
+ type="revolute">
90
+ <origin
91
+ xyz="0 0 0.123"
92
+ rpy="0 0 -1.5708" />
93
+ <parent
94
+ link="base_link" />
95
+ <child
96
+ link="link1" />
97
+ <axis
98
+ xyz="0 0 1" />
99
+ <limit
100
+ lower="-2.618"
101
+ upper="2.618"
102
+ effort="100"
103
+ velocity="3" />
104
+ </joint>
105
+ <link
106
+ name="link2">
107
+ <inertial>
108
+ <origin
109
+ xyz="0.148793602378802 -0.00242026983944119 0.00175154638467948"
110
+ rpy="0 0 0" />
111
+ <mass
112
+ value="0.290888938633388" />
113
+ <inertia
114
+ ixx="0.000148959640166183"
115
+ ixy="-7.37750384371657E-05"
116
+ ixz="-9.68688405196236E-07"
117
+ iyy="0.00172800946632652"
118
+ iyz="-1.09692225564224E-06"
119
+ izz="0.0017754628344594" />
120
+ </inertial>
121
+ <visual>
122
+ <origin
123
+ xyz="0 0 0"
124
+ rpy="0 0 0" />
125
+ <geometry>
126
+ <mesh
127
+ filename="meshes/link2.dae" />
128
+ </geometry>
129
+ <material
130
+ name="">
131
+ <color
132
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
133
+ </material>
134
+ </visual>
135
+ <collision>
136
+ <origin
137
+ xyz="0 0 0"
138
+ rpy="0 0 0" />
139
+ <geometry>
140
+ <mesh
141
+ filename="meshes/link2.STL" />
142
+ </geometry>
143
+ </collision>
144
+ </link>
145
+ <joint
146
+ name="joint2"
147
+ type="revolute">
148
+ <origin
149
+ xyz="0 0 0"
150
+ rpy="1.5708 0 -1.5708" />
151
+ <parent
152
+ link="link1" />
153
+ <child
154
+ link="link2" />
155
+ <axis
156
+ xyz="0 0 1" />
157
+ <limit
158
+ lower="0"
159
+ upper="3.14"
160
+ effort="100"
161
+ velocity="3" />
162
+ </joint>
163
+ <link
164
+ name="link3">
165
+ <inertial>
166
+ <origin
167
+ xyz="-0.0996835215213704 0.0349477226691318 0.000508025815507312"
168
+ rpy="0 0 0" />
169
+ <mass
170
+ value="0.290847697793211" />
171
+ <inertia
172
+ ixx="0.000107879011637167"
173
+ ixy="2.92669521203626E-05"
174
+ ixz="6.825922326238E-07"
175
+ iyy="0.000214751671792086"
176
+ iyz="-7.78469047878196E-07"
177
+ izz="0.000241923439340319" />
178
+ </inertial>
179
+ <visual>
180
+ <origin
181
+ xyz="0 0 0"
182
+ rpy="0 0 0" />
183
+ <geometry>
184
+ <mesh
185
+ filename="meshes/link3.dae" />
186
+ </geometry>
187
+ <material
188
+ name="">
189
+ <color
190
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
191
+ </material>
192
+ </visual>
193
+ <collision>
194
+ <origin
195
+ xyz="0 0 0"
196
+ rpy="0 0 0" />
197
+ <geometry>
198
+ <mesh
199
+ filename="meshes/link3.STL" />
200
+ </geometry>
201
+ </collision>
202
+ </link>
203
+ <joint
204
+ name="joint3"
205
+ type="revolute">
206
+ <origin
207
+ xyz="0.28358 0.028726 0"
208
+ rpy="0 0 0.10095" />
209
+ <parent
210
+ link="link2" />
211
+ <child
212
+ link="link3" />
213
+ <axis
214
+ xyz="0 0 1" />
215
+ <limit
216
+ lower="-2.697"
217
+ upper="2.697"
218
+ effort="100"
219
+ velocity="3" />
220
+ </joint>
221
+ <link
222
+ name="link4">
223
+ <inertial>
224
+ <origin
225
+ xyz="0.000276464622387979 -0.00102803669324875 -0.00472830700561663"
226
+ rpy="0 0 0" />
227
+ <mass
228
+ value="0.127087348341362" />
229
+ <inertia
230
+ ixx="3.82011730423416E-05"
231
+ ixy="-4.92358350897513E-08"
232
+ ixz="4.89589432973119E-08"
233
+ iyy="4.87048555222578E-05"
234
+ iyz="6.70802942500512E-08"
235
+ izz="4.10592077565559E-05" />
236
+ </inertial>
237
+ <visual>
238
+ <origin
239
+ xyz="0 0 0"
240
+ rpy="0 0 0" />
241
+ <geometry>
242
+ <mesh
243
+ filename="meshes/link4.dae" />
244
+ </geometry>
245
+ <material
246
+ name="">
247
+ <color
248
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
249
+ </material>
250
+ </visual>
251
+ <collision>
252
+ <origin
253
+ xyz="0 0 0"
254
+ rpy="0 0 0" />
255
+ <geometry>
256
+ <mesh
257
+ filename="meshes/link4.STL" />
258
+ </geometry>
259
+ </collision>
260
+ </link>
261
+ <joint
262
+ name="joint4"
263
+ type="revolute">
264
+ <origin
265
+ xyz="-0.24221 0.068514 0"
266
+ rpy="-1.5708 0 1.3826" />
267
+ <parent
268
+ link="link3" />
269
+ <child
270
+ link="link4" />
271
+ <axis
272
+ xyz="0 0 1" />
273
+ <limit
274
+ lower="-1.832"
275
+ upper="1.832"
276
+ effort="100"
277
+ velocity="3" />
278
+ </joint>
279
+ <link
280
+ name="link5">
281
+ <inertial>
282
+ <origin
283
+ xyz="8.82262433516967E-05 0.0566829014808256 -0.00196119720482461"
284
+ rpy="0 0 0" />
285
+ <mass
286
+ value="0.144711242639457" />
287
+ <inertia
288
+ ixx="4.39644313662493E-05"
289
+ ixy="-3.59259686444846E-08"
290
+ ixz="-1.89747741386183E-08"
291
+ iyy="5.63173920951307E-05"
292
+ iyz="-2.1540716689785E-07"
293
+ izz="4.88713664675268E-05" />
294
+ </inertial>
295
+ <visual>
296
+ <origin
297
+ xyz="0 0 0"
298
+ rpy="0 0 0" />
299
+ <geometry>
300
+ <mesh
301
+ filename="meshes/link5.dae" />
302
+ </geometry>
303
+ <material
304
+ name="">
305
+ <color
306
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
307
+ </material>
308
+ </visual>
309
+ <collision>
310
+ <origin
311
+ xyz="0 0 0"
312
+ rpy="0 0 0" />
313
+ <geometry>
314
+ <mesh
315
+ filename="meshes/link5.STL" />
316
+ </geometry>
317
+ </collision>
318
+ </link>
319
+ <joint
320
+ name="joint5"
321
+ type="revolute">
322
+ <origin
323
+ xyz="0 0 0"
324
+ rpy="1.5708 0 0" />
325
+ <parent
326
+ link="link4" />
327
+ <child
328
+ link="link5" />
329
+ <axis
330
+ xyz="0 0 1" />
331
+ <limit
332
+ lower="-1.22"
333
+ upper="1.22"
334
+ effort="100"
335
+ velocity="3" />
336
+ </joint>
337
+ <link
338
+ name="link6">
339
+ <inertial>
340
+ <origin
341
+ xyz="0.00103120214523473 0.0121761387587524 0.0315480874960164"
342
+ rpy="0 0 0" />
343
+ <mass
344
+ value="0.195187143240719" />
345
+ <inertia
346
+ ixx="6.43790256535539E-05"
347
+ ixy="-1.2366166157046E-06"
348
+ ixz="1.97664606328472E-07"
349
+ iyy="0.000126146396374301"
350
+ iyz="2.41157078516408E-06"
351
+ izz="0.000154087076816444" />
352
+ </inertial>
353
+ <visual>
354
+ <origin
355
+ xyz="0 0 0"
356
+ rpy="0 0 1.5708" />
357
+ <geometry>
358
+ <mesh
359
+ filename="meshes/link6.dae" />
360
+ </geometry>
361
+ <material
362
+ name="">
363
+ <color
364
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
365
+ </material>
366
+ </visual>
367
+ <collision>
368
+ <origin
369
+ xyz="0 0 0"
370
+ rpy="0 0 0" />
371
+ <geometry>
372
+ <mesh
373
+ filename="meshes/link6_1.STL" />
374
+ </geometry>
375
+ </collision>
376
+ </link>
377
+ <joint
378
+ name="joint6"
379
+ type="revolute">
380
+ <origin
381
+ xyz="0 0.091 0.0014165"
382
+ rpy="-1.5708 -3.1415926 0" />
383
+ <parent
384
+ link="link5" />
385
+ <child
386
+ link="link6" />
387
+ <axis
388
+ xyz="0 0 1" />
389
+ <limit
390
+ lower="-3.14"
391
+ upper="3.14"
392
+ effort="100"
393
+ velocity="3" />
394
+ </joint>
395
+ <link
396
+ name="link7">
397
+ <inertial>
398
+ <origin
399
+ xyz="-0.000277778383727112 -0.0467673043650824 -0.00921029491873201"
400
+ rpy="0 0 0" />
401
+ <mass
402
+ value="0.02648229234527" />
403
+ <inertia
404
+ ixx="9.99787479924589E-06"
405
+ ixy="-1.57548495096104E-07"
406
+ ixz="-2.71342775003487E-08"
407
+ iyy="6.1795212293655E-06"
408
+ iyz="-1.58939803580081E-06"
409
+ izz="1.42102717246564E-05" />
410
+ </inertial>
411
+ <visual>
412
+ <origin
413
+ xyz="0 0 0"
414
+ rpy="0 0 0" />
415
+ <geometry>
416
+ <mesh
417
+ filename="meshes/link7.dae" />
418
+ </geometry>
419
+ <material
420
+ name="">
421
+ <color
422
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
423
+ </material>
424
+ </visual>
425
+ <collision>
426
+ <origin
427
+ xyz="0 0 0"
428
+ rpy="0 0 0" />
429
+ <geometry>
430
+ <mesh
431
+ filename="meshes/link7.STL" />
432
+ </geometry>
433
+ </collision>
434
+ </link>
435
+ <joint
436
+ name="joint7"
437
+ type="prismatic">
438
+ <origin
439
+ xyz="0 0 0.13503"
440
+ rpy="1.5708 0 3.1415926" />
441
+ <parent
442
+ link="link6" />
443
+ <child
444
+ link="link7" />
445
+ <axis
446
+ xyz="0 0 -1" />
447
+ <limit
448
+ lower="0"
449
+ upper="0.04"
450
+ effort="10"
451
+ velocity="1" />
452
+ </joint>
453
+ <link
454
+ name="link8">
455
+ <inertial>
456
+ <origin
457
+ xyz="0.000277816920932317 0.0467673824063769 -0.00921030054508036"
458
+ rpy="0 0 0" />
459
+ <mass
460
+ value="0.0264822021416248" />
461
+ <inertia
462
+ ixx="9.99779119357223E-06"
463
+ ixy="-1.57542283433504E-07"
464
+ ixz="2.71367446701359E-08"
465
+ iyy="6.17952441557932E-06"
466
+ iyz="1.58939319453383E-06"
467
+ izz="1.4210192754512E-05" />
468
+ </inertial>
469
+ <visual>
470
+ <origin
471
+ xyz="0 0 0"
472
+ rpy="0 0 0" />
473
+ <geometry>
474
+ <mesh
475
+ filename="meshes/link8.dae" />
476
+ </geometry>
477
+ <material
478
+ name="">
479
+ <color
480
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
481
+ </material>
482
+ </visual>
483
+ <collision>
484
+ <origin
485
+ xyz="0 0 0"
486
+ rpy="0 0 0" />
487
+ <geometry>
488
+ <mesh
489
+ filename="meshes/link8.STL" />
490
+ </geometry>
491
+ </collision>
492
+ </link>
493
+ <joint
494
+ name="joint8"
495
+ type="prismatic">
496
+ <origin
497
+ xyz="0 0 0.13503"
498
+ rpy="-1.5708 0 3.1415926" />
499
+ <parent
500
+ link="link6" />
501
+ <child
502
+ link="link8" />
503
+ <axis
504
+ xyz="0 0 -1" />
505
+ <limit
506
+ lower="0"
507
+ upper="0.04"
508
+ effort="10"
509
+ velocity="1" />
510
+ </joint>
511
+ </robot>
embodiments/piper/piper_description_0211.urdf ADDED
@@ -0,0 +1,511 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- This URDF was automatically created by SolidWorks to URDF Exporter! Originally created by Stephen Brawner (brawner@gmail.com)
3
+ Commit Version: 1.6.0-4-g7f85cfe Build Version: 1.6.7995.38578
4
+ For more information, please see http://wiki.ros.org/sw_urdf_exporter -->
5
+ <robot
6
+ name="piper_description">
7
+ <link
8
+ name="base_link">
9
+ <inertial>
10
+ <origin
11
+ xyz="-0.00979274765955341 1.82905827587138E-06 0.0410100126360189"
12
+ rpy="0 0 0" />
13
+ <mass
14
+ value="0.162548567403693" />
15
+ <inertia
16
+ ixx="0.000226596924525071"
17
+ ixy="-7.33972270153965E-08"
18
+ ixz="2.13249977802622E-06"
19
+ iyy="0.000269444772561524"
20
+ iyz="8.15169009611054E-09"
21
+ izz="0.000222318258878636" />
22
+ </inertial>
23
+ <visual>
24
+ <origin
25
+ xyz="0 0 0"
26
+ rpy="0 0 0" />
27
+ <geometry>
28
+ <mesh
29
+ filename="meshes/base_link.dae" />
30
+ </geometry>
31
+ <material
32
+ name="">
33
+ <color
34
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
35
+ </material>
36
+ </visual>
37
+ <collision>
38
+ <origin
39
+ xyz="0 0 0"
40
+ rpy="0 0 0" />
41
+ <geometry>
42
+ <mesh
43
+ filename="meshes/base_link.STL" />
44
+ </geometry>
45
+ </collision>
46
+ </link>
47
+ <link
48
+ name="link1">
49
+ <inertial>
50
+ <origin
51
+ xyz="0.00131676031927024 0.000310288842008612 -0.00922874512303437"
52
+ rpy="0 0 0" />
53
+ <mass
54
+ value="0.0978679932242825" />
55
+ <inertia
56
+ ixx="7.76684558296782E-05"
57
+ ixy="1.09084650459924E-07"
58
+ ixz="-1.9748053243241E-06"
59
+ iyy="9.24967780161547E-05"
60
+ iyz="9.91284646834582E-07"
61
+ izz="8.24589062407807E-05" />
62
+ </inertial>
63
+ <visual>
64
+ <origin
65
+ xyz="0 0 0"
66
+ rpy="0 0 0" />
67
+ <geometry>
68
+ <mesh
69
+ filename="meshes/link1.dae" />
70
+ </geometry>
71
+ <material
72
+ name="">
73
+ <color
74
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
75
+ </material>
76
+ </visual>
77
+ <collision>
78
+ <origin
79
+ xyz="0 0 0"
80
+ rpy="0 0 0" />
81
+ <geometry>
82
+ <mesh
83
+ filename="meshes/link1.STL" />
84
+ </geometry>
85
+ </collision>
86
+ </link>
87
+ <joint
88
+ name="joint1"
89
+ type="revolute">
90
+ <origin
91
+ xyz="0 0 0.123"
92
+ rpy="0 0 -1.5708" />
93
+ <parent
94
+ link="base_link" />
95
+ <child
96
+ link="link1" />
97
+ <axis
98
+ xyz="0 0 1" />
99
+ <limit
100
+ lower="-2.618"
101
+ upper="2.618"
102
+ effort="100"
103
+ velocity="3" />
104
+ </joint>
105
+ <link
106
+ name="link2">
107
+ <inertial>
108
+ <origin
109
+ xyz="0.148793602378802 -0.00242026983944119 0.00175154638467948"
110
+ rpy="0 0 0" />
111
+ <mass
112
+ value="0.290888938633388" />
113
+ <inertia
114
+ ixx="0.000148959640166183"
115
+ ixy="-7.37750384371657E-05"
116
+ ixz="-9.68688405196236E-07"
117
+ iyy="0.00172800946632652"
118
+ iyz="-1.09692225564224E-06"
119
+ izz="0.0017754628344594" />
120
+ </inertial>
121
+ <visual>
122
+ <origin
123
+ xyz="0 0 0"
124
+ rpy="0 0 0" />
125
+ <geometry>
126
+ <mesh
127
+ filename="meshes/link2.dae" />
128
+ </geometry>
129
+ <material
130
+ name="">
131
+ <color
132
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
133
+ </material>
134
+ </visual>
135
+ <collision>
136
+ <origin
137
+ xyz="0 0 0"
138
+ rpy="0 0 0" />
139
+ <geometry>
140
+ <mesh
141
+ filename="meshes/link2.STL" />
142
+ </geometry>
143
+ </collision>
144
+ </link>
145
+ <joint
146
+ name="joint2"
147
+ type="revolute">
148
+ <origin
149
+ xyz="0 0 0"
150
+ rpy="1.5708 0 -1.5708" />
151
+ <parent
152
+ link="link1" />
153
+ <child
154
+ link="link2" />
155
+ <axis
156
+ xyz="0 0 1" />
157
+ <limit
158
+ lower="0"
159
+ upper="3.14"
160
+ effort="100"
161
+ velocity="3" />
162
+ </joint>
163
+ <link
164
+ name="link3">
165
+ <inertial>
166
+ <origin
167
+ xyz="-0.0996835215213704 0.0349477226691318 0.000508025815507312"
168
+ rpy="0 0 0" />
169
+ <mass
170
+ value="0.290847697793211" />
171
+ <inertia
172
+ ixx="0.000107879011637167"
173
+ ixy="2.92669521203626E-05"
174
+ ixz="6.825922326238E-07"
175
+ iyy="0.000214751671792086"
176
+ iyz="-7.78469047878196E-07"
177
+ izz="0.000241923439340319" />
178
+ </inertial>
179
+ <visual>
180
+ <origin
181
+ xyz="0 0 0"
182
+ rpy="0 0 0" />
183
+ <geometry>
184
+ <mesh
185
+ filename="meshes/link3.dae" />
186
+ </geometry>
187
+ <material
188
+ name="">
189
+ <color
190
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
191
+ </material>
192
+ </visual>
193
+ <collision>
194
+ <origin
195
+ xyz="0 0 0"
196
+ rpy="0 0 0" />
197
+ <geometry>
198
+ <mesh
199
+ filename="meshes/link3.STL" />
200
+ </geometry>
201
+ </collision>
202
+ </link>
203
+ <joint
204
+ name="joint3"
205
+ type="revolute">
206
+ <origin
207
+ xyz="0.28358 0.028726 0"
208
+ rpy="0 0 0.10095" />
209
+ <parent
210
+ link="link2" />
211
+ <child
212
+ link="link3" />
213
+ <axis
214
+ xyz="0 0 1" />
215
+ <limit
216
+ lower="-2.697"
217
+ upper="0"
218
+ effort="100"
219
+ velocity="3" />
220
+ </joint>
221
+ <link
222
+ name="link4">
223
+ <inertial>
224
+ <origin
225
+ xyz="0.000276464622387979 -0.00102803669324875 -0.00472830700561663"
226
+ rpy="0 0 0" />
227
+ <mass
228
+ value="0.127087348341362" />
229
+ <inertia
230
+ ixx="3.82011730423416E-05"
231
+ ixy="-4.92358350897513E-08"
232
+ ixz="4.89589432973119E-08"
233
+ iyy="4.87048555222578E-05"
234
+ iyz="6.70802942500512E-08"
235
+ izz="4.10592077565559E-05" />
236
+ </inertial>
237
+ <visual>
238
+ <origin
239
+ xyz="0 0 0"
240
+ rpy="0 0 0" />
241
+ <geometry>
242
+ <mesh
243
+ filename="meshes/link4.dae" />
244
+ </geometry>
245
+ <material
246
+ name="">
247
+ <color
248
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
249
+ </material>
250
+ </visual>
251
+ <collision>
252
+ <origin
253
+ xyz="0 0 0"
254
+ rpy="0 0 0" />
255
+ <geometry>
256
+ <mesh
257
+ filename="meshes/link4.STL" />
258
+ </geometry>
259
+ </collision>
260
+ </link>
261
+ <joint
262
+ name="joint4"
263
+ type="revolute">
264
+ <origin
265
+ xyz="-0.24221 0.068514 0"
266
+ rpy="-1.5708 0 1.3826" />
267
+ <parent
268
+ link="link3" />
269
+ <child
270
+ link="link4" />
271
+ <axis
272
+ xyz="0 0 1" />
273
+ <limit
274
+ lower="-1.832"
275
+ upper="1.832"
276
+ effort="100"
277
+ velocity="3" />
278
+ </joint>
279
+ <link
280
+ name="link5">
281
+ <inertial>
282
+ <origin
283
+ xyz="8.82262433516967E-05 0.0566829014808256 -0.00196119720482461"
284
+ rpy="0 0 0" />
285
+ <mass
286
+ value="0.144711242639457" />
287
+ <inertia
288
+ ixx="4.39644313662493E-05"
289
+ ixy="-3.59259686444846E-08"
290
+ ixz="-1.89747741386183E-08"
291
+ iyy="5.63173920951307E-05"
292
+ iyz="-2.1540716689785E-07"
293
+ izz="4.88713664675268E-05" />
294
+ </inertial>
295
+ <visual>
296
+ <origin
297
+ xyz="0 0 0"
298
+ rpy="0 0 0" />
299
+ <geometry>
300
+ <mesh
301
+ filename="meshes/link5.dae" />
302
+ </geometry>
303
+ <material
304
+ name="">
305
+ <color
306
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
307
+ </material>
308
+ </visual>
309
+ <collision>
310
+ <origin
311
+ xyz="0 0 0"
312
+ rpy="0 0 0" />
313
+ <geometry>
314
+ <mesh
315
+ filename="meshes/link5.STL" />
316
+ </geometry>
317
+ </collision>
318
+ </link>
319
+ <joint
320
+ name="joint5"
321
+ type="revolute">
322
+ <origin
323
+ xyz="0 0 0"
324
+ rpy="1.5708 0 0" />
325
+ <parent
326
+ link="link4" />
327
+ <child
328
+ link="link5" />
329
+ <axis
330
+ xyz="0 0 1" />
331
+ <limit
332
+ lower="-1.22"
333
+ upper="1.22"
334
+ effort="100"
335
+ velocity="3" />
336
+ </joint>
337
+ <link
338
+ name="link6">
339
+ <inertial>
340
+ <origin
341
+ xyz="0.00103120214523473 0.0121761387587524 0.0315480874960164"
342
+ rpy="0 0 0" />
343
+ <mass
344
+ value="0.195187143240719" />
345
+ <inertia
346
+ ixx="6.43790256535539E-05"
347
+ ixy="-1.2366166157046E-06"
348
+ ixz="1.97664606328472E-07"
349
+ iyy="0.000126146396374301"
350
+ iyz="2.41157078516408E-06"
351
+ izz="0.000154087076816444" />
352
+ </inertial>
353
+ <visual>
354
+ <origin
355
+ xyz="0 0 0"
356
+ rpy="0 0 1.5708" />
357
+ <geometry>
358
+ <mesh
359
+ filename="meshes/link6.dae" />
360
+ </geometry>
361
+ <material
362
+ name="">
363
+ <color
364
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
365
+ </material>
366
+ </visual>
367
+ <collision>
368
+ <origin
369
+ xyz="0 0 0"
370
+ rpy="0 0 0" />
371
+ <geometry>
372
+ <mesh
373
+ filename="meshes/link6_1.STL" />
374
+ </geometry>
375
+ </collision>
376
+ </link>
377
+ <joint
378
+ name="joint6"
379
+ type="revolute">
380
+ <origin
381
+ xyz="0 0.091 0.0014165"
382
+ rpy="-1.5708 -3.1415926 0" />
383
+ <parent
384
+ link="link5" />
385
+ <child
386
+ link="link6" />
387
+ <axis
388
+ xyz="0 0 1" />
389
+ <limit
390
+ lower="-3.14"
391
+ upper="3.14"
392
+ effort="100"
393
+ velocity="3" />
394
+ </joint>
395
+ <link
396
+ name="link7">
397
+ <inertial>
398
+ <origin
399
+ xyz="-0.000277778383727112 -0.0467673043650824 -0.00921029491873201"
400
+ rpy="0 0 0" />
401
+ <mass
402
+ value="0.02648229234527" />
403
+ <inertia
404
+ ixx="9.99787479924589E-06"
405
+ ixy="-1.57548495096104E-07"
406
+ ixz="-2.71342775003487E-08"
407
+ iyy="6.1795212293655E-06"
408
+ iyz="-1.58939803580081E-06"
409
+ izz="1.42102717246564E-05" />
410
+ </inertial>
411
+ <visual>
412
+ <origin
413
+ xyz="0 0 0"
414
+ rpy="0 0 0" />
415
+ <geometry>
416
+ <mesh
417
+ filename="meshes/link7.dae" />
418
+ </geometry>
419
+ <material
420
+ name="">
421
+ <color
422
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
423
+ </material>
424
+ </visual>
425
+ <collision>
426
+ <origin
427
+ xyz="0 0 0"
428
+ rpy="0 0 0" />
429
+ <geometry>
430
+ <mesh
431
+ filename="meshes/link7.STL" />
432
+ </geometry>
433
+ </collision>
434
+ </link>
435
+ <joint
436
+ name="joint7"
437
+ type="prismatic">
438
+ <origin
439
+ xyz="0 0 0.13503"
440
+ rpy="1.5708 0 3.1415926" />
441
+ <parent
442
+ link="link6" />
443
+ <child
444
+ link="link7" />
445
+ <axis
446
+ xyz="0 0 -1" />
447
+ <limit
448
+ lower="0"
449
+ upper="0.04"
450
+ effort="10"
451
+ velocity="1" />
452
+ </joint>
453
+ <link
454
+ name="link8">
455
+ <inertial>
456
+ <origin
457
+ xyz="0.000277816920932317 0.0467673824063769 -0.00921030054508036"
458
+ rpy="0 0 0" />
459
+ <mass
460
+ value="0.0264822021416248" />
461
+ <inertia
462
+ ixx="9.99779119357223E-06"
463
+ ixy="-1.57542283433504E-07"
464
+ ixz="2.71367446701359E-08"
465
+ iyy="6.17952441557932E-06"
466
+ iyz="1.58939319453383E-06"
467
+ izz="1.4210192754512E-05" />
468
+ </inertial>
469
+ <visual>
470
+ <origin
471
+ xyz="0 0 0"
472
+ rpy="0 0 0" />
473
+ <geometry>
474
+ <mesh
475
+ filename="meshes/link8.dae" />
476
+ </geometry>
477
+ <material
478
+ name="">
479
+ <color
480
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
481
+ </material>
482
+ </visual>
483
+ <collision>
484
+ <origin
485
+ xyz="0 0 0"
486
+ rpy="0 0 0" />
487
+ <geometry>
488
+ <mesh
489
+ filename="meshes/link8.STL" />
490
+ </geometry>
491
+ </collision>
492
+ </link>
493
+ <joint
494
+ name="joint8"
495
+ type="prismatic">
496
+ <origin
497
+ xyz="0 0 0.13503"
498
+ rpy="-1.5708 0 3.1415926" />
499
+ <parent
500
+ link="link6" />
501
+ <child
502
+ link="link8" />
503
+ <axis
504
+ xyz="0 0 -1" />
505
+ <limit
506
+ lower="0"
507
+ upper="0.04"
508
+ effort="10"
509
+ velocity="1" />
510
+ </joint>
511
+ </robot>
embodiments/piper/urdf/backup/piper_description copy.urdf ADDED
@@ -0,0 +1,568 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <robot
3
+ name="piper_description">
4
+ <link
5
+ name="base_link">
6
+ <!-- <inertial>
7
+ <origin
8
+ xyz="-0.00973928490005031 1.8312708928633E-06 0.0410140167677137"
9
+ rpy="0 0 0" />
10
+ <mass
11
+ value="0.162352169522719" />
12
+ <inertia
13
+ ixx="0.000226592553127906"
14
+ ixy="-7.33974356968813E-08"
15
+ ixz="2.13221970218123E-06"
16
+ iyy="0.000269447877479622"
17
+ iyz="8.15167478685076E-09"
18
+ izz="0.000222318286704" />
19
+ </inertial> -->
20
+ <visual>
21
+ <origin
22
+ xyz="0 0 0"
23
+ rpy="0 0 0" />
24
+ <geometry>
25
+ <mesh
26
+ filename="package://piper_description/meshes/base_link.STL" />
27
+ </geometry>
28
+ <material
29
+ name="">
30
+ <color
31
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
32
+ </material>
33
+ </visual>
34
+ <collision>
35
+ <origin
36
+ xyz="0 0 0"
37
+ rpy="0 0 0" />
38
+ <geometry>
39
+ <mesh
40
+ filename="package://piper_description/meshes/base_link.STL" />
41
+ </geometry>
42
+ </collision>
43
+ </link>
44
+ <link
45
+ name="link1">
46
+ <inertial>
47
+ <origin
48
+ xyz="0.00131676031927021 0.000310288842008364 -0.00922874512303438"
49
+ rpy="0 0 0" />
50
+ <mass
51
+ value="0.0978679932242825" />
52
+ <inertia
53
+ ixx="7.76684558296781E-05"
54
+ ixy="1.09084650459916E-07"
55
+ ixz="-1.97480532432411E-06"
56
+ iyy="9.24967780161546E-05"
57
+ iyz="9.91284646834672E-07"
58
+ izz="8.24589062407806E-05" />
59
+ </inertial>
60
+ <visual>
61
+ <origin
62
+ xyz="0 0 0"
63
+ rpy="0 0 0" />
64
+ <geometry>
65
+ <mesh
66
+ filename="package://piper_description/meshes/link1.STL" />
67
+ </geometry>
68
+ <material
69
+ name="">
70
+ <color
71
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
72
+ </material>
73
+ </visual>
74
+ <collision>
75
+ <origin
76
+ xyz="0 0 0"
77
+ rpy="0 0 0" />
78
+ <geometry>
79
+ <mesh
80
+ filename="package://piper_description/meshes/link1.STL" />
81
+ </geometry>
82
+ </collision>
83
+ </link>
84
+ <joint
85
+ name="joint1"
86
+ type="revolute">
87
+ <origin
88
+ xyz="0 0 0.123"
89
+ rpy="0 0 -1.5708" />
90
+ <parent
91
+ link="base_link" />
92
+ <child
93
+ link="link1" />
94
+ <axis
95
+ xyz="0 0 1" />
96
+ <limit
97
+ lower="-2.618"
98
+ upper="2.618"
99
+ effort="100"
100
+ velocity="0" />
101
+ </joint>
102
+ <link
103
+ name="link2">
104
+ <inertial>
105
+ <origin
106
+ xyz="0.147615838821413 -0.0174259998251393 0.00175952516190707"
107
+ rpy="0 0 0" />
108
+ <mass
109
+ value="0.289571136953082" />
110
+ <inertia
111
+ ixx="0.000150112628108228"
112
+ ixy="8.58974959950769E-05"
113
+ ixz="-1.07428153464285E-06"
114
+ iyy="0.00172585302855383"
115
+ iyz="-9.93704792239686E-07"
116
+ izz="0.00177445942914759" />
117
+ </inertial>
118
+ <visual>
119
+ <origin
120
+ xyz="0 0 0"
121
+ rpy="0 0 0" />
122
+ <geometry>
123
+ <mesh
124
+ filename="package://piper_description/meshes/link2.STL" />
125
+ </geometry>
126
+ <material
127
+ name="">
128
+ <color
129
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
130
+ </material>
131
+ </visual>
132
+ <collision>
133
+ <origin
134
+ xyz="0 0 0"
135
+ rpy="0 0 0" />
136
+ <geometry>
137
+ <mesh
138
+ filename="package://piper_description/meshes/link2.STL" />
139
+ </geometry>
140
+ </collision>
141
+ </link>
142
+ <joint
143
+ name="joint2"
144
+ type="revolute">
145
+ <origin
146
+ xyz="0 0 0"
147
+ rpy="1.5708 -0.10095 -1.5708" />
148
+ <parent
149
+ link="link1" />
150
+ <child
151
+ link="link2" />
152
+ <axis
153
+ xyz="0 0 1" />
154
+ <limit
155
+ lower="0"
156
+ upper="3.14"
157
+ effort="100"
158
+ velocity="1" />
159
+ </joint>
160
+ <link
161
+ name="link3">
162
+ <inertial>
163
+ <origin
164
+ xyz="0.0156727246030052 0.104466514905741 0.000508486764144372"
165
+ rpy="0 0 0" />
166
+ <mass
167
+ value="0.290583247455324" />
168
+ <inertia
169
+ ixx="0.000221686352136266"
170
+ ixy="-7.57426543992343E-06"
171
+ ixz="-6.3700062772173E-07"
172
+ iyy="0.000100859162015934"
173
+ iyz="-8.16202696860781E-07"
174
+ izz="0.000241839316548946" />
175
+ </inertial>
176
+ <visual>
177
+ <origin
178
+ xyz="0 0 0"
179
+ rpy="0 0 0" />
180
+ <geometry>
181
+ <mesh
182
+ filename="package://piper_description/meshes/link3.STL" />
183
+ </geometry>
184
+ <material
185
+ name="">
186
+ <color
187
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
188
+ </material>
189
+ </visual>
190
+ <collision>
191
+ <origin
192
+ xyz="0 0 0"
193
+ rpy="0 0 0" />
194
+ <geometry>
195
+ <mesh
196
+ filename="package://piper_description/meshes/link3.STL" />
197
+ </geometry>
198
+ </collision>
199
+ </link>
200
+ <joint
201
+ name="joint3"
202
+ type="revolute">
203
+ <origin
204
+ xyz="0.28503 0 0"
205
+ rpy="0 0 1.3826" />
206
+ <parent
207
+ link="link2" />
208
+ <child
209
+ link="link3" />
210
+ <axis
211
+ xyz="0 0 1" />
212
+ <limit
213
+ lower="-2.967"
214
+ upper="0"
215
+ effort="100"
216
+ velocity="1" />
217
+ </joint>
218
+ <link
219
+ name="link4">
220
+ <inertial>
221
+ <origin
222
+ xyz="0.000276464622388145 -0.00102803669324853 -0.00472830700561612"
223
+ rpy="0 0 0" />
224
+ <mass
225
+ value="0.127087348341362" />
226
+ <inertia
227
+ ixx="3.82011730423098E-05"
228
+ ixy="-4.92358351033589E-08"
229
+ ixz="4.89589432983109E-08"
230
+ iyy="4.87048555222491E-05"
231
+ iyz="6.70802942486707E-08"
232
+ izz="4.10592077565155E-05" />
233
+ </inertial>
234
+ <visual>
235
+ <origin
236
+ xyz="0 0 0"
237
+ rpy="0 0 0" />
238
+ <geometry>
239
+ <mesh
240
+ filename="package://piper_description/meshes/link4.STL" />
241
+ </geometry>
242
+ <material
243
+ name="">
244
+ <color
245
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
246
+ </material>
247
+ </visual>
248
+ <collision>
249
+ <origin
250
+ xyz="0 0 0"
251
+ rpy="0 0 0" />
252
+ <geometry>
253
+ <mesh
254
+ filename="package://piper_description/meshes/link4.STL" />
255
+ </geometry>
256
+ </collision>
257
+ </link>
258
+ <joint
259
+ name="joint4"
260
+ type="revolute">
261
+ <origin
262
+ xyz="0.021984 0.25075 0"
263
+ rpy="-1.5708 0 0" />
264
+ <parent
265
+ link="link3" />
266
+ <child
267
+ link="link4" />
268
+ <axis
269
+ xyz="0 0 1" />
270
+ <limit
271
+ lower="-1.832"
272
+ upper="1.832"
273
+ effort="100"
274
+ velocity="1" />
275
+ </joint>
276
+ <link
277
+ name="link5">
278
+ <inertial>
279
+ <origin
280
+ xyz="8.82261259100015E-05 0.056682908434204 -0.00196119077436732"
281
+ rpy="0 0 0" />
282
+ <mass
283
+ value="0.144711209371719" />
284
+ <inertia
285
+ ixx="4.39644269159173E-05"
286
+ ixy="-3.59214840853815E-08"
287
+ ixz="-1.89785003257649E-08"
288
+ iyy="5.63173857792457E-05"
289
+ iyz="-2.15407623722543E-07"
290
+ izz="4.88713595021005E-05" />
291
+ </inertial>
292
+ <visual>
293
+ <origin
294
+ xyz="0 0 0"
295
+ rpy="0 0 0" />
296
+ <geometry>
297
+ <mesh
298
+ filename="package://piper_description/meshes/link5.STL" />
299
+ </geometry>
300
+ <material
301
+ name="">
302
+ <color
303
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
304
+ </material>
305
+ </visual>
306
+ <collision>
307
+ <origin
308
+ xyz="0 0 0"
309
+ rpy="0 0 0" />
310
+ <geometry>
311
+ <mesh
312
+ filename="package://piper_description/meshes/link5.STL" />
313
+ </geometry>
314
+ </collision>
315
+ </link>
316
+ <joint
317
+ name="joint5"
318
+ type="revolute">
319
+ <origin
320
+ xyz="0 0 0"
321
+ rpy="1.5708 -0.087266 0" />
322
+ <parent
323
+ link="link4" />
324
+ <child
325
+ link="link5" />
326
+ <axis
327
+ xyz="0 0 1" />
328
+ <limit
329
+ lower="-1.22"
330
+ upper="1.22"
331
+ effort="100"
332
+ velocity="1" />
333
+ </joint>
334
+ <link
335
+ name="link6">
336
+ <inertial>
337
+ <origin
338
+ xyz="9.41121070072333E-09 0.000341209775988838 0.0342122921883722"
339
+ rpy="0 0 0" />
340
+ <mass
341
+ value="0.150196458571266" />
342
+ <inertia
343
+ ixx="4.31750564711759E-05"
344
+ ixy="-2.21295720427027E-08"
345
+ ixz="-3.27825836857102E-12"
346
+ iyy="9.99756357365307E-05"
347
+ iyz="1.10337380549335E-07"
348
+ izz="0.000118282295533688" />
349
+ </inertial>
350
+ <visual>
351
+ <origin
352
+ xyz="0 0 0"
353
+ rpy="0 0 0" />
354
+ <geometry>
355
+ <mesh
356
+ filename="package://piper_description/meshes/link6.STL" />
357
+ </geometry>
358
+ <material
359
+ name="">
360
+ <color
361
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
362
+ </material>
363
+ </visual>
364
+ <collision>
365
+ <origin
366
+ xyz="0 0 0"
367
+ rpy="0 0 0" />
368
+ <geometry>
369
+ <mesh
370
+ filename="package://piper_description/meshes/link6.STL" />
371
+ </geometry>
372
+ </collision>
373
+ </link>
374
+ <joint
375
+ name="joint6"
376
+ type="revolute">
377
+ <origin
378
+ xyz="0 0.091 0.0014165"
379
+ rpy="-1.5708 -1.5708 0" />
380
+ <parent
381
+ link="link5" />
382
+ <child
383
+ link="link6" />
384
+ <axis
385
+ xyz="0 0 1" />
386
+ <limit
387
+ lower="-3.14"
388
+ upper="3.14"
389
+ effort="100"
390
+ velocity="1" />
391
+ </joint>
392
+
393
+ <link
394
+ name="link7">
395
+ <inertial>
396
+ <origin
397
+ xyz="-0.000277795893713934 -0.046767350270289 -0.00921029791141448"
398
+ rpy="0 0 0" />
399
+ <mass
400
+ value="0.0264822500394006" />
401
+ <inertia
402
+ ixx="9.99782519244544E-06"
403
+ ixy="-1.57547595978589E-07"
404
+ ixz="-2.71355785017816E-08"
405
+ iyy="6.17952364356547E-06"
406
+ iyz="-1.58939504838734E-06"
407
+ izz="1.42102253390315E-05" />
408
+ </inertial>
409
+ <visual>
410
+ <origin
411
+ xyz="0 0 0"
412
+ rpy="0 0 0" />
413
+ <geometry>
414
+ <mesh
415
+ filename="package://piper_description/meshes/link7.STL" />
416
+ </geometry>
417
+ <material
418
+ name="">
419
+ <color
420
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
421
+ </material>
422
+ </visual>
423
+ <collision>
424
+ <origin
425
+ xyz="0 0 0"
426
+ rpy="0 0 0" />
427
+ <geometry>
428
+ <mesh
429
+ filename="package://piper_description/meshes/link7.STL" />
430
+ </geometry>
431
+ </collision>
432
+ </link>
433
+ <joint
434
+ name="joint7"
435
+ type="prismatic">
436
+ <origin
437
+ xyz="0 0 0.13503"
438
+ rpy="1.5708 0 1.5708" />
439
+ <parent
440
+ link="link6" />
441
+ <child
442
+ link="link7" />
443
+ <axis
444
+ xyz="0 0 -1" />
445
+ <limit
446
+ lower="-0.038"
447
+ upper="0"
448
+ effort="100"
449
+ velocity="1" />
450
+ </joint>
451
+
452
+ <link
453
+ name="link8">
454
+ <inertial>
455
+ <origin
456
+ xyz="0.000277795911672651 0.0467673513153836 -0.00921029799058583"
457
+ rpy="0 0 0" />
458
+ <mass
459
+ value="0.0264822490707451" />
460
+ <inertia
461
+ ixx="9.99782474142963E-06"
462
+ ixy="-1.57547666236405E-07"
463
+ ixz="2.71355834243046E-08"
464
+ iyy="6.17952362333486E-06"
465
+ iyz="1.58939503259658E-06"
466
+ izz="1.42102248648757E-05" />
467
+ </inertial>
468
+ <visual>
469
+ <origin
470
+ xyz="0 0 0"
471
+ rpy="0 0 0" />
472
+ <geometry>
473
+ <mesh
474
+ filename="package://piper_description/meshes/link8.STL" />
475
+ </geometry>
476
+ <material
477
+ name="">
478
+ <color
479
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
480
+ </material>
481
+ </visual>
482
+ <collision>
483
+ <origin
484
+ xyz="0 0 0"
485
+ rpy="0 0 0" />
486
+ <geometry>
487
+ <mesh
488
+ filename="package://piper_description/meshes/link8.STL" />
489
+ </geometry>
490
+ </collision>
491
+ </link>
492
+ <joint
493
+ name="joint8"
494
+ type="prismatic">
495
+ <origin
496
+ xyz="0 0 0.13503"
497
+ rpy="-1.5708 0 1.5708" />
498
+ <parent
499
+ link="link6" />
500
+ <child
501
+ link="link8" />
502
+ <axis
503
+ xyz="0 0 1" />
504
+ <limit
505
+ lower="0"
506
+ upper="0.038"
507
+ effort="100"
508
+ velocity="1" />
509
+ </joint>
510
+ <!-- <link
511
+ name="link8">
512
+ <inertial>
513
+ <origin
514
+ xyz="-0.000277795893713934 -0.046767350270289 -0.00921029791141448"
515
+ rpy="0 0 0" />
516
+ <mass
517
+ value="0.0264822500394006" />
518
+ <inertia
519
+ ixx="9.99782519244544E-06"
520
+ ixy="-1.57547595978589E-07"
521
+ ixz="-2.71355785017816E-08"
522
+ iyy="6.17952364356547E-06"
523
+ iyz="-1.58939504838734E-06"
524
+ izz="1.42102253390315E-05" />
525
+ </inertial>
526
+ <visual>
527
+ <origin
528
+ xyz="0 0 0"
529
+ rpy="0 0 0" />
530
+ <geometry>
531
+ <mesh
532
+ filename="package://piper_description/meshes/link8.STL" />
533
+ </geometry>
534
+ <material
535
+ name="">
536
+ <color
537
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
538
+ </material>
539
+ </visual>
540
+ <collision>
541
+ <origin
542
+ xyz="0 0 0"
543
+ rpy="0 0 0" />
544
+ <geometry>
545
+ <mesh
546
+ filename="package://piper_description/meshes/link8.STL" />
547
+ </geometry>
548
+ </collision>
549
+ </link>
550
+ <joint
551
+ name="joint8"
552
+ type="prismatic">
553
+ <origin
554
+ xyz="-0.037167 0 0.13503"
555
+ rpy="1.5708 0 1.5708" />
556
+ <parent
557
+ link="link6" />
558
+ <child
559
+ link="link8" />
560
+ <axis
561
+ xyz="0 0 -1" />
562
+ <limit
563
+ lower="-0.038"
564
+ upper="0"
565
+ effort="100"
566
+ velocity="1" />
567
+ </joint> -->
568
+ </robot>
embodiments/piper/urdf/backup/piper_description copy.xacro ADDED
@@ -0,0 +1,584 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <robot
3
+ name="arm"
4
+ xmlns:xacro="http://ros.org/wiki/xacro">
5
+ <!-- world -->
6
+ <link name="world"/>
7
+ <joint name="fixed_base_joint" type="fixed">
8
+ <parent link="world"/>
9
+ <child link="base_link"/>
10
+ </joint>
11
+ <!-- arm -->
12
+ <link
13
+ name="base_link">
14
+ <inertial>
15
+ <origin
16
+ xyz="-0.00973928490005031 1.8312708928633E-06 0.0410140167677137"
17
+ rpy="0 0 0" />
18
+ <mass
19
+ value="0.00001" />
20
+ <inertia
21
+ ixx="0.000226592553127906"
22
+ ixy="-7.33974356968813E-08"
23
+ ixz="2.13221970218123E-06"
24
+ iyy="0.000269447877479622"
25
+ iyz="8.15167478685076E-09"
26
+ izz="0.000222318286704" />
27
+ </inertial>
28
+ <visual>
29
+ <origin
30
+ xyz="0 0 0"
31
+ rpy="0 0 0" />
32
+ <geometry>
33
+ <mesh
34
+ filename="package://piper_description/meshes/base_link.STL" />
35
+ </geometry>
36
+ <material
37
+ name="">
38
+ <color
39
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
40
+ </material>
41
+ </visual>
42
+ <collision>
43
+ <origin
44
+ xyz="0 0 0"
45
+ rpy="0 0 0" />
46
+ <geometry>
47
+ <mesh
48
+ filename="package://piper_description/meshes/base_link.STL" />
49
+ </geometry>
50
+ </collision>
51
+ </link>
52
+ <link
53
+ name="link1">
54
+ <inertial>
55
+ <origin
56
+ xyz="0.00131676031927021 0.000310288842008364 -0.00922874512303438"
57
+ rpy="0 0 0" />
58
+ <mass
59
+ value="0.00001" />
60
+ <inertia
61
+ ixx="7.76684558296781E-05"
62
+ ixy="1.09084650459916E-07"
63
+ ixz="-1.97480532432411E-06"
64
+ iyy="9.24967780161546E-05"
65
+ iyz="9.91284646834672E-07"
66
+ izz="8.24589062407806E-05" />
67
+ </inertial>
68
+ <visual>
69
+ <origin
70
+ xyz="0 0 0"
71
+ rpy="0 0 0" />
72
+ <geometry>
73
+ <mesh
74
+ filename="package://piper_description/meshes/link1.STL" />
75
+ </geometry>
76
+ <material
77
+ name="">
78
+ <color
79
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
80
+ </material>
81
+ </visual>
82
+ <collision>
83
+ <origin
84
+ xyz="0 0 0"
85
+ rpy="0 0 0" />
86
+ <geometry>
87
+ <mesh
88
+ filename="package://piper_description/meshes/link1.STL" />
89
+ </geometry>
90
+ </collision>
91
+ </link>
92
+ <joint
93
+ name="joint1"
94
+ type="revolute">
95
+ <origin
96
+ xyz="0 0 0.123"
97
+ rpy="0 0 -1.5708" />
98
+ <parent
99
+ link="base_link" />
100
+ <child
101
+ link="link1" />
102
+ <axis
103
+ xyz="0 0 1" />
104
+ <limit
105
+ lower="-2.618"
106
+ upper="2.618"
107
+ effort="100"
108
+ velocity="1" />
109
+ </joint>
110
+ <link
111
+ name="link2">
112
+ <inertial>
113
+ <origin
114
+ xyz="0.147615838821413 -0.0174259998251393 0.00175952516190707"
115
+ rpy="0 0 0" />
116
+ <mass
117
+ value="0.00001" />
118
+ <inertia
119
+ ixx="0.000150112628108228"
120
+ ixy="8.58974959950769E-05"
121
+ ixz="-1.07428153464285E-06"
122
+ iyy="0.00172585302855383"
123
+ iyz="-9.93704792239686E-07"
124
+ izz="0.00177445942914759" />
125
+ </inertial>
126
+ <visual>
127
+ <origin
128
+ xyz="0 0 0"
129
+ rpy="0 0 0" />
130
+ <geometry>
131
+ <mesh
132
+ filename="package://piper_description/meshes/link2.STL" />
133
+ </geometry>
134
+ <material
135
+ name="">
136
+ <color
137
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
138
+ </material>
139
+ </visual>
140
+ <collision>
141
+ <origin
142
+ xyz="0 0 0"
143
+ rpy="0 0 0" />
144
+ <geometry>
145
+ <mesh
146
+ filename="package://piper_description/meshes/link2.STL" />
147
+ </geometry>
148
+ </collision>
149
+ </link>
150
+ <joint
151
+ name="joint2"
152
+ type="revolute">
153
+ <origin
154
+ xyz="0 0 0"
155
+ rpy="1.5708 -0.10095 -1.5708" />
156
+ <parent
157
+ link="link1" />
158
+ <child
159
+ link="link2" />
160
+ <axis
161
+ xyz="0 0 1" />
162
+ <limit
163
+ lower="0"
164
+ upper="3.14"
165
+ effort="100"
166
+ velocity="1" />
167
+ </joint>
168
+ <link
169
+ name="link3">
170
+ <inertial>
171
+ <origin
172
+ xyz="0.0156727246030052 0.104466514905741 0.000508486764144372"
173
+ rpy="0 0 0" />
174
+ <mass
175
+ value="0.00001" />
176
+ <inertia
177
+ ixx="0.000221686352136266"
178
+ ixy="-7.57426543992343E-06"
179
+ ixz="-6.3700062772173E-07"
180
+ iyy="0.000100859162015934"
181
+ iyz="-8.16202696860781E-07"
182
+ izz="0.000241839316548946" />
183
+ </inertial>
184
+ <visual>
185
+ <origin
186
+ xyz="0 0 0"
187
+ rpy="0 0 0" />
188
+ <geometry>
189
+ <mesh
190
+ filename="package://piper_description/meshes/link3.STL" />
191
+ </geometry>
192
+ <material
193
+ name="">
194
+ <color
195
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
196
+ </material>
197
+ </visual>
198
+ <collision>
199
+ <origin
200
+ xyz="0 0 0"
201
+ rpy="0 0 0" />
202
+ <geometry>
203
+ <mesh
204
+ filename="package://piper_description/meshes/link3.STL" />
205
+ </geometry>
206
+ </collision>
207
+ </link>
208
+ <joint
209
+ name="joint3"
210
+ type="revolute">
211
+ <origin
212
+ xyz="0.28503 0 0"
213
+ rpy="0 0 1.3826" />
214
+ <parent
215
+ link="link2" />
216
+ <child
217
+ link="link3" />
218
+ <axis
219
+ xyz="0 0 1" />
220
+ <limit
221
+ lower="-2.967"
222
+ upper="0"
223
+ effort="100"
224
+ velocity="1" />
225
+ </joint>
226
+ <link
227
+ name="link4">
228
+ <inertial>
229
+ <origin
230
+ xyz="0.000276464622388145 -0.00102803669324853 -0.00472830700561612"
231
+ rpy="0 0 0" />
232
+ <mass
233
+ value="0.00001" />
234
+ <inertia
235
+ ixx="3.82011730423098E-05"
236
+ ixy="-4.92358351033589E-08"
237
+ ixz="4.89589432983109E-08"
238
+ iyy="4.87048555222491E-05"
239
+ iyz="6.70802942486707E-08"
240
+ izz="4.10592077565155E-05" />
241
+ </inertial>
242
+ <visual>
243
+ <origin
244
+ xyz="0 0 0"
245
+ rpy="0 0 0" />
246
+ <geometry>
247
+ <mesh
248
+ filename="package://piper_description/meshes/link4.STL" />
249
+ </geometry>
250
+ <material
251
+ name="">
252
+ <color
253
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
254
+ </material>
255
+ </visual>
256
+ <collision>
257
+ <origin
258
+ xyz="0 0 0"
259
+ rpy="0 0 0" />
260
+ <geometry>
261
+ <mesh
262
+ filename="package://piper_description/meshes/link4.STL" />
263
+ </geometry>
264
+ </collision>
265
+ </link>
266
+ <joint
267
+ name="joint4"
268
+ type="revolute">
269
+ <origin
270
+ xyz="0.021984 0.25075 0"
271
+ rpy="-1.5708 0 0" />
272
+ <parent
273
+ link="link3" />
274
+ <child
275
+ link="link4" />
276
+ <axis
277
+ xyz="0 0 1" />
278
+ <limit
279
+ lower="-1.832"
280
+ upper="1.832"
281
+ effort="100"
282
+ velocity="1" />
283
+ </joint>
284
+ <link
285
+ name="link5">
286
+ <inertial>
287
+ <origin
288
+ xyz="8.82261259100015E-05 0.056682908434204 -0.00196119077436732"
289
+ rpy="0 0 0" />
290
+ <mass
291
+ value="0.00001" />
292
+ <inertia
293
+ ixx="4.39644269159173E-05"
294
+ ixy="-3.59214840853815E-08"
295
+ ixz="-1.89785003257649E-08"
296
+ iyy="5.63173857792457E-05"
297
+ iyz="-2.15407623722543E-07"
298
+ izz="4.88713595021005E-05" />
299
+ </inertial>
300
+ <visual>
301
+ <origin
302
+ xyz="0 0 0"
303
+ rpy="0 0 0" />
304
+ <geometry>
305
+ <mesh
306
+ filename="package://piper_description/meshes/link5.STL" />
307
+ </geometry>
308
+ <material
309
+ name="">
310
+ <color
311
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
312
+ </material>
313
+ </visual>
314
+ <collision>
315
+ <origin
316
+ xyz="0 0 0"
317
+ rpy="0 0 0" />
318
+ <geometry>
319
+ <mesh
320
+ filename="package://piper_description/meshes/link5.STL" />
321
+ </geometry>
322
+ </collision>
323
+ </link>
324
+ <joint
325
+ name="joint5"
326
+ type="revolute">
327
+ <origin
328
+ xyz="0 0 0"
329
+ rpy="1.5708 -0.087266 0" />
330
+ <parent
331
+ link="link4" />
332
+ <child
333
+ link="link5" />
334
+ <axis
335
+ xyz="0 0 1" />
336
+ <limit
337
+ lower="-1.22"
338
+ upper="1.22"
339
+ effort="100"
340
+ velocity="1" />
341
+ </joint>
342
+ <link
343
+ name="link6">
344
+ <inertial>
345
+ <origin
346
+ xyz="9.41121070072333E-09 0.000341209775988838 0.0342122921883722"
347
+ rpy="0 0 0" />
348
+ <mass
349
+ value="0.00001" />
350
+ <inertia
351
+ ixx="4.31750564711759E-05"
352
+ ixy="-2.21295720427027E-08"
353
+ ixz="-3.27825836857102E-12"
354
+ iyy="9.99756357365307E-05"
355
+ iyz="1.10337380549335E-07"
356
+ izz="0.000118282295533688" />
357
+ </inertial>
358
+ <visual>
359
+ <origin
360
+ xyz="0 0 0"
361
+ rpy="0 0 0" />
362
+ <geometry>
363
+ <mesh
364
+ filename="package://piper_description/meshes/link6.STL" />
365
+ </geometry>
366
+ <material
367
+ name="">
368
+ <color
369
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
370
+ </material>
371
+ </visual>
372
+ <collision>
373
+ <origin
374
+ xyz="0 0 0"
375
+ rpy="0 0 0" />
376
+ <geometry>
377
+ <mesh
378
+ filename="package://piper_description/meshes/link6.STL" />
379
+ </geometry>
380
+ </collision>
381
+ </link>
382
+ <joint
383
+ name="joint6"
384
+ type="revolute">
385
+ <origin
386
+ xyz="0 0.091 0.0014165"
387
+ rpy="-1.5708 -1.5708 0" />
388
+ <parent
389
+ link="link5" />
390
+ <child
391
+ link="link6" />
392
+ <axis
393
+ xyz="0 0 1" />
394
+ <limit
395
+ lower="-3.14"
396
+ upper="3.14"
397
+ effort="100"
398
+ velocity="1" />
399
+ </joint>
400
+
401
+ <link
402
+ name="link7">
403
+ <inertial>
404
+ <origin
405
+ xyz="-0.000277795893713934 -0.046767350270289 -0.00921029791141448"
406
+ rpy="0 0 0" />
407
+ <mass
408
+ value="0.00001" />
409
+ <inertia
410
+ ixx="9.99782519244544E-06"
411
+ ixy="-1.57547595978589E-07"
412
+ ixz="-2.71355785017816E-08"
413
+ iyy="6.17952364356547E-06"
414
+ iyz="-1.58939504838734E-06"
415
+ izz="1.42102253390315E-05" />
416
+ </inertial>
417
+ <visual>
418
+ <origin
419
+ xyz="0 0 0"
420
+ rpy="0 0 0" />
421
+ <geometry>
422
+ <mesh
423
+ filename="package://piper_description/meshes/link7.STL" />
424
+ </geometry>
425
+ <material
426
+ name="">
427
+ <color
428
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
429
+ </material>
430
+ </visual>
431
+ <collision>
432
+ <origin
433
+ xyz="0 0 0"
434
+ rpy="0 0 0" />
435
+ <geometry>
436
+ <mesh
437
+ filename="package://piper_description/meshes/link7.STL" />
438
+ </geometry>
439
+ </collision>
440
+ </link>
441
+ <joint
442
+ name="joint7"
443
+ type="prismatic">
444
+ <origin
445
+ xyz="0 0 0.13503"
446
+ rpy="1.5708 0 1.5708" />
447
+ <parent
448
+ link="link6" />
449
+ <child
450
+ link="link7" />
451
+ <axis
452
+ xyz="0 0 -1" />
453
+ <limit
454
+ lower="0"
455
+ upper="0.038"
456
+ effort="100"
457
+ velocity="1" />
458
+ </joint>
459
+
460
+ <link
461
+ name="link8">
462
+ <inertial>
463
+ <origin
464
+ xyz="0.000277795911672651 0.0467673513153836 -0.00921029799058583"
465
+ rpy="0 0 0" />
466
+ <mass
467
+ value="0.00001" />
468
+ <inertia
469
+ ixx="9.99782474142963E-06"
470
+ ixy="-1.57547666236405E-07"
471
+ ixz="2.71355834243046E-08"
472
+ iyy="6.17952362333486E-06"
473
+ iyz="1.58939503259658E-06"
474
+ izz="1.42102248648757E-05" />
475
+ </inertial>
476
+ <visual>
477
+ <origin
478
+ xyz="0 0 0"
479
+ rpy="0 0 0" />
480
+ <geometry>
481
+ <mesh
482
+ filename="package://piper_description/meshes/link8.STL" />
483
+ </geometry>
484
+ <material
485
+ name="">
486
+ <color
487
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
488
+ </material>
489
+ </visual>
490
+ <collision>
491
+ <origin
492
+ xyz="0 0 0"
493
+ rpy="0 0 0" />
494
+ <geometry>
495
+ <mesh
496
+ filename="package://piper_description/meshes/link8.STL" />
497
+ </geometry>
498
+ </collision>
499
+ </link>
500
+ <joint
501
+ name="joint8"
502
+ type="prismatic">
503
+ <origin
504
+ xyz="0 0 0.13503"
505
+ rpy="-1.5708 0 1.5708" />
506
+ <parent
507
+ link="link6" />
508
+ <child
509
+ link="link8" />
510
+ <axis
511
+ xyz="0 0 1" />
512
+ <limit
513
+ lower="-0.038"
514
+ upper="0"
515
+ effort="300"
516
+ velocity="1" />
517
+ </joint>
518
+
519
+ <!-- controller -->
520
+ <xacro:macro name="transmission_block" params="tran_name joint_name motor_name">
521
+ <transmission name="${tran_name}">
522
+ <type>transmission_interface/SimpleTransmission</type>
523
+ <joint name="${joint_name}">
524
+ <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>
525
+ </joint>
526
+ <actuator name="$motor_name">
527
+ <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>
528
+ <mechanicalReduction>1</mechanicalReduction>
529
+ </actuator>
530
+ </transmission>
531
+ </xacro:macro>
532
+
533
+ <xacro:transmission_block tran_name="tran1" joint_name="joint1" motor_name="motor1"/>
534
+ <xacro:transmission_block tran_name="tran2" joint_name="joint2" motor_name="motor2"/>
535
+ <xacro:transmission_block tran_name="tran3" joint_name="joint3" motor_name="motor3"/>
536
+ <xacro:transmission_block tran_name="tran4" joint_name="joint4" motor_name="motor4"/>
537
+ <xacro:transmission_block tran_name="tran5" joint_name="joint5" motor_name="motor5"/>
538
+ <xacro:transmission_block tran_name="tran6" joint_name="joint6" motor_name="motor6"/>
539
+ <xacro:transmission_block tran_name="tran7" joint_name="joint7" motor_name="motor7"/>
540
+ <xacro:transmission_block tran_name="tran8" joint_name="joint8" motor_name="motor8"/>
541
+ <!-- gazebo -->
542
+ <gazebo>
543
+ <plugin name="gazebo_ros_control" filename="libgazebo_ros_control.so">
544
+ <robotNamespace>/piper_description</robotNamespace>
545
+ <legacyModeNS>true</legacyModeNS>
546
+ </plugin>
547
+ </gazebo>
548
+
549
+ <gazebo reference="base_link">
550
+ <material>Gazebo/Black</material>
551
+ </gazebo>
552
+
553
+ <gazebo reference="link1">
554
+ <material>Gazebo/White</material>
555
+ </gazebo>
556
+
557
+ <gazebo reference="link2">
558
+ <material>Gazebo/White</material>
559
+ </gazebo>
560
+
561
+ <gazebo reference="link3">
562
+ <material>Gazebo/White</material>
563
+ </gazebo>
564
+
565
+ <gazebo reference="link4">
566
+ <material>Gazebo/Black</material>
567
+ </gazebo>
568
+
569
+ <gazebo reference="link5">
570
+ <material>Gazebo/White</material>
571
+ </gazebo>
572
+
573
+ <gazebo reference="link6">
574
+ <material>Gazebo/White</material>
575
+ </gazebo>
576
+
577
+ <gazebo reference="link7">
578
+ <material>Gazebo/Orange</material>
579
+ </gazebo>
580
+
581
+ <gazebo reference="link8">
582
+ <material>Gazebo/Orange</material>
583
+ </gazebo>
584
+ </robot>
embodiments/piper/urdf/moveit/piper_no_gripper_description.urdf ADDED
@@ -0,0 +1,373 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- This URDF was automatically created by SolidWorks to URDF Exporter! Originally created by Stephen Brawner (brawner@gmail.com)
3
+ Commit Version: 1.6.0-4-g7f85cfe Build Version: 1.6.7995.38578
4
+ For more information, please see http://wiki.ros.org/sw_urdf_exporter -->
5
+ <robot
6
+ name="piper_description">
7
+ <link name="dummy_root" />
8
+ <link
9
+ name="base_link">
10
+ <inertial>
11
+ <origin
12
+ xyz="-0.00973928490005031 1.83127089286717E-06 0.0410140167677137"
13
+ rpy="0 0 0" />
14
+ <mass
15
+ value="0.0001" />
16
+ <inertia
17
+ ixx="0.000226592553127906"
18
+ ixy="-7.33974356968615E-08"
19
+ ixz="2.13221970218122E-06"
20
+ iyy="0.000269447877479622"
21
+ iyz="8.15167478682596E-09"
22
+ izz="0.000222318286704" />
23
+ </inertial>
24
+ <visual>
25
+ <origin
26
+ xyz="0 0 0"
27
+ rpy="0 0 0" />
28
+ <geometry>
29
+ <mesh
30
+ filename="package://piper_description/meshes/base_link.STL" />
31
+ </geometry>
32
+ <material
33
+ name="">
34
+ <color
35
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
36
+ </material>
37
+ </visual>
38
+ <collision>
39
+ <origin
40
+ xyz="0 0 0"
41
+ rpy="0 0 0" />
42
+ <geometry>
43
+ <mesh
44
+ filename="package://piper_description/meshes/base_link.STL" />
45
+ </geometry>
46
+ </collision>
47
+ </link>
48
+ <joint name="fixed_base" type="fixed">
49
+ <parent link="dummy_root" />
50
+ <child link="base_link" />
51
+ <origin xyz="0 0 0" rpy="0 0 0" />
52
+ </joint>
53
+ <link
54
+ name="link1">
55
+ <inertial>
56
+ <origin
57
+ xyz="0.00131676031927021 0.000310288842008365 -0.00922874512303438"
58
+ rpy="0 0 0" />
59
+ <mass
60
+ value="0.0001" />
61
+ <inertia
62
+ ixx="7.76684558296782E-05"
63
+ ixy="1.09084650459916E-07"
64
+ ixz="-1.97480532432411E-06"
65
+ iyy="9.24967780161546E-05"
66
+ iyz="9.91284646834672E-07"
67
+ izz="8.24589062407806E-05" />
68
+ </inertial>
69
+ <visual>
70
+ <origin
71
+ xyz="0 0 0"
72
+ rpy="0 0 0" />
73
+ <geometry>
74
+ <mesh
75
+ filename="package://piper_description/meshes/link1.STL" />
76
+ </geometry>
77
+ <material
78
+ name="">
79
+ <color
80
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
81
+ </material>
82
+ </visual>
83
+ <collision>
84
+ <origin
85
+ xyz="0 0 0"
86
+ rpy="0 0 0" />
87
+ <geometry>
88
+ <mesh
89
+ filename="package://piper_description/meshes/link1.STL" />
90
+ </geometry>
91
+ </collision>
92
+ </link>
93
+ <joint
94
+ name="joint1"
95
+ type="revolute">
96
+ <origin
97
+ xyz="0 0 0.123"
98
+ rpy="0 0 -1.5708" />
99
+ <parent
100
+ link="base_link" />
101
+ <child
102
+ link="link1" />
103
+ <axis
104
+ xyz="0 0 1" />
105
+ <limit
106
+ lower="-2.618"
107
+ upper="2.618"
108
+ effort="100"
109
+ velocity="3" />
110
+ </joint>
111
+ <link
112
+ name="link2">
113
+ <inertial>
114
+ <origin
115
+ xyz="0.147615838821413 -0.0174259998251394 0.00175952516190707"
116
+ rpy="0 0 0" />
117
+ <mass
118
+ value="0.0001" />
119
+ <inertia
120
+ ixx="0.000150112628108228"
121
+ ixy="8.58974959950769E-05"
122
+ ixz="-1.07428153464284E-06"
123
+ iyy="0.00172585302855383"
124
+ iyz="-9.93704792239676E-07"
125
+ izz="0.00177445942914759" />
126
+ </inertial>
127
+ <visual>
128
+ <origin
129
+ xyz="0 0 0"
130
+ rpy="0 0 0" />
131
+ <geometry>
132
+ <mesh
133
+ filename="package://piper_description/meshes/link2.STL" />
134
+ </geometry>
135
+ <material
136
+ name="">
137
+ <color
138
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
139
+ </material>
140
+ </visual>
141
+ <collision>
142
+ <origin
143
+ xyz="0 0 0"
144
+ rpy="0 0 0" />
145
+ <geometry>
146
+ <mesh
147
+ filename="package://piper_description/meshes/link2.STL" />
148
+ </geometry>
149
+ </collision>
150
+ </link>
151
+ <joint
152
+ name="joint2"
153
+ type="revolute">
154
+ <origin
155
+ xyz="0 0 0"
156
+ rpy="1.5708 -0.10095 -1.5708" />
157
+ <parent
158
+ link="link1" />
159
+ <child
160
+ link="link2" />
161
+ <axis
162
+ xyz="0 0 1" />
163
+ <limit
164
+ lower="0"
165
+ upper="3.14"
166
+ effort="100"
167
+ velocity="3" />
168
+ </joint>
169
+ <link
170
+ name="link3">
171
+ <inertial>
172
+ <origin
173
+ xyz="0.0156727239770991 0.104466514402189 0.000508486576356504"
174
+ rpy="0 0 0" />
175
+ <mass
176
+ value="0.0001" />
177
+ <inertia
178
+ ixx="0.00022168634302318"
179
+ ixy="-7.57426147001315E-06"
180
+ ixz="-6.36999759250492E-07"
181
+ iyy="0.000100859159512329"
182
+ iyz="-8.16199264787698E-07"
183
+ izz="0.000241839306422341" />
184
+ </inertial>
185
+ <visual>
186
+ <origin
187
+ xyz="0 0 0"
188
+ rpy="0 0 0" />
189
+ <geometry>
190
+ <mesh
191
+ filename="package://piper_description/meshes/link3.STL" />
192
+ </geometry>
193
+ <material
194
+ name="">
195
+ <color
196
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
197
+ </material>
198
+ </visual>
199
+ <collision>
200
+ <origin
201
+ xyz="0 0 0"
202
+ rpy="0 0 0" />
203
+ <geometry>
204
+ <mesh
205
+ filename="package://piper_description/meshes/link3.STL" />
206
+ </geometry>
207
+ </collision>
208
+ </link>
209
+ <joint
210
+ name="joint3"
211
+ type="revolute">
212
+ <origin
213
+ xyz="0.28503 0 0"
214
+ rpy="0 0 1.3826" />
215
+ <parent
216
+ link="link2" />
217
+ <child
218
+ link="link3" />
219
+ <axis
220
+ xyz="0 0 1" />
221
+ <limit
222
+ lower="-2.697"
223
+ upper="0"
224
+ effort="100"
225
+ velocity="3" />
226
+ </joint>
227
+ <link
228
+ name="link4">
229
+ <inertial>
230
+ <origin
231
+ xyz="0.000276464622388145 -0.00102803669324856 -0.00472830700561582"
232
+ rpy="0 0 0" />
233
+ <mass
234
+ value="0.0001" />
235
+ <inertia
236
+ ixx="3.82011730423392E-05"
237
+ ixy="-4.92358350916331E-08"
238
+ ixz="4.89589432971791E-08"
239
+ iyy="4.87048555222583E-05"
240
+ iyz="6.70802942501353E-08"
241
+ izz="4.10592077565539E-05" />
242
+ </inertial>
243
+ <visual>
244
+ <origin
245
+ xyz="0 0 0"
246
+ rpy="0 0 0" />
247
+ <geometry>
248
+ <mesh
249
+ filename="package://piper_description/meshes/link4.STL" />
250
+ </geometry>
251
+ <material
252
+ name="">
253
+ <color
254
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
255
+ </material>
256
+ </visual>
257
+ <collision>
258
+ <origin
259
+ xyz="0 0 0"
260
+ rpy="0 0 0" />
261
+ <geometry>
262
+ <mesh
263
+ filename="package://piper_description/meshes/link4.STL" />
264
+ </geometry>
265
+ </collision>
266
+ </link>
267
+ <joint
268
+ name="joint4"
269
+ type="revolute">
270
+ <origin
271
+ xyz="0.021984 0.25075 0"
272
+ rpy="-1.5708 0 0" />
273
+ <parent
274
+ link="link3" />
275
+ <child
276
+ link="link4" />
277
+ <axis
278
+ xyz="0 0 1" />
279
+ <limit
280
+ lower="-1.832"
281
+ upper="1.832"
282
+ effort="100"
283
+ velocity="3" />
284
+ </joint>
285
+ <link
286
+ name="link5">
287
+ <inertial>
288
+ <origin
289
+ xyz="8.82262433637704E-05 0.0566829014808264 -0.00196119720482555"
290
+ rpy="0 0 0" />
291
+ <mass
292
+ value="0.0001" />
293
+ <inertia
294
+ ixx="4.39644313661978E-05"
295
+ ixy="-3.59259686449865E-08"
296
+ ixz="-1.89747741592145E-08"
297
+ iyy="5.6317392095077E-05"
298
+ iyz="-2.1540716689678E-07"
299
+ izz="4.88713664675246E-05" />
300
+ </inertial>
301
+ <visual>
302
+ <origin
303
+ xyz="0 0 0"
304
+ rpy="0 0 0" />
305
+ <geometry>
306
+ <mesh
307
+ filename="package://piper_description/meshes/link5.STL" />
308
+ </geometry>
309
+ <material
310
+ name="">
311
+ <color
312
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
313
+ </material>
314
+ </visual>
315
+ <collision>
316
+ <origin
317
+ xyz="0 0 0"
318
+ rpy="0 0 0" />
319
+ <geometry>
320
+ <mesh
321
+ filename="package://piper_description/meshes/link5.STL" />
322
+ </geometry>
323
+ </collision>
324
+ </link>
325
+ <joint
326
+ name="joint5"
327
+ type="revolute">
328
+ <origin
329
+ xyz="0 0 0"
330
+ rpy="1.5708 0 0" />
331
+ <parent
332
+ link="link4" />
333
+ <child
334
+ link="link5" />
335
+ <axis
336
+ xyz="0 0 1" />
337
+ <limit
338
+ lower="-1.22"
339
+ upper="1.22"
340
+ effort="100"
341
+ velocity="3" />
342
+ </joint>
343
+
344
+ <link name="link6">
345
+ <inertial>
346
+ <origin xyz="0 0 0" rpy="0 0 0" />
347
+ <mass value="0.0001" />
348
+ <inertia ixx="1e-6" ixy="0" ixz="0" iyy="1e-6" iyz="0" izz="1e-6" />
349
+ </inertial>
350
+ <visual>
351
+ <origin xyz="0 0 -0.01" rpy="0 0 0" />
352
+ <geometry>
353
+ <box size="0.01 0.01 0.01" /> <!-- 小方块尺寸 -->
354
+ </geometry>
355
+ <material name="">
356
+ <color rgba="0.792 0.819 0.933 1" />
357
+ </material>
358
+ </visual>
359
+ <collision>
360
+ <origin xyz="0 0 0" rpy="0 0 0" />
361
+ <geometry>
362
+ <box size="0.01 0.01 0.01" /> <!-- 小方块尺寸 -->
363
+ </geometry>
364
+ </collision>
365
+ </link>
366
+
367
+ <joint name="joint6" type="fixed">
368
+ <origin xyz="0 0.091 0.0014165" rpy="-1.5708 -1.5708 0" />
369
+ <parent link="link5" />
370
+ <child link="link6" />
371
+ </joint>
372
+
373
+ </robot>
embodiments/piper/urdf/piper_description.csv ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ Link Name,Center of Mass X,Center of Mass Y,Center of Mass Z,Center of Mass Roll,Center of Mass Pitch,Center of Mass Yaw,Mass,Moment Ixx,Moment Ixy,Moment Ixz,Moment Iyy,Moment Iyz,Moment Izz,Visual X,Visual Y,Visual Z,Visual Roll,Visual Pitch,Visual Yaw,Mesh Filename,Color Red,Color Green,Color Blue,Color Alpha,Collision X,Collision Y,Collision Z,Collision Roll,Collision Pitch,Collision Yaw,Collision Mesh Filename,Material Name,SW Components,Coordinate System,Axis Name,Joint Name,Joint Type,Joint Origin X,Joint Origin Y,Joint Origin Z,Joint Origin Roll,Joint Origin Pitch,Joint Origin Yaw,Parent,Joint Axis X,Joint Axis Y,Joint Axis Z,Limit Effort,Limit Velocity,Limit Lower,Limit Upper,Calibration rising,Calibration falling,Dynamics Damping,Dynamics Friction,Safety Soft Upper,Safety Soft Lower,Safety K Position,Safety K Velocity
2
+ base_link,-0.0097927476595534,1.82905827587127E-06,0.0410100126360189,0,0,0,0.162548567403693,0.000226596924525071,-7.3397227015398E-08,2.13249977802621E-06,0.000269444772561524,8.15169009610875E-09,0.000222318258878636,0,0,0,0,0,0,package://piper_master_description/meshes/base_link.STL,0.792156862745098,0.819607843137255,0.933333333333333,1,0,0,0,0,0,0,package://piper_master_description/meshes/base_link.STL,,base_link-1,base_link_axis,,,,0,0,0,0,0,0,,0,0,0,,,,,,,,,,,,
3
+ link1,0.00131676031927024,0.000310288842008612,-0.00922874512303437,0,0,0,0.0978679932242826,7.76684558296782E-05,1.09084650459925E-07,-1.9748053243241E-06,9.24967780161546E-05,9.91284646834583E-07,8.24589062407806E-05,0,0,0,0,0,0,package://piper_master_description/meshes/link1.STL,0.792156862745098,0.819607843137255,0.933333333333333,1,0,0,0,0,0,0,package://piper_master_description/meshes/link1.STL,,link1-1,link1_axis,基准轴1,joint1,revolute,0,0,0.123,0,0,-1.5708,base_link,0,0,1,100,3,-2.618,2.618,,,,,,,,
4
+ link2,0.148793602378802,-0.00242026983944155,0.00175154638467947,0,0,0,0.290888938633388,0.000148959640166182,-7.37750384371659E-05,-9.68688405196305E-07,0.00172800946632652,-1.09692225564222E-06,0.0017754628344594,0,0,0,0,0,0,package://piper_master_description/meshes/link2.STL,0.792156862745098,0.819607843137255,0.933333333333333,1,0,0,0,0,0,0,package://piper_master_description/meshes/link2.STL,,link2-1,link2_axis,基准轴2,joint2,revolute,0,0,0,1.5708,0,-1.5708,link1,0,0,1,100,3,0,3.14,,,,,,,,
5
+ link3,-0.0996835297298523,0.0349477267125974,0.000508019581893638,0,0,0,0.290847805579065,0.000107879020798026,2.92669848509585E-05,6.82592307795026E-07,0.000214751827465516,-7.78468839754645E-07,0.000241923602270227,0,0,0,0,0,0,package://piper_master_description/meshes/link3.STL,0.792156862745098,0.819607843137255,0.933333333333333,1,0,0,0,0,0,0,package://piper_master_description/meshes/link3.STL,,link3-1,link3_axis,基准轴3,joint3,revolute,0.28358,0.028726,0,0,0,0.10095,link2,0,0,1,100,3,-2.697,0,,,,,,,,
6
+ link4,0.00027646462238809,-0.00102803669324874,-0.00472830700561663,0,0,0,0.127087348341362,3.82011730423025E-05,-4.92358351056127E-08,4.89589432974857E-08,4.87048555222535E-05,6.7080294248456E-08,4.10592077565126E-05,0,0,0,0,0,0,package://piper_master_description/meshes/link4.STL,0.792156862745098,0.819607843137255,0.933333333333333,1,0,0,0,0,0,0,package://piper_master_description/meshes/link4.STL,,link4-2,link4_axis,基准轴4,joint4,revolute,-0.24221,0.068514,0,-1.5708,0,1.3826,link3,0,0,1,100,3,-1.832,1.832,,,,,,,,
7
+ link5,8.8226243351669E-05,0.0566829014808255,-0.00196119720482464,0,0,0,0.144711242639457,4.39644313662491E-05,-3.59259686441454E-08,-1.89747741354704E-08,5.63173920951298E-05,-2.15407166895779E-07,4.8871366467526E-05,0,0,0,0,0,0,package://piper_master_description/meshes/link5.STL,0.792156862745098,0.819607843137255,0.933333333333333,1,0,0,0,0,0,0,package://piper_master_description/meshes/link5.STL,,link5-1,link5_axis,基准轴5,joint5,revolute,0,0,0,1.5708,0,0,link4,0,0,1,100,3,-1.22,1.22,,,,,,,,
8
+ link6,-1.37691016349967E-06,-0.014519262114053,0.0332869772690133,0,0,0,0.214619908036656,0.000328373107348731,2.61558325659115E-08,-6.40508594967983E-10,0.000153553731811504,-1.04759832101157E-05,0.000384841404656954,0,0,0,0,0,0,package://piper_master_description/meshes/link6.STL,1,1,1,1,0,0,0,0,0,0,package://piper_master_description/meshes/link6.STL,,link6-2,link6_axis,基准轴6,joint6,revolute,0,0.091,0.0014165,-1.5708,-1.5708,0,link5,0,0,1,100,3,-3.14,3.14,,,,,,,,
9
+ link7,0.0220608713440565,0.00159213407754896,-0.0140000105362036,0,0,0,0.0163980774922961,1.1223995605395E-06,-1.7090699232665E-07,-1.95842510288234E-12,8.67113746385413E-06,-6.32854624480994E-13,7.92440273384695E-06,0,0,0,0,0,0,package://piper_master_description/meshes/link7.STL,1,1,1,1,0,0,0,0,0,0,package://piper_master_description/meshes/link7.STL,,link7-2,gripper_1_axis,基准轴7,joint7,prismatic,0,-0.043177,0.0685,1.5708,0,1.5708,link6,0,0,-1,10,1,0,0.04,,,,,,,,
10
+ link8,0.023131213322327,-0.00164133214045334,-0.0139999978862491,0,0,0,0.0159830768118613,1.09529854228106E-06,1.17861512151355E-07,4.93899747203005E-13,9.31448112120573E-06,-1.2871372298354E-13,8.59093640430962E-06,0,0,0,0,0,0,package://piper_master_description/meshes/link8.STL,1,1,1,1,0,0,0,0,0,0,package://piper_master_description/meshes/link8.STL,,link8-2,gripper_2_axis,基准轴7,joint8,prismatic,0,-0.043177,0.0685,-1.5708,0,1.5708,link6,0,0,1,10,1,-0.04,0,,,,,,,,
embodiments/piper/urdf/piper_description.urdf ADDED
@@ -0,0 +1,511 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- This URDF was automatically created by SolidWorks to URDF Exporter! Originally created by Stephen Brawner (brawner@gmail.com)
3
+ Commit Version: 1.6.0-4-g7f85cfe Build Version: 1.6.7995.38578
4
+ For more information, please see http://wiki.ros.org/sw_urdf_exporter -->
5
+ <robot
6
+ name="piper_description">
7
+ <link
8
+ name="base_link">
9
+ <inertial>
10
+ <origin
11
+ xyz="-0.00979274765955341 1.82905827587138E-06 0.0410100126360189"
12
+ rpy="0 0 0" />
13
+ <mass
14
+ value="0.162548567403693" />
15
+ <inertia
16
+ ixx="0.000226596924525071"
17
+ ixy="-7.33972270153965E-08"
18
+ ixz="2.13249977802622E-06"
19
+ iyy="0.000269444772561524"
20
+ iyz="8.15169009611054E-09"
21
+ izz="0.000222318258878636" />
22
+ </inertial>
23
+ <visual>
24
+ <origin
25
+ xyz="0 0 0"
26
+ rpy="0 0 0" />
27
+ <geometry>
28
+ <mesh
29
+ filename="../meshes/base_link.dae" />
30
+ </geometry>
31
+ <material
32
+ name="">
33
+ <color
34
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
35
+ </material>
36
+ </visual>
37
+ <collision>
38
+ <origin
39
+ xyz="0 0 0"
40
+ rpy="0 0 0" />
41
+ <geometry>
42
+ <mesh
43
+ filename="../meshes/base_link.STL" />
44
+ </geometry>
45
+ </collision>
46
+ </link>
47
+ <link
48
+ name="link1">
49
+ <inertial>
50
+ <origin
51
+ xyz="0.00131676031927024 0.000310288842008612 -0.00922874512303437"
52
+ rpy="0 0 0" />
53
+ <mass
54
+ value="0.0978679932242825" />
55
+ <inertia
56
+ ixx="7.76684558296782E-05"
57
+ ixy="1.09084650459924E-07"
58
+ ixz="-1.9748053243241E-06"
59
+ iyy="9.24967780161547E-05"
60
+ iyz="9.91284646834582E-07"
61
+ izz="8.24589062407807E-05" />
62
+ </inertial>
63
+ <visual>
64
+ <origin
65
+ xyz="0 0 0"
66
+ rpy="0 0 0" />
67
+ <geometry>
68
+ <mesh
69
+ filename="../meshes/link1.dae" />
70
+ </geometry>
71
+ <material
72
+ name="">
73
+ <color
74
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
75
+ </material>
76
+ </visual>
77
+ <collision>
78
+ <origin
79
+ xyz="0 0 0"
80
+ rpy="0 0 0" />
81
+ <geometry>
82
+ <mesh
83
+ filename="../meshes/link1.STL" />
84
+ </geometry>
85
+ </collision>
86
+ </link>
87
+ <joint
88
+ name="joint1"
89
+ type="revolute">
90
+ <origin
91
+ xyz="0 0 0.123"
92
+ rpy="0 0 -1.5708" />
93
+ <parent
94
+ link="base_link" />
95
+ <child
96
+ link="link1" />
97
+ <axis
98
+ xyz="0 0 1" />
99
+ <limit
100
+ lower="-2.618"
101
+ upper="2.618"
102
+ effort="100"
103
+ velocity="3" />
104
+ </joint>
105
+ <link
106
+ name="link2">
107
+ <inertial>
108
+ <origin
109
+ xyz="0.148793602378802 -0.00242026983944119 0.00175154638467948"
110
+ rpy="0 0 0" />
111
+ <mass
112
+ value="0.290888938633388" />
113
+ <inertia
114
+ ixx="0.000148959640166183"
115
+ ixy="-7.37750384371657E-05"
116
+ ixz="-9.68688405196236E-07"
117
+ iyy="0.00172800946632652"
118
+ iyz="-1.09692225564224E-06"
119
+ izz="0.0017754628344594" />
120
+ </inertial>
121
+ <visual>
122
+ <origin
123
+ xyz="0 0 0"
124
+ rpy="0 0 0" />
125
+ <geometry>
126
+ <mesh
127
+ filename="../meshes/link2.dae" />
128
+ </geometry>
129
+ <material
130
+ name="">
131
+ <color
132
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
133
+ </material>
134
+ </visual>
135
+ <collision>
136
+ <origin
137
+ xyz="0 0 0"
138
+ rpy="0 0 0" />
139
+ <geometry>
140
+ <mesh
141
+ filename="../meshes/link2.STL" />
142
+ </geometry>
143
+ </collision>
144
+ </link>
145
+ <joint
146
+ name="joint2"
147
+ type="revolute">
148
+ <origin
149
+ xyz="0 0 0"
150
+ rpy="1.5708 0 -1.5708" />
151
+ <parent
152
+ link="link1" />
153
+ <child
154
+ link="link2" />
155
+ <axis
156
+ xyz="0 0 1" />
157
+ <limit
158
+ lower="0"
159
+ upper="3.14"
160
+ effort="100"
161
+ velocity="3" />
162
+ </joint>
163
+ <link
164
+ name="link3">
165
+ <inertial>
166
+ <origin
167
+ xyz="-0.0996835215213704 0.0349477226691318 0.000508025815507312"
168
+ rpy="0 0 0" />
169
+ <mass
170
+ value="0.290847697793211" />
171
+ <inertia
172
+ ixx="0.000107879011637167"
173
+ ixy="2.92669521203626E-05"
174
+ ixz="6.825922326238E-07"
175
+ iyy="0.000214751671792086"
176
+ iyz="-7.78469047878196E-07"
177
+ izz="0.000241923439340319" />
178
+ </inertial>
179
+ <visual>
180
+ <origin
181
+ xyz="0 0 0"
182
+ rpy="0 0 0" />
183
+ <geometry>
184
+ <mesh
185
+ filename="../meshes/link3.dae" />
186
+ </geometry>
187
+ <material
188
+ name="">
189
+ <color
190
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
191
+ </material>
192
+ </visual>
193
+ <collision>
194
+ <origin
195
+ xyz="0 0 0"
196
+ rpy="0 0 0" />
197
+ <geometry>
198
+ <mesh
199
+ filename="../meshes/link3.STL" />
200
+ </geometry>
201
+ </collision>
202
+ </link>
203
+ <joint
204
+ name="joint3"
205
+ type="revolute">
206
+ <origin
207
+ xyz="0.28358 0.028726 0"
208
+ rpy="0 0 0.10095" />
209
+ <parent
210
+ link="link2" />
211
+ <child
212
+ link="link3" />
213
+ <axis
214
+ xyz="0 0 1" />
215
+ <limit
216
+ lower="-2.697"
217
+ upper="0"
218
+ effort="100"
219
+ velocity="3" />
220
+ </joint>
221
+ <link
222
+ name="link4">
223
+ <inertial>
224
+ <origin
225
+ xyz="0.000276464622387979 -0.00102803669324875 -0.00472830700561663"
226
+ rpy="0 0 0" />
227
+ <mass
228
+ value="0.127087348341362" />
229
+ <inertia
230
+ ixx="3.82011730423416E-05"
231
+ ixy="-4.92358350897513E-08"
232
+ ixz="4.89589432973119E-08"
233
+ iyy="4.87048555222578E-05"
234
+ iyz="6.70802942500512E-08"
235
+ izz="4.10592077565559E-05" />
236
+ </inertial>
237
+ <visual>
238
+ <origin
239
+ xyz="0 0 0"
240
+ rpy="0 0 0" />
241
+ <geometry>
242
+ <mesh
243
+ filename="../meshes/link4.dae" />
244
+ </geometry>
245
+ <material
246
+ name="">
247
+ <color
248
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
249
+ </material>
250
+ </visual>
251
+ <collision>
252
+ <origin
253
+ xyz="0 0 0"
254
+ rpy="0 0 0" />
255
+ <geometry>
256
+ <mesh
257
+ filename="../meshes/link4.STL" />
258
+ </geometry>
259
+ </collision>
260
+ </link>
261
+ <joint
262
+ name="joint4"
263
+ type="revolute">
264
+ <origin
265
+ xyz="-0.24221 0.068514 0"
266
+ rpy="-1.5708 0 1.3826" />
267
+ <parent
268
+ link="link3" />
269
+ <child
270
+ link="link4" />
271
+ <axis
272
+ xyz="0 0 1" />
273
+ <limit
274
+ lower="-1.832"
275
+ upper="1.832"
276
+ effort="100"
277
+ velocity="3" />
278
+ </joint>
279
+ <link
280
+ name="link5">
281
+ <inertial>
282
+ <origin
283
+ xyz="8.82262433516967E-05 0.0566829014808256 -0.00196119720482461"
284
+ rpy="0 0 0" />
285
+ <mass
286
+ value="0.144711242639457" />
287
+ <inertia
288
+ ixx="4.39644313662493E-05"
289
+ ixy="-3.59259686444846E-08"
290
+ ixz="-1.89747741386183E-08"
291
+ iyy="5.63173920951307E-05"
292
+ iyz="-2.1540716689785E-07"
293
+ izz="4.88713664675268E-05" />
294
+ </inertial>
295
+ <visual>
296
+ <origin
297
+ xyz="0 0 0"
298
+ rpy="0 0 0" />
299
+ <geometry>
300
+ <mesh
301
+ filename="../meshes/link5.dae" />
302
+ </geometry>
303
+ <material
304
+ name="">
305
+ <color
306
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
307
+ </material>
308
+ </visual>
309
+ <collision>
310
+ <origin
311
+ xyz="0 0 0"
312
+ rpy="0 0 0" />
313
+ <geometry>
314
+ <mesh
315
+ filename="../meshes/link5.STL" />
316
+ </geometry>
317
+ </collision>
318
+ </link>
319
+ <joint
320
+ name="joint5"
321
+ type="revolute">
322
+ <origin
323
+ xyz="0 0 0"
324
+ rpy="1.5708 0 0" />
325
+ <parent
326
+ link="link4" />
327
+ <child
328
+ link="link5" />
329
+ <axis
330
+ xyz="0 0 1" />
331
+ <limit
332
+ lower="-1.22"
333
+ upper="1.22"
334
+ effort="100"
335
+ velocity="3" />
336
+ </joint>
337
+ <link
338
+ name="link6">
339
+ <inertial>
340
+ <origin
341
+ xyz="0.00103120214523473 0.0121761387587524 0.0315480874960164"
342
+ rpy="0 0 0" />
343
+ <mass
344
+ value="0.195187143240719" />
345
+ <inertia
346
+ ixx="6.43790256535539E-05"
347
+ ixy="-1.2366166157046E-06"
348
+ ixz="1.97664606328472E-07"
349
+ iyy="0.000126146396374301"
350
+ iyz="2.41157078516408E-06"
351
+ izz="0.000154087076816444" />
352
+ </inertial>
353
+ <visual>
354
+ <origin
355
+ xyz="0 0 0"
356
+ rpy="0 0 1.5708" />
357
+ <geometry>
358
+ <mesh
359
+ filename="../meshes/link6.dae" />
360
+ </geometry>
361
+ <material
362
+ name="">
363
+ <color
364
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
365
+ </material>
366
+ </visual>
367
+ <collision>
368
+ <origin
369
+ xyz="0 0 0"
370
+ rpy="0 0 0" />
371
+ <geometry>
372
+ <mesh
373
+ filename="../meshes/link6_1.STL" />
374
+ </geometry>
375
+ </collision>
376
+ </link>
377
+ <joint
378
+ name="joint6"
379
+ type="revolute">
380
+ <origin
381
+ xyz="0 0.091 0.0014165"
382
+ rpy="-1.5708 -3.1415926 0" />
383
+ <parent
384
+ link="link5" />
385
+ <child
386
+ link="link6" />
387
+ <axis
388
+ xyz="0 0 1" />
389
+ <limit
390
+ lower="-3.14"
391
+ upper="3.14"
392
+ effort="100"
393
+ velocity="3" />
394
+ </joint>
395
+ <link
396
+ name="link7">
397
+ <inertial>
398
+ <origin
399
+ xyz="-0.000277778383727112 -0.0467673043650824 -0.00921029491873201"
400
+ rpy="0 0 0" />
401
+ <mass
402
+ value="0.02648229234527" />
403
+ <inertia
404
+ ixx="9.99787479924589E-06"
405
+ ixy="-1.57548495096104E-07"
406
+ ixz="-2.71342775003487E-08"
407
+ iyy="6.1795212293655E-06"
408
+ iyz="-1.58939803580081E-06"
409
+ izz="1.42102717246564E-05" />
410
+ </inertial>
411
+ <visual>
412
+ <origin
413
+ xyz="0 0 0"
414
+ rpy="0 0 0" />
415
+ <geometry>
416
+ <mesh
417
+ filename="../meshes/link7.dae" />
418
+ </geometry>
419
+ <material
420
+ name="">
421
+ <color
422
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
423
+ </material>
424
+ </visual>
425
+ <collision>
426
+ <origin
427
+ xyz="0 0 0"
428
+ rpy="0 0 0" />
429
+ <geometry>
430
+ <mesh
431
+ filename="../meshes/link7.STL" />
432
+ </geometry>
433
+ </collision>
434
+ </link>
435
+ <joint
436
+ name="joint7"
437
+ type="prismatic">
438
+ <origin
439
+ xyz="0 0 0.13503"
440
+ rpy="1.5708 0 3.1415926" />
441
+ <parent
442
+ link="link6" />
443
+ <child
444
+ link="link7" />
445
+ <axis
446
+ xyz="0 0 -1" />
447
+ <limit
448
+ lower="0"
449
+ upper="0.04"
450
+ effort="10"
451
+ velocity="1" />
452
+ </joint>
453
+ <link
454
+ name="link8">
455
+ <inertial>
456
+ <origin
457
+ xyz="0.000277816920932317 0.0467673824063769 -0.00921030054508036"
458
+ rpy="0 0 0" />
459
+ <mass
460
+ value="0.0264822021416248" />
461
+ <inertia
462
+ ixx="9.99779119357223E-06"
463
+ ixy="-1.57542283433504E-07"
464
+ ixz="2.71367446701359E-08"
465
+ iyy="6.17952441557932E-06"
466
+ iyz="1.58939319453383E-06"
467
+ izz="1.4210192754512E-05" />
468
+ </inertial>
469
+ <visual>
470
+ <origin
471
+ xyz="0 0 0"
472
+ rpy="0 0 0" />
473
+ <geometry>
474
+ <mesh
475
+ filename="../meshes/link8.dae" />
476
+ </geometry>
477
+ <material
478
+ name="">
479
+ <color
480
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
481
+ </material>
482
+ </visual>
483
+ <collision>
484
+ <origin
485
+ xyz="0 0 0"
486
+ rpy="0 0 0" />
487
+ <geometry>
488
+ <mesh
489
+ filename="../meshes/link8.STL" />
490
+ </geometry>
491
+ </collision>
492
+ </link>
493
+ <joint
494
+ name="joint8"
495
+ type="prismatic">
496
+ <origin
497
+ xyz="0 0 0.13503"
498
+ rpy="-1.5708 0 3.1415926" />
499
+ <parent
500
+ link="link6" />
501
+ <child
502
+ link="link8" />
503
+ <axis
504
+ xyz="0 0 -1" />
505
+ <limit
506
+ lower="0"
507
+ upper="0.04"
508
+ effort="10"
509
+ velocity="1" />
510
+ </joint>
511
+ </robot>
embodiments/piper/urdf/piper_description.xacro ADDED
@@ -0,0 +1,582 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <robot
3
+ name="arm"
4
+ xmlns:xacro="http://ros.org/wiki/xacro">
5
+ <!-- world -->
6
+ <link name="world"/>
7
+ <joint name="fixed_base_joint" type="fixed">
8
+ <parent link="world"/>
9
+ <child link="base_link"/>
10
+ </joint>
11
+ <!-- arm -->
12
+ <link
13
+ name="base_link">
14
+ <inertial>
15
+ <origin
16
+ xyz="-0.00979274765955341 1.82905827587138E-06 0.0410100126360189"
17
+ rpy="0 0 0" />
18
+ <mass
19
+ value="0.162548567403693" />
20
+ <inertia
21
+ ixx="0.000226596924525071"
22
+ ixy="-7.33972270153965E-08"
23
+ ixz="2.13249977802622E-06"
24
+ iyy="0.000269444772561524"
25
+ iyz="8.15169009611054E-09"
26
+ izz="0.000222318258878636" />
27
+ </inertial>
28
+ <visual>
29
+ <origin
30
+ xyz="0 0 0"
31
+ rpy="0 0 0" />
32
+ <geometry>
33
+ <mesh
34
+ filename="package://piper_description/meshes/base_link.dae" />
35
+ </geometry>
36
+ <material
37
+ name="">
38
+ <color
39
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
40
+ </material>
41
+ </visual>
42
+ <collision>
43
+ <origin
44
+ xyz="0 0 0"
45
+ rpy="0 0 0" />
46
+ <geometry>
47
+ <mesh
48
+ filename="package://piper_description/meshes/base_link.STL" />
49
+ </geometry>
50
+ </collision>
51
+ </link>
52
+ <link
53
+ name="link1">
54
+ <inertial>
55
+ <origin
56
+ xyz="0.00131676031927024 0.000310288842008612 -0.00922874512303437"
57
+ rpy="0 0 0" />
58
+ <mass
59
+ value="0.0978679932242825" />
60
+ <inertia
61
+ ixx="7.76684558296782E-05"
62
+ ixy="1.09084650459924E-07"
63
+ ixz="-1.9748053243241E-06"
64
+ iyy="9.24967780161547E-05"
65
+ iyz="9.91284646834582E-07"
66
+ izz="8.24589062407807E-05" />
67
+ </inertial>
68
+ <visual>
69
+ <origin
70
+ xyz="0 0 0"
71
+ rpy="0 0 0" />
72
+ <geometry>
73
+ <mesh
74
+ filename="package://piper_description/meshes/link1.dae" />
75
+ </geometry>
76
+ <material
77
+ name="">
78
+ <color
79
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
80
+ </material>
81
+ </visual>
82
+ <collision>
83
+ <origin
84
+ xyz="0 0 0"
85
+ rpy="0 0 0" />
86
+ <geometry>
87
+ <mesh
88
+ filename="package://piper_description/meshes/link1.STL" />
89
+ </geometry>
90
+ </collision>
91
+ </link>
92
+ <joint
93
+ name="joint1"
94
+ type="revolute">
95
+ <origin
96
+ xyz="0 0 0.123"
97
+ rpy="0 0 -1.5708" />
98
+ <parent
99
+ link="base_link" />
100
+ <child
101
+ link="link1" />
102
+ <axis
103
+ xyz="0 0 1" />
104
+ <limit
105
+ lower="-2.618"
106
+ upper="2.618"
107
+ effort="100"
108
+ velocity="3" />
109
+ </joint>
110
+ <link
111
+ name="link2">
112
+ <inertial>
113
+ <origin
114
+ xyz="0.148793602378802 -0.00242026983944119 0.00175154638467948"
115
+ rpy="0 0 0" />
116
+ <mass
117
+ value="0.290888938633388" />
118
+ <inertia
119
+ ixx="0.000148959640166183"
120
+ ixy="-7.37750384371657E-05"
121
+ ixz="-9.68688405196236E-07"
122
+ iyy="0.00172800946632652"
123
+ iyz="-1.09692225564224E-06"
124
+ izz="0.0017754628344594" />
125
+ </inertial>
126
+ <visual>
127
+ <origin
128
+ xyz="0 0 0"
129
+ rpy="0 0 0" />
130
+ <geometry>
131
+ <mesh
132
+ filename="package://piper_description/meshes/link2.dae" />
133
+ </geometry>
134
+ <material
135
+ name="">
136
+ <color
137
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
138
+ </material>
139
+ </visual>
140
+ <collision>
141
+ <origin
142
+ xyz="0 0 0"
143
+ rpy="0 0 0" />
144
+ <geometry>
145
+ <mesh
146
+ filename="package://piper_description/meshes/link2.STL" />
147
+ </geometry>
148
+ </collision>
149
+ </link>
150
+ <joint
151
+ name="joint2"
152
+ type="revolute">
153
+ <origin
154
+ xyz="0 0 0"
155
+ rpy="1.5708 0 -1.5708" />
156
+ <parent
157
+ link="link1" />
158
+ <child
159
+ link="link2" />
160
+ <axis
161
+ xyz="0 0 1" />
162
+ <limit
163
+ lower="0"
164
+ upper="3.14"
165
+ effort="100"
166
+ velocity="3" />
167
+ </joint>
168
+ <link
169
+ name="link3">
170
+ <inertial>
171
+ <origin
172
+ xyz="-0.0996835215213704 0.0349477226691318 0.000508025815507312"
173
+ rpy="0 0 0" />
174
+ <mass
175
+ value="0.290847697793211" />
176
+ <inertia
177
+ ixx="0.000107879011637167"
178
+ ixy="2.92669521203626E-05"
179
+ ixz="6.825922326238E-07"
180
+ iyy="0.000214751671792086"
181
+ iyz="-7.78469047878196E-07"
182
+ izz="0.000241923439340319" />
183
+ </inertial>
184
+ <visual>
185
+ <origin
186
+ xyz="0 0 0"
187
+ rpy="0 0 0" />
188
+ <geometry>
189
+ <mesh
190
+ filename="package://piper_description/meshes/link3.dae" />
191
+ </geometry>
192
+ <material
193
+ name="">
194
+ <color
195
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
196
+ </material>
197
+ </visual>
198
+ <collision>
199
+ <origin
200
+ xyz="0 0 0"
201
+ rpy="0 0 0" />
202
+ <geometry>
203
+ <mesh
204
+ filename="package://piper_description/meshes/link3.STL" />
205
+ </geometry>
206
+ </collision>
207
+ </link>
208
+ <joint
209
+ name="joint3"
210
+ type="revolute">
211
+ <origin
212
+ xyz="0.28358 0.028726 0"
213
+ rpy="0 0 0.10095" />
214
+ <parent
215
+ link="link2" />
216
+ <child
217
+ link="link3" />
218
+ <axis
219
+ xyz="0 0 1" />
220
+ <limit
221
+ lower="-2.697"
222
+ upper="0"
223
+ effort="100"
224
+ velocity="3" />
225
+ </joint>
226
+ <link
227
+ name="link4">
228
+ <inertial>
229
+ <origin
230
+ xyz="0.000276464622387979 -0.00102803669324875 -0.00472830700561663"
231
+ rpy="0 0 0" />
232
+ <mass
233
+ value="0.127087348341362" />
234
+ <inertia
235
+ ixx="3.82011730423416E-05"
236
+ ixy="-4.92358350897513E-08"
237
+ ixz="4.89589432973119E-08"
238
+ iyy="4.87048555222578E-05"
239
+ iyz="6.70802942500512E-08"
240
+ izz="4.10592077565559E-05" />
241
+ </inertial>
242
+ <visual>
243
+ <origin
244
+ xyz="0 0 0"
245
+ rpy="0 0 0" />
246
+ <geometry>
247
+ <mesh
248
+ filename="package://piper_description/meshes/link4.dae" />
249
+ </geometry>
250
+ <material
251
+ name="">
252
+ <color
253
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
254
+ </material>
255
+ </visual>
256
+ <collision>
257
+ <origin
258
+ xyz="0 0 0"
259
+ rpy="0 0 0" />
260
+ <geometry>
261
+ <mesh
262
+ filename="package://piper_description/meshes/link4.STL" />
263
+ </geometry>
264
+ </collision>
265
+ </link>
266
+ <joint
267
+ name="joint4"
268
+ type="revolute">
269
+ <origin
270
+ xyz="-0.24221 0.068514 0"
271
+ rpy="-1.5708 0 1.3826" />
272
+ <parent
273
+ link="link3" />
274
+ <child
275
+ link="link4" />
276
+ <axis
277
+ xyz="0 0 1" />
278
+ <limit
279
+ lower="-1.832"
280
+ upper="1.832"
281
+ effort="100"
282
+ velocity="3" />
283
+ </joint>
284
+ <link
285
+ name="link5">
286
+ <inertial>
287
+ <origin
288
+ xyz="8.82262433516967E-05 0.0566829014808256 -0.00196119720482461"
289
+ rpy="0 0 0" />
290
+ <mass
291
+ value="0.144711242639457" />
292
+ <inertia
293
+ ixx="4.39644313662493E-05"
294
+ ixy="-3.59259686444846E-08"
295
+ ixz="-1.89747741386183E-08"
296
+ iyy="5.63173920951307E-05"
297
+ iyz="-2.1540716689785E-07"
298
+ izz="4.88713664675268E-05" />
299
+ </inertial>
300
+ <visual>
301
+ <origin
302
+ xyz="0 0 0"
303
+ rpy="0 0 0" />
304
+ <geometry>
305
+ <mesh
306
+ filename="package://piper_description/meshes/link5.dae" />
307
+ </geometry>
308
+ <material
309
+ name="">
310
+ <color
311
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
312
+ </material>
313
+ </visual>
314
+ <collision>
315
+ <origin
316
+ xyz="0 0 0"
317
+ rpy="0 0 0" />
318
+ <geometry>
319
+ <mesh
320
+ filename="package://piper_description/meshes/link5.STL" />
321
+ </geometry>
322
+ </collision>
323
+ </link>
324
+ <joint
325
+ name="joint5"
326
+ type="revolute">
327
+ <origin
328
+ xyz="0 0 0"
329
+ rpy="1.5708 0 0" />
330
+ <parent
331
+ link="link4" />
332
+ <child
333
+ link="link5" />
334
+ <axis
335
+ xyz="0 0 1" />
336
+ <limit
337
+ lower="-1.22"
338
+ upper="1.22"
339
+ effort="100"
340
+ velocity="3" />
341
+ </joint>
342
+ <link
343
+ name="link6">
344
+ <inertial>
345
+ <origin
346
+ xyz="0.00103120214523473 0.0121761387587524 0.0315480874960164"
347
+ rpy="0 0 0" />
348
+ <mass
349
+ value="0.195187143240719" />
350
+ <inertia
351
+ ixx="6.43790256535539E-05"
352
+ ixy="-1.2366166157046E-06"
353
+ ixz="1.97664606328472E-07"
354
+ iyy="0.000126146396374301"
355
+ iyz="2.41157078516408E-06"
356
+ izz="0.000154087076816444" />
357
+ </inertial>
358
+ <visual>
359
+ <origin
360
+ xyz="0 0 0"
361
+ rpy="0 0 1.5708" />
362
+ <geometry>
363
+ <mesh
364
+ filename="package://piper_description/meshes/link6.dae" />
365
+ </geometry>
366
+ <material
367
+ name="">
368
+ <color
369
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
370
+ </material>
371
+ </visual>
372
+ <collision>
373
+ <origin
374
+ xyz="0 0 0"
375
+ rpy="0 0 0" />
376
+ <geometry>
377
+ <mesh
378
+ filename="package://piper_description/meshes/link6_1.STL" />
379
+ </geometry>
380
+ </collision>
381
+ </link>
382
+ <joint
383
+ name="joint6"
384
+ type="revolute">
385
+ <origin
386
+ xyz="0 0.091 0.0014165"
387
+ rpy="-1.5708 -3.1415926 0" />
388
+ <parent
389
+ link="link5" />
390
+ <child
391
+ link="link6" />
392
+ <axis
393
+ xyz="0 0 1" />
394
+ <limit
395
+ lower="-3.14"
396
+ upper="3.14"
397
+ effort="100"
398
+ velocity="3" />
399
+ </joint>
400
+ <link
401
+ name="link7">
402
+ <inertial>
403
+ <origin
404
+ xyz="-0.000277778383727112 -0.0467673043650824 -0.00921029491873201"
405
+ rpy="0 0 0" />
406
+ <mass
407
+ value="0.02648229234527" />
408
+ <inertia
409
+ ixx="9.99787479924589E-06"
410
+ ixy="-1.57548495096104E-07"
411
+ ixz="-2.71342775003487E-08"
412
+ iyy="6.1795212293655E-06"
413
+ iyz="-1.58939803580081E-06"
414
+ izz="1.42102717246564E-05" />
415
+ </inertial>
416
+ <visual>
417
+ <origin
418
+ xyz="0 0 0"
419
+ rpy="0 0 0" />
420
+ <geometry>
421
+ <mesh
422
+ filename="package://piper_description/meshes/link7.dae" />
423
+ </geometry>
424
+ <material
425
+ name="">
426
+ <color
427
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
428
+ </material>
429
+ </visual>
430
+ <collision>
431
+ <origin
432
+ xyz="0 0 0"
433
+ rpy="0 0 0" />
434
+ <geometry>
435
+ <mesh
436
+ filename="package://piper_description/meshes/link7.STL" />
437
+ </geometry>
438
+ </collision>
439
+ </link>
440
+ <joint
441
+ name="joint7"
442
+ type="prismatic">
443
+ <origin
444
+ xyz="0 0 0.13503"
445
+ rpy="1.5708 0 3.1415926" />
446
+ <parent
447
+ link="link6" />
448
+ <child
449
+ link="link7" />
450
+ <axis
451
+ xyz="0 0 -1" />
452
+ <limit
453
+ lower="0"
454
+ upper="0.04"
455
+ effort="10"
456
+ velocity="1" />
457
+ </joint>
458
+ <link
459
+ name="link8">
460
+ <inertial>
461
+ <origin
462
+ xyz="0.000277816920932317 0.0467673824063769 -0.00921030054508036"
463
+ rpy="0 0 0" />
464
+ <mass
465
+ value="0.0264822021416248" />
466
+ <inertia
467
+ ixx="9.99779119357223E-06"
468
+ ixy="-1.57542283433504E-07"
469
+ ixz="2.71367446701359E-08"
470
+ iyy="6.17952441557932E-06"
471
+ iyz="1.58939319453383E-06"
472
+ izz="1.4210192754512E-05" />
473
+ </inertial>
474
+ <visual>
475
+ <origin
476
+ xyz="0 0 0"
477
+ rpy="0 0 0" />
478
+ <geometry>
479
+ <mesh
480
+ filename="package://piper_description/meshes/link8.dae" />
481
+ </geometry>
482
+ <material
483
+ name="">
484
+ <color
485
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
486
+ </material>
487
+ </visual>
488
+ <collision>
489
+ <origin
490
+ xyz="0 0 0"
491
+ rpy="0 0 0" />
492
+ <geometry>
493
+ <mesh
494
+ filename="package://piper_description/meshes/link8.STL" />
495
+ </geometry>
496
+ </collision>
497
+ </link>
498
+ <joint
499
+ name="joint8"
500
+ type="prismatic">
501
+ <origin
502
+ xyz="0 0 0.13503"
503
+ rpy="-1.5708 0 3.1415926" />
504
+ <parent
505
+ link="link6" />
506
+ <child
507
+ link="link8" />
508
+ <axis
509
+ xyz="0 0 1" />
510
+ <limit
511
+ lower="-0.04"
512
+ upper="0"
513
+ effort="10"
514
+ velocity="1" />
515
+ </joint>
516
+
517
+ <!-- controller -->
518
+ <xacro:macro name="transmission_block" params="tran_name joint_name motor_name">
519
+ <transmission name="${tran_name}">
520
+ <type>transmission_interface/SimpleTransmission</type>
521
+ <joint name="${joint_name}">
522
+ <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>
523
+ </joint>
524
+ <actuator name="$motor_name">
525
+ <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>
526
+ <mechanicalReduction>1</mechanicalReduction>
527
+ </actuator>
528
+ </transmission>
529
+ </xacro:macro>
530
+
531
+ <xacro:transmission_block tran_name="tran1" joint_name="joint1" motor_name="motor1"/>
532
+ <xacro:transmission_block tran_name="tran2" joint_name="joint2" motor_name="motor2"/>
533
+ <xacro:transmission_block tran_name="tran3" joint_name="joint3" motor_name="motor3"/>
534
+ <xacro:transmission_block tran_name="tran4" joint_name="joint4" motor_name="motor4"/>
535
+ <xacro:transmission_block tran_name="tran5" joint_name="joint5" motor_name="motor5"/>
536
+ <xacro:transmission_block tran_name="tran6" joint_name="joint6" motor_name="motor6"/>
537
+ <xacro:transmission_block tran_name="tran7" joint_name="joint7" motor_name="motor7"/>
538
+ <xacro:transmission_block tran_name="tran8" joint_name="joint8" motor_name="motor8"/>
539
+ <!-- gazebo -->
540
+ <gazebo>
541
+ <plugin name="gazebo_ros_control" filename="libgazebo_ros_control.so">
542
+ <robotNamespace>/piper_description</robotNamespace>
543
+ <legacyModeNS>true</legacyModeNS>
544
+ </plugin>
545
+ </gazebo>
546
+
547
+ <!-- <gazebo reference="base_link">
548
+ <material>Gazebo/Black</material>
549
+ </gazebo>
550
+
551
+ <gazebo reference="link1">
552
+ <material>Gazebo/White</material>
553
+ </gazebo>
554
+
555
+ <gazebo reference="link2">
556
+ <material>Gazebo/White</material>
557
+ </gazebo>
558
+
559
+ <gazebo reference="link3">
560
+ <material>Gazebo/White</material>
561
+ </gazebo>
562
+
563
+ <gazebo reference="link4">
564
+ <material>Gazebo/Black</material>
565
+ </gazebo>
566
+
567
+ <gazebo reference="link5">
568
+ <material>Gazebo/White</material>
569
+ </gazebo>
570
+
571
+ <gazebo reference="link6">
572
+ <material>Gazebo/White</material>
573
+ </gazebo>
574
+
575
+ <gazebo reference="link7">
576
+ <material>Gazebo/Orange</material>
577
+ </gazebo>
578
+
579
+ <gazebo reference="link8">
580
+ <material>Gazebo/Orange</material>
581
+ </gazebo> -->
582
+ </robot>
embodiments/piper/urdf/piper_description_v00.urdf ADDED
@@ -0,0 +1,511 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- This URDF was automatically created by SolidWorks to URDF Exporter! Originally created by Stephen Brawner (brawner@gmail.com)
3
+ Commit Version: 1.6.0-4-g7f85cfe Build Version: 1.6.7995.38578
4
+ For more information, please see http://wiki.ros.org/sw_urdf_exporter -->
5
+ <robot
6
+ name="piper_description">
7
+ <link
8
+ name="base_link">
9
+ <inertial>
10
+ <origin
11
+ xyz="-0.00979274765955341 1.82905827587138E-06 0.0410100126360189"
12
+ rpy="0 0 0" />
13
+ <mass
14
+ value="0.162548567403693" />
15
+ <inertia
16
+ ixx="0.000226596924525071"
17
+ ixy="-7.33972270153965E-08"
18
+ ixz="2.13249977802622E-06"
19
+ iyy="0.000269444772561524"
20
+ iyz="8.15169009611054E-09"
21
+ izz="0.000222318258878636" />
22
+ </inertial>
23
+ <visual>
24
+ <origin
25
+ xyz="0 0 0"
26
+ rpy="0 0 0" />
27
+ <geometry>
28
+ <mesh
29
+ filename="package://piper_description/meshes/base_link.dae" />
30
+ </geometry>
31
+ <material
32
+ name="">
33
+ <color
34
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
35
+ </material>
36
+ </visual>
37
+ <collision>
38
+ <origin
39
+ xyz="0 0 0"
40
+ rpy="0 0 0" />
41
+ <geometry>
42
+ <mesh
43
+ filename="package://piper_description/meshes/base_link.STL" />
44
+ </geometry>
45
+ </collision>
46
+ </link>
47
+ <link
48
+ name="link1">
49
+ <inertial>
50
+ <origin
51
+ xyz="0.00131676031927024 0.000310288842008612 -0.00922874512303437"
52
+ rpy="0 0 0" />
53
+ <mass
54
+ value="0.0978679932242825" />
55
+ <inertia
56
+ ixx="7.76684558296782E-05"
57
+ ixy="1.09084650459924E-07"
58
+ ixz="-1.9748053243241E-06"
59
+ iyy="9.24967780161547E-05"
60
+ iyz="9.91284646834582E-07"
61
+ izz="8.24589062407807E-05" />
62
+ </inertial>
63
+ <visual>
64
+ <origin
65
+ xyz="0 0 0"
66
+ rpy="0 0 0" />
67
+ <geometry>
68
+ <mesh
69
+ filename="package://piper_description/meshes/link1.dae" />
70
+ </geometry>
71
+ <material
72
+ name="">
73
+ <color
74
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
75
+ </material>
76
+ </visual>
77
+ <collision>
78
+ <origin
79
+ xyz="0 0 0"
80
+ rpy="0 0 0" />
81
+ <geometry>
82
+ <mesh
83
+ filename="package://piper_description/meshes/link1.STL" />
84
+ </geometry>
85
+ </collision>
86
+ </link>
87
+ <joint
88
+ name="joint1"
89
+ type="revolute">
90
+ <origin
91
+ xyz="0 0 0.123"
92
+ rpy="0 0 -1.5708" />
93
+ <parent
94
+ link="base_link" />
95
+ <child
96
+ link="link1" />
97
+ <axis
98
+ xyz="0 0 1" />
99
+ <limit
100
+ lower="-2.618"
101
+ upper="2.618"
102
+ effort="100"
103
+ velocity="3" />
104
+ </joint>
105
+ <link
106
+ name="link2">
107
+ <inertial>
108
+ <origin
109
+ xyz="0.148793602378802 -0.00242026983944119 0.00175154638467948"
110
+ rpy="0 0 0" />
111
+ <mass
112
+ value="0.290888938633388" />
113
+ <inertia
114
+ ixx="0.000148959640166183"
115
+ ixy="-7.37750384371657E-05"
116
+ ixz="-9.68688405196236E-07"
117
+ iyy="0.00172800946632652"
118
+ iyz="-1.09692225564224E-06"
119
+ izz="0.0017754628344594" />
120
+ </inertial>
121
+ <visual>
122
+ <origin
123
+ xyz="0 0 0"
124
+ rpy="0 0 0" />
125
+ <geometry>
126
+ <mesh
127
+ filename="package://piper_description/meshes/link2.dae" />
128
+ </geometry>
129
+ <material
130
+ name="">
131
+ <color
132
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
133
+ </material>
134
+ </visual>
135
+ <collision>
136
+ <origin
137
+ xyz="0 0 0"
138
+ rpy="0 0 0" />
139
+ <geometry>
140
+ <mesh
141
+ filename="package://piper_description/meshes/link2.STL" />
142
+ </geometry>
143
+ </collision>
144
+ </link>
145
+ <joint
146
+ name="joint2"
147
+ type="revolute">
148
+ <origin
149
+ xyz="0 0 0"
150
+ rpy="1.5708 -0.034907 -1.5708" />
151
+ <parent
152
+ link="link1" />
153
+ <child
154
+ link="link2" />
155
+ <axis
156
+ xyz="0 0 1" />
157
+ <limit
158
+ lower="0"
159
+ upper="3.14"
160
+ effort="100"
161
+ velocity="3" />
162
+ </joint>
163
+ <link
164
+ name="link3">
165
+ <inertial>
166
+ <origin
167
+ xyz="-0.0996835215213704 0.0349477226691318 0.000508025815507312"
168
+ rpy="0 0 0" />
169
+ <mass
170
+ value="0.290847697793211" />
171
+ <inertia
172
+ ixx="0.000107879011637167"
173
+ ixy="2.92669521203626E-05"
174
+ ixz="6.825922326238E-07"
175
+ iyy="0.000214751671792086"
176
+ iyz="-7.78469047878196E-07"
177
+ izz="0.000241923439340319" />
178
+ </inertial>
179
+ <visual>
180
+ <origin
181
+ xyz="0 0 0"
182
+ rpy="0 0 0" />
183
+ <geometry>
184
+ <mesh
185
+ filename="package://piper_description/meshes/link3.dae" />
186
+ </geometry>
187
+ <material
188
+ name="">
189
+ <color
190
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
191
+ </material>
192
+ </visual>
193
+ <collision>
194
+ <origin
195
+ xyz="0 0 0"
196
+ rpy="0 0 0" />
197
+ <geometry>
198
+ <mesh
199
+ filename="package://piper_description/meshes/link3.STL" />
200
+ </geometry>
201
+ </collision>
202
+ </link>
203
+ <joint
204
+ name="joint3"
205
+ type="revolute">
206
+ <origin
207
+ xyz="0.28358 0.028726 0"
208
+ rpy="0 0 0.06604341" />
209
+ <parent
210
+ link="link2" />
211
+ <child
212
+ link="link3" />
213
+ <axis
214
+ xyz="0 0 1" />
215
+ <limit
216
+ lower="-2.697"
217
+ upper="0"
218
+ effort="100"
219
+ velocity="3" />
220
+ </joint>
221
+ <link
222
+ name="link4">
223
+ <inertial>
224
+ <origin
225
+ xyz="0.000276464622387979 -0.00102803669324875 -0.00472830700561663"
226
+ rpy="0 0 0" />
227
+ <mass
228
+ value="0.127087348341362" />
229
+ <inertia
230
+ ixx="3.82011730423416E-05"
231
+ ixy="-4.92358350897513E-08"
232
+ ixz="4.89589432973119E-08"
233
+ iyy="4.87048555222578E-05"
234
+ iyz="6.70802942500512E-08"
235
+ izz="4.10592077565559E-05" />
236
+ </inertial>
237
+ <visual>
238
+ <origin
239
+ xyz="0 0 0"
240
+ rpy="0 0 0" />
241
+ <geometry>
242
+ <mesh
243
+ filename="package://piper_description/meshes/link4.dae" />
244
+ </geometry>
245
+ <material
246
+ name="">
247
+ <color
248
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
249
+ </material>
250
+ </visual>
251
+ <collision>
252
+ <origin
253
+ xyz="0 0 0"
254
+ rpy="0 0 0" />
255
+ <geometry>
256
+ <mesh
257
+ filename="package://piper_description/meshes/link4.STL" />
258
+ </geometry>
259
+ </collision>
260
+ </link>
261
+ <joint
262
+ name="joint4"
263
+ type="revolute">
264
+ <origin
265
+ xyz="-0.24221 0.068514 0"
266
+ rpy="-1.5708 0 1.3826" />
267
+ <parent
268
+ link="link3" />
269
+ <child
270
+ link="link4" />
271
+ <axis
272
+ xyz="0 0 1" />
273
+ <limit
274
+ lower="-1.832"
275
+ upper="1.832"
276
+ effort="100"
277
+ velocity="3" />
278
+ </joint>
279
+ <link
280
+ name="link5">
281
+ <inertial>
282
+ <origin
283
+ xyz="8.82262433516967E-05 0.0566829014808256 -0.00196119720482461"
284
+ rpy="0 0 0" />
285
+ <mass
286
+ value="0.144711242639457" />
287
+ <inertia
288
+ ixx="4.39644313662493E-05"
289
+ ixy="-3.59259686444846E-08"
290
+ ixz="-1.89747741386183E-08"
291
+ iyy="5.63173920951307E-05"
292
+ iyz="-2.1540716689785E-07"
293
+ izz="4.88713664675268E-05" />
294
+ </inertial>
295
+ <visual>
296
+ <origin
297
+ xyz="0 0 0"
298
+ rpy="0 0 0" />
299
+ <geometry>
300
+ <mesh
301
+ filename="package://piper_description/meshes/link5.dae" />
302
+ </geometry>
303
+ <material
304
+ name="">
305
+ <color
306
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
307
+ </material>
308
+ </visual>
309
+ <collision>
310
+ <origin
311
+ xyz="0 0 0"
312
+ rpy="0 0 0" />
313
+ <geometry>
314
+ <mesh
315
+ filename="package://piper_description/meshes/link5.STL" />
316
+ </geometry>
317
+ </collision>
318
+ </link>
319
+ <joint
320
+ name="joint5"
321
+ type="revolute">
322
+ <origin
323
+ xyz="0 0 0"
324
+ rpy="1.5708 0 0" />
325
+ <parent
326
+ link="link4" />
327
+ <child
328
+ link="link5" />
329
+ <axis
330
+ xyz="0 0 1" />
331
+ <limit
332
+ lower="-1.22"
333
+ upper="1.22"
334
+ effort="100"
335
+ velocity="3" />
336
+ </joint>
337
+ <link
338
+ name="link6">
339
+ <inertial>
340
+ <origin
341
+ xyz="0.00103120214523473 0.0121761387587524 0.0315480874960164"
342
+ rpy="0 0 0" />
343
+ <mass
344
+ value="0.195187143240719" />
345
+ <inertia
346
+ ixx="6.43790256535539E-05"
347
+ ixy="-1.2366166157046E-06"
348
+ ixz="1.97664606328472E-07"
349
+ iyy="0.000126146396374301"
350
+ iyz="2.41157078516408E-06"
351
+ izz="0.000154087076816444" />
352
+ </inertial>
353
+ <visual>
354
+ <origin
355
+ xyz="0 0 0"
356
+ rpy="0 0 0" />
357
+ <geometry>
358
+ <mesh
359
+ filename="package://piper_description/meshes/link6.dae" />
360
+ </geometry>
361
+ <material
362
+ name="">
363
+ <color
364
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
365
+ </material>
366
+ </visual>
367
+ <collision>
368
+ <origin
369
+ xyz="0 0 0"
370
+ rpy="0 0 0" />
371
+ <geometry>
372
+ <mesh
373
+ filename="package://piper_description/meshes/link6.STL" />
374
+ </geometry>
375
+ </collision>
376
+ </link>
377
+ <joint
378
+ name="joint6"
379
+ type="revolute">
380
+ <origin
381
+ xyz="0 0.091 0.0014165"
382
+ rpy="-1.5708 -1.5708 0" />
383
+ <parent
384
+ link="link5" />
385
+ <child
386
+ link="link6" />
387
+ <axis
388
+ xyz="0 0 1" />
389
+ <limit
390
+ lower="-3.14"
391
+ upper="3.14"
392
+ effort="100"
393
+ velocity="3" />
394
+ </joint>
395
+ <link
396
+ name="link7">
397
+ <inertial>
398
+ <origin
399
+ xyz="-0.000277778383727112 -0.0467673043650824 -0.00921029491873201"
400
+ rpy="0 0 0" />
401
+ <mass
402
+ value="0.02648229234527" />
403
+ <inertia
404
+ ixx="9.99787479924589E-06"
405
+ ixy="-1.57548495096104E-07"
406
+ ixz="-2.71342775003487E-08"
407
+ iyy="6.1795212293655E-06"
408
+ iyz="-1.58939803580081E-06"
409
+ izz="1.42102717246564E-05" />
410
+ </inertial>
411
+ <visual>
412
+ <origin
413
+ xyz="0 0 0"
414
+ rpy="0 0 0" />
415
+ <geometry>
416
+ <mesh
417
+ filename="package://piper_description/meshes/link7.dae" />
418
+ </geometry>
419
+ <material
420
+ name="">
421
+ <color
422
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
423
+ </material>
424
+ </visual>
425
+ <collision>
426
+ <origin
427
+ xyz="0 0 0"
428
+ rpy="0 0 0" />
429
+ <geometry>
430
+ <mesh
431
+ filename="package://piper_description/meshes/link7.STL" />
432
+ </geometry>
433
+ </collision>
434
+ </link>
435
+ <joint
436
+ name="joint7"
437
+ type="prismatic">
438
+ <origin
439
+ xyz="0 0 0.13503"
440
+ rpy="1.5708 0 1.5708" />
441
+ <parent
442
+ link="link6" />
443
+ <child
444
+ link="link7" />
445
+ <axis
446
+ xyz="0 0 -1" />
447
+ <limit
448
+ lower="0"
449
+ upper="0.04"
450
+ effort="10"
451
+ velocity="1" />
452
+ </joint>
453
+ <link
454
+ name="link8">
455
+ <inertial>
456
+ <origin
457
+ xyz="0.000277816920932317 0.0467673824063769 -0.00921030054508036"
458
+ rpy="0 0 0" />
459
+ <mass
460
+ value="0.0264822021416248" />
461
+ <inertia
462
+ ixx="9.99779119357223E-06"
463
+ ixy="-1.57542283433504E-07"
464
+ ixz="2.71367446701359E-08"
465
+ iyy="6.17952441557932E-06"
466
+ iyz="1.58939319453383E-06"
467
+ izz="1.4210192754512E-05" />
468
+ </inertial>
469
+ <visual>
470
+ <origin
471
+ xyz="0 0 0"
472
+ rpy="0 0 0" />
473
+ <geometry>
474
+ <mesh
475
+ filename="package://piper_description/meshes/link8.dae" />
476
+ </geometry>
477
+ <material
478
+ name="">
479
+ <color
480
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
481
+ </material>
482
+ </visual>
483
+ <collision>
484
+ <origin
485
+ xyz="0 0 0"
486
+ rpy="0 0 0" />
487
+ <geometry>
488
+ <mesh
489
+ filename="package://piper_description/meshes/link8.STL" />
490
+ </geometry>
491
+ </collision>
492
+ </link>
493
+ <joint
494
+ name="joint8"
495
+ type="prismatic">
496
+ <origin
497
+ xyz="0 0 0.13503"
498
+ rpy="-1.5708 0 1.5708" />
499
+ <parent
500
+ link="link6" />
501
+ <child
502
+ link="link8" />
503
+ <axis
504
+ xyz="0 0 1" />
505
+ <limit
506
+ lower="-0.04"
507
+ upper="0"
508
+ effort="10"
509
+ velocity="1" />
510
+ </joint>
511
+ </robot>
embodiments/piper/urdf/piper_description_v00.xacro ADDED
@@ -0,0 +1,582 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <robot
3
+ name="arm"
4
+ xmlns:xacro="http://ros.org/wiki/xacro">
5
+ <!-- world -->
6
+ <link name="world"/>
7
+ <joint name="fixed_base_joint" type="fixed">
8
+ <parent link="world"/>
9
+ <child link="base_link"/>
10
+ </joint>
11
+ <!-- arm -->
12
+ <link
13
+ name="base_link">
14
+ <inertial>
15
+ <origin
16
+ xyz="-0.00979274765955341 1.82905827587138E-06 0.0410100126360189"
17
+ rpy="0 0 0" />
18
+ <mass
19
+ value="0.162548567403693" />
20
+ <inertia
21
+ ixx="0.000226596924525071"
22
+ ixy="-7.33972270153965E-08"
23
+ ixz="2.13249977802622E-06"
24
+ iyy="0.000269444772561524"
25
+ iyz="8.15169009611054E-09"
26
+ izz="0.000222318258878636" />
27
+ </inertial>
28
+ <visual>
29
+ <origin
30
+ xyz="0 0 0"
31
+ rpy="0 0 0" />
32
+ <geometry>
33
+ <mesh
34
+ filename="package://piper_description/meshes/base_link.dae" />
35
+ </geometry>
36
+ <material
37
+ name="">
38
+ <color
39
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
40
+ </material>
41
+ </visual>
42
+ <collision>
43
+ <origin
44
+ xyz="0 0 0"
45
+ rpy="0 0 0" />
46
+ <geometry>
47
+ <mesh
48
+ filename="package://piper_description/meshes/base_link.STL" />
49
+ </geometry>
50
+ </collision>
51
+ </link>
52
+ <link
53
+ name="link1">
54
+ <inertial>
55
+ <origin
56
+ xyz="0.00131676031927024 0.000310288842008612 -0.00922874512303437"
57
+ rpy="0 0 0" />
58
+ <mass
59
+ value="0.0978679932242825" />
60
+ <inertia
61
+ ixx="7.76684558296782E-05"
62
+ ixy="1.09084650459924E-07"
63
+ ixz="-1.9748053243241E-06"
64
+ iyy="9.24967780161547E-05"
65
+ iyz="9.91284646834582E-07"
66
+ izz="8.24589062407807E-05" />
67
+ </inertial>
68
+ <visual>
69
+ <origin
70
+ xyz="0 0 0"
71
+ rpy="0 0 0" />
72
+ <geometry>
73
+ <mesh
74
+ filename="package://piper_description/meshes/link1.dae" />
75
+ </geometry>
76
+ <material
77
+ name="">
78
+ <color
79
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
80
+ </material>
81
+ </visual>
82
+ <collision>
83
+ <origin
84
+ xyz="0 0 0"
85
+ rpy="0 0 0" />
86
+ <geometry>
87
+ <mesh
88
+ filename="package://piper_description/meshes/link1.STL" />
89
+ </geometry>
90
+ </collision>
91
+ </link>
92
+ <joint
93
+ name="joint1"
94
+ type="revolute">
95
+ <origin
96
+ xyz="0 0 0.123"
97
+ rpy="0 0 -1.5708" />
98
+ <parent
99
+ link="base_link" />
100
+ <child
101
+ link="link1" />
102
+ <axis
103
+ xyz="0 0 1" />
104
+ <limit
105
+ lower="-2.618"
106
+ upper="2.618"
107
+ effort="100"
108
+ velocity="3" />
109
+ </joint>
110
+ <link
111
+ name="link2">
112
+ <inertial>
113
+ <origin
114
+ xyz="0.148793602378802 -0.00242026983944119 0.00175154638467948"
115
+ rpy="0 0 0" />
116
+ <mass
117
+ value="0.290888938633388" />
118
+ <inertia
119
+ ixx="0.000148959640166183"
120
+ ixy="-7.37750384371657E-05"
121
+ ixz="-9.68688405196236E-07"
122
+ iyy="0.00172800946632652"
123
+ iyz="-1.09692225564224E-06"
124
+ izz="0.0017754628344594" />
125
+ </inertial>
126
+ <visual>
127
+ <origin
128
+ xyz="0 0 0"
129
+ rpy="0 0 0" />
130
+ <geometry>
131
+ <mesh
132
+ filename="package://piper_description/meshes/link2.dae" />
133
+ </geometry>
134
+ <material
135
+ name="">
136
+ <color
137
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
138
+ </material>
139
+ </visual>
140
+ <collision>
141
+ <origin
142
+ xyz="0 0 0"
143
+ rpy="0 0 0" />
144
+ <geometry>
145
+ <mesh
146
+ filename="package://piper_description/meshes/link2.STL" />
147
+ </geometry>
148
+ </collision>
149
+ </link>
150
+ <joint
151
+ name="joint2"
152
+ type="revolute">
153
+ <origin
154
+ xyz="0 0 0"
155
+ rpy="1.5708 -0.034907 -1.5708" />
156
+ <parent
157
+ link="link1" />
158
+ <child
159
+ link="link2" />
160
+ <axis
161
+ xyz="0 0 1" />
162
+ <limit
163
+ lower="0"
164
+ upper="3.14"
165
+ effort="100"
166
+ velocity="3" />
167
+ </joint>
168
+ <link
169
+ name="link3">
170
+ <inertial>
171
+ <origin
172
+ xyz="-0.0996835215213704 0.0349477226691318 0.000508025815507312"
173
+ rpy="0 0 0" />
174
+ <mass
175
+ value="0.290847697793211" />
176
+ <inertia
177
+ ixx="0.000107879011637167"
178
+ ixy="2.92669521203626E-05"
179
+ ixz="6.825922326238E-07"
180
+ iyy="0.000214751671792086"
181
+ iyz="-7.78469047878196E-07"
182
+ izz="0.000241923439340319" />
183
+ </inertial>
184
+ <visual>
185
+ <origin
186
+ xyz="0 0 0"
187
+ rpy="0 0 0" />
188
+ <geometry>
189
+ <mesh
190
+ filename="package://piper_description/meshes/link3.dae" />
191
+ </geometry>
192
+ <material
193
+ name="">
194
+ <color
195
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
196
+ </material>
197
+ </visual>
198
+ <collision>
199
+ <origin
200
+ xyz="0 0 0"
201
+ rpy="0 0 0" />
202
+ <geometry>
203
+ <mesh
204
+ filename="package://piper_description/meshes/link3.STL" />
205
+ </geometry>
206
+ </collision>
207
+ </link>
208
+ <joint
209
+ name="joint3"
210
+ type="revolute">
211
+ <origin
212
+ xyz="0.28358 0.028726 0"
213
+ rpy="0 0 0.06604341" />
214
+ <parent
215
+ link="link2" />
216
+ <child
217
+ link="link3" />
218
+ <axis
219
+ xyz="0 0 1" />
220
+ <limit
221
+ lower="-2.697"
222
+ upper="0"
223
+ effort="100"
224
+ velocity="3" />
225
+ </joint>
226
+ <link
227
+ name="link4">
228
+ <inertial>
229
+ <origin
230
+ xyz="0.000276464622387979 -0.00102803669324875 -0.00472830700561663"
231
+ rpy="0 0 0" />
232
+ <mass
233
+ value="0.127087348341362" />
234
+ <inertia
235
+ ixx="3.82011730423416E-05"
236
+ ixy="-4.92358350897513E-08"
237
+ ixz="4.89589432973119E-08"
238
+ iyy="4.87048555222578E-05"
239
+ iyz="6.70802942500512E-08"
240
+ izz="4.10592077565559E-05" />
241
+ </inertial>
242
+ <visual>
243
+ <origin
244
+ xyz="0 0 0"
245
+ rpy="0 0 0" />
246
+ <geometry>
247
+ <mesh
248
+ filename="package://piper_description/meshes/link4.dae" />
249
+ </geometry>
250
+ <material
251
+ name="">
252
+ <color
253
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
254
+ </material>
255
+ </visual>
256
+ <collision>
257
+ <origin
258
+ xyz="0 0 0"
259
+ rpy="0 0 0" />
260
+ <geometry>
261
+ <mesh
262
+ filename="package://piper_description/meshes/link4.STL" />
263
+ </geometry>
264
+ </collision>
265
+ </link>
266
+ <joint
267
+ name="joint4"
268
+ type="revolute">
269
+ <origin
270
+ xyz="-0.24221 0.068514 0"
271
+ rpy="-1.5708 0 1.3826" />
272
+ <parent
273
+ link="link3" />
274
+ <child
275
+ link="link4" />
276
+ <axis
277
+ xyz="0 0 1" />
278
+ <limit
279
+ lower="-1.832"
280
+ upper="1.832"
281
+ effort="100"
282
+ velocity="3" />
283
+ </joint>
284
+ <link
285
+ name="link5">
286
+ <inertial>
287
+ <origin
288
+ xyz="8.82262433516967E-05 0.0566829014808256 -0.00196119720482461"
289
+ rpy="0 0 0" />
290
+ <mass
291
+ value="0.144711242639457" />
292
+ <inertia
293
+ ixx="4.39644313662493E-05"
294
+ ixy="-3.59259686444846E-08"
295
+ ixz="-1.89747741386183E-08"
296
+ iyy="5.63173920951307E-05"
297
+ iyz="-2.1540716689785E-07"
298
+ izz="4.88713664675268E-05" />
299
+ </inertial>
300
+ <visual>
301
+ <origin
302
+ xyz="0 0 0"
303
+ rpy="0 0 0" />
304
+ <geometry>
305
+ <mesh
306
+ filename="package://piper_description/meshes/link5.dae" />
307
+ </geometry>
308
+ <material
309
+ name="">
310
+ <color
311
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
312
+ </material>
313
+ </visual>
314
+ <collision>
315
+ <origin
316
+ xyz="0 0 0"
317
+ rpy="0 0 0" />
318
+ <geometry>
319
+ <mesh
320
+ filename="package://piper_description/meshes/link5.STL" />
321
+ </geometry>
322
+ </collision>
323
+ </link>
324
+ <joint
325
+ name="joint5"
326
+ type="revolute">
327
+ <origin
328
+ xyz="0 0 0"
329
+ rpy="1.5708 0 0" />
330
+ <parent
331
+ link="link4" />
332
+ <child
333
+ link="link5" />
334
+ <axis
335
+ xyz="0 0 1" />
336
+ <limit
337
+ lower="-1.22"
338
+ upper="1.22"
339
+ effort="100"
340
+ velocity="3" />
341
+ </joint>
342
+ <link
343
+ name="link6">
344
+ <inertial>
345
+ <origin
346
+ xyz="0.00103120214523473 0.0121761387587524 0.0315480874960164"
347
+ rpy="0 0 0" />
348
+ <mass
349
+ value="0.195187143240719" />
350
+ <inertia
351
+ ixx="6.43790256535539E-05"
352
+ ixy="-1.2366166157046E-06"
353
+ ixz="1.97664606328472E-07"
354
+ iyy="0.000126146396374301"
355
+ iyz="2.41157078516408E-06"
356
+ izz="0.000154087076816444" />
357
+ </inertial>
358
+ <visual>
359
+ <origin
360
+ xyz="0 0 0"
361
+ rpy="0 0 0" />
362
+ <geometry>
363
+ <mesh
364
+ filename="package://piper_description/meshes/link6.dae" />
365
+ </geometry>
366
+ <material
367
+ name="">
368
+ <color
369
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
370
+ </material>
371
+ </visual>
372
+ <collision>
373
+ <origin
374
+ xyz="0 0 0"
375
+ rpy="0 0 0" />
376
+ <geometry>
377
+ <mesh
378
+ filename="package://piper_description/meshes/link6.STL" />
379
+ </geometry>
380
+ </collision>
381
+ </link>
382
+ <joint
383
+ name="joint6"
384
+ type="revolute">
385
+ <origin
386
+ xyz="0 0.091 0.0014165"
387
+ rpy="-1.5708 -1.5708 0" />
388
+ <parent
389
+ link="link5" />
390
+ <child
391
+ link="link6" />
392
+ <axis
393
+ xyz="0 0 1" />
394
+ <limit
395
+ lower="-3.14"
396
+ upper="3.14"
397
+ effort="100"
398
+ velocity="3" />
399
+ </joint>
400
+ <link
401
+ name="link7">
402
+ <inertial>
403
+ <origin
404
+ xyz="-0.000277778383727112 -0.0467673043650824 -0.00921029491873201"
405
+ rpy="0 0 0" />
406
+ <mass
407
+ value="0.02648229234527" />
408
+ <inertia
409
+ ixx="9.99787479924589E-06"
410
+ ixy="-1.57548495096104E-07"
411
+ ixz="-2.71342775003487E-08"
412
+ iyy="6.1795212293655E-06"
413
+ iyz="-1.58939803580081E-06"
414
+ izz="1.42102717246564E-05" />
415
+ </inertial>
416
+ <visual>
417
+ <origin
418
+ xyz="0 0 0"
419
+ rpy="0 0 0" />
420
+ <geometry>
421
+ <mesh
422
+ filename="package://piper_description/meshes/link7.dae" />
423
+ </geometry>
424
+ <material
425
+ name="">
426
+ <color
427
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
428
+ </material>
429
+ </visual>
430
+ <collision>
431
+ <origin
432
+ xyz="0 0 0"
433
+ rpy="0 0 0" />
434
+ <geometry>
435
+ <mesh
436
+ filename="package://piper_description/meshes/link7.STL" />
437
+ </geometry>
438
+ </collision>
439
+ </link>
440
+ <joint
441
+ name="joint7"
442
+ type="prismatic">
443
+ <origin
444
+ xyz="0 0 0.13503"
445
+ rpy="1.5708 0 1.5708" />
446
+ <parent
447
+ link="link6" />
448
+ <child
449
+ link="link7" />
450
+ <axis
451
+ xyz="0 0 -1" />
452
+ <limit
453
+ lower="0"
454
+ upper="0.04"
455
+ effort="10"
456
+ velocity="1" />
457
+ </joint>
458
+ <link
459
+ name="link8">
460
+ <inertial>
461
+ <origin
462
+ xyz="0.000277816920932317 0.0467673824063769 -0.00921030054508036"
463
+ rpy="0 0 0" />
464
+ <mass
465
+ value="0.0264822021416248" />
466
+ <inertia
467
+ ixx="9.99779119357223E-06"
468
+ ixy="-1.57542283433504E-07"
469
+ ixz="2.71367446701359E-08"
470
+ iyy="6.17952441557932E-06"
471
+ iyz="1.58939319453383E-06"
472
+ izz="1.4210192754512E-05" />
473
+ </inertial>
474
+ <visual>
475
+ <origin
476
+ xyz="0 0 0"
477
+ rpy="0 0 0" />
478
+ <geometry>
479
+ <mesh
480
+ filename="package://piper_description/meshes/link8.dae" />
481
+ </geometry>
482
+ <material
483
+ name="">
484
+ <color
485
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
486
+ </material>
487
+ </visual>
488
+ <collision>
489
+ <origin
490
+ xyz="0 0 0"
491
+ rpy="0 0 0" />
492
+ <geometry>
493
+ <mesh
494
+ filename="package://piper_description/meshes/link8.STL" />
495
+ </geometry>
496
+ </collision>
497
+ </link>
498
+ <joint
499
+ name="joint8"
500
+ type="prismatic">
501
+ <origin
502
+ xyz="0 0 0.13503"
503
+ rpy="-1.5708 0 1.5708" />
504
+ <parent
505
+ link="link6" />
506
+ <child
507
+ link="link8" />
508
+ <axis
509
+ xyz="0 0 1" />
510
+ <limit
511
+ lower="-0.04"
512
+ upper="0"
513
+ effort="10"
514
+ velocity="1" />
515
+ </joint>
516
+
517
+ <!-- controller -->
518
+ <xacro:macro name="transmission_block" params="tran_name joint_name motor_name">
519
+ <transmission name="${tran_name}">
520
+ <type>transmission_interface/SimpleTransmission</type>
521
+ <joint name="${joint_name}">
522
+ <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>
523
+ </joint>
524
+ <actuator name="$motor_name">
525
+ <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>
526
+ <mechanicalReduction>1</mechanicalReduction>
527
+ </actuator>
528
+ </transmission>
529
+ </xacro:macro>
530
+
531
+ <xacro:transmission_block tran_name="tran1" joint_name="joint1" motor_name="motor1"/>
532
+ <xacro:transmission_block tran_name="tran2" joint_name="joint2" motor_name="motor2"/>
533
+ <xacro:transmission_block tran_name="tran3" joint_name="joint3" motor_name="motor3"/>
534
+ <xacro:transmission_block tran_name="tran4" joint_name="joint4" motor_name="motor4"/>
535
+ <xacro:transmission_block tran_name="tran5" joint_name="joint5" motor_name="motor5"/>
536
+ <xacro:transmission_block tran_name="tran6" joint_name="joint6" motor_name="motor6"/>
537
+ <xacro:transmission_block tran_name="tran7" joint_name="joint7" motor_name="motor7"/>
538
+ <xacro:transmission_block tran_name="tran8" joint_name="joint8" motor_name="motor8"/>
539
+ <!-- gazebo -->
540
+ <gazebo>
541
+ <plugin name="gazebo_ros_control" filename="libgazebo_ros_control.so">
542
+ <robotNamespace>/piper_description</robotNamespace>
543
+ <legacyModeNS>true</legacyModeNS>
544
+ </plugin>
545
+ </gazebo>
546
+
547
+ <!-- <gazebo reference="base_link">
548
+ <material>Gazebo/Black</material>
549
+ </gazebo>
550
+
551
+ <gazebo reference="link1">
552
+ <material>Gazebo/White</material>
553
+ </gazebo>
554
+
555
+ <gazebo reference="link2">
556
+ <material>Gazebo/White</material>
557
+ </gazebo>
558
+
559
+ <gazebo reference="link3">
560
+ <material>Gazebo/White</material>
561
+ </gazebo>
562
+
563
+ <gazebo reference="link4">
564
+ <material>Gazebo/Black</material>
565
+ </gazebo>
566
+
567
+ <gazebo reference="link5">
568
+ <material>Gazebo/White</material>
569
+ </gazebo>
570
+
571
+ <gazebo reference="link6">
572
+ <material>Gazebo/White</material>
573
+ </gazebo>
574
+
575
+ <gazebo reference="link7">
576
+ <material>Gazebo/Orange</material>
577
+ </gazebo>
578
+
579
+ <gazebo reference="link8">
580
+ <material>Gazebo/Orange</material>
581
+ </gazebo> -->
582
+ </robot>
embodiments/piper/urdf/piper_no_gripper_description.csv ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ Link Name,Center of Mass X,Center of Mass Y,Center of Mass Z,Center of Mass Roll,Center of Mass Pitch,Center of Mass Yaw,Mass,Moment Ixx,Moment Ixy,Moment Ixz,Moment Iyy,Moment Iyz,Moment Izz,Visual X,Visual Y,Visual Z,Visual Roll,Visual Pitch,Visual Yaw,Mesh Filename,Color Red,Color Green,Color Blue,Color Alpha,Collision X,Collision Y,Collision Z,Collision Roll,Collision Pitch,Collision Yaw,Collision Mesh Filename,Material Name,SW Components,Coordinate System,Axis Name,Joint Name,Joint Type,Joint Origin X,Joint Origin Y,Joint Origin Z,Joint Origin Roll,Joint Origin Pitch,Joint Origin Yaw,Parent,Joint Axis X,Joint Axis Y,Joint Axis Z,Limit Effort,Limit Velocity,Limit Lower,Limit Upper,Calibration rising,Calibration falling,Dynamics Damping,Dynamics Friction,Safety Soft Upper,Safety Soft Lower,Safety K Position,Safety K Velocity
2
+ base_link,-0.0097927476595534,1.82905827587127E-06,0.0410100126360189,0,0,0,0.162548567403693,0.000226596924525071,-7.3397227015398E-08,2.13249977802621E-06,0.000269444772561524,8.15169009610875E-09,0.000222318258878636,0,0,0,0,0,0,package://piper_master_description/meshes/base_link.STL,0.792156862745098,0.819607843137255,0.933333333333333,1,0,0,0,0,0,0,package://piper_master_description/meshes/base_link.STL,,base_link-1,base_link_axis,,,,0,0,0,0,0,0,,0,0,0,,,,,,,,,,,,
3
+ link1,0.00131676031927024,0.000310288842008612,-0.00922874512303437,0,0,0,0.0978679932242826,7.76684558296782E-05,1.09084650459925E-07,-1.9748053243241E-06,9.24967780161546E-05,9.91284646834583E-07,8.24589062407806E-05,0,0,0,0,0,0,package://piper_master_description/meshes/link1.STL,0.792156862745098,0.819607843137255,0.933333333333333,1,0,0,0,0,0,0,package://piper_master_description/meshes/link1.STL,,link1-1,link1_axis,基准轴1,joint1,revolute,0,0,0.123,0,0,-1.5708,base_link,0,0,1,100,3,-2.618,2.618,,,,,,,,
4
+ link2,0.148793602378802,-0.00242026983944155,0.00175154638467947,0,0,0,0.290888938633388,0.000148959640166182,-7.37750384371659E-05,-9.68688405196305E-07,0.00172800946632652,-1.09692225564222E-06,0.0017754628344594,0,0,0,0,0,0,package://piper_master_description/meshes/link2.STL,0.792156862745098,0.819607843137255,0.933333333333333,1,0,0,0,0,0,0,package://piper_master_description/meshes/link2.STL,,link2-1,link2_axis,基准轴2,joint2,revolute,0,0,0,1.5708,0,-1.5708,link1,0,0,1,100,3,0,3.14,,,,,,,,
5
+ link3,-0.0996835297298523,0.0349477267125974,0.000508019581893638,0,0,0,0.290847805579065,0.000107879020798026,2.92669848509585E-05,6.82592307795026E-07,0.000214751827465516,-7.78468839754645E-07,0.000241923602270227,0,0,0,0,0,0,package://piper_master_description/meshes/link3.STL,0.792156862745098,0.819607843137255,0.933333333333333,1,0,0,0,0,0,0,package://piper_master_description/meshes/link3.STL,,link3-1,link3_axis,基准轴3,joint3,revolute,0.28358,0.028726,0,0,0,0.10095,link2,0,0,1,100,3,-2.697,0,,,,,,,,
6
+ link4,0.00027646462238809,-0.00102803669324874,-0.00472830700561663,0,0,0,0.127087348341362,3.82011730423025E-05,-4.92358351056127E-08,4.89589432974857E-08,4.87048555222535E-05,6.7080294248456E-08,4.10592077565126E-05,0,0,0,0,0,0,package://piper_master_description/meshes/link4.STL,0.792156862745098,0.819607843137255,0.933333333333333,1,0,0,0,0,0,0,package://piper_master_description/meshes/link4.STL,,link4-2,link4_axis,基准轴4,joint4,revolute,-0.24221,0.068514,0,-1.5708,0,1.3826,link3,0,0,1,100,3,-1.832,1.832,,,,,,,,
7
+ link5,8.8226243351669E-05,0.0566829014808255,-0.00196119720482464,0,0,0,0.144711242639457,4.39644313662491E-05,-3.59259686441454E-08,-1.89747741354704E-08,5.63173920951298E-05,-2.15407166895779E-07,4.8871366467526E-05,0,0,0,0,0,0,package://piper_master_description/meshes/link5.STL,0.792156862745098,0.819607843137255,0.933333333333333,1,0,0,0,0,0,0,package://piper_master_description/meshes/link5.STL,,link5-1,link5_axis,基准轴5,joint5,revolute,0,0,0,1.5708,0,0,link4,0,0,1,100,3,-1.22,1.22,,,,,,,,
embodiments/piper/urdf/piper_no_gripper_description.urdf ADDED
@@ -0,0 +1,338 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- This URDF was automatically created by SolidWorks to URDF Exporter! Originally created by Stephen Brawner (brawner@gmail.com)
3
+ Commit Version: 1.6.0-4-g7f85cfe Build Version: 1.6.7995.38578
4
+ For more information, please see http://wiki.ros.org/sw_urdf_exporter -->
5
+ <robot
6
+ name="piper_description">
7
+ <link
8
+ name="base_link">
9
+ <inertial>
10
+ <origin
11
+ xyz="-0.00979274765955341 1.82905827587138E-06 0.0410100126360189"
12
+ rpy="0 0 0" />
13
+ <mass
14
+ value="0.162548567403693" />
15
+ <inertia
16
+ ixx="0.000226596924525071"
17
+ ixy="-7.33972270153965E-08"
18
+ ixz="2.13249977802622E-06"
19
+ iyy="0.000269444772561524"
20
+ iyz="8.15169009611054E-09"
21
+ izz="0.000222318258878636" />
22
+ </inertial>
23
+ <visual>
24
+ <origin
25
+ xyz="0 0 0"
26
+ rpy="0 0 0" />
27
+ <geometry>
28
+ <mesh
29
+ filename="package://piper_description/meshes/base_link.dae" />
30
+ </geometry>
31
+ <material
32
+ name="">
33
+ <color
34
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
35
+ </material>
36
+ </visual>
37
+ <collision>
38
+ <origin
39
+ xyz="0 0 0"
40
+ rpy="0 0 0" />
41
+ <geometry>
42
+ <mesh
43
+ filename="package://piper_description/meshes/base_link.STL" />
44
+ </geometry>
45
+ </collision>
46
+ </link>
47
+ <link
48
+ name="link1">
49
+ <inertial>
50
+ <origin
51
+ xyz="0.00131676031927024 0.000310288842008612 -0.00922874512303437"
52
+ rpy="0 0 0" />
53
+ <mass
54
+ value="0.0978679932242825" />
55
+ <inertia
56
+ ixx="7.76684558296782E-05"
57
+ ixy="1.09084650459924E-07"
58
+ ixz="-1.9748053243241E-06"
59
+ iyy="9.24967780161547E-05"
60
+ iyz="9.91284646834582E-07"
61
+ izz="8.24589062407807E-05" />
62
+ </inertial>
63
+ <visual>
64
+ <origin
65
+ xyz="0 0 0"
66
+ rpy="0 0 0" />
67
+ <geometry>
68
+ <mesh
69
+ filename="package://piper_description/meshes/link1.dae" />
70
+ </geometry>
71
+ <material
72
+ name="">
73
+ <color
74
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
75
+ </material>
76
+ </visual>
77
+ <collision>
78
+ <origin
79
+ xyz="0 0 0"
80
+ rpy="0 0 0" />
81
+ <geometry>
82
+ <mesh
83
+ filename="package://piper_description/meshes/link1.STL" />
84
+ </geometry>
85
+ </collision>
86
+ </link>
87
+ <joint
88
+ name="joint1"
89
+ type="revolute">
90
+ <origin
91
+ xyz="0 0 0.123"
92
+ rpy="0 0 -1.5708" />
93
+ <parent
94
+ link="base_link" />
95
+ <child
96
+ link="link1" />
97
+ <axis
98
+ xyz="0 0 1" />
99
+ <limit
100
+ lower="-2.618"
101
+ upper="2.618"
102
+ effort="100"
103
+ velocity="3" />
104
+ </joint>
105
+ <link
106
+ name="link2">
107
+ <inertial>
108
+ <origin
109
+ xyz="0.148793602378802 -0.00242026983944119 0.00175154638467948"
110
+ rpy="0 0 0" />
111
+ <mass
112
+ value="0.290888938633388" />
113
+ <inertia
114
+ ixx="0.000148959640166183"
115
+ ixy="-7.37750384371657E-05"
116
+ ixz="-9.68688405196236E-07"
117
+ iyy="0.00172800946632652"
118
+ iyz="-1.09692225564224E-06"
119
+ izz="0.0017754628344594" />
120
+ </inertial>
121
+ <visual>
122
+ <origin
123
+ xyz="0 0 0"
124
+ rpy="0 0 0" />
125
+ <geometry>
126
+ <mesh
127
+ filename="package://piper_description/meshes/link2.dae" />
128
+ </geometry>
129
+ <material
130
+ name="">
131
+ <color
132
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
133
+ </material>
134
+ </visual>
135
+ <collision>
136
+ <origin
137
+ xyz="0 0 0"
138
+ rpy="0 0 0" />
139
+ <geometry>
140
+ <mesh
141
+ filename="package://piper_description/meshes/link2.STL" />
142
+ </geometry>
143
+ </collision>
144
+ </link>
145
+ <joint
146
+ name="joint2"
147
+ type="revolute">
148
+ <origin
149
+ xyz="0 0 0"
150
+ rpy="1.5708 0 -1.5708" />
151
+ <parent
152
+ link="link1" />
153
+ <child
154
+ link="link2" />
155
+ <axis
156
+ xyz="0 0 1" />
157
+ <limit
158
+ lower="0"
159
+ upper="3.14"
160
+ effort="100"
161
+ velocity="3" />
162
+ </joint>
163
+ <link
164
+ name="link3">
165
+ <inertial>
166
+ <origin
167
+ xyz="-0.0996835215213704 0.0349477226691318 0.000508025815507312"
168
+ rpy="0 0 0" />
169
+ <mass
170
+ value="0.290847697793211" />
171
+ <inertia
172
+ ixx="0.000107879011637167"
173
+ ixy="2.92669521203626E-05"
174
+ ixz="6.825922326238E-07"
175
+ iyy="0.000214751671792086"
176
+ iyz="-7.78469047878196E-07"
177
+ izz="0.000241923439340319" />
178
+ </inertial>
179
+ <visual>
180
+ <origin
181
+ xyz="0 0 0"
182
+ rpy="0 0 0" />
183
+ <geometry>
184
+ <mesh
185
+ filename="package://piper_description/meshes/link3.dae" />
186
+ </geometry>
187
+ <material
188
+ name="">
189
+ <color
190
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
191
+ </material>
192
+ </visual>
193
+ <collision>
194
+ <origin
195
+ xyz="0 0 0"
196
+ rpy="0 0 0" />
197
+ <geometry>
198
+ <mesh
199
+ filename="package://piper_description/meshes/link3.STL" />
200
+ </geometry>
201
+ </collision>
202
+ </link>
203
+ <joint
204
+ name="joint3"
205
+ type="revolute">
206
+ <origin
207
+ xyz="0.28358 0.028726 0"
208
+ rpy="0 0 0.10095" />
209
+ <parent
210
+ link="link2" />
211
+ <child
212
+ link="link3" />
213
+ <axis
214
+ xyz="0 0 1" />
215
+ <limit
216
+ lower="-2.697"
217
+ upper="0"
218
+ effort="100"
219
+ velocity="3" />
220
+ </joint>
221
+ <link
222
+ name="link4">
223
+ <inertial>
224
+ <origin
225
+ xyz="0.000276464622387979 -0.00102803669324875 -0.00472830700561663"
226
+ rpy="0 0 0" />
227
+ <mass
228
+ value="0.127087348341362" />
229
+ <inertia
230
+ ixx="3.82011730423416E-05"
231
+ ixy="-4.92358350897513E-08"
232
+ ixz="4.89589432973119E-08"
233
+ iyy="4.87048555222578E-05"
234
+ iyz="6.70802942500512E-08"
235
+ izz="4.10592077565559E-05" />
236
+ </inertial>
237
+ <visual>
238
+ <origin
239
+ xyz="0 0 0"
240
+ rpy="0 0 0" />
241
+ <geometry>
242
+ <mesh
243
+ filename="package://piper_description/meshes/link4.dae" />
244
+ </geometry>
245
+ <material
246
+ name="">
247
+ <color
248
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
249
+ </material>
250
+ </visual>
251
+ <collision>
252
+ <origin
253
+ xyz="0 0 0"
254
+ rpy="0 0 0" />
255
+ <geometry>
256
+ <mesh
257
+ filename="package://piper_description/meshes/link4.STL" />
258
+ </geometry>
259
+ </collision>
260
+ </link>
261
+ <joint
262
+ name="joint4"
263
+ type="revolute">
264
+ <origin
265
+ xyz="-0.24221 0.068514 0"
266
+ rpy="-1.5708 0 1.3826" />
267
+ <parent
268
+ link="link3" />
269
+ <child
270
+ link="link4" />
271
+ <axis
272
+ xyz="0 0 1" />
273
+ <limit
274
+ lower="-1.832"
275
+ upper="1.832"
276
+ effort="100"
277
+ velocity="3" />
278
+ </joint>
279
+ <link
280
+ name="link5">
281
+ <inertial>
282
+ <origin
283
+ xyz="8.82262433516967E-05 0.0566829014808256 -0.00196119720482461"
284
+ rpy="0 0 0" />
285
+ <mass
286
+ value="0.144711242639457" />
287
+ <inertia
288
+ ixx="4.39644313662493E-05"
289
+ ixy="-3.59259686444846E-08"
290
+ ixz="-1.89747741386183E-08"
291
+ iyy="5.63173920951307E-05"
292
+ iyz="-2.1540716689785E-07"
293
+ izz="4.88713664675268E-05" />
294
+ </inertial>
295
+ <visual>
296
+ <origin
297
+ xyz="0 0 0"
298
+ rpy="0 0 0" />
299
+ <geometry>
300
+ <mesh
301
+ filename="package://piper_description/meshes/link5.dae" />
302
+ </geometry>
303
+ <material
304
+ name="">
305
+ <color
306
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
307
+ </material>
308
+ </visual>
309
+ <collision>
310
+ <origin
311
+ xyz="0 0 0"
312
+ rpy="0 0 0" />
313
+ <geometry>
314
+ <mesh
315
+ filename="package://piper_description/meshes/link5.STL" />
316
+ </geometry>
317
+ </collision>
318
+ </link>
319
+ <joint
320
+ name="joint5"
321
+ type="revolute">
322
+ <origin
323
+ xyz="0 0 0"
324
+ rpy="1.5708 0 0" />
325
+ <parent
326
+ link="link4" />
327
+ <child
328
+ link="link5" />
329
+ <axis
330
+ xyz="0 0 1" />
331
+ <limit
332
+ lower="-1.22"
333
+ upper="1.22"
334
+ effort="100"
335
+ velocity="3" />
336
+ </joint>
337
+
338
+ </robot>
embodiments/piper/urdf/piper_no_gripper_description.xacro ADDED
@@ -0,0 +1,394 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <robot
3
+ name="arm"
4
+ xmlns:xacro="http://ros.org/wiki/xacro">
5
+ <!-- world -->
6
+ <link name="world"/>
7
+ <joint name="fixed_base_joint" type="fixed">
8
+ <parent link="world"/>
9
+ <child link="base_link"/>
10
+ </joint>
11
+ <!-- arm -->
12
+ <link
13
+ name="base_link">
14
+ <inertial>
15
+ <origin
16
+ xyz="-0.00979274765955341 1.82905827587138E-06 0.0410100126360189"
17
+ rpy="0 0 0" />
18
+ <mass
19
+ value="0.162548567403693" />
20
+ <inertia
21
+ ixx="0.000226596924525071"
22
+ ixy="-7.33972270153965E-08"
23
+ ixz="2.13249977802622E-06"
24
+ iyy="0.000269444772561524"
25
+ iyz="8.15169009611054E-09"
26
+ izz="0.000222318258878636" />
27
+ </inertial>
28
+ <visual>
29
+ <origin
30
+ xyz="0 0 0"
31
+ rpy="0 0 0" />
32
+ <geometry>
33
+ <mesh
34
+ filename="package://piper_description/meshes/base_link.dae" />
35
+ </geometry>
36
+ <material
37
+ name="">
38
+ <color
39
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
40
+ </material>
41
+ </visual>
42
+ <collision>
43
+ <origin
44
+ xyz="0 0 0"
45
+ rpy="0 0 0" />
46
+ <geometry>
47
+ <mesh
48
+ filename="package://piper_description/meshes/base_link.STL" />
49
+ </geometry>
50
+ </collision>
51
+ </link>
52
+ <link
53
+ name="link1">
54
+ <inertial>
55
+ <origin
56
+ xyz="0.00131676031927024 0.000310288842008612 -0.00922874512303437"
57
+ rpy="0 0 0" />
58
+ <mass
59
+ value="0.0978679932242825" />
60
+ <inertia
61
+ ixx="7.76684558296782E-05"
62
+ ixy="1.09084650459924E-07"
63
+ ixz="-1.9748053243241E-06"
64
+ iyy="9.24967780161547E-05"
65
+ iyz="9.91284646834582E-07"
66
+ izz="8.24589062407807E-05" />
67
+ </inertial>
68
+ <visual>
69
+ <origin
70
+ xyz="0 0 0"
71
+ rpy="0 0 0" />
72
+ <geometry>
73
+ <mesh
74
+ filename="package://piper_description/meshes/link1.dae" />
75
+ </geometry>
76
+ <material
77
+ name="">
78
+ <color
79
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
80
+ </material>
81
+ </visual>
82
+ <collision>
83
+ <origin
84
+ xyz="0 0 0"
85
+ rpy="0 0 0" />
86
+ <geometry>
87
+ <mesh
88
+ filename="package://piper_description/meshes/link1.STL" />
89
+ </geometry>
90
+ </collision>
91
+ </link>
92
+ <joint
93
+ name="joint1"
94
+ type="revolute">
95
+ <origin
96
+ xyz="0 0 0.123"
97
+ rpy="0 0 -1.5708" />
98
+ <parent
99
+ link="base_link" />
100
+ <child
101
+ link="link1" />
102
+ <axis
103
+ xyz="0 0 1" />
104
+ <limit
105
+ lower="-2.618"
106
+ upper="2.618"
107
+ effort="100"
108
+ velocity="3" />
109
+ </joint>
110
+ <link
111
+ name="link2">
112
+ <inertial>
113
+ <origin
114
+ xyz="0.148793602378802 -0.00242026983944119 0.00175154638467948"
115
+ rpy="0 0 0" />
116
+ <mass
117
+ value="0.290888938633388" />
118
+ <inertia
119
+ ixx="0.000148959640166183"
120
+ ixy="-7.37750384371657E-05"
121
+ ixz="-9.68688405196236E-07"
122
+ iyy="0.00172800946632652"
123
+ iyz="-1.09692225564224E-06"
124
+ izz="0.0017754628344594" />
125
+ </inertial>
126
+ <visual>
127
+ <origin
128
+ xyz="0 0 0"
129
+ rpy="0 0 0" />
130
+ <geometry>
131
+ <mesh
132
+ filename="package://piper_description/meshes/link2.dae" />
133
+ </geometry>
134
+ <material
135
+ name="">
136
+ <color
137
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
138
+ </material>
139
+ </visual>
140
+ <collision>
141
+ <origin
142
+ xyz="0 0 0"
143
+ rpy="0 0 0" />
144
+ <geometry>
145
+ <mesh
146
+ filename="package://piper_description/meshes/link2.STL" />
147
+ </geometry>
148
+ </collision>
149
+ </link>
150
+ <joint
151
+ name="joint2"
152
+ type="revolute">
153
+ <origin
154
+ xyz="0 0 0"
155
+ rpy="1.5708 0 -1.5708" />
156
+ <parent
157
+ link="link1" />
158
+ <child
159
+ link="link2" />
160
+ <axis
161
+ xyz="0 0 1" />
162
+ <limit
163
+ lower="0"
164
+ upper="3.14"
165
+ effort="100"
166
+ velocity="3" />
167
+ </joint>
168
+ <link
169
+ name="link3">
170
+ <inertial>
171
+ <origin
172
+ xyz="-0.0996835215213704 0.0349477226691318 0.000508025815507312"
173
+ rpy="0 0 0" />
174
+ <mass
175
+ value="0.290847697793211" />
176
+ <inertia
177
+ ixx="0.000107879011637167"
178
+ ixy="2.92669521203626E-05"
179
+ ixz="6.825922326238E-07"
180
+ iyy="0.000214751671792086"
181
+ iyz="-7.78469047878196E-07"
182
+ izz="0.000241923439340319" />
183
+ </inertial>
184
+ <visual>
185
+ <origin
186
+ xyz="0 0 0"
187
+ rpy="0 0 0" />
188
+ <geometry>
189
+ <mesh
190
+ filename="package://piper_description/meshes/link3.dae" />
191
+ </geometry>
192
+ <material
193
+ name="">
194
+ <color
195
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
196
+ </material>
197
+ </visual>
198
+ <collision>
199
+ <origin
200
+ xyz="0 0 0"
201
+ rpy="0 0 0" />
202
+ <geometry>
203
+ <mesh
204
+ filename="package://piper_description/meshes/link3.STL" />
205
+ </geometry>
206
+ </collision>
207
+ </link>
208
+ <joint
209
+ name="joint3"
210
+ type="revolute">
211
+ <origin
212
+ xyz="0.28358 0.028726 0"
213
+ rpy="0 0 0.10095" />
214
+ <parent
215
+ link="link2" />
216
+ <child
217
+ link="link3" />
218
+ <axis
219
+ xyz="0 0 1" />
220
+ <limit
221
+ lower="-2.697"
222
+ upper="0"
223
+ effort="100"
224
+ velocity="3" />
225
+ </joint>
226
+ <link
227
+ name="link4">
228
+ <inertial>
229
+ <origin
230
+ xyz="0.000276464622387979 -0.00102803669324875 -0.00472830700561663"
231
+ rpy="0 0 0" />
232
+ <mass
233
+ value="0.127087348341362" />
234
+ <inertia
235
+ ixx="3.82011730423416E-05"
236
+ ixy="-4.92358350897513E-08"
237
+ ixz="4.89589432973119E-08"
238
+ iyy="4.87048555222578E-05"
239
+ iyz="6.70802942500512E-08"
240
+ izz="4.10592077565559E-05" />
241
+ </inertial>
242
+ <visual>
243
+ <origin
244
+ xyz="0 0 0"
245
+ rpy="0 0 0" />
246
+ <geometry>
247
+ <mesh
248
+ filename="package://piper_description/meshes/link4.dae" />
249
+ </geometry>
250
+ <material
251
+ name="">
252
+ <color
253
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
254
+ </material>
255
+ </visual>
256
+ <collision>
257
+ <origin
258
+ xyz="0 0 0"
259
+ rpy="0 0 0" />
260
+ <geometry>
261
+ <mesh
262
+ filename="package://piper_description/meshes/link4.STL" />
263
+ </geometry>
264
+ </collision>
265
+ </link>
266
+ <joint
267
+ name="joint4"
268
+ type="revolute">
269
+ <origin
270
+ xyz="-0.24221 0.068514 0"
271
+ rpy="-1.5708 0 1.3826" />
272
+ <parent
273
+ link="link3" />
274
+ <child
275
+ link="link4" />
276
+ <axis
277
+ xyz="0 0 1" />
278
+ <limit
279
+ lower="-1.832"
280
+ upper="1.832"
281
+ effort="100"
282
+ velocity="3" />
283
+ </joint>
284
+ <link
285
+ name="link5">
286
+ <inertial>
287
+ <origin
288
+ xyz="8.82262433516967E-05 0.0566829014808256 -0.00196119720482461"
289
+ rpy="0 0 0" />
290
+ <mass
291
+ value="0.144711242639457" />
292
+ <inertia
293
+ ixx="4.39644313662493E-05"
294
+ ixy="-3.59259686444846E-08"
295
+ ixz="-1.89747741386183E-08"
296
+ iyy="5.63173920951307E-05"
297
+ iyz="-2.1540716689785E-07"
298
+ izz="4.88713664675268E-05" />
299
+ </inertial>
300
+ <visual>
301
+ <origin
302
+ xyz="0 0 0"
303
+ rpy="0 0 0" />
304
+ <geometry>
305
+ <mesh
306
+ filename="package://piper_description/meshes/link5.dae" />
307
+ </geometry>
308
+ <material
309
+ name="">
310
+ <color
311
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
312
+ </material>
313
+ </visual>
314
+ <collision>
315
+ <origin
316
+ xyz="0 0 0"
317
+ rpy="0 0 0" />
318
+ <geometry>
319
+ <mesh
320
+ filename="package://piper_description/meshes/link5.STL" />
321
+ </geometry>
322
+ </collision>
323
+ </link>
324
+ <joint
325
+ name="joint5"
326
+ type="revolute">
327
+ <origin
328
+ xyz="0 0 0"
329
+ rpy="1.5708 0 0" />
330
+ <parent
331
+ link="link4" />
332
+ <child
333
+ link="link5" />
334
+ <axis
335
+ xyz="0 0 1" />
336
+ <limit
337
+ lower="-1.22"
338
+ upper="1.22"
339
+ effort="100"
340
+ velocity="3" />
341
+ </joint>
342
+
343
+ <!-- controller -->
344
+ <xacro:macro name="transmission_block" params="tran_name joint_name motor_name">
345
+ <transmission name="${tran_name}">
346
+ <type>transmission_interface/SimpleTransmission</type>
347
+ <joint name="${joint_name}">
348
+ <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>
349
+ </joint>
350
+ <actuator name="$motor_name">
351
+ <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>
352
+ <mechanicalReduction>1</mechanicalReduction>
353
+ </actuator>
354
+ </transmission>
355
+ </xacro:macro>
356
+
357
+ <xacro:transmission_block tran_name="tran1" joint_name="joint1" motor_name="motor1"/>
358
+ <xacro:transmission_block tran_name="tran2" joint_name="joint2" motor_name="motor2"/>
359
+ <xacro:transmission_block tran_name="tran3" joint_name="joint3" motor_name="motor3"/>
360
+ <xacro:transmission_block tran_name="tran4" joint_name="joint4" motor_name="motor4"/>
361
+ <xacro:transmission_block tran_name="tran5" joint_name="joint5" motor_name="motor5"/>
362
+ <!-- gazebo -->
363
+ <gazebo>
364
+ <plugin name="gazebo_ros_control" filename="libgazebo_ros_control.so">
365
+ <robotNamespace>/piper_description</robotNamespace>
366
+ <legacyModeNS>true</legacyModeNS>
367
+ </plugin>
368
+ </gazebo>
369
+
370
+ <!-- <gazebo reference="base_link">
371
+ <material>Gazebo/Black</material>
372
+ </gazebo>
373
+
374
+ <gazebo reference="link1">
375
+ <material>Gazebo/White</material>
376
+ </gazebo>
377
+
378
+ <gazebo reference="link2">
379
+ <material>Gazebo/White</material>
380
+ </gazebo>
381
+
382
+ <gazebo reference="link3">
383
+ <material>Gazebo/White</material>
384
+ </gazebo>
385
+
386
+ <gazebo reference="link4">
387
+ <material>Gazebo/Black</material>
388
+ </gazebo>
389
+
390
+ <gazebo reference="link5">
391
+ <material>Gazebo/White</material>
392
+ </gazebo> -->
393
+
394
+ </robot>
embodiments/piper/urdf/piper_no_gripper_description_v00.urdf ADDED
@@ -0,0 +1,338 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- This URDF was automatically created by SolidWorks to URDF Exporter! Originally created by Stephen Brawner (brawner@gmail.com)
3
+ Commit Version: 1.6.0-4-g7f85cfe Build Version: 1.6.7995.38578
4
+ For more information, please see http://wiki.ros.org/sw_urdf_exporter -->
5
+ <robot
6
+ name="piper_description">
7
+ <link
8
+ name="base_link">
9
+ <inertial>
10
+ <origin
11
+ xyz="-0.00979274765955341 1.82905827587138E-06 0.0410100126360189"
12
+ rpy="0 0 0" />
13
+ <mass
14
+ value="0.162548567403693" />
15
+ <inertia
16
+ ixx="0.000226596924525071"
17
+ ixy="-7.33972270153965E-08"
18
+ ixz="2.13249977802622E-06"
19
+ iyy="0.000269444772561524"
20
+ iyz="8.15169009611054E-09"
21
+ izz="0.000222318258878636" />
22
+ </inertial>
23
+ <visual>
24
+ <origin
25
+ xyz="0 0 0"
26
+ rpy="0 0 0" />
27
+ <geometry>
28
+ <mesh
29
+ filename="package://piper_description/meshes/base_link.dae" />
30
+ </geometry>
31
+ <material
32
+ name="">
33
+ <color
34
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
35
+ </material>
36
+ </visual>
37
+ <collision>
38
+ <origin
39
+ xyz="0 0 0"
40
+ rpy="0 0 0" />
41
+ <geometry>
42
+ <mesh
43
+ filename="package://piper_description/meshes/base_link.STL" />
44
+ </geometry>
45
+ </collision>
46
+ </link>
47
+ <link
48
+ name="link1">
49
+ <inertial>
50
+ <origin
51
+ xyz="0.00131676031927024 0.000310288842008612 -0.00922874512303437"
52
+ rpy="0 0 0" />
53
+ <mass
54
+ value="0.0978679932242825" />
55
+ <inertia
56
+ ixx="7.76684558296782E-05"
57
+ ixy="1.09084650459924E-07"
58
+ ixz="-1.9748053243241E-06"
59
+ iyy="9.24967780161547E-05"
60
+ iyz="9.91284646834582E-07"
61
+ izz="8.24589062407807E-05" />
62
+ </inertial>
63
+ <visual>
64
+ <origin
65
+ xyz="0 0 0"
66
+ rpy="0 0 0" />
67
+ <geometry>
68
+ <mesh
69
+ filename="package://piper_description/meshes/link1.dae" />
70
+ </geometry>
71
+ <material
72
+ name="">
73
+ <color
74
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
75
+ </material>
76
+ </visual>
77
+ <collision>
78
+ <origin
79
+ xyz="0 0 0"
80
+ rpy="0 0 0" />
81
+ <geometry>
82
+ <mesh
83
+ filename="package://piper_description/meshes/link1.STL" />
84
+ </geometry>
85
+ </collision>
86
+ </link>
87
+ <joint
88
+ name="joint1"
89
+ type="revolute">
90
+ <origin
91
+ xyz="0 0 0.123"
92
+ rpy="0 0 -1.5708" />
93
+ <parent
94
+ link="base_link" />
95
+ <child
96
+ link="link1" />
97
+ <axis
98
+ xyz="0 0 1" />
99
+ <limit
100
+ lower="-2.618"
101
+ upper="2.618"
102
+ effort="100"
103
+ velocity="3" />
104
+ </joint>
105
+ <link
106
+ name="link2">
107
+ <inertial>
108
+ <origin
109
+ xyz="0.148793602378802 -0.00242026983944119 0.00175154638467948"
110
+ rpy="0 0 0" />
111
+ <mass
112
+ value="0.290888938633388" />
113
+ <inertia
114
+ ixx="0.000148959640166183"
115
+ ixy="-7.37750384371657E-05"
116
+ ixz="-9.68688405196236E-07"
117
+ iyy="0.00172800946632652"
118
+ iyz="-1.09692225564224E-06"
119
+ izz="0.0017754628344594" />
120
+ </inertial>
121
+ <visual>
122
+ <origin
123
+ xyz="0 0 0"
124
+ rpy="0 0 0" />
125
+ <geometry>
126
+ <mesh
127
+ filename="package://piper_description/meshes/link2.dae" />
128
+ </geometry>
129
+ <material
130
+ name="">
131
+ <color
132
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
133
+ </material>
134
+ </visual>
135
+ <collision>
136
+ <origin
137
+ xyz="0 0 0"
138
+ rpy="0 0 0" />
139
+ <geometry>
140
+ <mesh
141
+ filename="package://piper_description/meshes/link2.STL" />
142
+ </geometry>
143
+ </collision>
144
+ </link>
145
+ <joint
146
+ name="joint2"
147
+ type="revolute">
148
+ <origin
149
+ xyz="0 0 0"
150
+ rpy="1.5708 -0.034907 -1.5708" />
151
+ <parent
152
+ link="link1" />
153
+ <child
154
+ link="link2" />
155
+ <axis
156
+ xyz="0 0 1" />
157
+ <limit
158
+ lower="0"
159
+ upper="3.14"
160
+ effort="100"
161
+ velocity="3" />
162
+ </joint>
163
+ <link
164
+ name="link3">
165
+ <inertial>
166
+ <origin
167
+ xyz="-0.0996835215213704 0.0349477226691318 0.000508025815507312"
168
+ rpy="0 0 0" />
169
+ <mass
170
+ value="0.290847697793211" />
171
+ <inertia
172
+ ixx="0.000107879011637167"
173
+ ixy="2.92669521203626E-05"
174
+ ixz="6.825922326238E-07"
175
+ iyy="0.000214751671792086"
176
+ iyz="-7.78469047878196E-07"
177
+ izz="0.000241923439340319" />
178
+ </inertial>
179
+ <visual>
180
+ <origin
181
+ xyz="0 0 0"
182
+ rpy="0 0 0" />
183
+ <geometry>
184
+ <mesh
185
+ filename="package://piper_description/meshes/link3.dae" />
186
+ </geometry>
187
+ <material
188
+ name="">
189
+ <color
190
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
191
+ </material>
192
+ </visual>
193
+ <collision>
194
+ <origin
195
+ xyz="0 0 0"
196
+ rpy="0 0 0" />
197
+ <geometry>
198
+ <mesh
199
+ filename="package://piper_description/meshes/link3.STL" />
200
+ </geometry>
201
+ </collision>
202
+ </link>
203
+ <joint
204
+ name="joint3"
205
+ type="revolute">
206
+ <origin
207
+ xyz="0.28358 0.028726 0"
208
+ rpy="0 0 0.06604341" />
209
+ <parent
210
+ link="link2" />
211
+ <child
212
+ link="link3" />
213
+ <axis
214
+ xyz="0 0 1" />
215
+ <limit
216
+ lower="-2.697"
217
+ upper="0"
218
+ effort="100"
219
+ velocity="3" />
220
+ </joint>
221
+ <link
222
+ name="link4">
223
+ <inertial>
224
+ <origin
225
+ xyz="0.000276464622387979 -0.00102803669324875 -0.00472830700561663"
226
+ rpy="0 0 0" />
227
+ <mass
228
+ value="0.127087348341362" />
229
+ <inertia
230
+ ixx="3.82011730423416E-05"
231
+ ixy="-4.92358350897513E-08"
232
+ ixz="4.89589432973119E-08"
233
+ iyy="4.87048555222578E-05"
234
+ iyz="6.70802942500512E-08"
235
+ izz="4.10592077565559E-05" />
236
+ </inertial>
237
+ <visual>
238
+ <origin
239
+ xyz="0 0 0"
240
+ rpy="0 0 0" />
241
+ <geometry>
242
+ <mesh
243
+ filename="package://piper_description/meshes/link4.dae" />
244
+ </geometry>
245
+ <material
246
+ name="">
247
+ <color
248
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
249
+ </material>
250
+ </visual>
251
+ <collision>
252
+ <origin
253
+ xyz="0 0 0"
254
+ rpy="0 0 0" />
255
+ <geometry>
256
+ <mesh
257
+ filename="package://piper_description/meshes/link4.STL" />
258
+ </geometry>
259
+ </collision>
260
+ </link>
261
+ <joint
262
+ name="joint4"
263
+ type="revolute">
264
+ <origin
265
+ xyz="-0.24221 0.068514 0"
266
+ rpy="-1.5708 0 1.3826" />
267
+ <parent
268
+ link="link3" />
269
+ <child
270
+ link="link4" />
271
+ <axis
272
+ xyz="0 0 1" />
273
+ <limit
274
+ lower="-1.832"
275
+ upper="1.832"
276
+ effort="100"
277
+ velocity="3" />
278
+ </joint>
279
+ <link
280
+ name="link5">
281
+ <inertial>
282
+ <origin
283
+ xyz="8.82262433516967E-05 0.0566829014808256 -0.00196119720482461"
284
+ rpy="0 0 0" />
285
+ <mass
286
+ value="0.144711242639457" />
287
+ <inertia
288
+ ixx="4.39644313662493E-05"
289
+ ixy="-3.59259686444846E-08"
290
+ ixz="-1.89747741386183E-08"
291
+ iyy="5.63173920951307E-05"
292
+ iyz="-2.1540716689785E-07"
293
+ izz="4.88713664675268E-05" />
294
+ </inertial>
295
+ <visual>
296
+ <origin
297
+ xyz="0 0 0"
298
+ rpy="0 0 0" />
299
+ <geometry>
300
+ <mesh
301
+ filename="package://piper_description/meshes/link5.dae" />
302
+ </geometry>
303
+ <material
304
+ name="">
305
+ <color
306
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
307
+ </material>
308
+ </visual>
309
+ <collision>
310
+ <origin
311
+ xyz="0 0 0"
312
+ rpy="0 0 0" />
313
+ <geometry>
314
+ <mesh
315
+ filename="package://piper_description/meshes/link5.STL" />
316
+ </geometry>
317
+ </collision>
318
+ </link>
319
+ <joint
320
+ name="joint5"
321
+ type="revolute">
322
+ <origin
323
+ xyz="0 0 0"
324
+ rpy="1.5708 0 0" />
325
+ <parent
326
+ link="link4" />
327
+ <child
328
+ link="link5" />
329
+ <axis
330
+ xyz="0 0 1" />
331
+ <limit
332
+ lower="-1.22"
333
+ upper="1.22"
334
+ effort="100"
335
+ velocity="3" />
336
+ </joint>
337
+
338
+ </robot>
embodiments/piper/urdf/piper_no_gripper_description_v00.xacro ADDED
@@ -0,0 +1,394 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <robot
3
+ name="arm"
4
+ xmlns:xacro="http://ros.org/wiki/xacro">
5
+ <!-- world -->
6
+ <link name="world"/>
7
+ <joint name="fixed_base_joint" type="fixed">
8
+ <parent link="world"/>
9
+ <child link="base_link"/>
10
+ </joint>
11
+ <!-- arm -->
12
+ <link
13
+ name="base_link">
14
+ <inertial>
15
+ <origin
16
+ xyz="-0.00979274765955341 1.82905827587138E-06 0.0410100126360189"
17
+ rpy="0 0 0" />
18
+ <mass
19
+ value="0.162548567403693" />
20
+ <inertia
21
+ ixx="0.000226596924525071"
22
+ ixy="-7.33972270153965E-08"
23
+ ixz="2.13249977802622E-06"
24
+ iyy="0.000269444772561524"
25
+ iyz="8.15169009611054E-09"
26
+ izz="0.000222318258878636" />
27
+ </inertial>
28
+ <visual>
29
+ <origin
30
+ xyz="0 0 0"
31
+ rpy="0 0 0" />
32
+ <geometry>
33
+ <mesh
34
+ filename="package://piper_description/meshes/base_link.dae" />
35
+ </geometry>
36
+ <material
37
+ name="">
38
+ <color
39
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
40
+ </material>
41
+ </visual>
42
+ <collision>
43
+ <origin
44
+ xyz="0 0 0"
45
+ rpy="0 0 0" />
46
+ <geometry>
47
+ <mesh
48
+ filename="package://piper_description/meshes/base_link.STL" />
49
+ </geometry>
50
+ </collision>
51
+ </link>
52
+ <link
53
+ name="link1">
54
+ <inertial>
55
+ <origin
56
+ xyz="0.00131676031927024 0.000310288842008612 -0.00922874512303437"
57
+ rpy="0 0 0" />
58
+ <mass
59
+ value="0.0978679932242825" />
60
+ <inertia
61
+ ixx="7.76684558296782E-05"
62
+ ixy="1.09084650459924E-07"
63
+ ixz="-1.9748053243241E-06"
64
+ iyy="9.24967780161547E-05"
65
+ iyz="9.91284646834582E-07"
66
+ izz="8.24589062407807E-05" />
67
+ </inertial>
68
+ <visual>
69
+ <origin
70
+ xyz="0 0 0"
71
+ rpy="0 0 0" />
72
+ <geometry>
73
+ <mesh
74
+ filename="package://piper_description/meshes/link1.dae" />
75
+ </geometry>
76
+ <material
77
+ name="">
78
+ <color
79
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
80
+ </material>
81
+ </visual>
82
+ <collision>
83
+ <origin
84
+ xyz="0 0 0"
85
+ rpy="0 0 0" />
86
+ <geometry>
87
+ <mesh
88
+ filename="package://piper_description/meshes/link1.STL" />
89
+ </geometry>
90
+ </collision>
91
+ </link>
92
+ <joint
93
+ name="joint1"
94
+ type="revolute">
95
+ <origin
96
+ xyz="0 0 0.123"
97
+ rpy="0 0 -1.5708" />
98
+ <parent
99
+ link="base_link" />
100
+ <child
101
+ link="link1" />
102
+ <axis
103
+ xyz="0 0 1" />
104
+ <limit
105
+ lower="-2.618"
106
+ upper="2.618"
107
+ effort="100"
108
+ velocity="3" />
109
+ </joint>
110
+ <link
111
+ name="link2">
112
+ <inertial>
113
+ <origin
114
+ xyz="0.148793602378802 -0.00242026983944119 0.00175154638467948"
115
+ rpy="0 0 0" />
116
+ <mass
117
+ value="0.290888938633388" />
118
+ <inertia
119
+ ixx="0.000148959640166183"
120
+ ixy="-7.37750384371657E-05"
121
+ ixz="-9.68688405196236E-07"
122
+ iyy="0.00172800946632652"
123
+ iyz="-1.09692225564224E-06"
124
+ izz="0.0017754628344594" />
125
+ </inertial>
126
+ <visual>
127
+ <origin
128
+ xyz="0 0 0"
129
+ rpy="0 0 0" />
130
+ <geometry>
131
+ <mesh
132
+ filename="package://piper_description/meshes/link2.dae" />
133
+ </geometry>
134
+ <material
135
+ name="">
136
+ <color
137
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
138
+ </material>
139
+ </visual>
140
+ <collision>
141
+ <origin
142
+ xyz="0 0 0"
143
+ rpy="0 0 0" />
144
+ <geometry>
145
+ <mesh
146
+ filename="package://piper_description/meshes/link2.STL" />
147
+ </geometry>
148
+ </collision>
149
+ </link>
150
+ <joint
151
+ name="joint2"
152
+ type="revolute">
153
+ <origin
154
+ xyz="0 0 0"
155
+ rpy="1.5708 -0.034907 -1.5708" />
156
+ <parent
157
+ link="link1" />
158
+ <child
159
+ link="link2" />
160
+ <axis
161
+ xyz="0 0 1" />
162
+ <limit
163
+ lower="0"
164
+ upper="3.14"
165
+ effort="100"
166
+ velocity="3" />
167
+ </joint>
168
+ <link
169
+ name="link3">
170
+ <inertial>
171
+ <origin
172
+ xyz="-0.0996835215213704 0.0349477226691318 0.000508025815507312"
173
+ rpy="0 0 0" />
174
+ <mass
175
+ value="0.290847697793211" />
176
+ <inertia
177
+ ixx="0.000107879011637167"
178
+ ixy="2.92669521203626E-05"
179
+ ixz="6.825922326238E-07"
180
+ iyy="0.000214751671792086"
181
+ iyz="-7.78469047878196E-07"
182
+ izz="0.000241923439340319" />
183
+ </inertial>
184
+ <visual>
185
+ <origin
186
+ xyz="0 0 0"
187
+ rpy="0 0 0" />
188
+ <geometry>
189
+ <mesh
190
+ filename="package://piper_description/meshes/link3.dae" />
191
+ </geometry>
192
+ <material
193
+ name="">
194
+ <color
195
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
196
+ </material>
197
+ </visual>
198
+ <collision>
199
+ <origin
200
+ xyz="0 0 0"
201
+ rpy="0 0 0" />
202
+ <geometry>
203
+ <mesh
204
+ filename="package://piper_description/meshes/link3.STL" />
205
+ </geometry>
206
+ </collision>
207
+ </link>
208
+ <joint
209
+ name="joint3"
210
+ type="revolute">
211
+ <origin
212
+ xyz="0.28358 0.028726 0"
213
+ rpy="0 0 0.06604341" />
214
+ <parent
215
+ link="link2" />
216
+ <child
217
+ link="link3" />
218
+ <axis
219
+ xyz="0 0 1" />
220
+ <limit
221
+ lower="-2.697"
222
+ upper="0"
223
+ effort="100"
224
+ velocity="3" />
225
+ </joint>
226
+ <link
227
+ name="link4">
228
+ <inertial>
229
+ <origin
230
+ xyz="0.000276464622387979 -0.00102803669324875 -0.00472830700561663"
231
+ rpy="0 0 0" />
232
+ <mass
233
+ value="0.127087348341362" />
234
+ <inertia
235
+ ixx="3.82011730423416E-05"
236
+ ixy="-4.92358350897513E-08"
237
+ ixz="4.89589432973119E-08"
238
+ iyy="4.87048555222578E-05"
239
+ iyz="6.70802942500512E-08"
240
+ izz="4.10592077565559E-05" />
241
+ </inertial>
242
+ <visual>
243
+ <origin
244
+ xyz="0 0 0"
245
+ rpy="0 0 0" />
246
+ <geometry>
247
+ <mesh
248
+ filename="package://piper_description/meshes/link4.dae" />
249
+ </geometry>
250
+ <material
251
+ name="">
252
+ <color
253
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
254
+ </material>
255
+ </visual>
256
+ <collision>
257
+ <origin
258
+ xyz="0 0 0"
259
+ rpy="0 0 0" />
260
+ <geometry>
261
+ <mesh
262
+ filename="package://piper_description/meshes/link4.STL" />
263
+ </geometry>
264
+ </collision>
265
+ </link>
266
+ <joint
267
+ name="joint4"
268
+ type="revolute">
269
+ <origin
270
+ xyz="-0.24221 0.068514 0"
271
+ rpy="-1.5708 0 1.3826" />
272
+ <parent
273
+ link="link3" />
274
+ <child
275
+ link="link4" />
276
+ <axis
277
+ xyz="0 0 1" />
278
+ <limit
279
+ lower="-1.832"
280
+ upper="1.832"
281
+ effort="100"
282
+ velocity="3" />
283
+ </joint>
284
+ <link
285
+ name="link5">
286
+ <inertial>
287
+ <origin
288
+ xyz="8.82262433516967E-05 0.0566829014808256 -0.00196119720482461"
289
+ rpy="0 0 0" />
290
+ <mass
291
+ value="0.144711242639457" />
292
+ <inertia
293
+ ixx="4.39644313662493E-05"
294
+ ixy="-3.59259686444846E-08"
295
+ ixz="-1.89747741386183E-08"
296
+ iyy="5.63173920951307E-05"
297
+ iyz="-2.1540716689785E-07"
298
+ izz="4.88713664675268E-05" />
299
+ </inertial>
300
+ <visual>
301
+ <origin
302
+ xyz="0 0 0"
303
+ rpy="0 0 0" />
304
+ <geometry>
305
+ <mesh
306
+ filename="package://piper_description/meshes/link5.dae" />
307
+ </geometry>
308
+ <material
309
+ name="">
310
+ <color
311
+ rgba="0.792156862745098 0.819607843137255 0.933333333333333 1" />
312
+ </material>
313
+ </visual>
314
+ <collision>
315
+ <origin
316
+ xyz="0 0 0"
317
+ rpy="0 0 0" />
318
+ <geometry>
319
+ <mesh
320
+ filename="package://piper_description/meshes/link5.STL" />
321
+ </geometry>
322
+ </collision>
323
+ </link>
324
+ <joint
325
+ name="joint5"
326
+ type="revolute">
327
+ <origin
328
+ xyz="0 0 0"
329
+ rpy="1.5708 0 0" />
330
+ <parent
331
+ link="link4" />
332
+ <child
333
+ link="link5" />
334
+ <axis
335
+ xyz="0 0 1" />
336
+ <limit
337
+ lower="-1.22"
338
+ upper="1.22"
339
+ effort="100"
340
+ velocity="3" />
341
+ </joint>
342
+
343
+ <!-- controller -->
344
+ <xacro:macro name="transmission_block" params="tran_name joint_name motor_name">
345
+ <transmission name="${tran_name}">
346
+ <type>transmission_interface/SimpleTransmission</type>
347
+ <joint name="${joint_name}">
348
+ <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>
349
+ </joint>
350
+ <actuator name="$motor_name">
351
+ <hardwareInterface>hardware_interface/PositionJointInterface</hardwareInterface>
352
+ <mechanicalReduction>1</mechanicalReduction>
353
+ </actuator>
354
+ </transmission>
355
+ </xacro:macro>
356
+
357
+ <xacro:transmission_block tran_name="tran1" joint_name="joint1" motor_name="motor1"/>
358
+ <xacro:transmission_block tran_name="tran2" joint_name="joint2" motor_name="motor2"/>
359
+ <xacro:transmission_block tran_name="tran3" joint_name="joint3" motor_name="motor3"/>
360
+ <xacro:transmission_block tran_name="tran4" joint_name="joint4" motor_name="motor4"/>
361
+ <xacro:transmission_block tran_name="tran5" joint_name="joint5" motor_name="motor5"/>
362
+ <!-- gazebo -->
363
+ <gazebo>
364
+ <plugin name="gazebo_ros_control" filename="libgazebo_ros_control.so">
365
+ <robotNamespace>/piper_description</robotNamespace>
366
+ <legacyModeNS>true</legacyModeNS>
367
+ </plugin>
368
+ </gazebo>
369
+
370
+ <!-- <gazebo reference="base_link">
371
+ <material>Gazebo/Black</material>
372
+ </gazebo>
373
+
374
+ <gazebo reference="link1">
375
+ <material>Gazebo/White</material>
376
+ </gazebo>
377
+
378
+ <gazebo reference="link2">
379
+ <material>Gazebo/White</material>
380
+ </gazebo>
381
+
382
+ <gazebo reference="link3">
383
+ <material>Gazebo/White</material>
384
+ </gazebo>
385
+
386
+ <gazebo reference="link4">
387
+ <material>Gazebo/Black</material>
388
+ </gazebo>
389
+
390
+ <gazebo reference="link5">
391
+ <material>Gazebo/White</material>
392
+ </gazebo> -->
393
+
394
+ </robot>
embodiments/ur5-robotic85-gripper/config.yml ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ urdf_path: "./ur5_robotiq85_gripper.urdf"
2
+ srdf_path: "./ur5.srdf"
3
+ joint_stiffness: 1000
4
+ joint_damping: 200
5
+ gripper_stiffnes: 1000
6
+ gripper_damping: 200
7
+ move_group: ["ee_link","ee_link"]
8
+ ee_joints: ["ee_fixed_joint","ee_fixed_joint"]
9
+ arm_joints_name: [["shoulder_pan_joint" ,"shoulder_lift_joint" ,"elbow_joint" ,"wrist_1_joint", "wrist_2_joint", "wrist_3_joint"],
10
+ ["shoulder_pan_joint" ,"shoulder_lift_joint" ,"elbow_joint" ,"wrist_1_joint", "wrist_2_joint", "wrist_3_joint"]]
11
+ # gripper_name: [["robotiq_85_left_knuckle_joint", "robotiq_85_right_knuckle_joint"],
12
+ # ["robotiq_85_left_knuckle_joint", "robotiq_85_right_knuckle_joint"]]
13
+ gripper_name:
14
+ - base: "robotiq_85_left_knuckle_joint"
15
+ mimic: [
16
+ ["robotiq_85_right_knuckle_joint", 1., 0.],
17
+ ["robotiq_85_left_finger_tip_joint", -1., 0.],
18
+ ["robotiq_85_left_inner_knuckle_joint", 1., 0.],
19
+ ["robotiq_85_right_finger_tip_joint", -1., 0.],
20
+ ["robotiq_85_right_inner_knuckle_joint", 1., 0.]
21
+ ]
22
+ - base: "robotiq_85_left_knuckle_joint"
23
+ mimic: [
24
+ ["robotiq_85_right_knuckle_joint", 1., 0.],
25
+ ["robotiq_85_left_finger_tip_joint", -1., 0.],
26
+ ["robotiq_85_left_inner_knuckle_joint", 1., 0.],
27
+ ["robotiq_85_right_finger_tip_joint", -1., 0.],
28
+ ["robotiq_85_right_inner_knuckle_joint", 1., 0.]
29
+ ]
30
+ gripper_bias: 0.14
31
+ gripper_scale: [0.77, 0.0]
32
+ homestate: [[-1.5447, -1.5447, -1.5447, -1.5794, 1.5794, 0],
33
+ [1.5447, -1.5447, 1.5447, -1.5794, -1.5794, 0]]
34
+ delta_matrix: [[1,0,0],[0,1,0],[0,0,1]]
35
+ global_trans_matrix: [[1,0,0],[0,-1,0],[0,0,-1]]
36
+ robot_pose: [0, -0.65, 0.75, 1, 0, 0, 0] # modify
37
+ planner: "mplib_RRT"
38
+ dual_arm: False
39
+ static_camera_list:
40
+ - name: head_camera
41
+ position:
42
+ - -0.032
43
+ - -0.45
44
+ - 1.35
45
+ forward:
46
+ - 0
47
+ - 0.6
48
+ - -0.8
49
+ left:
50
+ - -1
51
+ - 0
52
+ - 0
embodiments/ur5-robotic85-gripper/meshes/robotiq_85/collision/robotiq_85_knuckle_link.stl ADDED
Binary file (63.9 kB). View file
 
embodiments/ur5-robotic85-gripper/meshes/ur5/collision/forearm.stl ADDED
Binary file (52.6 kB). View file
 
embodiments/ur5-robotic85-gripper/meshes/ur5/collision/shoulder.stl ADDED
Binary file (33.8 kB). View file
 
embodiments/ur5-robotic85-gripper/meshes/ur5/collision/wrist1.stl ADDED
Binary file (35.2 kB). View file
 
embodiments/ur5-robotic85-gripper/meshes/ur5/collision/wrist3.stl ADDED
Binary file (22.4 kB). View file
 
embodiments/ur5-robotic85-gripper/meshes/ur5/visual/base.dae ADDED
The diff for this file is too large to render. See raw diff