Skip to content

Commit bf6e342

Browse files
authored
feat(freespace_planning_algorithm): update freespace planner params (#1080)
* update freespace planner params Signed-off-by: mohammad alqudah <alqudah.mohammad@tier4.jp> * update goal planner params Signed-off-by: mohammad alqudah <alqudah.mohammad@tier4.jp> * update start planner params Signed-off-by: mohammad alqudah <alqudah.mohammad@tier4.jp> * rename parameter Signed-off-by: mohammad alqudah <alqudah.mohammad@tier4.jp> * change parameter value Signed-off-by: mohammad alqudah <alqudah.mohammad@tier4.jp> --------- Signed-off-by: mohammad alqudah <alqudah.mohammad@tier4.jp>
1 parent 9a9acaa commit bf6e342

File tree

4 files changed

+39
-27
lines changed

4 files changed

+39
-27
lines changed

autoware_launch/config/planning/scenario_planning/common/costmap_generator.param.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
activate_by_scenario: False
88
grid_min_value: 0.0
99
grid_max_value: 1.0
10-
grid_resolution: 0.2
10+
grid_resolution: 0.3
1111
grid_length_x: 70.0
1212
grid_length_y: 70.0
1313
grid_position_x: 0.0

autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_path_planner/goal_planner/goal_planner.param.yaml

+13-8
Original file line numberDiff line numberDiff line change
@@ -91,25 +91,30 @@
9191
velocity: 1.0
9292
vehicle_shape_margin: 1.0
9393
time_limit: 3000.0
94-
minimum_turning_radius: 5.0
95-
maximum_turning_radius: 5.0
96-
turning_radius_size: 1
94+
max_turning_ratio: 0.5
95+
turning_steps: 1
9796
# search configs
9897
search_configs:
99-
theta_size: 144
98+
theta_size: 120
10099
angle_goal_range: 6.0
101-
curve_weight: 1.2
102-
reverse_weight: 1.0
103100
lateral_goal_range: 0.5
104101
longitudinal_goal_range: 2.0
102+
curve_weight: 0.5
103+
reverse_weight: 1.0
104+
direction_change_weight: 1.5
105105
# costmap configs
106106
costmap_configs:
107107
obstacle_threshold: 30
108108
# -- A* search Configurations --
109109
astar:
110+
search_method: "forward" # options: forward, backward
110111
only_behind_solutions: false
111-
use_back: false
112-
distance_heuristic_weight: 1.0
112+
use_back: true
113+
adapt_expansion_distance: true
114+
expansion_distance: 0.5
115+
distance_heuristic_weight: 2.0
116+
smoothness_weight: 0.5
117+
obstacle_distance_weight: 1.75
113118
# -- RRT* search Configurations --
114119
rrtstar:
115120
enable_update: true

autoware_launch/config/planning/scenario_planning/lane_driving/behavior_planning/behavior_path_planner/start_planner/start_planner.param.yaml

+13-8
Original file line numberDiff line numberDiff line change
@@ -62,25 +62,30 @@
6262
velocity: 1.0
6363
vehicle_shape_margin: 1.0
6464
time_limit: 3000.0
65-
minimum_turning_radius: 5.0
66-
maximum_turning_radius: 5.0
67-
turning_radius_size: 1
65+
max_turning_ratio: 0.7
66+
turning_steps: 1
6867
# search configs
6968
search_configs:
70-
theta_size: 144
69+
theta_size: 120
7170
angle_goal_range: 6.0
72-
curve_weight: 1.2
73-
reverse_weight: 1.0
7471
lateral_goal_range: 0.5
7572
longitudinal_goal_range: 2.0
73+
curve_weight: 0.5
74+
reverse_weight: 1.0
75+
direction_change_weight: 1.5
7676
# costmap configs
7777
costmap_configs:
7878
obstacle_threshold: 30
7979
# -- A* search Configurations --
8080
astar:
81+
search_method: "forward" # options: forward, backward
8182
only_behind_solutions: false
82-
use_back: false
83-
distance_heuristic_weight: 1.0
83+
use_back: true
84+
adapt_expansion_distance: true
85+
expansion_distance: 0.5
86+
distance_heuristic_weight: 2.0
87+
smoothness_weight: 0.5
88+
obstacle_distance_weight: 1.75
8489
# -- RRT* search Configurations --
8590
rrtstar:
8691
enable_update: true

autoware_launch/config/planning/scenario_planning/parking/freespace_planner/freespace_planner.param.yaml

+12-10
Original file line numberDiff line numberDiff line change
@@ -16,27 +16,29 @@
1616
# base configs
1717
time_limit: 30000.0
1818
# robot configs # TODO replace by vehicle_info
19-
robot_length: 4.5
20-
robot_width: 1.75
21-
robot_base2back: 1.0
22-
minimum_turning_radius: 9.0
23-
maximum_turning_radius: 9.0
24-
turning_radius_size: 1
19+
max_turning_ratio: 0.5 # ratio of actual turning limit of vehicle
20+
turning_steps: 1
2521
# search configs
26-
theta_size: 144
22+
theta_size: 120
2723
angle_goal_range: 6.0
28-
curve_weight: 1.2
29-
reverse_weight: 2.0
3024
lateral_goal_range: 0.5
3125
longitudinal_goal_range: 2.0
26+
curve_weight: 0.5
27+
reverse_weight: 1.0
28+
direction_change_weight: 1.5
3229
# costmap configs
3330
obstacle_threshold: 100
3431

3532
# -- A* search Configurations --
3633
astar:
34+
search_method: "forward" # options: forward, backward
3735
only_behind_solutions: false
3836
use_back: true
39-
distance_heuristic_weight: 1.0
37+
adapt_expansion_distance: true
38+
expansion_distance: 0.5
39+
distance_heuristic_weight: 2.0
40+
smoothness_weight: 0.5
41+
obstacle_distance_weight: 1.75
4042

4143
# -- RRT* search Configurations --
4244
rrtstar:

0 commit comments

Comments
 (0)