Skip to content

Commit

Permalink
Merge pull request autowarefoundation#425 from tier4/sync-tier4-upstream
Browse files Browse the repository at this point in the history
chore: sync upstream
  • Loading branch information
tier4-autoware-private-bot[bot] authored Feb 27, 2023
2 parents a316071 + 925450b commit 019e82a
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
# Node
update_rate: 10.0
visualize_lanelet: false
include_right_lanes: false
include_left_lanes: false
include_opposite_lanes: false
include_conflicting_lanes: false

# Core
footprint_margin_scale: 1.0
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/**:
ros__parameters:
map_frame: map
arrival_check_angle_deg: 45.0
arrival_check_distance: 1.0
arrival_check_duration: 1.0
goal_angle_threshold_deg: 45.0
enable_correct_goal_pose: false
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
obstacle_velocity_thresh_to_start_acc: 3.5 # start adaptive cruise control when the velocity of the forward obstacle exceeds this value [m/s]
obstacle_velocity_thresh_to_stop_acc: 3.0 # stop adaptive cruise control when the velocity of the forward obstacle falls below this value [m/s]
emergency_stop_acceleration: -4.5 # supposed minimum acceleration (deceleration) in emergency stop [m/ss]
obstacle_emergency_stop_acceleration: -5.0
emergency_stop_idling_time: 0.5 # supposed idling time to start emergency stop [s]
min_dist_stop: 6.0 # minimum distance of emergency stop [m]
max_standard_acceleration: 1.0 # supposed maximum acceleration in active cruise control [m/ss]
Expand All @@ -18,6 +19,7 @@
min_dist_standard: 6.0 # minimum distance in active cruise control [m]
obstacle_min_standard_acceleration: -2.0 # supposed minimum acceleration of forward obstacle [m/ss]
margin_rate_to_change_vel: 0.7 # margin to insert upper velocity [-]
use_time_compensation_to_calc_distance: true

# pid parameter for ACC
p_coefficient_positive: 0.25 # coefficient P in PID control (used when target dist -current_dist >=0) [-]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
pedestrian_lateral_margin: 0.0 # margin of pedestrian footprint [m]
unknown_lateral_margin: 0.0 # margin of unknown footprint [m]
step_length: 1.0 # step length for pointcloud search range [m]
extend_distance: 0.0 # extend trajectory to consider after goal obstacle in the extend_distance [m]
enable_stop_behind_goal_for_obstacle: True # enable extend trajectory after goal lane for obstacle detection


slow_down_planner:
Expand Down
2 changes: 1 addition & 1 deletion autoware_launch/launch/autoware.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@

<!-- Sensing -->
<group if="$(var launch_sensing)">
<include file="$(find-pkg-share tier4_sensing_launch)/launch/sensing.launch.xml"/>
<include file="$(find-pkg-share autoware_launch)/launch/components/tier4_sensing_component.launch.xml"/>
</group>

<!-- Localization -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
<!-- rtc -->
<arg name="rtc_auto_mode_manager_param_path" value="$(var rtc_auto_mode_manager_param_path)"/>

<!-- mission planner -->
<arg name="mission_planner_param_path" value="$(find-pkg-share autoware_launch)/config/planning/mission_planning/mission_planner/mission_planner.param.yaml"/>

<!-- behavior path planner -->
<arg
name="side_shift_param_path"
Expand Down

0 comments on commit 019e82a

Please sign in to comment.