-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add general kr support package for moveit
- Loading branch information
Aron Svastits
committed
Aug 1, 2023
1 parent
b898a73
commit ff604a0
Showing
11 changed files
with
135 additions
and
19 deletions.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
kuka_agilus_support/config/kr6_r700_sixx_joint_limits.yaml
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,38 @@ | ||
# joint_limits.yaml allows the dynamics properties specified in the URDF to be overwritten or augmented as needed | ||
# Specific joint properties can be changed with the keys [max_position, min_position, max_velocity, max_acceleration, max_jerk] | ||
# Joint limits can be turned off with [has_velocity_limits, has_acceleration_limits] | ||
|
||
# Easiest way to slow down the robot is to decrease the velocity and acceleration scaling factors | ||
default_velocity_scaling_factor: 1.0 | ||
default_acceleration_scaling_factor: 1.0 | ||
joint_limits: | ||
joint_a1: | ||
has_velocity_limits: true | ||
max_velocity: 6.283185 | ||
has_acceleration_limits: false | ||
has_jerk: false | ||
joint_a2: | ||
has_velocity_limits: true | ||
max_velocity: 5.23599 | ||
has_acceleration_limits: false | ||
has_jerk: false | ||
joint_a3: | ||
has_velocity_limits: true | ||
max_velocity: 6.283185 | ||
has_acceleration_limits: false | ||
has_jerk: false | ||
joint_a4: | ||
has_velocity_limits: true | ||
max_velocity: 6.64970 | ||
has_acceleration_limits: false | ||
has_jerk: false | ||
joint_a5: | ||
has_velocity_limits: true | ||
max_velocity: 6.77188 | ||
has_acceleration_limits: false | ||
has_jerk: false | ||
joint_a6: | ||
has_velocity_limits: true | ||
max_velocity: 10.73377 | ||
has_acceleration_limits: false | ||
has_jerk: false |
38 changes: 38 additions & 0 deletions
38
kuka_agilus_support/config/kr6_r900_sixx_joint_limits.yaml
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,38 @@ | ||
# joint_limits.yaml allows the dynamics properties specified in the URDF to be overwritten or augmented as needed | ||
# Specific joint properties can be changed with the keys [max_position, min_position, max_velocity, max_acceleration, max_jerk] | ||
# Joint limits can be turned off with [has_velocity_limits, has_acceleration_limits] | ||
|
||
# Easiest way to slow down the robot is to decrease the velocity and acceleration scaling factors | ||
default_velocity_scaling_factor: 1.0 | ||
default_acceleration_scaling_factor: 1.0 | ||
joint_limits: | ||
joint_a1: | ||
has_velocity_limits: true | ||
max_velocity: 6.283185 | ||
has_acceleration_limits: false | ||
has_jerk: false | ||
joint_a2: | ||
has_velocity_limits: true | ||
max_velocity: 5.23599 | ||
has_acceleration_limits: false | ||
has_jerk: false | ||
joint_a3: | ||
has_velocity_limits: true | ||
max_velocity: 6.283185 | ||
has_acceleration_limits: false | ||
has_jerk: false | ||
joint_a4: | ||
has_velocity_limits: true | ||
max_velocity: 6.64970 | ||
has_acceleration_limits: false | ||
has_jerk: false | ||
joint_a5: | ||
has_velocity_limits: true | ||
max_velocity: 6.77188 | ||
has_acceleration_limits: false | ||
has_jerk: false | ||
joint_a6: | ||
has_velocity_limits: true | ||
max_velocity: 10.73377 | ||
has_acceleration_limits: false | ||
has_jerk: false |
41 changes: 41 additions & 0 deletions
41
kuka_cybertech_support/config/kr16_r2010-2_joint_limits.yaml
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,41 @@ | ||
# joint_limits.yaml allows the dynamics properties specified in the URDF to be overwritten or augmented as needed | ||
# Specific joint properties can be changed with the keys [max_position, min_position, max_velocity, max_acceleration, max_jerk] | ||
# Joint limits can be turned off with [has_velocity_limits, has_acceleration_limits] | ||
|
||
# The default config of moveit does not take into account the jerk limits, the RuckigTrajectorySmoothing adapter must be | ||
# added to the planning pipeline to support jerk limits # TODO: check if jerk dimensions are ok!! | ||
|
||
# Easiest way to slow down the robot is to decrease the velocity and acceleration scaling factors | ||
default_velocity_scaling_factor: 1.0 | ||
default_acceleration_scaling_factor: 1.0 | ||
joint_limits: | ||
joint_a1: | ||
has_velocity_limits: true | ||
max_velocity: 3.490656 | ||
has_acceleration_limits: false | ||
has_jerk: false | ||
joint_a2: | ||
has_velocity_limits: true | ||
max_velocity: 3.05432 | ||
has_acceleration_limits: false | ||
has_jerk: false | ||
joint_a3: | ||
has_velocity_limits: true | ||
max_velocity: 3.31613 | ||
has_acceleration_limits: false | ||
has_jerk: false | ||
joint_a4: | ||
has_velocity_limits: true | ||
max_velocity: 7.50492 | ||
has_acceleration_limits: false | ||
has_jerk: false | ||
joint_a5: | ||
has_velocity_limits: true | ||
max_velocity: 7.50492 | ||
has_acceleration_limits: false | ||
has_jerk: false | ||
joint_a6: | ||
has_velocity_limits: true | ||
max_velocity: 10.99557 | ||
has_acceleration_limits: false | ||
has_jerk: false |
4 changes: 2 additions & 2 deletions
4
kuka_cybertech_moveit_config/CMakeLists.txt → kuka_kr_moveit_config/CMakeLists.txt
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
2 changes: 1 addition & 1 deletion
2
...tech_moveit_config/config/kinematics.yaml → kuka_kr_moveit_config/config/kinematics.yaml
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
cybertech_arm: | ||
kr_arm: | ||
kinematics_solver: kdl_kinematics_plugin/KDLKinematicsPlugin | ||
kinematics_solver_search_resolution: 0.005 | ||
kinematics_solver_timeout: 0.05 |
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
kuka_cybertech_moveit_config/package.xml → kuka_kr_moveit_config/package.xml
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
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
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