forked from moveit/moveit2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use generate_parameter_library to load LMA kinematics parameters (mov…
- Loading branch information
1 parent
66a64b4
commit bd9a9e8
Showing
5 changed files
with
64 additions
and
24 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
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
37 changes: 37 additions & 0 deletions
37
moveit_kinematics/lma_kinematics_plugin/src/lma_kinematics_parameters.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,37 @@ | ||
lma_kinematics: | ||
|
||
max_solver_iterations: { | ||
type: int, | ||
default_value: 500, | ||
description: "Maximum solver iterations", | ||
validation: { | ||
gt_eq<>: [ 0.0 ] | ||
} | ||
} | ||
|
||
epsilon: { | ||
type: double, | ||
default_value: 0.00001, | ||
description: "Epsilon. Default is 1e-5", | ||
validation: { | ||
gt<>: [ 0.0 ] | ||
} | ||
} | ||
|
||
orientation_vs_position: { | ||
type: double, | ||
default_value: 1.0, | ||
description: "Weight of orientation error vs position error | ||
* < 1.0: orientation has less importance than position | ||
* > 1.0: orientation has more importance than position | ||
* = 0.0: perform position-only IK", | ||
validation: { | ||
gt_eq<>: [ 0.0 ] | ||
} | ||
} | ||
|
||
position_only_ik: { | ||
type: bool, | ||
default_value: false, | ||
description: "position_only_ik overrules orientation_vs_position. If true, sets orientation_vs_position weight to 0.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