-
Notifications
You must be signed in to change notification settings - Fork 152
Generically expose URDF joint dynamics. #56
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
Open
danzimmerman
wants to merge
16
commits into
UniversalRobots:rolling
Choose a base branch
from
danzimmerman:dz/expose-joint-dyn-prop-file
base: rolling
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
38dc50c
Set joint dyn properties, optionally from file
c894553
Pass joint dynamics as default-empty dict()
e974b80
Revert test dynamics specification
5a2b728
Mimic initial_positions with dynamics defaults
324b390
Default joints to zero, retain differentiated example
b4b1a22
Simplify file names
f32ac9c
Merge branch 'UniversalRobots:ros2' into dz/expose-joint-dyn-prop-file
danzimmerman c042607
Merge branch 'ros2' into dz/expose-joint-dyn-prop-file
danzimmerman 642c18e
Update ros2_control Merge branch 'ros2' of https://github.com/Univers…
05eed59
Merge branch 'dz/expose-joint-dyn-prop-file' of https://github.com/da…
7d448ea
Merge branch 'UniversalRobots:ros2' into dz/expose-joint-dyn-prop-file
danzimmerman 1ef346a
Disable galactic build and deschedule others
e4b403e
Merge branch 'UniversalRobots:rolling' into dz/expose-joint-dyn-prop-…
danzimmerman 6d84858
Merge branch 'rolling' into dz/expose-joint-dyn-prop-file
fmauch 6e7c524
Fix default joint_dynamics dict when none provided
fmauch c8184ac
Merge branch 'rolling' into dz/expose-joint-dyn-prop-file
fmauch File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
joint_dynamics: | ||
shoulder_pan_joint: | ||
damping: 0.0 | ||
friction: 0.0 | ||
shoulder_lift_joint: | ||
damping: 0.0 | ||
friction: 0.0 | ||
elbow_joint: | ||
damping: 0.0 | ||
friction: 0.0 | ||
wrist_1_joint: | ||
damping: 0.0 | ||
friction: 0.0 | ||
wrist_2_joint: | ||
damping: 0.0 | ||
friction: 0.0 | ||
wrist_3_joint: | ||
damping: 0.0 | ||
friction: 0.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
joint_dynamics: | ||
shoulder_pan_joint: | ||
damping: 0.123 | ||
friction: 1.234 | ||
shoulder_lift_joint: | ||
damping: 0.234 | ||
friction: 2.345 | ||
elbow_joint: | ||
damping: 0.345 | ||
friction: 3.456 | ||
wrist_1_joint: | ||
damping: 0.456 | ||
friction: 4.567 | ||
wrist_2_joint: | ||
damping: 0.567 | ||
friction: 5.678 | ||
wrist_3_joint: | ||
damping: 0.678 | ||
friction: 6.789 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think I would prefer passing the filename down to here as we do with the other parameters, as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, I am not sure. It would be nicer to keep it on one level, however this way it is backwards compatible.