You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: planning/behavior_path_planner/autoware_behavior_path_lane_change_module/README.md
+2-1
Original file line number
Diff line number
Diff line change
@@ -886,7 +886,8 @@ The following parameters are configurable in [lane_change.param.yaml](https://gi
886
886
|`backward_length_buffer_for_end_of_lane`|[m]| double | The end of lane buffer to ensure ego vehicle has enough distance to start lane change | 3.0 |
887
887
|`backward_length_buffer_for_blocking_object`|[m]| double | The end of lane buffer to ensure ego vehicle has enough distance to start lane change when there is an object in front | 3.0 |
888
888
|`backward_length_from_intersection`|[m]| double | Distance threshold from the last intersection to invalidate or cancel the lane change path | 5.0 |
889
-
|`trajectory.prepare_duration`|[m]| double | The preparation time for the ego vehicle to be ready to perform lane change. | 4.0 |
889
+
|`trajectory.max_prepare_duration`|[s]| double | The maximum preparation time for the ego vehicle to be ready to perform lane change. | 4.0 |
890
+
|`trajectory.min_prepare_duration`|[s]| double | The minimum preparation time for the ego vehicle to be ready to perform lane change. | 2.0 |
890
891
|`trajectory.lateral_jerk`|[m/s3]| double | Lateral jerk value for lane change path generation | 0.5 |
891
892
|`trajectory.minimum_lane_changing_velocity`|[m/s]| double | Minimum speed during lane changing process. | 2.78 |
892
893
|`trajectory.lon_acc_sampling_num`|[-]| int | Number of possible lane-changing trajectories that are being influenced by longitudinal acceleration | 3 |
Copy file name to clipboardexpand all lines: planning/behavior_path_planner/autoware_behavior_path_lane_change_module/include/autoware/behavior_path_lane_change_module/scene.hpp
+1-1
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ class NormalLaneChange : public LaneChangeBase
Copy file name to clipboardexpand all lines: planning/behavior_path_planner/autoware_behavior_path_lane_change_module/include/autoware/behavior_path_lane_change_module/utils/base_class.hpp
Copy file name to clipboardexpand all lines: planning/behavior_path_planner/autoware_behavior_path_lane_change_module/include/autoware/behavior_path_lane_change_module/utils/calculation.hpp
Copy file name to clipboardexpand all lines: planning/behavior_path_planner/autoware_behavior_path_lane_change_module/include/autoware/behavior_path_lane_change_module/utils/data_structs.hpp
+2
Original file line number
Diff line number
Diff line change
@@ -222,6 +222,8 @@ struct TransientData
222
222
size_t current_path_seg_idx; // index of nearest segment to ego along current path
223
223
double current_path_velocity; // velocity of the current path at the ego position along the path
Copy file name to clipboardexpand all lines: planning/behavior_path_planner/autoware_behavior_path_lane_change_module/include/autoware/behavior_path_lane_change_module/utils/parameters.hpp
0 commit comments