forked from CL2-UWaterloo/f1tenth_ws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yaml
executable file
·24 lines (22 loc) · 1.01 KB
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
pure_pursuit:
ros__parameters:
waypoints_path: "/f1tenth_ws/src/pure_pursuit/racelines/e7_floor5_biggest.csv"
odom_topic: "/pf/pose/odom"
car_refFrame: "laser"
global_refFrame: "map"
drive_topic: "/drive"
rviz_current_waypoint_topic: "/current_waypoint"
rviz_lookahead_waypoint_topic: "/lookahead_waypoint"
# Pure Pursuit Parameters
# Lookahead is computed using the following: lookahead = min(max(min_lookahead, max_lookahead * curr_velocity / lookahead_ratio), max_lookahead);
# min_lookahead: 0.5 # for square track
min_lookahead: 1.0 # for larger track
max_lookahead: 3.0 # lookahead when the car is going around max velocity
lookahead_ratio: 8.0 # approximately the max velocity
# K_p: 0.25 # for square track
K_p: 0.15 # for big track
steering_limit: 25.0
velocity_percentage: 0.8 # the limit, can only do 1 lap with clean tires
waypoint_visualizer_node:
ros__parameters:
waypoints_path: "/f1tenth_ws/src/pure_pursuit/racelines/e7_floor5_biggest.csv"