Skip to content

Commit

Permalink
add smoothing_num parameter (autowarefoundation#263) (autowarefoundat…
Browse files Browse the repository at this point in the history
…ion#301)

* add smoothing_num parameter

* change param

Co-authored-by: tkimura4 <tomoya.kimura@tier4.jp>
  • Loading branch information
2 people authored and kenji-miyake committed Nov 1, 2021
1 parent 173120b commit 90c4581
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions control_launch/config/mpc_follower/mpc_follower.param.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@
admissible_yaw_error_rad: 1.57 # stop mpc calculation when error is larger than the following value

# -- path smoothing --
enable_path_smoothing: false # flag for path smoothing
path_filter_moving_ave_num: 25 # param of moving average filter for path smoothing
curvature_smoothing_num: 15 # point-to-point index distance used in curvature calculation : curvature is calculated from three points p(i-num), p(i), p(i+num)
enable_path_smoothing: false # flag for path smoothing
path_filter_moving_ave_num: 25 # param of moving average filter for path smoothing
curvature_smoothing_num_ref_steer: 15 # point-to-point index distance used in curvature calculation (for steer command reference): curvature is calculated from three points p(i-num), p(i), p(i+num)
curvature_smoothing_num_traj: 15 # point-to-point index distance used in curvature calculation (for trajectory): curvature is calculated from three points p(i-num), p(i), p(i+num)

# -- mpc optimization --
qpoases_max_iter: 500 # max iteration number for quadratic programming
Expand Down

0 comments on commit 90c4581

Please sign in to comment.