URDF model
Hi I'm trying to build a urdf model of 2 legs attached with a joint (biped). the problem i am having is that the piece that attaches the two legs doesn't seem to be attached to them. here is the urdf and here is a picture of the problem
edit1: changed my urdf. now it doesn't jitter but nothing moves when I try controlling the joints in gazebo. i even deleted one foot and the model didn't fall over. any idea what is wrong?
<?xml version="1.0" ?>
<robot xmlns:sensor="http://playerstage.sourceforge.net/gazebo/xmlschema/#sensor"
xmlns:controller="http://playerstage.sourceforge.net/gazebo/xmlschema/#controller"
xmlns:interface="http://playerstage.sourceforge.net/gazebo/xmlschema/#interface"
xmlns:xacro="http://playerstage.sourceforge.net/gazebo/xmlschema/#interface" name=
"bip">
<link name="R_leg">
<inertial>
<mass value="0.001"/>
<origin xyz="0 0 0.5" rpy="0 0 0" />
<inertia ixx="1.00" ixy="0" ixz="0" iyy="1.00" iyz="0" izz="1.00" />
</inertial>
<visual>
<origin xyz="0 0.2 0.5" rpy="0 0 0" />
<geometry>
<cylinder radius="0.02" length="1"/>
</geometry>
</visual>
<collision>
<origin xyz="0 0.2 0.5" rpy="0 0 0"/>
<geometry>
<cylinder radius="0.02" length="1"/>
</geometry>
</collision>
</link>
<link name="L_leg">
<inertial>
<mass value="0.001"/>
<origin xyz="0 0 0.5" rpy="0 0 0" />
<inertia ixx="1.00" ixy="0" ixz="0" iyy="1.00" iyz="0" izz="1.00" />
</inertial>
<visual>
<origin xyz="0 -0.20 0.5" rpy="0 0 0" />
<geometry>
<cylinder radius="0.02" length="1"/>
</geometry>
</visual>
<collision>
<origin xyz="0 -0.20 0.5" rpy="0 0 0"/>
<geometry>
<cylinder radius="0.02" length="1"/>
</geometry>
</collision>
</link>
<link name="C_mass">
<inertial>
<mass value="15.0" />
<origin xyz="0 0.0 0" />
<inertia ixx="0.1" ixy="0.0" ixz="0.0" iyy="10" iyz="0.0" izz="0.1" />
</inertial>
<visual>
<origin xyz="0 0 1" rpy="1.57 0 0" />
<geometry>
<cylinder radius="0.02" length="0.5"/>
</geometry>
</visual>
<collision>
<origin xyz="0 0 1" rpy="1.57 0 0" />
<geometry>
<cylinder radius="0.02" length="0.38"/>
</geometry>
</collision>
</link>
<link name="R_foot">
<inertial>
<mass value="1.0" />
<!-- center of mass (com) is defined w.r.t. link local coordinate system -->
<origin xyz="0 0 0" />
<inertia ixx="1.0" ixy="0.0" ixz="0.0" iyy="1.0" iyz="0.0" izz="1.0" />
</inertial>
<visual>
<origin xyz="0 0.2 0.0005" rpy="0 0 0" />
<geometry>
<box size="0.1 0.1 0.001"/>
</geometry>
</visual>
<collision>
<origin xyz="0 0.2 0.0005" rpy="0 0 0" />
<geometry>
<box size="0.1 0.1 0.001"/>
</geometry>
</collision>
</link>
<link name="L_foot">
<inertial>
<mass value="1.0" />
<!-- center of mass (com) is defined w.r.t. link local coordinate system -->
<origin xyz="0 0 0" />
<inertia ixx="1.0" ixy="0.0" ixz="0.0" iyy="1.0" iyz="0.0" izz="1 ...