-
Notifications
You must be signed in to change notification settings - Fork 10
/
arm_iiwa.py
77 lines (60 loc) · 2.36 KB
/
arm_iiwa.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
from pathlib import Path
import mujoco
import mujoco.viewer
import numpy as np
from loop_rate_limiters import RateLimiter
import mink
_HERE = Path(__file__).parent
_XML = _HERE / "kuka_iiwa_14" / "scene.xml"
if __name__ == "__main__":
model = mujoco.MjModel.from_xml_path(_XML.as_posix())
data = mujoco.MjData(model)
## =================== ##
## Setup IK.
## =================== ##
configuration = mink.Configuration(model)
tasks = [
end_effector_task := mink.FrameTask(
frame_name="attachment_site",
frame_type="site",
position_cost=1.0,
orientation_cost=1.0,
lm_damping=1.0,
),
posture_task := mink.PostureTask(model=model, cost=1e-2),
]
## =================== ##
# IK settings.
solver = "quadprog"
pos_threshold = 1e-4
ori_threshold = 1e-4
max_iters = 20
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)
mujoco.mj_resetDataKeyframe(model, data, model.key("home").id)
configuration.update(data.qpos)
posture_task.set_target_from_configuration(configuration)
mujoco.mj_forward(model, data)
# Initialize the mocap target at the end-effector site.
mink.move_mocap_to_frame(model, data, "target", "attachment_site", "site")
rate = RateLimiter(frequency=500.0, warn=False)
while viewer.is_running():
# Update task target.
T_wt = mink.SE3.from_mocap_name(model, data, "target")
end_effector_task.set_target(T_wt)
# Compute velocity and integrate into the next configuration.
for i in range(max_iters):
vel = mink.solve_ik(configuration, tasks, rate.dt, solver, 1e-3)
configuration.integrate_inplace(vel, rate.dt)
err = end_effector_task.compute_error(configuration)
pos_achieved = np.linalg.norm(err[:3]) <= pos_threshold
ori_achieved = np.linalg.norm(err[3:]) <= ori_threshold
if pos_achieved and ori_achieved:
break
data.ctrl = configuration.q
mujoco.mj_step(model, data)
# Visualize at fixed FPS.
viewer.sync()
rate.sleep()