[fetch_moveit_config] set enforce_joint_model_state_space true #163
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
fetch arm collides with base or torso when
path constraints
is given toMotionPlanRequest
.This is because Moveit computes in
cartesian model state space
whenpath constraints
is given,and it causes joint jump near singularity point.
With this joint jump, fetch's arm collides with its base or torso because fetch's arm is quite close to them.
Good case
Screencast.2022-10-13.23.06.20.mp4
Bad case
Screencast.2022-10-13.23.09.34.mp4
In this PR, I set
enforce_joint_model_state_space
true
and enforce to usejoint model state space
.This change may needs longer planning time but it is safe.
related:
moveit/moveit#541
moveit/moveit#562
moveit/moveit#2273