Skip to content
Snippets Groups Projects
Unverified Commit 33e0320a authored by Guilhem Saurel's avatar Guilhem Saurel Committed by GitHub
Browse files

fix inertia on finger_edu & a1, ref #68 (#108)

parent 9a8c6f19
No related branches found
No related tags found
No related merge requests found
Pipeline #16892 passed
...@@ -129,6 +129,11 @@ ...@@ -129,6 +129,11 @@
<cylinder length="0.032" radius="0.041"/> <cylinder length="0.032" radius="0.041"/>
</geometry> </geometry>
</collision> </collision>
<inertial>
<mass value="0"/>
<origin rpy="0 0 0" xyz="0 0 0"/>
<inertia ixx="0" ixy="0" ixz="0" iyy="0" iyz="0" izz="0"/>
</inertial>
</link> </link>
<joint name="FR_thigh_joint" type="revolute"> <joint name="FR_thigh_joint" type="revolute">
<origin rpy="0 0 0" xyz="0 -0.0838 0"/> <origin rpy="0 0 0" xyz="0 -0.0838 0"/>
...@@ -251,6 +256,11 @@ ...@@ -251,6 +256,11 @@
<cylinder length="0.032" radius="0.041"/> <cylinder length="0.032" radius="0.041"/>
</geometry> </geometry>
</collision> </collision>
<inertial>
<mass value="0"/>
<origin rpy="0 0 0" xyz="0 0 0"/>
<inertia ixx="0" ixy="0" ixz="0" iyy="0" iyz="0" izz="0"/>
</inertial>
</link> </link>
<joint name="FL_thigh_joint" type="revolute"> <joint name="FL_thigh_joint" type="revolute">
<origin rpy="0 0 0" xyz="0 0.0838 0"/> <origin rpy="0 0 0" xyz="0 0.0838 0"/>
...@@ -373,6 +383,11 @@ ...@@ -373,6 +383,11 @@
<cylinder length="0.032" radius="0.041"/> <cylinder length="0.032" radius="0.041"/>
</geometry> </geometry>
</collision> </collision>
<inertial>
<mass value="0"/>
<origin rpy="0 0 0" xyz="0 0 0"/>
<inertia ixx="0" ixy="0" ixz="0" iyy="0" iyz="0" izz="0"/>
</inertial>
</link> </link>
<joint name="RR_thigh_joint" type="revolute"> <joint name="RR_thigh_joint" type="revolute">
<origin rpy="0 0 0" xyz="0 -0.0838 0"/> <origin rpy="0 0 0" xyz="0 -0.0838 0"/>
...@@ -495,6 +510,11 @@ ...@@ -495,6 +510,11 @@
<cylinder length="0.032" radius="0.041"/> <cylinder length="0.032" radius="0.041"/>
</geometry> </geometry>
</collision> </collision>
<inertial>
<mass value="0"/>
<origin rpy="0 0 0" xyz="0 0 0"/>
<inertia ixx="0" ixy="0" ixz="0" iyy="0" iyz="0" izz="0"/>
</inertial>
</link> </link>
<joint name="RL_thigh_joint" type="revolute"> <joint name="RL_thigh_joint" type="revolute">
<origin rpy="0 0 0" xyz="0 0.0838 0"/> <origin rpy="0 0 0" xyz="0 0.0838 0"/>
......
...@@ -93,7 +93,7 @@ class RobotTestCase(unittest.TestCase): ...@@ -93,7 +93,7 @@ class RobotTestCase(unittest.TestCase):
self.check('solo12', 19, 18) self.check('solo12', 19, 18)
def test_finger_edu(self): def test_finger_edu(self):
self.check('finger_edu', 3, 3) self.check('finger_edu', 3, 3, one_kg_bodies=['finger_base_link'])
def test_talos(self): def test_talos(self):
self.check('talos', 39, 38) self.check('talos', 39, 38)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment