ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

Extending robot arm by rotation stage

asked 2018-11-27 02:27:25 -0500

updated 2018-11-27 02:30:11 -0500

Hello, I want to inspect an object on a rotation stage with a 6-DOF robot arm from staubli (TX90 series). Since 6-DOF robots are sometimes limited in their reachable space while inspecting objects with endeffector mounted cameras, I want to extend my system with this a rotary stage. The setup should then look something like this:

image description

But instead of using the stage as a separate robot with a seperate movegroup, I want to integrate the stage into the serial chain of my industrial robot, so that the 6-DOF robot results in a 7-DOF robot. The tf_tree should then look something like this:

image description

So the rotation_link is the new reference frame (or world coordinate system) of my system. My motivation is, that I am able to let MoveIt do the path planning for my entire 7-DOF-system then. I have already written a hardware_interface for my controller including a joint_state publisher and a position controller (the FollowJointTrajectoryAction client was not implemented yet).

Since the Staubli-Driver does not contain any hardware interfaces, that I am able to use with ros_control, I do not know how to combine those two hardware-systems. The staubli robot communication seems pretty isolated to me since it is just communicating with the simple_message protocol after opening a couple of generic nodes (described here).

So to summarize what I am asking:

How can I implement a joint_trajectory_action for those two existing systems?

Before rewriting the whole ros_industrial_client package, I would really like to hear some advices, if there is a convinient way of realizing my plans.

Thanks a lot for your help.

Nils

edit retag flag offensive close merge delete

Comments

1

An observation: regardless of whether or not the robot driver has ros_control capabilities: achieving synchronised motion between the CS8 controller and the stage is going to be difficult. The stage is a relatively simple device controlled over USB with an unknown delay and no real-time ..

gvdhoorn gravatar image gvdhoorn  ( 2018-11-27 03:04:38 -0500 )edit
1

.. (ie: determinism) guarantees afaict.

Coordinated motion between robots and external axes are at the moment still easier to achieve by integrating the additional axes into the robot's motion control system and then controlling that externally.

Afaik CS8 controllers don't support that though.

gvdhoorn gravatar image gvdhoorn  ( 2018-11-27 03:06:00 -0500 )edit

I actually do not need realtime capabilities. I do not even need synchronised motion between those two systems. The base minimum of what I am expecting is to consider the rotary stage in the path planning of moveit. If that results in a simple final position for the stage, it would be fine.

nmelchert gravatar image nmelchert  ( 2018-11-27 03:33:28 -0500 )edit

Afaik CS8 controllers don't support that though.

Do you have any idea how to implement a work around? Has there been nobody before with a similar idea?

nmelchert gravatar image nmelchert  ( 2018-11-27 03:34:53 -0500 )edit

re: CS8 support for external axes: you'd have to ask Staubli. It's been a while since I've worked with CS8 controllers, so perhaps the situation has improved, but last time I checked integrating external axes directly into the CS8 controller was not supported (natively at least).

gvdhoorn gravatar image gvdhoorn  ( 2018-11-27 03:43:32 -0500 )edit

If you don't need synchronised motion then just treat the stage as a "second robot" and express the kinematic relationship in your URDF using an appropriate joint.

MoveIt will take care of the rest. For execution of planned motions, just make sure the driver for the stage accepts ..

gvdhoorn gravatar image gvdhoorn  ( 2018-11-27 03:44:34 -0500 )edit

.. the regular goals MoveIt uses (ie: FollowJointTrajectory). But if you have a hardware_interface for it then that should be solved already (just use the joint_trajectory_controller).

gvdhoorn gravatar image gvdhoorn  ( 2018-11-27 03:45:24 -0500 )edit

If you don't need synchronised motion then just treat the stage as a "second robot" and express the kinematic relationship in your URDF using an appropriate joint.

I don't quite understand. How can i do my motion planning with respect to the "rotation frame" if the stage if ...

nmelchert gravatar image nmelchert  ( 2018-11-27 04:03:53 -0500 )edit

1 Answer

Sort by ยป oldest newest most voted
0

answered 2018-11-27 11:27:41 -0500

Answer was given in the comments by gvdhoorn.

Thanks a lot.

edit flag offensive delete link more

Question Tools

2 followers

Stats

Asked: 2018-11-27 02:27:25 -0500

Seen: 550 times

Last updated: Nov 27 '18