Skip to content

Commit

Permalink
enable AEB stop in vehicle_cmd_gate and diag_graph_agg
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com>
  • Loading branch information
danielsanchezaran committed Jul 30, 2024
1 parent bf6e342 commit 9bf3bc7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
ros__parameters:
update_rate: 10.0
system_emergency_heartbeat_timeout: 0.5
use_emergency_handling: false
use_emergency_handling: true
check_external_emergency_heartbeat: $(var check_external_emergency_heartbeat)
use_start_request: false
enable_cmd_limit_filter: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
sigma_yaw_angle_deg: 5.0 #[angle degree]
object_buffer_time_length: 2.0 #[s]
history_time_length: 1.0 #[s]
check_lateral_acceleration_constraints: false # whether to check if the predicted path complies with lateral acceleration constraints
max_lateral_accel: 2.0 # [m/ss] max acceptable lateral acceleration for predicted vehicle paths
min_acceleration_before_curve: -2.0 # [m/ss] min acceleration a vehicle might take to decelerate before a curve
check_lateral_acceleration_constraints: true # whether to check if the predicted path complies with lateral acceleration constraints
max_lateral_accel: 1.0 # [m/ss] max acceptable lateral acceleration for predicted vehicle paths
min_acceleration_before_curve: -1.0 # [m/ss] min acceleration a vehicle might take to decelerate before a curve
use_vehicle_acceleration: false # whether to consider current vehicle acceleration when predicting paths or not
speed_limit_multiplier: 1.5 # When using vehicle acceleration. Set vehicle's maximum predicted speed as the legal speed limit in that lanelet times this value
acceleration_exponential_half_life: 2.5 # [s] When using vehicle acceleration. The decaying acceleration model considers that the current vehicle acceleration will be halved after this many seconds
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,11 +144,12 @@
# collision check parameters
publish_debug_marker: false
rss_params:
rear_vehicle_reaction_time: 2.0
rear_vehicle_safety_time_margin: 1.0
rear_vehicle_reaction_time: 1.0
rear_vehicle_safety_time_margin: 0.5
lateral_distance_max_threshold: 2.0
longitudinal_distance_min_threshold: 3.0
longitudinal_velocity_delta_time: 0.8
rear_vehicle_deceleration: -2.5
extended_polygon_policy: "along_path" # [-] select "rectangle" or "along_path"
# hysteresis factor to expand/shrink polygon
hysteresis_factor_expand_rate: 1.0
Expand Down

0 comments on commit 9bf3bc7

Please sign in to comment.