You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| steer_dead_band | float | steer dead band [rad]|
221
-
| adaptive_gear_ratio_coef | list[float]| List of floats of length 6 specifying information on speed-dependent gear ratios from tire angle to steering wheel angle. |
222
-
| acc_time_delay | float | acceleration time delay [s]|
223
-
| steer_time_delay | float | steer time delay [s]|
224
-
| acc_time_constant | float | acceleration time constant [s]|
225
-
| steer_time_constant | float | steer time constant [s]|
| steer_dead_band | float | steer dead band [rad]|
221
+
| adaptive_gear_ratio_coef | list[float]| List of floats of length 6 specifying information on speed-dependent gear ratios from tire angle to steering wheel angle. |
222
+
| acc_time_delay | float | acceleration time delay [s]|
223
+
| steer_time_delay | float | steer time delay [s]|
224
+
| acc_time_constant | float | acceleration time constant [s]|
225
+
| steer_time_constant | float | steer time constant [s]|
226
226
| accel_map_scale | float | Parameter that magnifies the corresponding distortion from acceleration input values to actual acceleration realizations. <br> Correspondence information is kept in `control/autoware_smart_mpc_trajectory_follower/autoware_smart_mpc_trajectory_follower/python_simulator/accel_map.csv`. |
227
-
| acc_scaling | float | acceleration scaling |
228
-
| steer_scaling | float | steer scaling |
227
+
| acc_scaling | float | acceleration scaling |
228
+
| steer_scaling | float | steer scaling |
229
229
230
230
For example, to give the simulation side 0.01 [rad] of steer bias and 0.001 [rad] of steer dead band, edit the `sim_setting.json` as follows.
Copy file name to clipboardExpand all lines: control/autoware_smart_mpc_trajectory_follower/autoware_smart_mpc_trajectory_follower/python_simulator/python_simulator.py
Copy file name to clipboardExpand all lines: control/autoware_smart_mpc_trajectory_follower/autoware_smart_mpc_trajectory_follower/python_simulator/run_python_simulator.py
+1-1
Original file line number
Diff line number
Diff line change
@@ -12,9 +12,9 @@
12
12
# See the License for the specific language governing permissions and
Copy file name to clipboardExpand all lines: control/autoware_smart_mpc_trajectory_follower/autoware_smart_mpc_trajectory_follower/python_simulator/run_sim.py
Copy file name to clipboardExpand all lines: control/autoware_smart_mpc_trajectory_follower/autoware_smart_mpc_trajectory_follower/scripts/drive_controller.py
Copy file name to clipboardExpand all lines: control/autoware_smart_mpc_trajectory_follower/autoware_smart_mpc_trajectory_follower/scripts/drive_functions.py
Copy file name to clipboardExpand all lines: control/autoware_smart_mpc_trajectory_follower/autoware_smart_mpc_trajectory_follower/scripts/drive_iLQR.py
Copy file name to clipboardExpand all lines: control/autoware_smart_mpc_trajectory_follower/autoware_smart_mpc_trajectory_follower/scripts/drive_mppi.py
Copy file name to clipboardExpand all lines: control/autoware_smart_mpc_trajectory_follower/autoware_smart_mpc_trajectory_follower/scripts/pympc_trajectory_follower.py
Copy file name to clipboardExpand all lines: control/autoware_smart_mpc_trajectory_follower/autoware_smart_mpc_trajectory_follower/training_and_data_check/add_training_data_from_csv.py
Copy file name to clipboardExpand all lines: control/autoware_smart_mpc_trajectory_follower/autoware_smart_mpc_trajectory_follower/training_and_data_check/train_drive_NN_model.py
+5-3
Original file line number
Diff line number
Diff line change
@@ -15,13 +15,15 @@
15
15
# cspell: ignore optim savez suptitle
16
16
17
17
"""Class for training neural nets from driving data."""
0 commit comments