forked from AndrejOrsula/pymoveit2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex_orientation_path_constraint.py
executable file
·147 lines (129 loc) · 4.33 KB
/
ex_orientation_path_constraint.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
#!/usr/bin/env python3
"""
Example of moving to a joint configuration with orientation path constraints.
- ros2 run pymoveit2 ex_orientation_path_constraints.py --ros-args -p use_orientation_constraint:=True
- ros2 run pymoveit2 ex_orientation_path_constraints.py --ros-args -p use_orientation_constraint:=False
"""
from threading import Thread
import rclpy
from rclpy.callback_groups import ReentrantCallbackGroup
from rclpy.node import Node
from pymoveit2 import MoveIt2, MoveIt2State
from pymoveit2.robots import panda
def main():
rclpy.init()
# Create node for this example
node = Node("ex_orientation_path_constraints")
# Declare parameter for joint positions
node.declare_parameter(
"initial_joint_positions",
[1.57, -1.57, 0.0, -1.57, 0.0, 1.57, 0.7854],
)
node.declare_parameter(
"goal_joint_positions",
[
1.1967347888074664,
-1.3973650345565432,
0.1342628652196778,
-2.508581053909259,
-2.412084037045761,
0.5267181456160516,
1.3027041597804059,
],
)
node.declare_parameter("use_orientation_constraint", True)
node.declare_parameter(
"orientation_constraint_quaternion",
[
0.5,
-0.5,
0.5,
0.5,
],
)
node.declare_parameter(
"orientation_constraint_tolerance",
[
3.14159,
0.5,
0.5,
],
)
node.declare_parameter("orientation_constraint_parameterization", 1)
# Create callback group that allows execution of callbacks in parallel without restrictions
callback_group = ReentrantCallbackGroup()
# Create MoveIt 2 interface
moveit2 = MoveIt2(
node=node,
joint_names=panda.joint_names(),
base_link_name=panda.base_link_name(),
end_effector_name=panda.end_effector_name(),
group_name=panda.MOVE_GROUP_ARM,
callback_group=callback_group,
)
# Spin the node in background thread(s) and wait a bit for initialization
executor = rclpy.executors.MultiThreadedExecutor(2)
executor.add_node(node)
executor_thread = Thread(target=executor.spin, daemon=True, args=())
executor_thread.start()
node.create_rate(1.0).sleep()
# Scale down velocity and acceleration of joints (percentage of maximum)
moveit2.max_velocity = 0.5
moveit2.max_acceleration = 0.5
# Get parameters
initial_joint_positions = (
node.get_parameter("initial_joint_positions")
.get_parameter_value()
.double_array_value
)
goal_joint_positions = (
node.get_parameter("goal_joint_positions")
.get_parameter_value()
.double_array_value
)
use_orientation_constraint = (
node.get_parameter("use_orientation_constraint")
.get_parameter_value()
.bool_value
)
orientation_constraint_quaternion = (
node.get_parameter("orientation_constraint_quaternion")
.get_parameter_value()
.double_array_value
)
orientation_constraint_tolerance = (
node.get_parameter("orientation_constraint_tolerance")
.get_parameter_value()
.double_array_value
)
orientation_constraint_parameterization = (
node.get_parameter("orientation_constraint_parameterization")
.get_parameter_value()
.integer_value
)
# Move to initial joint configuration
node.get_logger().info(
f"Moving to {{joint_positions: {list(initial_joint_positions)}}}"
)
moveit2.move_to_configuration(initial_joint_positions)
moveit2.wait_until_executed()
# Set orientation path constraint
if use_orientation_constraint:
node.get_logger().info(f"Setting orientation path constraint")
moveit2.set_path_orientation_constraint(
quat_xyzw=orientation_constraint_quaternion,
tolerance=orientation_constraint_tolerance,
parameterization=orientation_constraint_parameterization,
)
# Move to goal joint configuration
node.get_logger().info(
f"Moving to {{joint_positions: {list(goal_joint_positions)}}}"
)
moveit2.move_to_configuration(goal_joint_positions)
moveit2.wait_until_executed()
# Shutdown
rclpy.shutdown()
executor_thread.join()
exit(0)
if __name__ == "__main__":
main()