-
Notifications
You must be signed in to change notification settings - Fork 311
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
fix(franka_gazebo): fix tau_ext
internal controller bug
#228
base: develop
Are you sure you want to change the base?
fix(franka_gazebo): fix tau_ext
internal controller bug
#228
Conversation
@gollth, @marcbone Similar to my previous command #226 (comment) it looks like something goes wrong in your clang checking action as it does not print the error it encounters. My local clang version does not throw any errors. |
bbb05c1
to
d747813
Compare
3154053
to
98d74f6
Compare
tau_ext
internal controller bug
cbc6c4f
to
1fb726e
Compare
Merging this pull request will solve #364. |
I've just provided an update to the associated issue (#364) with detailed steps to reproduce the bug. Please take a moment to review #288 and share your thoughts. I'd particularly appreciate your input on whether the clamped command should be considered in collision checking instead of the user command. I was unsure if you also wanted to account for internal joint interactions when checking collisions. Your feedback would be invaluable. Thank you! |
This commit ensures that the internal controller forces are not used in the external torque (i.e. `tau_ext`) calculation when a joint is in its limit.
1fb726e
to
a1cc0a9
Compare
This PR ensures that internal controller forces are not used in the external torque calculations when a joint is within its
joint limits. This needs to be done since, in that case, the joint boundaries already compensate for external torques (see #364). Feel free to change this pull request however you like, as there are multiple ways to solve this problem.