Advertisement
Guest User

Untitled

a guest
Jun 10th, 2016
522
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. TebLocalPlannerROS:
  2.  
  3. odom_topic: /odom
  4. map_frame: /map # This parameter will be overridden by local_costmap/global_frame
  5.  
  6. # Trajectory
  7.  
  8. teb_autosize: True
  9. dt_ref: 0.6
  10. dt_hysteresis: 0.1
  11. global_plan_overwrite_orientation: True
  12. max_global_plan_lookahead_dist: 5.0
  13. feasibility_check_no_poses: 2
  14.  
  15. # Robot
  16.  
  17. max_vel_x: 1.0
  18. max_vel_x_backwards: 1.0
  19. max_vel_theta: 1.0
  20. acc_lim_x: 0.2
  21. acc_lim_theta: 1.0
  22. min_turning_radius: 3.85
  23. wheelbase: 1.811
  24. footprint_model/type: line
  25. footprint_model/line_start: [-0.2, 0.0]
  26. footprint_model/line_end: [2.0, 0.0]
  27.  
  28. # GoalTolerance
  29.  
  30. xy_goal_tolerance: 0.2
  31. yaw_goal_tolerance: 0.1
  32. free_goal_vel: False
  33.  
  34. # Obstacles
  35.  
  36. min_obstacle_dist: 0.1
  37. include_costmap_obstacles: True
  38. costmap_obstacles_behind_robot_dist: 1.0
  39. obstacle_poses_affected: 5
  40.  
  41. # Optimization
  42.  
  43. no_inner_iterations: 3
  44. no_outer_iterations: 2
  45. optimization_activate: True
  46. optimization_verbose: False
  47. penalty_epsilon: 0.09
  48. weight_max_vel_x: 2
  49. weight_max_vel_theta: 1
  50. weight_acc_lim_x: 0.01
  51. weight_acc_lim_theta: 0.01
  52. weight_kinematics_nh: 1000
  53. weight_kinematics_forward_drive: 1
  54. weight_kinematics_turning_radius: 1
  55. weight_optimaltime: 1.0
  56. weight_obstacle: 50
  57. weight_dynamic_obstacle: 10 # not in use yet
  58. alternative_time_cost: False # not in use yet
  59.  
  60. # Homotopy Class Planner
  61.  
  62. enable_homotopy_class_planning: False
  63. enable_multithreading: True
  64. simple_exploration: False
  65. max_number_classes: 4
  66. roadmap_graph_no_samples: 15
  67. roadmap_graph_area_width: 5
  68. h_signature_prescaler: 0.5
  69. h_signature_threshold: 0.1
  70. obstacle_keypoint_offset: 0.1
  71. obstacle_heading_threshold: 0.45
  72. visualize_hc_graph: True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement