Skip to content

Commit

Permalink
Merge pull request autowarefoundation#465 from tier4/cp-lane-change-x2
Browse files Browse the repository at this point in the history
fix(lane_change): adding lane expansion param for collision check
  • Loading branch information
takayuki5168 authored Oct 6, 2023
2 parents 8967b73 + b9a5f8f commit 9f7a4ed
Showing 1 changed file with 22 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,28 @@

# safety check
safety_check:
expected_front_deceleration: -1.0
expected_rear_deceleration: -1.0
expected_front_deceleration_for_abort: -1.0
expected_rear_deceleration_for_abort: -2.0
rear_vehicle_reaction_time: 2.0
rear_vehicle_safety_time_margin: 1.0
lateral_distance_max_threshold: 1.5
longitudinal_distance_min_threshold: 3.0
longitudinal_velocity_delta_time: 0.8
allow_loose_check_for_cancel: true
execution:
expected_front_deceleration: -1.0
expected_rear_deceleration: -1.0
rear_vehicle_reaction_time: 2.0
rear_vehicle_safety_time_margin: 1.0
lateral_distance_max_threshold: 2.0
longitudinal_distance_min_threshold: 3.0
longitudinal_velocity_delta_time: 0.8
cancel:
expected_front_deceleration: -1.0
expected_rear_deceleration: -2.0
rear_vehicle_reaction_time: 1.5
rear_vehicle_safety_time_margin: 0.8
lateral_distance_max_threshold: 1.0
longitudinal_distance_min_threshold: 2.5
longitudinal_velocity_delta_time: 0.6

# lane expansion for object filtering
lane_expansion:
left_offset: 1.0 # [m]
right_offset: 1.0 # [m]

# lateral acceleration map
lateral_acceleration:
Expand Down

0 comments on commit 9f7a4ed

Please sign in to comment.