Update vehicle model reference to 2023 edition of Guiggiani's book (#35805)

Update car_kf.py
This commit is contained in:
Simon Kuang
2025-07-25 12:57:13 -07:00
committed by GitHub
parent 5e07636d54
commit b4ae64358e
+3 -2
View File
@@ -93,8 +93,9 @@ class CarKalman(KalmanFilter):
dim_state = CarKalman.initial_x.shape[0]
name = CarKalman.name
# vehicle models comes from The Science of Vehicle Dynamics: Handling, Braking, and Ride of Road and Race Cars
# Model used is in 6.15 with formula from 6.198
# Linearized single-track lateral dynamics, equations 7.211-7.213
# Massimo Guiggiani, The Science of Vehicle Dynamics: Handling, Braking, and Ride of Road and Race Cars
# Springer Cham, 2023. doi: https://doi.org/10.1007/978-3-031-06461-6
# globals
global_vars = [sp.Symbol(name) for name in CarKalman.global_vars]