Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inverted Pendulum Actuated by Tendons #2950

Merged
merged 4 commits into from
Aug 7, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 65 additions & 0 deletions data/Base_1.urdf
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<?xml version="1.0"?>
<!--https://valerolab.org/-->
<!--
Code used for PID control of an inverted pendulum actuated by strings.
-->
<robot name="myfirst">
<material name="blue">
<color rgba="0 0 0.8 1"/>
</material>
<material name="white">
<color rgba="1 1 1 1"/>
</material>
<material name="other">
<color rgba="1 0 0.8 1"/>
</material>
<velocity name="vel">
<speed spd="50"/>
</velocity>


<link name="Base">
<visual>
<geometry>
<box size="0.3 0.3 1.5"/>
</geometry>
<material name="other"/>
</visual>
<collision>
<geometry>
<box size="0.3 0.3 1.5"/>
</geometry>
</collision>
<inertial>
<mass value="100"/>
<origin rpy="0 0 0" xyz="0 0 0"/>
<inertia ixx="0" ixy="0.0" ixz="0.0" iyy="0" iyz="0.0" izz="0"/>
</inertial>
</link>

<link name="pulley1">
<visual>
<geometry>
<cylinder length=".1" radius=".5"/>
</geometry>
<material name="blue"/>
</visual>
<collision>
<geometry>
<cylinder length=".1" radius=".5"/>
</geometry>
</collision>
<inertial>
<mass value="2"/>
<inertia ixx="0" ixy="0.0" ixz="0.0" iyy="0" iyz="0.0" izz="0"/>
</inertial>
</link>
<joint name="Base_pulley1" type="revolute">
<axis xyz="0 0 1"/>
<parent link="Base"/>
<child link="pulley1"/>
<limit effort="0" lower="1" upper="0" velocity="50"/>
<origin rpy="-1.57075 0 0" xyz="0 .35 .15"/>
</joint>
<!---->
</robot>
Loading