-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathgazebo_test_open_manipulator.py
executable file
·150 lines (129 loc) · 5.12 KB
/
gazebo_test_open_manipulator.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
148
149
150
#!/usr/bin/env python
from math import cos, pi, sin
import numpy as np
import rospy
from config.envs.open_manipulator import config as cfg
from envs.open_manipulator import OpenManipulatorReacherEnv
from geometry_msgs.msg import Pose, Quaternion
from open_manipulator_msgs.msg import JointPosition, KinematicsPose
from open_manipulator_msgs.srv import SetJointPosition, SetKinematicsPose
overhead_orientation = Quaternion(
x=-0.00142460053167, y=0.999994209902, z=-0.00177030764765, w=0.00253311793936
)
def test_reset():
env = OpenManipulatorReacherEnv(cfg)
_ = env.reset()
def test_forward():
env = OpenManipulatorReacherEnv(cfg)
_ = env.reset()
_pose = Pose()
_pose.position.x = 0.4
_pose.position.y = 0.0
_pose.position.z = 0.1
_pose.orientation.x = 0.0
_pose.orientation.y = 0.0
_pose.orientation.z = 0.0
_pose.orientation.w = 1.0
forward_pose = KinematicsPose()
forward_pose.pose = _pose
forward_pose.max_accelerations_scaling_factor = 0.0
forward_pose.max_velocity_scaling_factor = 0.0
forward_pose.tolerance = 0.0
try:
task_space_srv = rospy.ServiceProxy(
"/open_manipulator/goal_task_space_path", SetKinematicsPose
)
_ = task_space_srv("arm", "gripper", forward_pose, 2.0)
except rospy.ServiceException as e:
rospy.loginfo("Path planning service call failed: {0}".format(e))
def test_rotate():
_qpose = JointPosition()
_qpose.joint_name = ["joint1", "joint2", "joint3", "joint4"]
_qpose.position = [0.5, 0.0, 0.0, 0.5]
_qpose.max_accelerations_scaling_factor = 0.0
_qpose.max_velocity_scaling_factor = 0.0
try:
task_space_srv = rospy.ServiceProxy(
"/open_manipulator/goal_joint_space_path_from_present", SetJointPosition
)
_ = task_space_srv("arm", _qpose, 2.0)
except rospy.ServiceException, e:
rospy.loginfo("Path planning service call failed: {0}".format(e))
_qpose.position[0] += -1.0
_qpose.position[3] += -1.0
try:
_ = task_space_srv("arm", _qpose, 2.0)
except rospy.ServiceException, e:
rospy.loginfo("Path planning service call failed: {0}".format(e))
def test_block_loc():
env = OpenManipulatorReacherEnv(cfg)
for iter in range(20):
b_pose = Pose()
b_pose.position.x = np.random.uniform(0.15, 0.20)
b_pose.position.y = np.random.uniform(-0.2, 0.2)
b_pose.position.z = 0.00
b_pose.orientation = overhead_orientation
env.ros_interface.set_target_block()
rospy.sleep(2.0)
env.ros_interface.delete_target_block()
def test_achieve_goal():
env = OpenManipulatorReacherEnv(cfg)
for iter in range(20):
block_pose = Pose()
block_pose.position.x = np.random.uniform(0.25, 0.6)
block_pose.position.y = np.random.uniform(-0.4, 0.4)
block_pose.position.z = 0.00
block_pose.orientation = overhead_orientation
env.ros_interface.set_target_block(block_pose)
r_pose = Pose()
r_pose.position = block_pose.position
r_pose.position.z = 0.08
forward_pose = KinematicsPose()
forward_pose.pose = r_pose
forward_pose.max_accelerations_scaling_factor = 0.0
forward_pose.max_velocity_scaling_factor = 0.0
forward_pose.tolerance = 0.0
try:
task_space_srv = rospy.ServiceProxy(
"/open_manipulator/goal_task_space_path", SetKinematicsPose
)
_ = task_space_srv("arm", "gripper", forward_pose, 2.0)
except rospy.ServiceException, e:
rospy.loginfo("Path planning service call failed: {0}".format(e))
rospy.sleep(5.0)
env.ros_interface.delete_target_block()
def test_workspace_limit():
env = OpenManipulatorReacherEnv(cfg)
for iter in range(100):
_polar_rad = np.random.uniform(0.134, 0.32)
_polar_theta = np.random.uniform(-pi * 0.7 / 4, pi * 0.7 / 4)
block_pose = Pose()
block_pose.position.x = _polar_rad * cos(_polar_theta)
block_pose.position.y = _polar_rad * sin(_polar_theta)
block_pose.position.z = np.random.uniform(0.05, 0.28)
block_pose.orientation = overhead_orientation
env.ros_interface.set_target_block(block_pose)
r_pose = Pose()
r_pose.position = block_pose.position
forward_pose = KinematicsPose()
forward_pose.pose = r_pose
forward_pose.max_accelerations_scaling_factor = 0.0
forward_pose.max_velocity_scaling_factor = 0.0
forward_pose.tolerance = 0.0
try:
task_space_srv = rospy.ServiceProxy(
"/open_manipulator/goal_task_space_path", SetKinematicsPose
)
_ = task_space_srv("arm", "gripper", forward_pose, 3.0)
except rospy.ServiceException, e:
rospy.loginfo("Path planning service call failed: {0}".format(e))
rospy.sleep(3.0)
env.ros_interface.check_for_termination()
env.ros_interface.delete_target_block()
if __name__ == "__main__":
# test_reset()
# test_forward()
# test_rotate()
# test_block_loc()
# test_achieve_goal()
test_workspace_limit()