-
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.
separate ompl_planning.yaml config, refactor config
- Loading branch information
Showing
7 changed files
with
88 additions
and
229 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,79 @@ | ||
/**: | ||
ros__parameters: | ||
#-------- Moveit controllers | ||
moveit_controller_manager: moveit_simple_controller_manager/MoveItSimpleControllerManager | ||
moveit_simple_controller_manager: | ||
controller_names: | ||
- joint_trajectory_controller # add or remove controllers as necessary | ||
|
||
joint_trajectory_controller: | ||
type: FollowJointTrajectory | ||
action_ns: follow_joint_trajectory | ||
default: true | ||
joints: | ||
- joint1 | ||
- joint2 | ||
- joint3 | ||
- joint4 | ||
- joint5 | ||
- joint6 | ||
|
||
#-------- kinematics | ||
robot_description_kinematics: | ||
myrobot_manipulator: | ||
kinematics_solver: kdl_kinematics_plugin/KDLKinematicsPlugin | ||
kinematics_solver_search_resolution: 0.005 | ||
kinematics_solver_timeout: 0.005 | ||
kinematics_solver_attempts: 3 | ||
|
||
#-------- joint limits | ||
robot_description_planning: | ||
default_velocity_scaling_factor: 0.1 | ||
default_acceleration_scaling_factor: 0.1 | ||
# Specific joint properties can be changed with the keys [max_position, min_position, max_velocity, max_acceleration] | ||
# Joint limits can be turned off with [has_velocity_limits, has_acceleration_limits] | ||
joint_limits: | ||
joint1: | ||
has_velocity_limits: true | ||
max_velocity: 1.7453292519943295 | ||
has_acceleration_limits: true | ||
max_acceleration: 5.0 | ||
joint2: | ||
has_velocity_limits: true | ||
max_velocity: 1.5707963267948966 | ||
has_acceleration_limits: true | ||
max_acceleration: 5.0 | ||
joint3: | ||
has_velocity_limits: true | ||
max_velocity: 1.5707963267948966 | ||
has_acceleration_limits: true | ||
max_acceleration: 5.0 | ||
joint4: | ||
has_velocity_limits: true | ||
max_velocity: 2.9670597283903604 | ||
has_acceleration_limits: true | ||
max_acceleration: 5.0 | ||
joint5: | ||
has_velocity_limits: true | ||
max_velocity: 2.0943951023931953 | ||
has_acceleration_limits: true | ||
max_acceleration: 5.0 | ||
joint6: | ||
has_velocity_limits: true | ||
max_velocity: 3.3161255787892263 | ||
has_acceleration_limits: true | ||
max_acceleration: 5.0 | ||
|
||
#-------- other | ||
moveit_manage_controllers: false | ||
trajectory_execution: | ||
allowed_execution_duration_scaling: 1.2 | ||
allowed_goal_duration_margin: 0.5 | ||
allowed_start_tolerance: 0.01 | ||
capabilities: move_group/MoveGroupExecuteTrajectoryAction | ||
publish_planning_scene: True | ||
publish_geometry_updates: True | ||
publish_state_updates: True | ||
publish_transforms_updates: True | ||
|
||
|
79 changes: 0 additions & 79 deletions
79
...bot_ws/src/myrobot_moveit/config/all.yaml → .../myrobot_moveit/config/ompl_planning.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
40 changes: 0 additions & 40 deletions
40
myrobot_ws/src/myrobot_moveit/config_old/joint_limits.yaml
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
myrobot_ws/src/myrobot_moveit/config_old/moveit_controllers.yaml
This file was deleted.
Oops, something went wrong.
69 changes: 0 additions & 69 deletions
69
myrobot_ws/src/myrobot_moveit/config_old/ompl_planning.yaml
This file was deleted.
Oops, something went wrong.
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