-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
303 additions
and
0 deletions.
There are no files selected for viewing
303 changes: 303 additions & 0 deletions
303
crane_x7_examples_py/crane_x7_examples_py/pick_and_place.py
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,303 @@ | ||
# Copyright 2020 RT Corporation | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
import math | ||
|
||
import rclpy | ||
from geometry_msgs.msg import PoseStamped | ||
from moveit_msgs.msg import Constraints, JointConstraint | ||
|
||
# generic ros libraries | ||
from rclpy.logging import get_logger | ||
|
||
# moveit python library | ||
from moveit.core.robot_state import RobotState | ||
from moveit.planning import ( | ||
MoveItPy, | ||
PlanRequestParameters, | ||
) | ||
|
||
from crane_x7_examples_py.utils import plan_and_execute, euler_to_quaternion | ||
|
||
|
||
def main(args=None): | ||
# ros2の初期化 | ||
rclpy.init(args=args) | ||
|
||
# ロガー生成 | ||
logger = get_logger("pick_and_place") | ||
|
||
# MoveItPy初期化 | ||
crane_x7 = MoveItPy(node_name="moveit_py") | ||
crane_x7_arm = crane_x7.get_planning_component("arm") | ||
crane_x7_gripper = crane_x7.get_planning_component("gripper") | ||
logger.info("MoveItPy instance created") | ||
|
||
# instantiate a RobotState instance using the current robot model | ||
robot_model = crane_x7.get_robot_model() | ||
robot_state = RobotState(robot_model) | ||
|
||
# planningのパラメータ設定 | ||
# armのパラメータ設定用 | ||
arm_plan_request_params = PlanRequestParameters( | ||
crane_x7, | ||
"ompl_rrtc", | ||
) | ||
arm_plan_request_params.max_acceleration_scaling_factor \ | ||
= 1.0 # Set 0.0 ~ 1.0 | ||
arm_plan_request_params.max_velocity_scaling_factor \ | ||
= 1.0 # Set 0.0 ~ 1.0 | ||
|
||
# gripperのパラメータ設定用 | ||
gripper_plan_request_params = PlanRequestParameters( | ||
crane_x7, | ||
"ompl_rrtc", | ||
) | ||
gripper_plan_request_params.max_acceleration_scaling_factor \ | ||
= 1.0 # Set 0.0 ~ 1.0 | ||
gripper_plan_request_params.max_velocity_scaling_factor \ | ||
= 1.0 # Set 0.0 ~ 1.0 | ||
|
||
# gripperの開閉角度 | ||
GRIPPER_DEFAULT = 0.0 | ||
GRIPPER_OPEN = math.radians(60.0) | ||
GRIPPER_CLOSE = math.radians(20.0) | ||
|
||
# SRDFに定義されている"home"の姿勢にする | ||
crane_x7_arm.set_start_state_to_current_state() | ||
crane_x7_arm.set_goal_state(configuration_name="home") | ||
plan_and_execute( | ||
crane_x7, | ||
crane_x7_arm, | ||
logger, | ||
single_plan_parameters=arm_plan_request_params, | ||
) | ||
|
||
# 何かを掴んでいた時のためにハンドを開く | ||
robot_state.set_joint_group_positions("gripper", [GRIPPER_OPEN]) | ||
crane_x7_gripper.set_start_state_to_current_state() | ||
crane_x7_gripper.set_goal_state(robot_state=robot_state) | ||
plan_and_execute( | ||
crane_x7, | ||
crane_x7_gripper, | ||
logger, | ||
single_plan_parameters=gripper_plan_request_params, | ||
) | ||
|
||
# 可動範囲を制限する | ||
constraints = Constraints() | ||
constraints.name = "arm_constraints" | ||
|
||
joint_constraint = JointConstraint() | ||
joint_constraint.joint_name = "crane_x7_lower_arm_fixed_part_joint" | ||
joint_constraint.position = 0.0 | ||
joint_constraint.tolerance_above = math.radians(30) | ||
joint_constraint.tolerance_below = math.radians(30) | ||
joint_constraint.weight = 1.0 | ||
constraints.joint_constraints.append(joint_constraint) | ||
|
||
# 掴む準備をする | ||
target_pose = PoseStamped() | ||
target_pose.header.frame_id = "crane_x7_base" | ||
|
||
target_pose.pose.position.x = 0.2 | ||
target_pose.pose.position.y = 0.0 | ||
target_pose.pose.position.z = 0.3 | ||
q = euler_to_quaternion(math.radians(180), math.radians(0), | ||
math.radians(-90)) | ||
target_pose.pose.orientation.x = q[0] | ||
target_pose.pose.orientation.y = q[1] | ||
target_pose.pose.orientation.z = q[2] | ||
target_pose.pose.orientation.w = q[3] | ||
|
||
crane_x7_arm.set_start_state_to_current_state() | ||
crane_x7_arm.set_goal_state( | ||
pose_stamped_msg=target_pose, pose_link="crane_x7_wrist_link", | ||
motion_plan_constraints=[joint_constraint] | ||
) | ||
plan_and_execute( | ||
crane_x7, | ||
crane_x7_arm, | ||
logger, | ||
single_plan_parameters=arm_plan_request_params, | ||
) | ||
|
||
# 掴みに行く | ||
target_pose.pose.position.x = 0.2 | ||
target_pose.pose.position.y = 0.0 | ||
target_pose.pose.position.z = 0.13 | ||
q = euler_to_quaternion(math.radians(180), math.radians(0), | ||
math.radians(-90)) | ||
target_pose.pose.orientation.x = q[0] | ||
target_pose.pose.orientation.y = q[1] | ||
target_pose.pose.orientation.z = q[2] | ||
target_pose.pose.orientation.w = q[3] | ||
|
||
crane_x7_arm.set_start_state_to_current_state() | ||
crane_x7_arm.set_goal_state( | ||
pose_stamped_msg=target_pose, pose_link="crane_x7_wrist_link", | ||
motion_plan_constraints=[joint_constraint] | ||
) | ||
plan_and_execute( | ||
crane_x7, | ||
crane_x7_arm, | ||
logger, | ||
single_plan_parameters=arm_plan_request_params, | ||
) | ||
|
||
# ハンドを閉じる | ||
robot_state.set_joint_group_positions("gripper", [GRIPPER_CLOSE]) | ||
crane_x7_gripper.set_start_state_to_current_state() | ||
crane_x7_gripper.set_goal_state(robot_state=robot_state) | ||
plan_and_execute( | ||
crane_x7, | ||
crane_x7_gripper, | ||
logger, | ||
single_plan_parameters=gripper_plan_request_params, | ||
) | ||
|
||
# 持ち上げる | ||
target_pose.pose.position.x = 0.2 | ||
target_pose.pose.position.y = 0.0 | ||
target_pose.pose.position.z = 0.3 | ||
q = euler_to_quaternion(math.radians(180), math.radians(0), | ||
math.radians(-90)) | ||
target_pose.pose.orientation.x = q[0] | ||
target_pose.pose.orientation.y = q[1] | ||
target_pose.pose.orientation.z = q[2] | ||
target_pose.pose.orientation.w = q[3] | ||
|
||
crane_x7_arm.set_start_state_to_current_state() | ||
crane_x7_arm.set_goal_state( | ||
pose_stamped_msg=target_pose, pose_link="crane_x7_wrist_link", | ||
motion_plan_constraints=[joint_constraint] | ||
) | ||
plan_and_execute( | ||
crane_x7, | ||
crane_x7_arm, | ||
logger, | ||
single_plan_parameters=arm_plan_request_params, | ||
) | ||
|
||
# 移動する | ||
target_pose.pose.position.x = 0.2 | ||
target_pose.pose.position.y = 0.2 | ||
target_pose.pose.position.z = 0.3 | ||
q = euler_to_quaternion(math.radians(180), math.radians(0), | ||
math.radians(-90)) | ||
target_pose.pose.orientation.x = q[0] | ||
target_pose.pose.orientation.y = q[1] | ||
target_pose.pose.orientation.z = q[2] | ||
target_pose.pose.orientation.w = q[3] | ||
|
||
crane_x7_arm.set_start_state_to_current_state() | ||
crane_x7_arm.set_goal_state( | ||
pose_stamped_msg=target_pose, pose_link="crane_x7_wrist_link", | ||
motion_plan_constraints=[joint_constraint] | ||
) | ||
plan_and_execute( | ||
crane_x7, | ||
crane_x7_arm, | ||
logger, | ||
single_plan_parameters=arm_plan_request_params, | ||
) | ||
|
||
# 下ろす | ||
target_pose.pose.position.x = 0.2 | ||
target_pose.pose.position.y = 0.2 | ||
target_pose.pose.position.z = 0.13 | ||
q = euler_to_quaternion(math.radians(180), math.radians(0), | ||
math.radians(-90)) | ||
target_pose.pose.orientation.x = q[0] | ||
target_pose.pose.orientation.y = q[1] | ||
target_pose.pose.orientation.z = q[2] | ||
target_pose.pose.orientation.w = q[3] | ||
|
||
crane_x7_arm.set_start_state_to_current_state() | ||
crane_x7_arm.set_goal_state( | ||
pose_stamped_msg=target_pose, pose_link="crane_x7_wrist_link", | ||
motion_plan_constraints=[joint_constraint] | ||
) | ||
plan_and_execute( | ||
crane_x7, | ||
crane_x7_arm, | ||
logger, | ||
single_plan_parameters=arm_plan_request_params, | ||
) | ||
# ハンドを開く | ||
robot_state.set_joint_group_positions("gripper", [GRIPPER_OPEN]) | ||
crane_x7_gripper.set_start_state_to_current_state() | ||
crane_x7_gripper.set_goal_state(robot_state=robot_state) | ||
plan_and_execute( | ||
crane_x7, | ||
crane_x7_gripper, | ||
logger, | ||
single_plan_parameters=gripper_plan_request_params, | ||
) | ||
|
||
# 少しだけハンドを持ち上げる | ||
target_pose.pose.position.x = 0.2 | ||
target_pose.pose.position.y = 0.2 | ||
target_pose.pose.position.z = 0.2 | ||
q = euler_to_quaternion(math.radians(180), math.radians(0), | ||
math.radians(-90)) | ||
target_pose.pose.orientation.x = q[0] | ||
target_pose.pose.orientation.y = q[1] | ||
target_pose.pose.orientation.z = q[2] | ||
target_pose.pose.orientation.w = q[3] | ||
|
||
crane_x7_arm.set_start_state_to_current_state() | ||
crane_x7_arm.set_goal_state( | ||
pose_stamped_msg=target_pose, pose_link="crane_x7_wrist_link", | ||
motion_plan_constraints=[joint_constraint] | ||
) | ||
plan_and_execute( | ||
crane_x7, | ||
crane_x7_arm, | ||
logger, | ||
single_plan_parameters=arm_plan_request_params, | ||
) | ||
|
||
# 可動範囲の制限を解除 | ||
# SRDFに定義されている"home"の姿勢にする | ||
crane_x7_arm.set_start_state_to_current_state() | ||
crane_x7_arm.set_goal_state(configuration_name="home", | ||
motion_plan_constraints=[]) | ||
plan_and_execute( | ||
crane_x7, | ||
crane_x7_arm, | ||
logger, | ||
single_plan_parameters=arm_plan_request_params, | ||
) | ||
|
||
# ハンドを閉じる | ||
robot_state.set_joint_group_positions("gripper", [GRIPPER_DEFAULT]) | ||
crane_x7_gripper.set_start_state_to_current_state() | ||
crane_x7_gripper.set_goal_state(robot_state=robot_state) | ||
plan_and_execute( | ||
crane_x7, | ||
crane_x7_gripper, | ||
logger, | ||
single_plan_parameters=gripper_plan_request_params, | ||
) | ||
|
||
# MoveItPyの終了 | ||
crane_x7.shutdown() | ||
|
||
# rclpyの終了 | ||
rclpy.shutdown() | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |