-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathhumanoid_h1.py
94 lines (76 loc) · 2.99 KB
/
humanoid_h1.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
from pathlib import Path
import mujoco
import mujoco.viewer
from loop_rate_limiters import RateLimiter
import mink
_HERE = Path(__file__).parent
_XML = _HERE / "unitree_h1" / "scene.xml"
if __name__ == "__main__":
model = mujoco.MjModel.from_xml_path(_XML.as_posix())
configuration = mink.Configuration(model)
feet = ["right_foot", "left_foot"]
hands = ["right_wrist", "left_wrist"]
tasks = [
pelvis_orientation_task := mink.FrameTask(
frame_name="pelvis",
frame_type="body",
position_cost=0.0,
orientation_cost=10.0,
),
posture_task := mink.PostureTask(model, cost=1.0),
com_task := mink.ComTask(cost=200.0),
]
feet_tasks = []
for foot in feet:
task = mink.FrameTask(
frame_name=foot,
frame_type="site",
position_cost=200.0,
orientation_cost=10.0,
lm_damping=1.0,
)
feet_tasks.append(task)
tasks.extend(feet_tasks)
hand_tasks = []
for hand in hands:
task = mink.FrameTask(
frame_name=hand,
frame_type="site",
position_cost=200.0,
orientation_cost=0.0,
lm_damping=1.0,
)
hand_tasks.append(task)
tasks.extend(hand_tasks)
com_mid = model.body("com_target").mocapid[0]
feet_mid = [model.body(f"{foot}_target").mocapid[0] for foot in feet]
hands_mid = [model.body(f"{hand}_target").mocapid[0] for hand in hands]
model = configuration.model
data = configuration.data
solver = "quadprog"
with mujoco.viewer.launch_passive(
model=model, data=data, show_left_ui=False, show_right_ui=False
) as viewer:
mujoco.mjv_defaultFreeCamera(model, viewer.cam)
# Initialize to the home keyframe.
configuration.update_from_keyframe("stand")
posture_task.set_target_from_configuration(configuration)
pelvis_orientation_task.set_target_from_configuration(configuration)
# Initialize mocap bodies at their respective sites.
for hand, foot in zip(hands, feet):
mink.move_mocap_to_frame(model, data, f"{foot}_target", foot, "site")
mink.move_mocap_to_frame(model, data, f"{hand}_target", hand, "site")
data.mocap_pos[com_mid] = data.subtree_com[1]
rate = RateLimiter(frequency=200.0, warn=False)
while viewer.is_running():
# Update task targets.
com_task.set_target(data.mocap_pos[com_mid])
for i, (hand_task, foot_task) in enumerate(zip(hand_tasks, feet_tasks)):
foot_task.set_target(mink.SE3.from_mocap_id(data, feet_mid[i]))
hand_task.set_target(mink.SE3.from_mocap_id(data, hands_mid[i]))
vel = mink.solve_ik(configuration, tasks, rate.dt, solver, 1e-1)
configuration.integrate_inplace(vel, rate.dt)
mujoco.mj_camlight(model, data)
# Visualize at fixed FPS.
viewer.sync()
rate.sleep()