mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-19 06:33:57 +08:00
* Initial commit * Fix bugs * Need more torque rate * Cleanup cray cray control * Write nicely * Chiiil * Not relevant for cray cray control * Do some logging * Seems like it has more torque than I thought * Bit more feedforward * Tune change * Retune * Retune * Little more chill * Add coroll * Add corolla * Give craycray a good name * Update to proper logging * D to the PI * Should be in radians * Add d * Start oscillations * Add D term * Only change torque rate limits for new tune * Add d logging * Should be enough * Wrong sign in D * Downtune a little * Needed to prevent faults * Add lqr rav4 to tune * Try derivative again * Data based retune * Data based retune * add friction compensation * Doesnt need too much P with friction comp * remove lqr * Remove kd * Fix tests * fix tests * Too much error * Get roll induced error under 1cm/deg * Too much jitter * Do roll comp * Add ki * Final update * Update refs * Cleanup latcontrol_torque a little more
45 lines
1.5 KiB
Python
Executable File
45 lines
1.5 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_torque import LatControlTorque
|
|
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, LatControlTorque), (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()
|