forked from kscalelabs/sim
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* higher velocity works with tgs engine * h1 loading into env * import fixes * restored joints.py * robot_fixed is correct now * fixing merge * lint * more lint * more lint * cleanup h1 artifacts --------- Co-authored-by: budzianowski <[email protected]>
- Loading branch information
1 parent
bfd414d
commit fe5e46b
Showing
16 changed files
with
2,805 additions
and
1 deletion.
There are no files selected for viewing
Empty file.
Empty file.
Empty file.
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,176 @@ | ||
"""Defines a more Pythonic interface for specifying the joint names. | ||
The best way to re-generate this snippet for a new robot is to use the | ||
`sim/scripts/print_joints.py` script. This script will print out a hierarchical | ||
tree of the various joint names in the robot. | ||
""" | ||
|
||
import textwrap | ||
from abc import ABC | ||
from typing import Dict, List, Tuple, Union | ||
|
||
|
||
class Node(ABC): | ||
@classmethod | ||
def children(cls) -> List["Union[Node, str]"]: | ||
return [ | ||
attr | ||
for attr in (getattr(cls, attr) for attr in dir(cls) if not attr.startswith("__")) | ||
if isinstance(attr, (Node, str)) | ||
] | ||
|
||
@classmethod | ||
def joints(cls) -> List[str]: | ||
return [ | ||
attr | ||
for attr in (getattr(cls, attr) for attr in dir(cls) if not attr.startswith("__")) | ||
if isinstance(attr, str) | ||
] | ||
|
||
@classmethod | ||
def joints_motors(cls) -> List[Tuple[str, str]]: | ||
joint_names: List[Tuple[str, str]] = [] | ||
for attr in dir(cls): | ||
if not attr.startswith("__"): | ||
attr2 = getattr(cls, attr) | ||
if isinstance(attr2, str): | ||
joint_names.append((attr, attr2)) | ||
|
||
return joint_names | ||
|
||
@classmethod | ||
def all_joints(cls) -> List[str]: | ||
leaves = cls.joints() | ||
for child in cls.children(): | ||
if isinstance(child, Node): | ||
leaves.extend(child.all_joints()) | ||
return leaves | ||
|
||
def __str__(self) -> str: | ||
parts = [str(child) for child in self.children()] | ||
parts_str = textwrap.indent("\n" + "\n".join(parts), " ") | ||
return f"[{self.__class__.__name__}]{parts_str}" | ||
|
||
|
||
class Torso(Node): | ||
roll = "torso_joint" | ||
|
||
|
||
class LeftArm(Node): | ||
shoulder_yaw = "left_shoulder_yaw_joint" | ||
shoulder_pitch = "left_shoulder_pitch_joint" | ||
shoulder_roll = "left_shoulder_roll_joint" | ||
elbow_pitch = "left_elbow_pitch_joint" | ||
|
||
|
||
class RightArm(Node): | ||
shoulder_yaw = "right_shoulder_yaw_joint" | ||
shoulder_pitch = "right_shoulder_pitch_joint" | ||
shoulder_roll = "right_shoulder_roll_joint" | ||
elbow_pitch = "right_elbow_pitch_joint" | ||
|
||
|
||
class LeftLeg(Node): | ||
hip_roll = "left_hip_roll_joint" | ||
hip_yaw = "left_hip_yaw_joint" | ||
hip_pitch = "left_hip_pitch_joint" | ||
knee_pitch = "left_knee_joint" | ||
ankle_pitch = "left_ankle_pitch_joint" | ||
ankle_roll = "left_ankle_roll_joint" | ||
|
||
|
||
class RightLeg(Node): | ||
hip_roll = "right_hip_roll_joint" | ||
hip_yaw = "right_hip_yaw_joint" | ||
hip_pitch = "right_hip_pitch_joint" | ||
knee_pitch = "right_knee_joint" | ||
ankle_pitch = "right_ankle_pitch_joint" | ||
ankle_roll = "right_ankle_roll_joint" | ||
|
||
|
||
class Legs(Node): | ||
left = LeftLeg() | ||
right = RightLeg() | ||
|
||
|
||
class Stompy(Node): | ||
torso = Torso() | ||
left_arm = LeftArm() | ||
right_arm = RightArm() | ||
legs = Legs() | ||
|
||
@classmethod | ||
def default_standing(cls) -> Dict[str, float]: | ||
return { # = target angles [rad] when action = 0.0 | ||
# left leg | ||
Stompy.legs.left.hip_yaw: 0, | ||
Stompy.legs.left.hip_roll: 0, | ||
Stompy.legs.left.hip_pitch: -0.6, | ||
Stompy.legs.left.knee_pitch: 1.2, | ||
Stompy.legs.left.ankle_pitch: -0.6, | ||
Stompy.legs.left.ankle_roll: 0.0, | ||
# right leg | ||
Stompy.legs.right.hip_yaw: 0, | ||
Stompy.legs.right.hip_roll: 0, | ||
Stompy.legs.right.hip_pitch: -0.6, | ||
Stompy.legs.right.knee_pitch: 1.2, | ||
Stompy.legs.right.ankle_pitch: -0.6, | ||
Stompy.legs.right.ankle_roll: 0.0, | ||
# torso | ||
Stompy.torso.roll: 0, | ||
# left arm | ||
Stompy.left_arm.shoulder_pitch: 0.4, | ||
Stompy.left_arm.shoulder_roll: 0, | ||
Stompy.left_arm.shoulder_yaw: 0, | ||
Stompy.left_arm.elbow_pitch: 0.3, | ||
# right arm | ||
Stompy.right_arm.shoulder_pitch: 0.4, | ||
Stompy.right_arm.shoulder_roll: 0, | ||
Stompy.right_arm.shoulder_yaw: 0, | ||
Stompy.right_arm.elbow_pitch: 0.3, | ||
} | ||
|
||
# p_gains | ||
@classmethod | ||
def stiffness(cls) -> Dict[str, float]: | ||
return { | ||
"hip_pitch": 200, | ||
"hip_yaw": 200, | ||
"hip_roll": 200, | ||
"knee_joint": 300, | ||
"ankle_pitch": 40, | ||
"ankle_roll": 40, | ||
"shoulder_pitch": 80, | ||
"shoulder_yaw": 40, | ||
"shoulder_roll": 80, | ||
"elbow_pitch": 60, | ||
"torso_joint": 600, | ||
} | ||
|
||
# d_gains | ||
@classmethod | ||
def damping(cls) -> Dict[str, float]: | ||
return { | ||
"hip_pitch": 5, | ||
"hip_yaw": 5, | ||
"hip_roll": 5, | ||
"knee_joint": 7.5, | ||
"ankle_pitch": 1, | ||
"ankle_roll": 0.3, | ||
"shoulder_pitch": 2, | ||
"shoulder_yaw": 1, | ||
"shoulder_roll": 2, | ||
"elbow_pitch": 1, | ||
"torso_joint": 15, | ||
} | ||
|
||
|
||
def print_joints() -> None: | ||
joints = Stompy.all_joints() | ||
assert len(joints) == len(set(joints)), "Duplicate joint names found!" | ||
print(Stompy()) | ||
|
||
|
||
if __name__ == "__main__": | ||
# python -m sim.stompy.joints | ||
print_joints() |
Oops, something went wrong.