Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to set goal_threshold to allow small motions #601

Open
rr-dave opened this issue Sep 27, 2024 · 1 comment
Open

How to set goal_threshold to allow small motions #601

rr-dave opened this issue Sep 27, 2024 · 1 comment

Comments

@rr-dave
Copy link

rr-dave commented Sep 27, 2024

Problem description:

  • Send motoman a trajectory where all final joint values are within 0.01 radians (the default goal threshold) of the start joint values.
  • This could be a significant cartesian motion, eg s joint at 1.5m reach: 1.5 x sin(0.01) = 15mm
  • The trajectory is not sent to the robot because of the check here
    if (withinGoalConstraints(last_trajectory_state_map_[group_number],

I've previously experimented with changing the goal threshold and seen values less than 0.001 seem to time out, I suspect due to the joint 4 discrepancies identified in #592. Do you have any suggestions for how to make short trajectories execute? I'm considering trying to make only the initial check use a much tighter tolerance and leave the checks in controllerStateCB as they are.

@rr-dave
Copy link
Author

rr-dave commented Sep 27, 2024

This may be a duplicate of #467

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

1 participant