-
Notifications
You must be signed in to change notification settings - Fork 227
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Define default maximum accelerations for MoveIt (#645)
(cherry picked from commit 5e3c464)
- Loading branch information
1 parent
69dbd41
commit f049525
Showing
2 changed files
with
46 additions
and
10 deletions.
There are no files selected for viewing
This file contains 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,25 @@ | ||
# These limits are used by MoveIt and augment/override the definitions in ur_description. | ||
# | ||
# While the robot does not inherently have any limits on joint accelerations (only on torques), | ||
# MoveIt needs them for time parametrization. They were chosen conservatively to work in most use | ||
# cases. For specific applications, higher values might lead to better execution performance. | ||
|
||
joint_limits: | ||
shoulder_pan_joint: | ||
has_acceleration_limits: true | ||
max_acceleration: 5.0 | ||
shoulder_lift_joint: | ||
has_acceleration_limits: true | ||
max_acceleration: 5.0 | ||
elbow_joint: | ||
has_acceleration_limits: true | ||
max_acceleration: 5.0 | ||
wrist_1_joint: | ||
has_acceleration_limits: true | ||
max_acceleration: 5.0 | ||
wrist_2_joint: | ||
has_acceleration_limits: true | ||
max_acceleration: 5.0 | ||
wrist_3_joint: | ||
has_acceleration_limits: true | ||
max_acceleration: 5.0 |
This file contains 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