Skip to content
This repository has been archived by the owner on Nov 15, 2022. It is now read-only.

Commit

Permalink
Higher deceleration (#84)
Browse files Browse the repository at this point in the history
* raise maximum deceleration limits

* raise maximum deceleration limits
  • Loading branch information
sshane authored Mar 22, 2020
1 parent 80deeaa commit 11f2c68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions selfdrive/controls/lib/planner.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
# lookup tables VS speed to determine min and max accels in cruise
# make sure these accelerations are smaller than mpc limits
if travis:
_A_CRUISE_MIN_V = [-1.0, -.8, -.67, -.5, -.30]
_A_CRUISE_MIN_V = [-1.0, -.8, -.67, -.5, -.30]
else:
_A_CRUISE_MIN_V = [-1.2, -.9, -.73, -.6, -.35]
_A_CRUISE_MIN_V = [-1.4, -1.2, -.8, -.65, -.37]
_A_CRUISE_MIN_BP = [0., 5., 10., 20., 40.]

# need fast accel at very low speed for stop and go
Expand Down

0 comments on commit 11f2c68

Please sign in to comment.