Skip to content

Commit

Permalink
feat: update acceleration limit
Browse files Browse the repository at this point in the history
Signed-off-by: Berkay Karaman <[email protected]>
#1181
  • Loading branch information
Berkay Karaman committed Oct 1, 2024
1 parent 601a5d1 commit e57c9cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

# stopped state
stopped_vel: 0.0
stopped_acc: -3.4 # denotes pedal position
stopped_acc: -2.49 # denotes pedal position

# emergency state
emergency_vel: 0.0
Expand All @@ -65,8 +65,8 @@
acc_feedback_gain: 0.0

# acceleration limit
max_acc: 3.0
min_acc: -5.0
max_acc: 1.5
min_acc: -2.49

# jerk limit
max_jerk: 2.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

# constraints to be observed
limit:
min_acc: -2.5 # min deceleration limit [m/ss]
min_acc: -2.49 # min deceleration limit [m/ss]
max_acc: 1.0 # max acceleration limit [m/ss]
min_jerk: -1.5 # min jerk limit [m/sss]
max_jerk: 1.5 # max jerk limit [m/sss]

0 comments on commit e57c9cb

Please sign in to comment.