Skip to content

Commit

Permalink
config 3: avoidance at high speed between incoming NPCs
Browse files Browse the repository at this point in the history
Signed-off-by: Maxime CLEMENT <maxime.clement@tier4.jp>
  • Loading branch information
maxime-clem committed Oct 3, 2024
1 parent a47a93a commit a2d1b98
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**:
ros__parameters:
max_vel: 4.17 # max velocity limit [m/s]
max_vel: 14.17 # max velocity limit [m/s]

# constraints param for normal driving
normal:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# "current_lane" : use only current lane. this module doesn't use adjacent lane to avoid object.
# "same_direction_lane" : this module uses same direction lane to avoid object if need.
# "opposite_direction_lane": this module uses both same direction and opposite direction lane.
use_lane_type: "current_lane"
use_lane_type: "opposite_direction_lane"
# drivable area setting
use_intersection_areas: true
use_hatched_road_markings: true
Expand All @@ -23,9 +23,9 @@
th_moving_time: 2.0 # [s]
longitudinal_margin: 0.0 # [m]
lateral_margin:
soft_margin: 0.7 # [m]
hard_margin: 0.2 # [m]
hard_margin_for_parked_vehicle: 0.2 # [m]
soft_margin: 1.0 # [m]
hard_margin: 0.7 # [m]
hard_margin_for_parked_vehicle: 0.7 # [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 Down Expand Up @@ -176,7 +176,7 @@
safety_check:
# safety check target type
target_type:
car: true # [-]
car: false # [-]
truck: true # [-]
bus: true # [-]
trailer: true # [-]
Expand Down Expand Up @@ -291,10 +291,10 @@
constraints:
# lateral constraints
lateral:
velocity: [1.39, 4.17, 11.1] # [m/s]
max_accel_values: [0.5, 0.5, 0.5] # [m/ss]
min_jerk_values: [0.2, 0.2, 0.2] # [m/sss]
max_jerk_values: [1.0, 1.0, 1.0] # [m/sss]
velocity: [1.39, 4.17, 11.1, 15.0] # [m/s]
max_accel_values: [0.5, 0.5, 0.5, 2.0] # [m/ss]
min_jerk_values: [0.2, 0.2, 0.2, 0.0] # [m/sss]
max_jerk_values: [1.0, 1.0, 1.0, 2.0] # [m/sss]

# longitudinal constraints
longitudinal:
Expand Down

0 comments on commit a2d1b98

Please sign in to comment.