forked from tier4/autoware.universe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(behavior_path_planner): revise lane change module (tier4#1139)
* feat(behavior_path_planner): revise lane change module Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> Refactoring and renaming Remove some of the unused variables Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> Add longitudinal threshold and modify default param Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> fix error after rebase Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> * refactor and copy predicted if not empty Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> * Include abort parameters and reorganize parameters declaration Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
- Loading branch information
1 parent
5ee9b0b
commit b6a4831
Showing
11 changed files
with
675 additions
and
322 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 16 additions & 16 deletions
32
planning/behavior_path_planner/config/lane_change/lane_change.param.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
/**: | ||
ros__parameters: | ||
lane_change: | ||
min_stop_distance: 5.0 | ||
stop_time: 2.0 | ||
hysteresis_buffer_distance: 2.0 | ||
lane_change_prepare_duration: 4.0 | ||
lane_changing_duration: 8.0 | ||
lane_change_finish_judge_buffer: 3.0 | ||
minimum_lane_change_velocity: 5.6 | ||
prediction_duration: 8.0 | ||
prediction_time_resolution: 0.5 | ||
static_obstacle_velocity_thresh: 1.5 | ||
maximum_deceleration: 1.0 | ||
enable_abort_lane_change: false | ||
enable_collision_check_at_prepare_phase: false | ||
use_predicted_path_outside_lanelet: false | ||
use_all_predicted_path: false | ||
enable_blocked_by_obstacle: false | ||
lane_change_prepare_duration: 4.0 # [s] | ||
lane_changing_duration: 8.0 # [s] | ||
minimum_lane_change_prepare_distance: 4.0 # [m] | ||
lane_change_finish_judge_buffer: 3.0 # [m] | ||
minimum_lane_change_velocity: 5.6 # [m/s] | ||
prediction_time_resolution: 0.5 # [s] | ||
maximum_deceleration: 1.0 # [m/s2] | ||
lane_change_sampling_num: 10 | ||
abort_lane_change_velocity_thresh: 0.5 | ||
abort_lane_change_angle_thresh: 10.0 # [deg] | ||
abort_lane_change_distance_thresh: 0.3 # [m] | ||
enable_abort_lane_change: true | ||
enable_collision_check_at_prepare_phase: true | ||
use_predicted_path_outside_lanelet: true | ||
use_all_predicted_path: true | ||
publish_debug_marker: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.