-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added separate foot joints and updated lower limb vis and coll models
- Loading branch information
Showing
11 changed files
with
88 additions
and
16 deletions.
There are no files selected for viewing
14 changes: 13 additions & 1 deletion
14
src/meldog_description/description/links/foot/LFF_link.urdf.xacro
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,18 @@ | ||
<?xml version="1.0"?> | ||
<robot xmlns:xacro="http://www.ros.org/wiki/xacro"> | ||
|
||
<link name="LFF_link" /> | ||
<xacro:link_macro | ||
name="LFF_link" | ||
vis_name="${foot_vis_stl_name}" | ||
coll_name="${foot_coll_stl_name}" | ||
|
||
m="${foot_mass}" | ||
cm_x="${foot_cm_x}" | ||
cm_y="${foot_cm_y}" | ||
cm_z="${foot_cm_z}" | ||
|
||
ixx="${foot_ixx}" ixy="${foot_ixy}" ixz="${foot_ixz}" | ||
iyy="${foot_iyy}" iyz="${foot_iyz}" | ||
izz="${foot_izz}"/> | ||
|
||
</robot> |
14 changes: 13 additions & 1 deletion
14
src/meldog_description/description/links/foot/LRF_link.urdf.xacro
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,18 @@ | ||
<?xml version="1.0"?> | ||
<robot xmlns:xacro="http://www.ros.org/wiki/xacro"> | ||
|
||
<link name="LRF_link" /> | ||
<xacro:link_macro | ||
name="LRF_link" | ||
vis_name="${foot_vis_stl_name}" | ||
coll_name="${foot_coll_stl_name}" | ||
|
||
m="${foot_mass}" | ||
cm_x="${-foot_cm_x}" | ||
cm_y="${foot_cm_y}" | ||
cm_z="${foot_cm_z}" | ||
|
||
ixx="${foot_ixx}" ixy="${-foot_ixy}" ixz="${-foot_ixz}" | ||
iyy="${foot_iyy}" iyz="${foot_iyz}" | ||
izz="${foot_izz}"/> | ||
|
||
</robot> |
15 changes: 14 additions & 1 deletion
15
src/meldog_description/description/links/foot/RFF_link.urdf.xacro
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,19 @@ | ||
<?xml version="1.0"?> | ||
<robot xmlns:xacro="http://www.ros.org/wiki/xacro"> | ||
|
||
<link name="RFF_link" /> | ||
<xacro:link_macro | ||
name="RFF_link" | ||
vis_name="${foot_vis_stl_name}" | ||
coll_name="${foot_coll_stl_name}" | ||
|
||
m="${foot_mass}" | ||
cm_x="${foot_cm_x}" | ||
cm_y="${-foot_cm_y}" | ||
cm_z="${foot_cm_z}" | ||
|
||
ixx="${foot_ixx}" ixy="${-foot_ixy}" ixz="${foot_ixz}" | ||
iyy="${foot_iyy}" iyz="${-foot_iyz}" | ||
izz="${foot_izz}"/> | ||
|
||
|
||
</robot> |
13 changes: 12 additions & 1 deletion
13
src/meldog_description/description/links/foot/RRF_link.urdf.xacro
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,17 @@ | ||
<?xml version="1.0"?> | ||
<robot xmlns:xacro="http://www.ros.org/wiki/xacro"> | ||
|
||
<link name="RRF_link" /> | ||
<xacro:link_macro | ||
name="RRF_link" | ||
vis_name="${foot_vis_stl_name}" | ||
coll_name="${foot_coll_stl_name}" | ||
|
||
m="${foot_mass}" | ||
cm_x="${-foot_cm_x}" | ||
cm_y="${-foot_cm_y}" | ||
cm_z="${foot_cm_z}" | ||
|
||
ixx="${foot_ixx}" ixy="${foot_ixy}" ixz="${-foot_ixz}" | ||
iyy="${foot_iyy}" iyz="${-foot_iyz}" | ||
izz="${foot_izz}"/> | ||
</robot> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
src/meldog_description/description/links/properties/F_properties.urdf.xacro
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,28 @@ | ||
<?xml version="1.0"?> | ||
<robot xmlns:xacro="http://www.ros.org/wiki/xacro"> | ||
|
||
<!-- meshes --> | ||
<xacro:property name="foot_vis_stl_name" value="foot_vis.stl" /> | ||
<xacro:property name="foot_coll_stl_name" value="foot_collision.stl" /> | ||
|
||
<!-- inertial properties --> | ||
|
||
<!-- mass --> | ||
<xacro:property name="foot_mass" value="0.037"/> | ||
|
||
<!-- center of mass --> | ||
<xacro:property name="foot_cm_x" value="0.0"/> | ||
<xacro:property name="foot_cm_y" value="0.0"/> | ||
<xacro:property name="foot_cm_z" value="-8.417"/> | ||
|
||
<!-- tensor of inertia --> | ||
<xacro:property name="foot_ixx" value="14.919"/> | ||
<xacro:property name="foot_ixy" value="0.0"/> | ||
<xacro:property name="foot_ixz" value="0.0"/> | ||
|
||
<xacro:property name="foot_iyy" value="25.291"/> | ||
<xacro:property name="foot_iyz" value="0.0"/> | ||
|
||
<xacro:property name="foot_izz" value="23.390"/> | ||
|
||
</robot> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file modified
BIN
-42 KB
(14%)
src/meldog_description/meshes/collision/lower_limb_collision.stl
Binary file not shown.
Binary file not shown.
Binary file not shown.