Trajectory "succeeds" before goal point

asked 2020-06-12 11:39:57 -0500

funky_watermelon gravatar image

I'm tuning PID gains and therefore don't want to limit the speed or acceleration. Therefore in the joint_limits.yaml I set the max_acceleration and max_velocity very high. But now the execution of the trajectory succeeds before arriving at the end. Setting extra constrains like the goal parameter as mentioned in the link below isn't an option since I am using a special controller. My question is how can I make sure the speed limits are broad but the trajectory planned and executed by moveIt! doesn't finish before the end point. Thanks in advance

: http://wiki.ros.org/joint_trajectory_...

edit retag flag offensive close merge delete

Comments

Only MoveIt uses the values from the file you mention. The controllers you're using with gazebo_ros_control (or at least: I'm assuming you're using gazebo_ros_control) do not use them.

So in essence you've told MoveIt your robot's joints have very high velocity and acceleration limits, but the controllers will not be aware of that and will just use the values from the urdf.

What could be happening is that your controllers are unable to achieve the performance you specified in the joint_limits.yaml file, causing MoveIt's trajectory execution manager to abort execution of the trajectory as it determines there is too much divergence between the calculated max duration of the trajectory execution and the time your simulated robot is taking (due to lower joint limits enforced in/by the controllers and/or hardware_interface).

It's unclear from your phrasing whether this is what you describe ...(more)

gvdhoorn gravatar image gvdhoorn  ( 2020-06-12 11:46:54 -0500 )edit

I would check to make sure execution of the trajectory is not actually aborted. If so, you should update the title of your question.

The fact your action returns or you can press "plan & execute" again in the RViz MoveIt plugin doesn't mean execution was successful.

gvdhoorn gravatar image gvdhoorn  ( 2020-06-12 11:53:37 -0500 )edit

It is not aborted, and even says trajectory finished sucessfully so that is not the problem. The controller I use for the actuator won't let me specify goal position tolerance like the ros controllers, but when using low acceleration and velocity limits are set it finishes on time. But with the high values it says it succeeds too early and when I starts a new movement it returns an error because it is still moving a bit from the last trajectory.

funky_watermelon gravatar image funky_watermelon  ( 2020-06-12 14:18:54 -0500 )edit

It is not aborted, and even says trajectory finished sucessfully so that is not the problem.

Then that could suggest your controller is flagging completion too soon.

MoveIt relies on the controller/driver for execution completion. It doesn't determine that by itself.

From what you describe I would take a look at how your driver/controller determines when a trajectory has finished execution.

If you want better answers/comments you'll have to provide more information. We don't have access to your special controller, nor do we know how you've actually set things up.

gvdhoorn gravatar image gvdhoorn  ( 2020-06-12 14:24:12 -0500 )edit

Ah thanks the trajectory is executed using moveit commander but as I understand from you the specific controller is responsible too. I use Hebi actuators and their control, I understand I shouldn't ask specific questions about the controller here, but I thought the trajectory controller would be responsible for things like goal tolerance.

funky_watermelon gravatar image funky_watermelon  ( 2020-06-12 14:48:51 -0500 )edit

but as I understand from you the specific controller is responsible too

No, flagging completion is the sole responsibility of the driver/controller.

MoveIt is just a consumer of that information.

If you're using the standard JointTrajectoryController, that would make it a generic ROS problem. If not, it would be something to check with Hebi.

I'm still not sure whether the configuration you've created will work for what you're trying to do though.

gvdhoorn gravatar image gvdhoorn  ( 2020-06-13 06:12:27 -0500 )edit

Yess I use the JointTrajectoryController , would you have any proposals of how to increase goal accuracy while keeping the velocity limits high? And what makes you think the configuration is ill-suited?

funky_watermelon gravatar image funky_watermelon  ( 2020-06-14 06:00:44 -0500 )edit

My apologies I was mistaken. I use the FollowJointTrajectory, for all the controllers but JointTrajectoryController, for all but hebi. Therefore I think you're right and it is a problem to check with hebi. Bedankt Gijs

funky_watermelon gravatar image funky_watermelon  ( 2020-06-15 06:00:09 -0500 )edit