Skip to content

Commit

Permalink
pre commit fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Sanchez <[email protected]>
  • Loading branch information
danielsanchezaran committed Nov 20, 2023
1 parent 48dfaca commit 9a88100
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions control/pid_longitudinal_controller/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,21 +193,21 @@ AutonomouStuff Lexus RX 450h for under 40 km/h driving.

### DRIVE Parameter

| Name | Type | Description | Default value |
| :------------------------------------ | :----- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------ |
| kp | double | p gain for longitudinal control | 1.0 |
| ki | double | i gain for longitudinal control | 0.1 |
| kd | double | d gain for longitudinal control | 0.0 |
| max_out | double | max value of PID's output acceleration during DRIVE state [m/s^2] | 1.0 |
| min_out | double | min value of PID's output acceleration during DRIVE state [m/s^2] | -1.0 |
| max_p_effort | double | max value of acceleration with p gain | 1.0 |
| min_p_effort | double | min value of acceleration with p gain | -1.0 |
| max_i_effort | double | max value of acceleration with i gain | 0.3 |
| min_i_effort | double | min value of acceleration with i gain | -0.3 |
| max_d_effort | double | max value of acceleration with d gain | 0.0 |
| min_d_effort | double | min value of acceleration with d gain | 0.0 |
| lpf_vel_error_gain | double | gain of low-pass filter for velocity error | 0.9 |
| brake_keeping_acc | double | If `enable_brake_keeping_before_stop` is true, a certain acceleration is kept during DRIVE state before the ego stops [m/s^2] See [Brake keeping](#brake-keeping). | 0.2 |
| Name | Type | Description | Default value |
| :----------------- | :----- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------ |
| kp | double | p gain for longitudinal control | 1.0 |
| ki | double | i gain for longitudinal control | 0.1 |
| kd | double | d gain for longitudinal control | 0.0 |
| max_out | double | max value of PID's output acceleration during DRIVE state [m/s^2] | 1.0 |
| min_out | double | min value of PID's output acceleration during DRIVE state [m/s^2] | -1.0 |
| max_p_effort | double | max value of acceleration with p gain | 1.0 |
| min_p_effort | double | min value of acceleration with p gain | -1.0 |
| max_i_effort | double | max value of acceleration with i gain | 0.3 |
| min_i_effort | double | min value of acceleration with i gain | -0.3 |
| max_d_effort | double | max value of acceleration with d gain | 0.0 |
| min_d_effort | double | min value of acceleration with d gain | 0.0 |
| lpf_vel_error_gain | double | gain of low-pass filter for velocity error | 0.9 |
| brake_keeping_acc | double | If `enable_brake_keeping_before_stop` is true, a certain acceleration is kept during DRIVE state before the ego stops [m/s^2] See [Brake keeping](#brake-keeping). | 0.2 |

### STOPPING Parameter (smooth stop)

Expand Down

0 comments on commit 9a88100

Please sign in to comment.