Skip to content

Commit

Permalink
hubero_ros - navigation params adjusted for more robust operation
Browse files Browse the repository at this point in the history
  • Loading branch information
rayvburn committed Feb 22, 2023
1 parent 5549327 commit 35fd699
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion hubero_ros/config/planning/common/global_costmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ global_costmap:
# NOTE: 'topic' is overwritten by .launch file
topic: scan
expected_update_rate: 0.3
observation_persistence: 1.0
observation_persistence: 0.0
inf_is_valid: true
marking: true
clearing: true
Expand Down
2 changes: 1 addition & 1 deletion hubero_ros/config/planning/common/local_costmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ local_costmap:
# NOTE: 'topic' is overwritten by .launch file
topic: scan
expected_update_rate: 0.3
observation_persistence: 1.0
observation_persistence: 0.0
inf_is_valid: true
marking: true
clearing: true
Expand Down
8 changes: 4 additions & 4 deletions hubero_ros/config/planning/common/move_base.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
planner_frequency: 1.0
planner_patience: 0.1
planner_patience: 5.0

controller_frequency: 2.0
controller_patience: 3.0
controller_patience: 10.0

oscillation_timeout: 10.0
oscillation_timeout: 20.0
oscillation_distance: 0.2

recovery_behavior_enabled: true
shutdown_costmaps: false

search_alternative_goals: true
alternative_goals_thresh: 0.5
alternative_goals_thresh: 1.5
latch_xy_goal_tolerance: true
4 changes: 2 additions & 2 deletions hubero_ros/config/planning/teb/local_planner.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ TebLocalPlannerROS:
allow_init_with_backwards_motion: false

# Robot
max_vel_x: 0.5
max_vel_x: 1.5
max_vel_x_backwards: 0.15
max_vel_theta: 0.6
acc_lim_x: 0.2
acc_lim_x: 1.0
acc_lim_theta: !degrees 45.0
is_footprint_dynamic: true
footprint_model:
Expand Down
2 changes: 1 addition & 1 deletion hubero_ros/config/planning/trajectory/local_planner.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ TrajectoryPlannerROS:
# Acceleration limits
acc_lim_th: !degrees 60.0
acc_lim_theta: !degrees 60.0
acc_lim_x: 0.8
acc_lim_x: 1.0
acc_lim_y: 0.0

# Velocity limits
Expand Down
4 changes: 2 additions & 2 deletions hubero_ros/launch/actor.launch
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

<!-- Planners -->
<!-- NOTE: suffixes enable to differentiate planner parameters between actors -->
<arg name="global_planner" default="global_planner"/>
<arg name="global_planner" default="navfn"/>
<arg name="global_planner_suffix" default=""/>
<arg name="local_planner" default="dwa"/>
<arg name="local_planner" default="teb"/>
<arg name="local_planner_suffix" default=""/>

<!-- allows running with gdb -->
Expand Down

0 comments on commit 35fd699

Please sign in to comment.