|
24 | 24 | mpc_weight_heading_error_squared_vel: 0.03 # heading error * velocity weight in matrix Q
|
25 | 25 | mpc_weight_steering_input: 1.0 # steering error weight in matrix R
|
26 | 26 | mpc_weight_steering_input_squared_vel: 1.00 # steering error * velocity weight in matrix R
|
27 |
| - mpc_weight_lat_jerk: 0.0 # lateral jerk weight in matrix R |
| 27 | + mpc_weight_lat_jerk: 0.075 # lateral jerk weight in matrix R |
28 | 28 | mpc_weight_steer_rate: 0.0 # steering rate weight in matrix R
|
29 | 29 | mpc_weight_steer_acc: 0.000001 # steering angular acceleration weight in matrix R
|
30 |
| - mpc_low_curvature_weight_lat_error: 0.05 # lateral error weight in matrix Q in low curvature point |
| 30 | + mpc_low_curvature_weight_lat_error: 0.1 # lateral error weight in matrix Q in low curvature point |
31 | 31 | mpc_low_curvature_weight_heading_error: 0.0 # heading error weight in matrix Q in low curvature point
|
32 |
| - mpc_low_curvature_weight_heading_error_squared_vel: 0.03 # heading error * velocity weight in matrix Q in low curvature point |
| 32 | + mpc_low_curvature_weight_heading_error_squared_vel: 0.2 # heading error * velocity weight in matrix Q in low curvature point |
33 | 33 | mpc_low_curvature_weight_steering_input: 1.0 # steering error weight in matrix R in low curvature point
|
34 | 34 | mpc_low_curvature_weight_steering_input_squared_vel: 2.00 # steering error * velocity weight in matrix R in low curvature point
|
35 | 35 | mpc_low_curvature_weight_lat_jerk: 0.0 # lateral jerk weight in matrix R in low curvature point
|
|
45 | 45 |
|
46 | 46 | # -- vehicle model --
|
47 | 47 | vehicle_model_type: "kinematics" # vehicle model type for mpc prediction. option is kinematics, kinematics_no_delay, and dynamics
|
48 |
| - input_delay: 0.1 # steering input delay time for delay compensation |
| 48 | + input_delay: 0.3 # steering input delay time for delay compensation |
49 | 49 | vehicle_model_steer_tau: 0.1 # steering dynamics time constant (1d approximation) [s]
|
50 | 50 | steer_rate_lim_dps_list_by_curvature: [20.0, 20.0, 20.0] # steering angle rate limit list depending on curvature [deg/s]
|
51 | 51 | curvature_list_for_steer_rate_lim: [0.001, 0.002, 0.01] # curvature list for steering angle rate limit interpolation in ascending order [/m]
|
|
0 commit comments