No version for distro humble. Known supported distros are highlighted in the buttons above.
No version for distro iron. Known supported distros are highlighted in the buttons above.
No version for distro rolling. Known supported distros are highlighted in the buttons above.

pilz_robot_programming package from pilz_industrial_motion repo

pilz_industrial_motion pilz_robot_programming

Package Summary

Tags No category tags.
Version 0.5.0
License LGPLv3
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/PilzDE/pilz_industrial_motion.git
VCS Type git
VCS Version noetic-devel
Last Updated 2023-11-22
Dev Status END-OF-LIFE
CI status
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

An Easy to use API to execute standard industrial robot commands like Ptp, Lin, Circ and Sequence using Moveit.

Additional Links

No additional links.

Maintainers

  • Immanuel Martini

Authors

No additional authors.

The pilz_robot_programming package provides the user with an easy to use API to move a MoveIt! enabled robot. It\'s target is to execute standard industrial robot commands like :py.Ptp{.interpreted-text role="class"}, :py.Lin{.interpreted-text role="class"} and :py.Circ{.interpreted-text role="class"} using the pilz_industrial_motion_planner::CommandPlanner plugin for MoveIt!. It also provides the user with the possibility to execute command sequences (called :py.Sequence{.interpreted-text role="class"}). On top of that, the robot movement can be paused, resumed and stopped.

All examples are given for a PRBT robot but the API is general enough to be used with any robot that has a MoveIt! configuration, it merely requires the availability of the service /get_speed_override for obtaining the speed override of the robot system.

The robot API has some similarity to the moveit_commander package but differs in its specialization for classical industrial robot commands to be executed by the pilz_industrial_motion_planner MoveIt! plugin. The robot API connects to MoveIt! using the standard move_group action interface and the custom sequence_move_group action, that the sequence capability implements.

See the package pilz_industrial_motion_planner for more details about the parameters for industrial trajectory generation.

A simple demo program

To run the demo program it is first necessary to startup the simulated or the real robot. Afterwards, you can execute the demo program by typing:

$ rosrun pilz_robot_programming demo_program.py

The code demo_program.py

::: {.literalinclude} ../examples/demo_program.py :::

The code explained

In this section parts of the demo program are explained to give a better understanding how the robot API is used.

note

: The chosen code snippets are not necessarily in order.

Robot creation

from pilz_robot_programming import *

At first we import the robot API.

rospy.init_node('robot_program_node')

This code snippet initializes ROS.

r = Robot(__REQUIRED_API_VERSION__)

Here the robot object is created, which, subsequently, is used to move the robot.

The API version argument ensures, that the correct API version is used. This makes sure, that the robot behaves as expected/intended. In case the versions do not match, an exception is thrown.

note

: For the API version check only the major version number is relevant.

note

: In general the speed of all motions depends on the operation mode of the robot system. For more information see prbt_hardware_support.

Move

r.move(Ptp(goal=[0, 0.5, 0.5, 0, 0, 0]))

r.move(Lin(goal=Pose(position=Point(0.2, 0, 0.8))))

r.move(Circ(goal=Pose(position=Point(0.2, 0.2, 0.8)), center=Point(0.3, 0.1, 0.8)))

The :py.move{.interpreted-text role="meth"} function is the most important part of the robot API. With the help of the :py.move{.interpreted-text role="meth"} function the user can execute the different robot motion commands, like shown for :py.Ptp{.interpreted-text role="class"}, :py.Lin{.interpreted-text role="class"} and :py.Circ{.interpreted-text role="class"}.

By default cartesian goals are interpreted as poses of the tool center point (TCP) link. The transformation between the TCP link and the last robot link can be adjusted through the tcp_offset_xyz and tcp_offset_rpy parameters in prbt.xacro.

Move failure

try:
    r.move(Ptp(goal=[0, 10.0, 0, 0, 0, 0]))
except RobotMoveFailed:
    rospy.loginfo("Ptp command did fail as expected.")

In case a robot motion command fails during the execution, the :py.move{.interpreted-text role="meth"} function throws an :py.RobotMoveFailed{.interpreted-text role="class"} exception which can be caught using standard python mechanisms.

The goal: Joint vs. Cartesian space

r.move(Ptp(goal=[0, 0.5, 0.5, 0, 0, 0]))

r.move(Lin(goal=Pose(position=Point(-0.2, -0.2, 0.6), orientation=from_euler(0.1, 0, 0))))

The goal pose for :py.Ptp{.interpreted-text role="class"} and :py.Lin{.interpreted-text role="class"} commands can be stated either in joint space or in Cartesian space.

r.move(Circ(goal=Pose(position=Point(0.2, 0.2, 0.8)), center=Point(0.3, 0.1, 0.8)))

The goal and the auxiliary pose of :py.Circ{.interpreted-text role="class"} commands have to be stated in Cartesian space.

Relative commands

r.move(Ptp(goal=[0.1, 0, 0, 0, 0, 0], relative=True))

r.move(Lin(goal=Pose(position=Point(0, -0.2, -0.2)), relative=True))

:py.Ptp{.interpreted-text role="class"} and :py.Lin{.interpreted-text role="class"} commands can also be stated as relative commands indicated by the argument relative=True. Relative commands state the goal as offset relative to the current robot position. As long as no custom reference frame is set, the offset has to be stated with regard to the base coordinate system. The orientation is added as offset to the euler-angles.

Custom Reference Frame

r.move(Ptp(goal=PoseStamped(header=Header(frame_id="prbt_tcp"),
                            pose=Pose(position=Point(0, 0, 0.1)))))

r.move(Ptp(goal=Pose(position=Point(0, -0.1, 0)), reference_frame="prbt_link_3", relative=True))

For all three move classes :py.Ptp{.interpreted-text role="class"}, :py.Lin{.interpreted-text role="class"} and :py.Circ{.interpreted-text role="class"} you can define a custom reference frame. Passing a PoseStamped with the Header set to any valid tf2 frame_id is supported besides an extra argument reference_frame. The goal passed is interpreted relative to the given coordinate frame instead of the default system prbt_base.

The custom reference frame argument (reference_frame="target_frame") has to be a valid tf frame id and can be paired with the relative command. When paired with relative flag, the goal will be applied to the current robot pose in this custom reference frame.

note

: Further information on tf is available on http://wiki.ros.org/tf (e.g. on how to create custom frames: section 6.3).

More Detailed Explanation

Let\'s assume we have three coordinate systems in our application. (displayed with a green and blue line)

image{width="400px" height="313px"}

  • prbt_base is the default coordinate system. It was used in the previous sections.
  • The prbt_tcp frame is the current position of the gripper.
  • The third frame pallet is supposed to be an edge of an product tray, that we placed somewhere in the robot environment.

We then have three possible frames, we can choose to execute our goal in.

image{width="400px" height="313px"}

In the image above we displayed three move commands. All three commands move the robot to position x = y = 0 and z = 0.2, but use the different frames as reference.

  1. goal=Pose(position=Point(0, 0, 0.2))) or goal=Pose(position=Point(0, 0, 0.2)), reference_frame=\"prbt_base\")
  2. goal=Pose(position=Point(0, 0, 0.2)), reference_frame=\"prbt_tcp\")
  3. goal=Pose(position=Point(0, 0, 0.2)), reference_frame=\"pallet\")

When adding the relative flag additionally, the goal will be added to the current tcp pose using the chosen frame. This results in the tcp moving in different directions depending on which frame we used.

image{width="400px" height="313px"}

In this case we just added the relative flag to the previous goals.

  1. goal=position=Point(0, 0, 0.2)), relative=True)
  2. goal=position=Point(0, 0, 0.2)), reference_frame=\"prbt_tcp\", relative=True)
  3. goal=position=Point(0, 0, 0.2)), reference_frame=\"pallet\", relative=True)

As can be seen above, the relative movement used the z axis of the choosen reference frame, which resulted in different movements of the tcp, except for the tcp frame itself. In the case of the tcp frame, relative and absolut movement is the same.

Example of Usage

To display how and when to use this options we take a look on a small example.

image{width="300px" height="200px"}

This image is supposed to display a series of pick operations on a rigid object. The products are placed on a product tray, thus having a fixed position relative to the pallet reference frame.

To get the robot in a position similar to the robot in this image we could use a move command with a custom reference_frame.

r.move(Ptp(goal=[0.1, -0.05, 0.2, 2.3561, 0, 0], reference_frame="pallet"))

This would result in a scene, that looks somewhat like the image above. (The Rotation around the x axis is necessary to reach the current tcp rotation)

The next commands in the sequence will be:

  1. close in to grab the object
  2. move straight up to lift it
  3. move to the next object

For the first task we can easily use the tcp ref, since its rotation already fits our goal.

r.move(Ptp(goal=position=Point(0, 0, 0.1)), reference_frame="prbt_tcp"))

The second command - lifting the object - is best achieved by using an relative movement to the pallet frame. (We could as well use the global system in this case, but when the tray is tilted, like in the images above it could be problematic to do so.)

r.move(Ptp(goal=position=Point(0, 0, 0.1)), relative= True, reference_frame="pallet"))

For the third move we again should use the relative move in the \"pallet\" reference frame.

r.move(Ptp(goal=position=Point(0, -0.1, 0)), relative= True, reference_frame="pallet"))

In case we want to place the product somewhere else, previous to moving to the next object, we would instead use the absolute command in the pallet reference frame or add new frames for each object on the tray and do all operations for each object relative its frame.

Sequence

# Repeat the previous steps with a sequence command
sequence = Sequence()
sequence.append(Lin(goal=Pose(position=Point(0.2, 0, 0.8)), vel_scale=0.1, acc_scale=0.1))
sequence.append(Circ(goal=Pose(position=Point(0.2, -0.2, 0.8)), center=Point(0.1, -0.1, 0.8), acc_scale=0.4))
sequence.append(Ptp(goal=pose_after_relative, vel_scale=0.2))

r.move(sequence)

To concatenate multiple trajectories and plan the trajectory at once, you can use the :py.Sequence{.interpreted-text role="class"} command.

note

: In case the planning of a command in a :py.Sequence{.interpreted-text role="class"} fails, non of the commands in the :py.Sequence{.interpreted-text role="class"} are executed.

As an optional argument, a blending radius can be given to the :py.Sequence{.interpreted-text role="class"} command. The blending radius states how much the robot trajectory can deviate from the original trajectory (trajectory without blending) to blend the robot motion from one trajectory to the next. Setting the blending radius to zero corresponds to a :py.Sequence{.interpreted-text role="class"} without blending like above. If a blending radius greaten than zero is given, the robot will move from one trajectory to the next without stopping.

# Blend sequence
blend_sequence = Sequence()
blend_sequence.append(Lin(goal=Pose(position=Point(0.2, 0, 0.6))), blend_radius=0.01)
blend_sequence.append(Lin(goal=Pose(position=Point(0.2, 0, 0.7))))

r.move(blend_sequence)

note

: The last command of the sequence has to have zero blending radius which can be achieved by omitting the blend radius argument.

note

: The robot always stops between gripper and non-gripper commands.

note

: Gripper commands cannot be blended together.

Gripper

If the launch file is started with the real robot and the argument gripper:=pg70, the gripper can be opened or closed via:

r.move(Gripper(gripper_pos=0.02))

Set the gripper_pos argument to a distance in meters. Both gripper fingers of the PG+70 gripper move by the same distance so the gripper is twice as open as specified.

You can also append a :py.Gripper{.interpreted-text role="class"} to a :py.Sequence{.interpreted-text role="class"}.

Current TCP pose and current joint values

start_joint_values = r.get_current_joint_states()

pose_after_relative = r.get_current_pose()

The API provides functions which allow the user to determine the current joint values of the robot and the current TCP pose. The return value of both functions can directly be used to create new motion commands:

r.move(Ptp(goal=pose_after_relative, vel_scale=0.2))

r.move(Ptp(goal=start_joint_values))

The function get_current_pose can also return the current pose in respect to another frame. To do this, set the base argument, to the corresponding reference frame.

tcp_pose_in_tf = r.get_current_pose(base="target_frame")

Brake Test

The method :py.is_brake_test_required{.interpreted-text role="meth"} will check whether the robot needs to perform a brake test. So place it in your program somewhere such that it is checked repeatedly. The method :py.execute_brake_test{.interpreted-text role="meth"} executes the brake test and throws an exception, should it fail.

if r.is_brake_test_required():
    try:
        r.execute_brake_test()
    except RobotBrakeTestException as e:
        rospy.logerr(e)
    except rospy.ROSException as e:
        rospy.logerr("failed to call the service")

Move control orders

The user can make service calls in order to control the movement of the robot. A running program can be paused by typing

rosservice call pause_movement

If the robot is currently moving, it is stopped. A paused execution can be resumed via

rosservice call resume_movement

This also resumes the last robot movement from where it stopped. A resume order without preceding pause has no effects. There also exists the possibility to abort the program using

rosservice call stop_movement

Multithreading

When :py.move{.interpreted-text role="meth"} is running in a separate thread, the move control orders can be issued directly via the following methods of the robot object:

r.pause()

r.resume()

r.stop()

In this case :py.stop{.interpreted-text role="meth"} only ends the move-thread.

CHANGELOG

Changelog for package pilz_robot_programming

0.5.0 (2021-05-03)

  • Adapt to changes in MoveThread api
  • Port to ROS Noetic (ubuntu 20.04, python3)
    • Remove pilz_store_positions package
    • Update branching model in README.md
    • Use relative paths for test-data/movecmd.py (colcon support)
    • Misc minor refactorings
  • Fix KeyError on calling release twice
  • Fix blend-radius and misunderstandings in Tests (#341, #330)
  • Fix architecture documentation
  • Use public acceptance-test utility methods
  • Move pilz command planner to moveit
  • Contributors: Pilz GmbH and Co. KG

0.4.12 (2020-11-24)

  • Adapt to generalized test-utils
  • Add missing test-depend on prbt_hardware_support
  • Contributors: Pilz GmbH and Co. KG

0.4.11 (2020-07-16)

  • Add Attribute based equivalence for commands.
  • Add feature to store points.
  • Add PoseStamped and tuple goals.
  • Add get_current_pose_stamped to robot api
  • Replace tf by tf2 in pilz_robot_programming.
  • Rename _BaseCmd -> BaseCmd.
  • Remove outdated add_python_coverage() function.
  • Remove outdated/superfluous documents.
  • Remove static version from doc.
  • Remove unused import of prbt_hardware_support.
  • Fix acceptance tests.
  • Fix segfault on shutdown.
  • Fix python 3 compatibility issues.
  • Contributors: Pilz GmbH and Co. KG

0.4.10 (2019-12-04)

  • Adapt to new brake test srv definitions in pilz_msgs
  • Contributors: Pilz GmbH and Co. KG

0.4.9 (2019-11-28)

  • Import speed override srv from pilz_msgs
  • Contributors: Pilz GmbH and Co. KG

0.4.8 (2019-11-22)

  • Drop unused variables in python api (#162)
  • Override speed of motions
  • Contributors: Pilz GmbH and Co. KG

0.4.7 (2019-09-10)

0.4.6 (2019-09-04)

0.4.5 (2019-09-03)

  • fix PEP issues
  • Contributors: Pilz GmbH and Co. KG

0.4.4 (2019-06-19)

  • Add python api methods for brake tests

0.4.3 (2019-04-08)

0.4.2 (2019-03-13)

0.4.1 (2019-02-27)

  • Minor fixes
  • Contributors: Pilz GmbH and Co. KG

0.3.5 (2019-02-06)

0.3.4 (2019-02-05)

  • enable Robot instantiation after a program got killed; add corresponding test
  • apply renaming command_planner -> pilz_command_planner
  • Contributors: Pilz GmbH and Co. KG

0.4.0 (2018-12-18)

  • Release Python-API from kinetic version 0.3.1

0.3.1 (2018-12-17)

  • Add RobotMotionObserver in testutils
  • Contributors: Pilz GmbH and Co. KG

0.3.0 (2018-11-28)

  • Release Python-API
  • Contributors: Pilz GmbH and Co. KG

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged pilz_robot_programming at Robotics Stack Exchange

No version for distro ardent. Known supported distros are highlighted in the buttons above.
No version for distro bouncy. Known supported distros are highlighted in the buttons above.
No version for distro crystal. Known supported distros are highlighted in the buttons above.
No version for distro eloquent. Known supported distros are highlighted in the buttons above.
No version for distro dashing. Known supported distros are highlighted in the buttons above.
No version for distro galactic. Known supported distros are highlighted in the buttons above.
No version for distro foxy. Known supported distros are highlighted in the buttons above.
No version for distro lunar. Known supported distros are highlighted in the buttons above.
No version for distro jade. Known supported distros are highlighted in the buttons above.
No version for distro indigo. Known supported distros are highlighted in the buttons above.
No version for distro hydro. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 0.3.10
License LGPLv3
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/PilzDE/pilz_industrial_motion.git
VCS Type git
VCS Version kinetic-devel
Last Updated 2023-11-22
Dev Status END-OF-LIFE
CI status Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

An Easy to use API to execute standard industrial robot commands like Ptp, Lin, Circ and Sequence using Moveit.

Additional Links

No additional links.

Maintainers

  • Immanuel Martini

Authors

No additional authors.

The pilz_robot_programming package provides the user with an easy to use API to move a MoveIt! enabled robot. It\'s target is to execute standard industrial robot commands like :py.Ptp{.interpreted-text role="class"}, :py.Lin{.interpreted-text role="class"} and :py.Circ{.interpreted-text role="class"} using the pilz::CommandPlanner plugin for MoveIt!. It also provides the user with the possibility to execute command sequences (called :py.Sequence{.interpreted-text role="class"}). On top of that, the robot movement can be paused, resumed and stopped.

All examples are given for a PRBT robot but the API is general enough to be used with any robot that has a MoveIt! configuration.

The robot API has some similarity to the moveit_commander package but differs in its specialization for classical industrial robot commands to be executed by the pilz_command_planner MoveIt! plugin. The robot API connects to MoveIt! using the standard move_group action interface and the custom sequence_move_group action, that the sequence capability implements.

See the package pilz_trajectory_generation for more details about the parameters for industrial trajectory generation.

A simple demo program

To run the demo program it is first necessary to startup the simulated or the real robot. Afterwards, you can execute the demo program by typing:

$ rosrun pilz_robot_programming demo_program.py

The code demo_program.py

::: {.literalinclude} ../examples/demo_program.py :::

The code explained

In this section parts of the demo program are explained to give a better understanding how the robot API is used.

note

: The chosen code snippets are not necessarily in order.

Robot creation

from pilz_robot_programming.robot import *

At first we import the robot API.

rospy.init_node('robot_program_node')

This code snippet initializes ROS.

r = Robot(__REQUIRED_API_VERSION__)

Here the robot object is created, which, subsequently, is used to move the robot.

The API version argument ensures, that the correct API version is used. This makes sure, that the robot behaves as expected/intended. In case the versions do not match, an exception is thrown.

note

: For the API version check only the major version number is relevant.

Move

r.move(Ptp(goal=[0, 0.5, 0.5, 0, 0, 0]))

r.move(Lin(goal=Pose(position=Point(0.2, 0, 0.8))))

r.move(Circ(goal=Pose(position=Point(0.2, 0.2, 0.8)), center=Point(0.3, 0.1, 0.8)))

The :py.move{.interpreted-text role="meth"} function is the most important part of the robot API. With the help of the :py.move{.interpreted-text role="meth"} function the user can execute the different robot motion commands, like shown for :py.Ptp{.interpreted-text role="class"}, :py.Lin{.interpreted-text role="class"} and :py.Circ{.interpreted-text role="class"}.

All cartesian goals are interpreted as poses of the tool center point (TCP) link. The transformation between the TCP link and the last robot link can be adjusted through the tcp_offset_xyz and tcp_offset_rpy parameters in prbt.xacro.

Move failure

try:
    r.move(Ptp(goal=[0, 10.0, 0, 0, 0, 0]))
except RobotMoveFailed:
    rospy.loginfo("Ptp command did fail as expected.")

In case a robot motion command fails during the execution, the :py.move{.interpreted-text role="meth"} function throws an :py.RobotMoveFailed{.interpreted-text role="class"} exception which can be caught using standard python mechanisms.

The goal: Joint vs. Cartesian space

r.move(Ptp(goal=[0, 0.5, 0.5, 0, 0, 0]))

r.move(Lin(goal=Pose(position=Point(-0.2, -0.2, 0.6), orientation=from_euler(0.1, 0, 0))))

The goal pose for :py.Ptp{.interpreted-text role="class"} and :py.Lin{.interpreted-text role="class"} commands can be stated either in joint space or in Cartesian space.

r.move(Circ(goal=Pose(position=Point(0.2, 0.2, 0.8)), center=Point(0.3, 0.1, 0.8)))

The goal and the auxiliary pose of :py.Circ{.interpreted-text role="class"} commands have to be stated in Cartesian space.

Relative commands

r.move(Ptp(goal=[0.1, 0, 0, 0, 0, 0], relative=True))

r.move(Lin(goal=Pose(position=Point(0, -0.2, -0.2)), relative=True))

:py.Ptp{.interpreted-text role="class"} and :py.Lin{.interpreted-text role="class"} commands can also be stated as relative commands indicated by the argument relative=True. Relative commands state the goal as offset relative to the current robot position. As long as no custom reference frame is set, the offset has to be stated with regard to the base coordinate system. The orientation is added as offset to the euler-angles.

Custom Reference Frame

r.move(Ptp(goal=Pose(position=Point(0, 0, 0.1)), reference_frame="prbt_tcp"))

r.move(Ptp(goal=Pose(position=Point(0, -0.1, 0)), reference_frame="prbt_link_3", relative=True))

All three move classes :py.Ptp{.interpreted-text role="class"}, :py.Lin{.interpreted-text role="class"} and :py.Circ{.interpreted-text role="class"} can be executed within a custom reference frame. In this case, the passed goal pose will be seen relative to this coordinate system instead of the default system: prbt_base

The custom reference frame argument (reference_frame="target_frame") has to be a valid tf frame id and can be paired with the relative command. When paired with relative flag, the goal will be applied to the current robot pose in this custom reference frame.

note

: Further information on tf is available on http://wiki.ros.org/tf (e.g. on how to create custom frames: section 6.3).

More Detailed Explanation

Let\'s assume we have three coordinate systems in our application. (displayed with a green and blue line)

image{width="400px" height="313px"}

  • prbt_base is the default coordinate system. It was used in the previous sections.
  • The prbt_tcp frame is the current position of the gripper.
  • The third frame pallet is supposed to be an edge of an product tray, that we placed somewhere in the robot environment.

We then have three possible frames, we can choose to execute our goal in.

image{width="400px" height="313px"}

In the image above we displayed three move commands. All three commands move the robot to position x = y = 0 and z = 0.2, but use the different frames as reference.

  1. goal=Pose(position=Point(0, 0, 0.2))) or goal=Pose(position=Point(0, 0, 0.2)), reference_frame=\"prbt_base\")
  2. goal=Pose(position=Point(0, 0, 0.2)), reference_frame=\"prbt_tcp\")
  3. goal=Pose(position=Point(0, 0, 0.2)), reference_frame=\"pallet\")

When adding the relative flag additionally, the goal will be added to the current tcp pose using the chosen frame. This results in the tcp moving in different directions depending on which frame we used.

image{width="400px" height="313px"}

In this case we just added the relative flag to the previous goals.

  1. goal=position=Point(0, 0, 0.2)), relative=True)
  2. goal=position=Point(0, 0, 0.2)), reference_frame=\"prbt_tcp\", relative=True)
  3. goal=position=Point(0, 0, 0.2)), reference_frame=\"pallet\", relative=True)

As can be seen above, the relative movement used the z axis of the choosen reference frame, which resulted in different movements of the tcp, except for the tcp frame itself. In the case of the tcp frame, relative and absolut movement is the same.

Example of Usage

To display how and when to use this options we take a look on a small example.

image{width="300px" height="200px"}

This image is supposed to display a series of pick operations on a rigid object. The products are placed on a product tray, thus having a fixed position relative to the pallet reference frame.

To get the robot in a position similar to the robot in this image we could use a move command with a custom reference_frame.

r.move(Ptp(goal=[0.1, -0.05, 0.2, 2.3561, 0, 0], reference_frame="pallet"))

This would result in a scene, that looks somewhat like the image above. (The Rotation around the x axis is necessary to reach the current tcp rotation)

The next commands in the sequence will be:

  1. close in to grab the object
  2. move straight up to lift it
  3. move to the next object

For the first task we can easily use the tcp ref, since its rotation already fits our goal.

r.move(Ptp(goal=position=Point(0, 0, 0.1)), reference_frame="prbt_tcp"))

The second command - lifting the object - is best achieved by using an relative movement to the pallet frame. (We could as well use the global system in this case, but when the tray is tilted, like in the images above it could be problematic to do so.)

r.move(Ptp(goal=position=Point(0, 0, 0.1)), relative= True, reference_frame="pallet"))

For the third move we again should use the relative move in the \"pallet\" reference frame.

r.move(Ptp(goal=position=Point(0, -0.1, 0)), relative= True, reference_frame="pallet"))

In case we want to place the product somewhere else, previous to moving to the next object, we would instead use the absolute command in the pallet reference frame or add new frames for each object on the tray and do all operations for each object relative its frame.

Sequence

# Repeat the previous steps with a sequence command
sequence = Sequence()
sequence.append(Lin(goal=Pose(position=Point(0.2, 0, 0.8)), vel_scale=0.1, acc_scale=0.1))
sequence.append(Circ(goal=Pose(position=Point(0.2, -0.2, 0.8)), center=Point(0.1, -0.1, 0.8), acc_scale=0.4))
sequence.append(Ptp(goal=pose_after_relative, vel_scale=0.2))

r.move(sequence)

To concatenate multiple trajectories and plan the trajectory at once, you can use the :py.Sequence{.interpreted-text role="class"} command.

note

: In case the planning of a command in a :py.Sequence{.interpreted-text role="class"} fails, non of the commands in the :py.Sequence{.interpreted-text role="class"} are executed.

As an optional argument, a blending radius can be given to the :py.Sequence{.interpreted-text role="class"} command. The blending radius states how much the robot trajectory can deviate from the original trajectory (trajectory without blending) to blend the robot motion from one trajectory to the next. Setting the blending radius to zero corresponds to a :py.Sequence{.interpreted-text role="class"} without blending like above. If a blending radius greaten than zero is given, the robot will move from one trajectory to the next without stopping.

# Blend sequence
blend_sequence = Sequence()
blend_sequence.append(Lin(goal=Pose(position=Point(0.2, 0, 0.6))), blend_radius=0.01)
blend_sequence.append(Lin(goal=Pose(position=Point(0.2, 0, 0.7))))

r.move(blend_sequence)

note

: The last command of the sequence has to have zero blending radius which can be achieved by omitting the blend radius argument.

note

: The robot always stops between gripper and non-gripper commands.

note

: Gripper commands cannot be blended together.

Gripper

If the launch file is started with the real robot and the argument gripper:=pg70, the gripper can be opened or closed via:

r.move(Gripper(gripper_pos=0.02))

Set the gripper_pos argument to a distance in meters. Both gripper fingers of the PG+70 gripper move by the same distance so the gripper is twice as open as specified.

You can also append a :py.Gripper{.interpreted-text role="class"} to a :py.Sequence{.interpreted-text role="class"}.

Current TCP pose and current joint values

start_joint_values = r.get_current_joint_states()

pose_after_relative = r.get_current_pose()

The API provides functions which allow the user to determine the current joint values of the robot and the current TCP pose. The return value of both functions can directly be used to create new motion commands:

r.move(Ptp(goal=pose_after_relative, vel_scale=0.2))

r.move(Ptp(goal=start_joint_values))

The function get_current_pose can also return the current pose in respect to another frame. To do this, set the base argument, to the corresponding reference frame.

tcp_pose_in_tf = r.get_current_pose(base="target_frame")

Brake Test

The method :py.is_brake_test_required{.interpreted-text role="meth"} will check whether the robot needs to perform a brake test. So place it in your program somewhere such that it is checked repeatedly. The method :py.execute_brake_test{.interpreted-text role="meth"} executes the brake test and throws an exception, should it fail.

if r.is_brake_test_required():
    try:
        r.execute_brake_test()
    except RobotBrakeTestException as e:
        rospy.logerr(e)
    except rospy.ROSException as e:
        rospy.logerr("failed to call the service")

Move control orders

The user can make service calls in order to control the movement of the robot. A running program can be paused by typing

rosservice call pause_movement

If the robot is currently moving, it is stopped. A paused execution can be resumed via

rosservice call resume_movement

This also resumes the last robot movement from where it stopped. A resume order without preceding pause has no effects. There also exists the possibility to abort the program using

rosservice call stop_movement

Multithreading

When :py.move{.interpreted-text role="meth"} is running in a separate thread, the move control orders can be issued directly via the following methods of the robot object:

r.pause()

r.resume()

r.stop()

In this case :py.stop{.interpreted-text role="meth"} only ends the move-thread.

CHANGELOG

Changelog for package pilz_robot_programming

0.3.10 (2019-09-11)

0.3.9 (2019-09-05)

  • fix PEP issues
  • Contributors: Pilz GmbH and Co. KG

0.3.8 (2019-07-02)

  • Add python api methods for brake tests

0.3.7 (2019-05-09)

0.3.6 (2019-02-26)

  • Minor fixes

0.3.5 (2019-02-06)

0.3.4 (2019-02-05)

  • enable Robot instantiation after a program got killed; add corresponding test
  • Contributors: Pilz GmbH and Co. KG

0.3.3 (2019-01-25)

  • apply renaming command_planner -> pilz_command_planner

0.3.2 (2019-01-18)

0.3.1 (2018-12-17)

  • Add RobotMotionObserver in testutils
  • Contributors: Pilz GmbH and Co. KG

0.3.0 (2018-11-28)

  • Release Python-API
  • Contributors: Pilz GmbH and Co. KG

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged pilz_robot_programming at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 0.4.14
License LGPLv3
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/PilzDE/pilz_industrial_motion.git
VCS Type git
VCS Version melodic-devel
Last Updated 2023-11-22
Dev Status END-OF-LIFE
CI status
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

An Easy to use API to execute standard industrial robot commands like Ptp, Lin, Circ and Sequence using Moveit.

Additional Links

No additional links.

Maintainers

  • Immanuel Martini

Authors

No additional authors.

The pilz_robot_programming package provides the user with an easy to use API to move a MoveIt! enabled robot. It\'s target is to execute standard industrial robot commands like :py.Ptp{.interpreted-text role="class"}, :py.Lin{.interpreted-text role="class"} and :py.Circ{.interpreted-text role="class"} using the pilz_industrial_motion_planner::CommandPlanner plugin for MoveIt!. It also provides the user with the possibility to execute command sequences (called :py.Sequence{.interpreted-text role="class"}). On top of that, the robot movement can be paused, resumed and stopped.

All examples are given for a PRBT robot but the API is general enough to be used with any robot that has a MoveIt! configuration, it merely requires the availability of the service /get_speed_override for obtaining the speed override of the robot system.

The robot API has some similarity to the moveit_commander package but differs in its specialization for classical industrial robot commands to be executed by the pilz_industrial_motion_planner MoveIt! plugin. The robot API connects to MoveIt! using the standard move_group action interface and the custom sequence_move_group action, that the sequence capability implements.

See the package pilz_industrial_motion_planner for more details about the parameters for industrial trajectory generation.

A simple demo program

To run the demo program it is first necessary to startup the simulated or the real robot. Afterwards, you can execute the demo program by typing:

$ rosrun pilz_robot_programming demo_program.py

The code demo_program.py

::: {.literalinclude} ../examples/demo_program.py :::

The code explained

In this section parts of the demo program are explained to give a better understanding how the robot API is used.

note

: The chosen code snippets are not necessarily in order.

Robot creation

from pilz_robot_programming import *

At first we import the robot API.

rospy.init_node('robot_program_node')

This code snippet initializes ROS.

r = Robot(__REQUIRED_API_VERSION__)

Here the robot object is created, which, subsequently, is used to move the robot.

The API version argument ensures, that the correct API version is used. This makes sure, that the robot behaves as expected/intended. In case the versions do not match, an exception is thrown.

note

: For the API version check only the major version number is relevant.

note

: In general the speed of all motions depends on the operation mode of the robot system. For more information see prbt_hardware_support.

Move

r.move(Ptp(goal=[0, 0.5, 0.5, 0, 0, 0]))

r.move(Lin(goal=Pose(position=Point(0.2, 0, 0.8))))

r.move(Circ(goal=Pose(position=Point(0.2, 0.2, 0.8)), center=Point(0.3, 0.1, 0.8)))

The :py.move{.interpreted-text role="meth"} function is the most important part of the robot API. With the help of the :py.move{.interpreted-text role="meth"} function the user can execute the different robot motion commands, like shown for :py.Ptp{.interpreted-text role="class"}, :py.Lin{.interpreted-text role="class"} and :py.Circ{.interpreted-text role="class"}.

By default cartesian goals are interpreted as poses of the tool center point (TCP) link. The transformation between the TCP link and the last robot link can be adjusted through the tcp_offset_xyz and tcp_offset_rpy parameters in prbt.xacro.

Move failure

try:
    r.move(Ptp(goal=[0, 10.0, 0, 0, 0, 0]))
except RobotMoveFailed:
    rospy.loginfo("Ptp command did fail as expected.")

In case a robot motion command fails during the execution, the :py.move{.interpreted-text role="meth"} function throws an :py.RobotMoveFailed{.interpreted-text role="class"} exception which can be caught using standard python mechanisms.

The goal: Joint vs. Cartesian space

r.move(Ptp(goal=[0, 0.5, 0.5, 0, 0, 0]))

r.move(Lin(goal=Pose(position=Point(-0.2, -0.2, 0.6), orientation=from_euler(0.1, 0, 0))))

The goal pose for :py.Ptp{.interpreted-text role="class"} and :py.Lin{.interpreted-text role="class"} commands can be stated either in joint space or in Cartesian space.

r.move(Circ(goal=Pose(position=Point(0.2, 0.2, 0.8)), center=Point(0.3, 0.1, 0.8)))

The goal and the auxiliary pose of :py.Circ{.interpreted-text role="class"} commands have to be stated in Cartesian space.

Relative commands

r.move(Ptp(goal=[0.1, 0, 0, 0, 0, 0], relative=True))

r.move(Lin(goal=Pose(position=Point(0, -0.2, -0.2)), relative=True))

:py.Ptp{.interpreted-text role="class"} and :py.Lin{.interpreted-text role="class"} commands can also be stated as relative commands indicated by the argument relative=True. Relative commands state the goal as offset relative to the current robot position. As long as no custom reference frame is set, the offset has to be stated with regard to the base coordinate system. The orientation is added as offset to the euler-angles.

Custom Reference Frame

r.move(Ptp(goal=PoseStamped(header=Header(frame_id="prbt_tcp"),
                            pose=Pose(position=Point(0, 0, 0.1)))))

r.move(Ptp(goal=Pose(position=Point(0, -0.1, 0)), reference_frame="prbt_link_3", relative=True))

For all three move classes :py.Ptp{.interpreted-text role="class"}, :py.Lin{.interpreted-text role="class"} and :py.Circ{.interpreted-text role="class"} you can define a custom reference frame. Passing a PoseStamped with the Header set to any valid tf2 frame_id is supported besides an extra argument reference_frame. The goal passed is interpreted relative to the given coordinate frame instead of the default system prbt_base.

The custom reference frame argument (reference_frame="target_frame") has to be a valid tf frame id and can be paired with the relative command. When paired with relative flag, the goal will be applied to the current robot pose in this custom reference frame.

note

: Further information on tf is available on http://wiki.ros.org/tf (e.g. on how to create custom frames: section 6.3).

More Detailed Explanation

Let\'s assume we have three coordinate systems in our application. (displayed with a green and blue line)

image{width="400px" height="313px"}

  • prbt_base is the default coordinate system. It was used in the previous sections.
  • The prbt_tcp frame is the current position of the gripper.
  • The third frame pallet is supposed to be an edge of an product tray, that we placed somewhere in the robot environment.

We then have three possible frames, we can choose to execute our goal in.

image{width="400px" height="313px"}

In the image above we displayed three move commands. All three commands move the robot to position x = y = 0 and z = 0.2, but use the different frames as reference.

  1. goal=Pose(position=Point(0, 0, 0.2))) or goal=Pose(position=Point(0, 0, 0.2)), reference_frame=\"prbt_base\")
  2. goal=Pose(position=Point(0, 0, 0.2)), reference_frame=\"prbt_tcp\")
  3. goal=Pose(position=Point(0, 0, 0.2)), reference_frame=\"pallet\")

When adding the relative flag additionally, the goal will be added to the current tcp pose using the chosen frame. This results in the tcp moving in different directions depending on which frame we used.

image{width="400px" height="313px"}

In this case we just added the relative flag to the previous goals.

  1. goal=position=Point(0, 0, 0.2)), relative=True)
  2. goal=position=Point(0, 0, 0.2)), reference_frame=\"prbt_tcp\", relative=True)
  3. goal=position=Point(0, 0, 0.2)), reference_frame=\"pallet\", relative=True)

As can be seen above, the relative movement used the z axis of the choosen reference frame, which resulted in different movements of the tcp, except for the tcp frame itself. In the case of the tcp frame, relative and absolut movement is the same.

Example of Usage

To display how and when to use this options we take a look on a small example.

image{width="300px" height="200px"}

This image is supposed to display a series of pick operations on a rigid object. The products are placed on a product tray, thus having a fixed position relative to the pallet reference frame.

To get the robot in a position similar to the robot in this image we could use a move command with a custom reference_frame.

r.move(Ptp(goal=[0.1, -0.05, 0.2, 2.3561, 0, 0], reference_frame="pallet"))

This would result in a scene, that looks somewhat like the image above. (The Rotation around the x axis is necessary to reach the current tcp rotation)

The next commands in the sequence will be:

  1. close in to grab the object
  2. move straight up to lift it
  3. move to the next object

For the first task we can easily use the tcp ref, since its rotation already fits our goal.

r.move(Ptp(goal=position=Point(0, 0, 0.1)), reference_frame="prbt_tcp"))

The second command - lifting the object - is best achieved by using an relative movement to the pallet frame. (We could as well use the global system in this case, but when the tray is tilted, like in the images above it could be problematic to do so.)

r.move(Ptp(goal=position=Point(0, 0, 0.1)), relative= True, reference_frame="pallet"))

For the third move we again should use the relative move in the \"pallet\" reference frame.

r.move(Ptp(goal=position=Point(0, -0.1, 0)), relative= True, reference_frame="pallet"))

In case we want to place the product somewhere else, previous to moving to the next object, we would instead use the absolute command in the pallet reference frame or add new frames for each object on the tray and do all operations for each object relative its frame.

Sequence

# Repeat the previous steps with a sequence command
sequence = Sequence()
sequence.append(Lin(goal=Pose(position=Point(0.2, 0, 0.8)), vel_scale=0.1, acc_scale=0.1))
sequence.append(Circ(goal=Pose(position=Point(0.2, -0.2, 0.8)), center=Point(0.1, -0.1, 0.8), acc_scale=0.4))
sequence.append(Ptp(goal=pose_after_relative, vel_scale=0.2))

r.move(sequence)

To concatenate multiple trajectories and plan the trajectory at once, you can use the :py.Sequence{.interpreted-text role="class"} command.

note

: In case the planning of a command in a :py.Sequence{.interpreted-text role="class"} fails, non of the commands in the :py.Sequence{.interpreted-text role="class"} are executed.

As an optional argument, a blending radius can be given to the :py.Sequence{.interpreted-text role="class"} command. The blending radius states how much the robot trajectory can deviate from the original trajectory (trajectory without blending) to blend the robot motion from one trajectory to the next. Setting the blending radius to zero corresponds to a :py.Sequence{.interpreted-text role="class"} without blending like above. If a blending radius greaten than zero is given, the robot will move from one trajectory to the next without stopping.

# Blend sequence
blend_sequence = Sequence()
blend_sequence.append(Lin(goal=Pose(position=Point(0.2, 0, 0.6))), blend_radius=0.01)
blend_sequence.append(Lin(goal=Pose(position=Point(0.2, 0, 0.7))))

r.move(blend_sequence)

note

: The last command of the sequence has to have zero blending radius which can be achieved by omitting the blend radius argument.

note

: The robot always stops between gripper and non-gripper commands.

note

: Gripper commands cannot be blended together.

Gripper

If the launch file is started with the real robot and the argument gripper:=pg70, the gripper can be opened or closed via:

r.move(Gripper(gripper_pos=0.02))

Set the gripper_pos argument to a distance in meters. Both gripper fingers of the PG+70 gripper move by the same distance so the gripper is twice as open as specified.

You can also append a :py.Gripper{.interpreted-text role="class"} to a :py.Sequence{.interpreted-text role="class"}.

Current TCP pose and current joint values

start_joint_values = r.get_current_joint_states()

pose_after_relative = r.get_current_pose()

The API provides functions which allow the user to determine the current joint values of the robot and the current TCP pose. The return value of both functions can directly be used to create new motion commands:

r.move(Ptp(goal=pose_after_relative, vel_scale=0.2))

r.move(Ptp(goal=start_joint_values))

The function get_current_pose can also return the current pose in respect to another frame. To do this, set the base argument, to the corresponding reference frame.

tcp_pose_in_tf = r.get_current_pose(base="target_frame")

Brake Test

The method :py.is_brake_test_required{.interpreted-text role="meth"} will check whether the robot needs to perform a brake test. So place it in your program somewhere such that it is checked repeatedly. The method :py.execute_brake_test{.interpreted-text role="meth"} executes the brake test and throws an exception, should it fail.

if r.is_brake_test_required():
    try:
        r.execute_brake_test()
    except RobotBrakeTestException as e:
        rospy.logerr(e)
    except rospy.ROSException as e:
        rospy.logerr("failed to call the service")

Move control orders

The user can make service calls in order to control the movement of the robot. A running program can be paused by typing

rosservice call pause_movement

If the robot is currently moving, it is stopped. A paused execution can be resumed via

rosservice call resume_movement

This also resumes the last robot movement from where it stopped. A resume order without preceding pause has no effects. There also exists the possibility to abort the program using

rosservice call stop_movement

Multithreading

When :py.move{.interpreted-text role="meth"} is running in a separate thread, the move control orders can be issued directly via the following methods of the robot object:

r.pause()

r.resume()

r.stop()

In this case :py.stop{.interpreted-text role="meth"} only ends the move-thread.

CHANGELOG

Changelog for package pilz_robot_programming

0.4.14 (2021-07-22)

0.4.13 (2021-07-12)

  • Merge our trajectory_generation as moveit planner
    • update all references to the planner
    • move sequence related pilz msgs to moveit
    • change blend radius in test data to not cause blend radius to large error
  • Prevent misunderstandings in acceptance-tests
  • Contributors: Pilz GmbH and Co. KG

0.4.12 (2020-11-24)

  • Adapt to generalized test-utils
  • Add missing test-depend on prbt_hardware_support
  • Contributors: Pilz GmbH and Co. KG

0.4.11 (2020-07-16)

  • Add Attribute based equivalence for commands.
  • Add feature to store points.
  • Add PoseStamped and tuple goals.
  • Add get_current_pose_stamped to robot api
  • Replace tf by tf2 in pilz_robot_programming.
  • Rename _BaseCmd -> BaseCmd.
  • Remove outdated add_python_coverage() function.
  • Remove outdated/superfluous documents.
  • Remove static version from doc.
  • Remove unused import of prbt_hardware_support.
  • Fix acceptance tests.
  • Fix segfault on shutdown.
  • Fix python 3 compatibility issues.

0.4.10 (2019-12-04)

  • Adapt to new brake test srv definitions in pilz_msgs
  • Contributors: Pilz GmbH and Co. KG

0.4.9 (2019-11-28)

  • Import speed override srv from pilz_msgs
  • Contributors: Pilz GmbH and Co. KG

0.4.8 (2019-11-22)

  • Drop unused variables in python api (#162)
  • Override speed of motions
  • Contributors: Pilz GmbH and Co. KG

0.4.7 (2019-09-10)

0.4.6 (2019-09-04)

0.4.5 (2019-09-03)

  • fix PEP issues
  • Contributors: Pilz GmbH and Co. KG

0.4.4 (2019-06-19)

  • Add python api methods for brake tests

0.4.3 (2019-04-08)

0.4.2 (2019-03-13)

0.4.1 (2019-02-27)

  • Minor fixes
  • Contributors: Pilz GmbH and Co. KG

0.3.5 (2019-02-06)

0.3.4 (2019-02-05)

  • enable Robot instantiation after a program got killed; add corresponding test
  • apply renaming command_planner -> pilz_command_planner
  • Contributors: Pilz GmbH and Co. KG

0.4.0 (2018-12-18)

  • Release Python-API from kinetic version 0.3.1

0.3.1 (2018-12-17)

  • Add RobotMotionObserver in testutils
  • Contributors: Pilz GmbH and Co. KG

0.3.0 (2018-11-28)

  • Release Python-API
  • Contributors: Pilz GmbH and Co. KG

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged pilz_robot_programming at Robotics Stack Exchange