Skip to content

Commit 6b32fd6

Browse files
refactor(obstacle_cruise_planner): move slow down params to a clear location (#926)
move slow down params to a clear location Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com>
1 parent 948d3ba commit 6b32fd6

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Diff for: autoware_launch/config/planning/scenario_planning/common/common.param.yaml

-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@
99
min_jerk: -1.0 # min jerk [m/sss]
1010
max_jerk: 1.0 # max jerk [m/sss]
1111

12-
slow_down:
13-
min_acc: -1.0 # min deceleration [m/ss]
14-
min_jerk: -1.0 # min jerk [m/sss]
15-
1612
# constraints to be observed
1713
limit:
1814
min_acc: -2.5 # min deceleration limit [m/ss]

Diff for: autoware_launch/config/planning/scenario_planning/lane_driving/motion_planning/obstacle_cruise_planner/obstacle_cruise_planner.param.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
terminal_safe_distance_margin : 3.0 # Stop margin at the goal. This value cannot exceed safe distance margin. [m]
1717
hold_stop_velocity_threshold: 0.01 # The maximum ego velocity to hold stopping [m/s]
1818
hold_stop_distance_threshold: 0.3 # The ego keeps stopping if the distance to stop changes within the threshold [m]
19+
slow_down_min_acc: -1.0 # slow down min deceleration [m/ss]
20+
slow_down_min_jerk: -1.0 # slow down min jerk [m/sss]
1921

2022
nearest_dist_deviation_threshold: 3.0 # [m] for finding nearest index
2123
nearest_yaw_deviation_threshold: 1.57 # [rad] for finding nearest index

0 commit comments

Comments
 (0)