Skip to content

Commit a5db2fe

Browse files
committed
tuned parameter
1 parent db1258b commit a5db2fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PathTracking/pure_pursuit/pure_pursuit.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
import math
1010
import matplotlib.pyplot as plt
1111

12-
old_nearest_point_index = None
1312

1413
k = 0.1 # look forward gain
15-
Lfc = 1.0 # look-ahead distance
14+
Lfc = 2.0 # look-ahead distance
1615
Kp = 1.0 # speed proportional gain
1716
dt = 0.1 # [s]
1817
L = 2.9 # [m] wheel base of vehicle
1918

2019

20+
old_nearest_point_index = None
2121
show_animation = True
2222

2323

0 commit comments

Comments
 (0)