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

normal/orthogonal orientation to a surface

asked 2018-09-27 09:09:06 -0500

akosodry gravatar image

updated 2018-09-27 10:33:11 -0500

Hello!

(This can be a bit noob question, but im confused, so i ask)

Lets say I have a surface, a wall, described by YZ points of the world coordinate frame.

I want my robot EEF to go to a desired XYZ position, and *its orientation can be anything* that is normal/ortogonal to the aforementioned wall.

Is it OK to describe this constraint by giving for the desired points the following orientation?

wpoint.orientation.x = 0
wpoint.orientation.y = 0
wpoint.orientation.z = 0
wpoint.orientation.w = 1

I have a weird feeling, that this is not the right way to do it.

This way i have the feeling that the ROLL rotation (e.g. around x axis) is limited, even though it could be anything between 0-2pi. I hope i wrote this clearly.

What is the right way to solve this?

Thanks in advance.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2018-09-27 10:41:40 -0500

If I can just summarise what you're trying to achieve, you want the end effector to point directly at the wall but you don't care what the roll along the axis of the end effector is?

Are you using MoveIt to control your arm?

The problem here is that you have to fully define the position of the end effector in order to pass a planning request to MoveIt as far as I know. So you can't give it a partially defined EE pose. The orientation you have given in your question is the identity quaternion equivalent to an identity rotation matrix, this is setting the orientation of the end effector so it's frame of reference is at the same angle as the world frame of reference.

There is a slightly inelegant trick that I've used to pickup square boxes (where there are 4 orientations that are possible). You simply plan several different trajectories with the end effector at several different roll angles and pick the shortest/fastest trajectory. In your case if you picked 8 different angles then you should be quite close to the shortest trajectory, if you don't mind you planning time being 8 times longer!

Hope I've answered the right question for you.

edit flag offensive delete link more

Comments

Hello @PeteBlackerThe3rd. Yes, you did well understood my problem :) Your answer was super informative!! Thank you for the information!

akosodry gravatar image akosodry  ( 2018-09-27 13:08:27 -0500 )edit

@PeteBlackerThe3rd May i ask, why exactly 8 angles are enough? and how would you choose these roll angles? Thank you!

akosodry gravatar image akosodry  ( 2018-09-27 13:36:38 -0500 )edit
1

I was thinking that if you pick 8 angles evenly distributed from 0-360 degrees than you'll be at worst 22 degrees away from the easiest angle. It's a trade off, the more angles you try the closer to ideal your solution will be at the expense of more planning time.

PeteBlackerThe3rd gravatar image PeteBlackerThe3rd  ( 2018-09-28 09:12:07 -0500 )edit

Question Tools

2 followers

Stats

Asked: 2018-09-27 09:09:06 -0500

Seen: 605 times

Last updated: Sep 27 '18