Skip to content

Commit

Permalink
fix(occlusion_spot): add lacking param (#336)
Browse files Browse the repository at this point in the history
Signed-off-by: satoshi-ota <[email protected]>
Co-authored-by: satoshi-ota <[email protected]>
Signed-off-by: Tomohito Ando <[email protected]>
  • Loading branch information
2 people authored and saka1-s committed Jun 25, 2024
1 parent a47a3be commit ab476df
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@

# -- vehicle model --
vehicle_model_type: "kinematics" # vehicle model type for mpc prediction. option is kinematics, kinematics_no_delay, and dynamics
input_delay: 0.24 # steering input delay time for delay compensation
vehicle_model_steer_tau: 0.27 # steering dynamics time constant (1d approximation) [s]
input_delay: 0.17 # steering input delay time for delay compensation
vehicle_model_steer_tau: 0.15 # steering dynamics time constant (1d approximation) [s]
steer_rate_lim_dps_list_by_curvature: [40.0, 50.0, 60.0] # steering angle rate limit list depending on curvature [deg/s]
curvature_list_for_steer_rate_lim: [0.001, 0.002, 0.01] # curvature list for steering angle rate limit interpolation in ascending order [/m]
steer_rate_lim_dps_list_by_velocity: [60.0, 50.0, 40.0] # steering angle rate limit list depending on velocity [deg/s]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**:
ros__parameters:
delay_compensation_time: 0.1
delay_compensation_time: 0.15

enable_smooth_stop: true
enable_overshoot_emergency: true
Expand Down Expand Up @@ -58,16 +58,16 @@

# emergency state
emergency_vel: 0.0
emergency_acc: -5.0
emergency_jerk: -3.0
emergency_acc: -2.5
emergency_jerk: -1.5

# acceleration limit
max_acc: 3.0
min_acc: -5.0
max_acc: 1.86
min_acc: -3.36

# jerk limit
max_jerk: 2.0
min_jerk: -5.0
min_jerk: -2.0

# slope compensation
lpf_pitch_gain: 0.95
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
kp: 0.3

backward:
start_jerk: -0.1
min_jerk_mild_stop: -0.3
start_jerk: -0.3
min_jerk_mild_stop: -0.5
min_jerk: -1.5
min_acc_mild_stop: -1.0
min_acc: -2.5
Expand Down

0 comments on commit ab476df

Please sign in to comment.