Skip to content

Commit 6d1436f

Browse files
add params
Signed-off-by: Yuki Takagi <yuki.takagi@tier4.jp>
1 parent 98107d1 commit 6d1436f

File tree

2 files changed

+15
-10
lines changed

2 files changed

+15
-10
lines changed

autoware_launch/config/planning/preset/default_preset.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ launch:
55
default: "true"
66
- arg:
77
name: launch_avoidance_by_lane_change_module
8-
default: "true" #?
8+
default: "true"
99
- arg:
1010
name: launch_dynamic_avoidance_module
1111
default: "false"

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

+14-9
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,12 @@
4040
max_overtaking_object_angle: 1.05
4141
min_oncoming_object_vel: 1.0
4242
max_oncoming_object_angle: 0.523
43+
max_pedestrians_crossing_vel: 1.5
4344

4445
front_object:
4546
max_object_angle: 0.785
46-
min_object_vel: -0.5 # [m/s] The value is negative considering the noisy velocity of the stopped vehicle.
47-
max_ego_path_lat_cover_ratio: 0.3 # [-] The object will be ignored if the ratio of the object covering the ego's path is higher than this value.
47+
min_object_vel: -0.5 # [m/s] The value is negative considering the noisy velocity of the stopped vehicle.
48+
max_ego_path_lat_cover_ratio: 0.3 # [-] The object will be ignored if the ratio of the object covering the ego's path is higher than this value.
4849

4950
stopped_object:
5051
max_object_vel: 0.5 # [m/s] The object will be determined as stopped if the velocity is smaller than this value.
@@ -55,23 +56,27 @@
5556
min_longitudinal_polygon_margin: 3.0 # [m]
5657

5758
lat_offset_from_obstacle: 1.0 # [m]
59+
margin_distance_around_pedestrian: 2.0 # [m]
60+
predicted_path:
61+
end_time_to_consider: 3.0 # [s]
62+
threshold_confidence: 0.3 # [] not probability
5863
max_lat_offset_to_avoid: 0.5 # [m]
5964
max_time_for_object_lat_shift: 0.0 # [s]
6065
lpf_gain_for_lat_avoid_to_offset: 0.9 # [-]
6166

62-
max_ego_lat_acc: 0.3 # [m/ss]
63-
max_ego_lat_jerk: 0.3 # [m/sss]
64-
delay_time_ego_shift: 1.0 # [s]
67+
max_ego_lat_acc: 0.3 # [m/ss]
68+
max_ego_lat_jerk: 0.3 # [m/sss]
69+
delay_time_ego_shift: 1.0 # [s]
6570

6671
# for same directional object
6772
overtaking_object:
6873
max_time_to_collision: 40.0 # [s]
69-
start_duration_to_avoid: 1.0 # [s]
70-
end_duration_to_avoid: 1.0 # [s]
74+
start_duration_to_avoid: 1.0 # [s]
75+
end_duration_to_avoid: 1.0 # [s]
7176
duration_to_hold_avoidance: 3.0 # [s]
7277

7378
# for opposite directional object
7479
oncoming_object:
7580
max_time_to_collision: 40.0 # [s] This value should be the same as overtaking_object's one to suppress chattering of this value for parked vehicles
76-
start_duration_to_avoid: 1.0 # [s]
77-
end_duration_to_avoid: 0.0 # [s]
81+
start_duration_to_avoid: 1.0 # [s]
82+
end_duration_to_avoid: 0.0 # [s]

0 commit comments

Comments
 (0)