Skip to content

Commit

Permalink
Merge pull request #25 from TK211X/patch-12
Browse files Browse the repository at this point in the history
Updated Santa Fe Ratio
  • Loading branch information
emmertex authored Jan 21, 2019
2 parents 512ad71 + 848d6d2 commit c05b2a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions selfdrive/car/hyundai/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,10 @@ def get_params(candidate, fingerprint):
ret.mass = 1814
ret.wheelbase = 2.906
ret.steerRatio = 11.451
elif candidate == CAR.SANTA_FE:
elif candidate == CAR.SANTA_FE: #AWD
ret.mass = 3982 * CV.LB_TO_KG
ret.wheelbase = 2.766
ret.steerRatio = 13.76 # assume same as Sorento
ret.steerRatio = 13.321

ret.mass += std_cargo
ret.minEnableSpeed = -1. # enable is done by stock ACC, so ignore this
Expand Down

0 comments on commit c05b2a2

Please sign in to comment.