mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-18 22:23:56 +08:00
* base LatControl class, move sat check out of pid.py
clean up
clean up
* fix
* global variable for min control speed
* nicer name
* unify latcontrol class init arguments
* add to release files
* saturated if close to limit
* move angle mode saturation checks into class
* check_saturation function takes in current saturated status
undo
* apply latcontrol_angle's active checking to all controllers
* clean up
* move those back
* make abstract baseclass
* add test for saturation
* keep clip
* update ref
* fix static analysis
Co-authored-by: Willem Melching <willem.melching@gmail.com>
old-commit-hash: 9de8f8cd8c
45 lines
1.4 KiB
Python
Executable File
45 lines
1.4 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
import unittest
|
|
|
|
from parameterized import parameterized
|
|
|
|
from cereal import car, log
|
|
from selfdrive.car.car_helpers import interfaces
|
|
from selfdrive.car.honda.values import CAR as HONDA
|
|
from selfdrive.car.toyota.values import CAR as TOYOTA
|
|
from selfdrive.car.nissan.values import CAR as NISSAN
|
|
from selfdrive.controls.lib.latcontrol_pid import LatControlPID
|
|
from selfdrive.controls.lib.latcontrol_lqr import LatControlLQR
|
|
from selfdrive.controls.lib.latcontrol_indi import LatControlINDI
|
|
from selfdrive.controls.lib.latcontrol_angle import LatControlAngle
|
|
from selfdrive.controls.lib.vehicle_model import VehicleModel
|
|
|
|
|
|
class TestLatControl(unittest.TestCase):
|
|
|
|
@parameterized.expand([(HONDA.CIVIC, LatControlPID), (TOYOTA.RAV4, LatControlLQR), (TOYOTA.PRIUS, LatControlINDI), (NISSAN.LEAF, LatControlAngle)])
|
|
def test_saturation(self, car_name, controller):
|
|
CarInterface, CarController, CarState = interfaces[car_name]
|
|
CP = CarInterface.get_params(car_name)
|
|
CI = CarInterface(CP, CarController, CarState)
|
|
VM = VehicleModel(CP)
|
|
|
|
controller = controller(CP, CI)
|
|
|
|
|
|
CS = car.CarState.new_message()
|
|
CS.vEgo = 30
|
|
|
|
last_actuators = car.CarControl.Actuators.new_message()
|
|
|
|
params = log.LiveParametersData.new_message()
|
|
|
|
for _ in range(1000):
|
|
_, _, lac_log = controller.update(True, CS, CP, VM, params, last_actuators, 1, 0)
|
|
|
|
self.assertTrue(lac_log.saturated)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|