]> defiant.homedns.org Git - ros_wild_thumper.git/commitdiff
navigation stack tuning
authorErik Andresen <erik@vontaene.de>
Sun, 21 Feb 2016 10:06:13 +0000 (11:06 +0100)
committerErik Andresen <erik@vontaene.de>
Sun, 21 Feb 2016 10:06:13 +0000 (11:06 +0100)
config/base_local_planner_params.yaml
config/costmap_exploration.yaml [new file with mode: 0644]
config/global_costmap_params.yaml
config/local_costmap_params.yaml
launch/exploration.launch [new file with mode: 0644]
launch/move_base.launch

index 212e2b639d5af79ed6938397e3c2d245385fc751..93b53a46a351200ad32737b7b83acccab75c315b 100644 (file)
@@ -5,11 +5,30 @@ TrajectoryPlannerROS:
   max_vel_theta: 0.4
   min_in_place_vel_theta: 0.4
 
   max_vel_theta: 0.4
   min_in_place_vel_theta: 0.4
 
-  acc_lim_x: 2.5
+  acc_lim_x: 10.07
   acc_lim_y: 0.0
   acc_lim_y: 0.0
-  acc_lim_theta: 0.3
+  acc_lim_theta: 12.00
 
   holonomic_robot: false
   meter_scoring: true
 
 
   holonomic_robot: false
   meter_scoring: true
 
-  sim_granularity: 0.01
+  xy_goal_tolerance: 0.20
+  yaw_goal_tolerance: 0.3
+
+DWAPlannerROS:
+  acc_lim_x: 10.07
+  acc_lim_y: 0.0
+  acc_lim_th: 12.00
+
+  max_vel_x: 0.5
+  min_vel_x: 0.0 # no backward movement
+  max_vel_y: 0.0
+  min_vel_y: 0.0
+
+  max_trans_vel: 0.5
+  min_trans_vel: 0.2
+  max_rot_vel: 0.4
+  min_rot_vel: 0.3
+
+  xy_goal_tolerance: 0.20
+  yaw_goal_tolerance: 0.3
diff --git a/config/costmap_exploration.yaml b/config/costmap_exploration.yaml
new file mode 100644 (file)
index 0000000..26f3800
--- /dev/null
@@ -0,0 +1,20 @@
+#must match incoming static map
+global_frame: map
+robot_base_frame: base_link
+resolution: 0.05
+
+track_unknown_space: true
+rolling_window: false
+
+plugins: 
+- {name: static,           type: "costmap_2d::StaticLayer"}            
+- {name: explore_boundary, type: "frontier_exploration::BoundedExploreLayer"}
+#Can disable sensor layer if gmapping is fast enough to update scans
+- {name: sensor,           type: "costmap_2d::ObstacleLayer"}
+- {name: inflation,        type: "costmap_2d::InflationLayer"}
+
+explore_boundary:
+  resize_to_boundary: false
+  frontier_travel_point: middle
+  #set to false for gmapping, true if re-exploring a known area
+  explore_clear_space: false
index 9ea3b6cedbb8e19483f96fc1cea503fae4cbc4d6..3015ff08c5c129d2834768eaa523399ed543a3b5 100644 (file)
@@ -5,5 +5,4 @@ global_costmap:
   static_map: true
   plugins:
   - {name: static_layer, type: 'costmap_2d::StaticLayer'}
   static_map: true
   plugins:
   - {name: static_layer, type: 'costmap_2d::StaticLayer'}
-  - {name: obstacle_layer, type: 'costmap_2d::ObstacleLayer'}
   - {name: inflation_layer, type: 'costmap_2d::InflationLayer'}
   - {name: inflation_layer, type: 'costmap_2d::InflationLayer'}
index 391e33864e7b0c8895f12b0991f14d5229decb38..62b586d16818b9e558c9e7dfb60aff2179495784 100644 (file)
@@ -5,12 +5,12 @@ local_costmap:
   publish_frequency: 2.0
   static_map: false
   rolling_window: true
   publish_frequency: 2.0
   static_map: false
   rolling_window: true
-  width: 2.0
-  height: 2.0
+  width: 3.0
+  height: 3.0
   resolution: 0.05
   plugins:
   - {name: obstacle_layer, type: 'costmap_2d::ObstacleLayer'}
   resolution: 0.05
   plugins:
   - {name: obstacle_layer, type: 'costmap_2d::ObstacleLayer'}
-  - {name: range_layer,   type: "range_sensor_layer::RangeSensorLayer"}
+  #- {name: range_layer,   type: "range_sensor_layer::RangeSensorLayer"}
   - {name: inflation_layer, type: 'costmap_2d::InflationLayer'}
 
   range_layer:
   - {name: inflation_layer, type: 'costmap_2d::InflationLayer'}
 
   range_layer:
diff --git a/launch/exploration.launch b/launch/exploration.launch
new file mode 100644 (file)
index 0000000..a608265
--- /dev/null
@@ -0,0 +1,13 @@
+<?xml version="1.0"?>
+<launch>
+       <node pkg="frontier_exploration" type="explore_client" name="explore_client" output="screen"/>
+
+       <node pkg="frontier_exploration" type="explore_server" name="explore_server" output="screen" >
+               <param name="frequency" type="double" value="1.0"/>
+               <!-- Should be less than sensor range -->
+               <param name="goal_aliasing" type="double" value="2.0"/>
+
+               <rosparam file="$(find wild_thumper)/config/costmap_common_params.yaml" command="load" ns="explore_costmap" />
+               <rosparam file="$(find wild_thumper)/config/costmap_exploration.yaml" command="load" ns="explore_costmap" />
+       </node>
+</launch>
index 989cedcfb2781e0087d1e90381732b5a86ea1ecf..a046e6eaf60522b917730cf8d03bd001e3461702 100644 (file)
@@ -3,6 +3,7 @@
        <arg name="slam_gmapping" default="false" />
        <arg name="map_file" default="$(find wild_thumper)/data/map.yaml" />
        <arg name="nomap" default="false" />
        <arg name="slam_gmapping" default="false" />
        <arg name="map_file" default="$(find wild_thumper)/data/map.yaml" />
        <arg name="nomap" default="false" />
+       <arg name="base_local_planner" default="dwa_local_planner/DWAPlannerROS"/> <!-- base_local_planner/TrajectoryPlannerROS || dwa_local_planner/DWAPlannerROS -->
 
        <!-- Run AMCL -->
        <group unless="$(arg nomap)">
 
        <!-- Run AMCL -->
        <group unless="$(arg nomap)">
@@ -27,6 +28,7 @@
        </node>
 
        <node pkg="move_base" type="move_base" respawn="false" name="move_base" output="screen">
        </node>
 
        <node pkg="move_base" type="move_base" respawn="false" name="move_base" output="screen">
+               <param name="base_local_planner" value="$(arg base_local_planner)"/>
                <rosparam file="$(find wild_thumper)/config/costmap_common_params.yaml" command="load" ns="global_costmap" />
                <rosparam file="$(find wild_thumper)/config/costmap_common_params.yaml" command="load" ns="local_costmap" />
                <rosparam file="$(find wild_thumper)/config/global_costmap_params.yaml" command="load" unless="$(arg nomap)" />
                <rosparam file="$(find wild_thumper)/config/costmap_common_params.yaml" command="load" ns="global_costmap" />
                <rosparam file="$(find wild_thumper)/config/costmap_common_params.yaml" command="load" ns="local_costmap" />
                <rosparam file="$(find wild_thumper)/config/global_costmap_params.yaml" command="load" unless="$(arg nomap)" />