Skip to content

Commit

Permalink
Update interface.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cfranyota authored and Casey Francis committed Jun 4, 2022
1 parent 1df4cf6 commit 8b155c2
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions selfdrive/car/honda/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ def get_params(candidate, fingerprint=gen_empty_fingerprint(), car_fw=[], disabl

ret.lateralTuning.init('torque')
ret.lateralTuning.torque.useSteeringAngle = True
ret.lateralTuning.torque.kp = 1.0 / MAX_LAT_ACCEL
ret.lateralTuning.torque.kp = 2.0 / MAX_LAT_ACCEL
ret.lateralTuning.torque.kf = 1.0 / MAX_LAT_ACCEL
ret.lateralTuning.torque.ki = 0.1 / MAX_LAT_ACCEL
ret.lateralTuning.torque.ki = 0.05 / MAX_LAT_ACCEL
ret.lateralTuning.torque.friction = friction
else:
ret.lateralTuning.pid.kpV, ret.lateralTuning.pid.kiV = [[0.3], [0.1]]
Expand All @@ -122,9 +122,9 @@ def get_params(candidate, fingerprint=gen_empty_fingerprint(), car_fw=[], disabl

ret.lateralTuning.init('torque')
ret.lateralTuning.torque.useSteeringAngle = True
ret.lateralTuning.torque.kp = 1.0 / MAX_LAT_ACCEL
ret.lateralTuning.torque.kp = 2.0 / MAX_LAT_ACCEL
ret.lateralTuning.torque.kf = 1.0 / MAX_LAT_ACCEL
ret.lateralTuning.torque.ki = 0.1 / MAX_LAT_ACCEL
ret.lateralTuning.torque.ki = 0.05 / MAX_LAT_ACCEL
ret.lateralTuning.torque.friction = friction
else:
ret.lateralTuning.pid.kpV, ret.lateralTuning.pid.kiV = [[0.36], [0.108]] #minus 10% from 0.4, 0.12
Expand All @@ -146,9 +146,9 @@ def get_params(candidate, fingerprint=gen_empty_fingerprint(), car_fw=[], disabl

ret.lateralTuning.init('torque')
ret.lateralTuning.torque.useSteeringAngle = True
ret.lateralTuning.torque.kp = 1.0 / MAX_LAT_ACCEL
ret.lateralTuning.torque.kp = 2.0 / MAX_LAT_ACCEL
ret.lateralTuning.torque.kf = 1.0 / MAX_LAT_ACCEL
ret.lateralTuning.torque.ki = 0.1 / MAX_LAT_ACCEL
ret.lateralTuning.torque.ki = 0.05 / MAX_LAT_ACCEL
ret.lateralTuning.torque.friction = friction
else:
ret.lateralTuning.pid.kpV, ret.lateralTuning.pid.kiV = [[0.6], [0.18]]
Expand Down Expand Up @@ -193,9 +193,9 @@ def get_params(candidate, fingerprint=gen_empty_fingerprint(), car_fw=[], disabl

ret.lateralTuning.init('torque')
ret.lateralTuning.torque.useSteeringAngle = True
ret.lateralTuning.torque.kp = 1.0 / MAX_LAT_ACCEL
ret.lateralTuning.torque.kp = 2.0 / MAX_LAT_ACCEL
ret.lateralTuning.torque.kf = 1.0 / MAX_LAT_ACCEL
ret.lateralTuning.torque.ki = 0.1 / MAX_LAT_ACCEL
ret.lateralTuning.torque.ki = 0.05 / MAX_LAT_ACCEL
ret.lateralTuning.torque.friction = friction
else:
ret.lateralTuning.pid.kpV, ret.lateralTuning.pid.kiV = [[0.21], [0.07]]
Expand Down Expand Up @@ -271,9 +271,9 @@ def get_params(candidate, fingerprint=gen_empty_fingerprint(), car_fw=[], disabl

ret.lateralTuning.init('torque')
ret.lateralTuning.torque.useSteeringAngle = True
ret.lateralTuning.torque.kp = 1.0 / MAX_LAT_ACCEL
ret.lateralTuning.torque.kp = 2.0 / MAX_LAT_ACCEL
ret.lateralTuning.torque.kf = 1.0 / MAX_LAT_ACCEL
ret.lateralTuning.torque.ki = 0.1 / MAX_LAT_ACCEL
ret.lateralTuning.torque.ki = 0.05 / MAX_LAT_ACCEL
ret.lateralTuning.torque.friction = friction
else:
ret.lateralTuning.pid.kpV, ret.lateralTuning.pid.kiV = [[0.2], [0.06]]
Expand Down

0 comments on commit 8b155c2

Please sign in to comment.