Skip to content

Commit

Permalink
fix(static_obstacle_avoidance): lower hard margin for parked car to h…
Browse files Browse the repository at this point in the history
…andle dense urban scenarios

#1129
  • Loading branch information
Berkay Karaman committed Sep 9, 2024
1 parent c02d90c commit c8063ff
Showing 1 changed file with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
th_moving_time: 2.0 # [s]
longitudinal_margin: 0.0 # [m]
lateral_margin:
soft_margin: 0.7 # [m]
soft_margin: 0.5 # [m]
hard_margin: 0.2 # [m]
hard_margin_for_parked_vehicle: 0.7 # [m]
hard_margin_for_parked_vehicle: 0.2 # [m]
max_expand_ratio: 0.0 # [-] FOR DEVELOPER
envelope_buffer_margin: 0.1 # [m] FOR DEVELOPER
th_error_eclipse_long_radius : 0.6 # [m]
Expand All @@ -34,9 +34,9 @@
th_moving_time: 2.0
longitudinal_margin: 0.0
lateral_margin:
soft_margin: 0.7
soft_margin: 0.5
hard_margin: 0.2
hard_margin_for_parked_vehicle: 0.7
hard_margin_for_parked_vehicle: 0.2
max_expand_ratio: 0.0
envelope_buffer_margin: 0.1
th_error_eclipse_long_radius : 0.6
Expand All @@ -45,9 +45,9 @@
th_moving_time: 2.0
longitudinal_margin: 0.0
lateral_margin:
soft_margin: 0.7
soft_margin: 0.5
hard_margin: 0.2
hard_margin_for_parked_vehicle: 0.7
hard_margin_for_parked_vehicle: 0.2
max_expand_ratio: 0.0
envelope_buffer_margin: 0.1
th_error_eclipse_long_radius : 0.6
Expand All @@ -56,9 +56,9 @@
th_moving_time: 2.0
longitudinal_margin: 0.0
lateral_margin:
soft_margin: 0.7
soft_margin: 0.5
hard_margin: 0.2
hard_margin_for_parked_vehicle: 0.7
hard_margin_for_parked_vehicle: 0.2
max_expand_ratio: 0.0
envelope_buffer_margin: 0.1
th_error_eclipse_long_radius : 0.6
Expand All @@ -67,7 +67,7 @@
th_moving_time: 1.0
longitudinal_margin: 0.0
lateral_margin:
soft_margin: 0.7
soft_margin: 0.5
hard_margin: -0.2
hard_margin_for_parked_vehicle: -0.2
max_expand_ratio: 0.0
Expand All @@ -80,7 +80,7 @@
lateral_margin:
soft_margin: 0.7
hard_margin: 0.5
hard_margin_for_parked_vehicle: 0.5
hard_margin_for_parked_vehicle: 0.2
max_expand_ratio: 0.0
envelope_buffer_margin: 0.5
th_error_eclipse_long_radius : 0.6
Expand All @@ -89,9 +89,9 @@
th_moving_time: 1.0
longitudinal_margin: 1.0
lateral_margin:
soft_margin: 0.7
soft_margin: 0.5
hard_margin: 0.3
hard_margin_for_parked_vehicle: 0.3
hard_margin_for_parked_vehicle: 0.2
max_expand_ratio: 0.0
envelope_buffer_margin: 0.5
th_error_eclipse_long_radius : 0.6
Expand All @@ -102,7 +102,7 @@
lateral_margin:
soft_margin: 0.7
hard_margin: 0.5
hard_margin_for_parked_vehicle: 0.5
hard_margin_for_parked_vehicle: 0.2
max_expand_ratio: 0.0
envelope_buffer_margin: 0.5
th_error_eclipse_long_radius : 0.6
Expand Down Expand Up @@ -232,7 +232,7 @@
# avoidance distance parameters
longitudinal:
min_prepare_time: 1.0 # [s]
max_prepare_time: 3.0 # [s]
max_prepare_time: 2.0 # [s]
min_prepare_distance: 1.0 # [m]
min_slow_down_speed: 1.38 # [m/s]
buf_slow_down_speed: 0.56 # [m/s] FOR DEVELOPER
Expand Down

0 comments on commit c8063ff

Please sign in to comment.