-
Notifications
You must be signed in to change notification settings - Fork 14
/
velocity_planner.py
545 lines (485 loc) · 25 KB
/
velocity_planner.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
#!/usr/bin/env python3
# This work is licensed under the terms of the MIT license.
# For a copy, see <https://opensource.org/licenses/MIT>.
"""
Modified by: XingYu Wang
Personal project - Motion Planning for Self-Driving Cars
Aug 22, 2019
"""
# Author: Ryan De Iaco
# Additional Comments: Carlos Wang
# Date: October 29, 2018
import numpy as np
from math import sin, cos, pi, sqrt
class VelocityPlanner:
def __init__(self, time_gap, a_max, slow_speed, stop_line_buffer):
self._time_gap = time_gap
self._a_max = a_max
self._slow_speed = slow_speed
self._stop_line_buffer = stop_line_buffer
self._prev_trajectory = [[0.0, 0.0, 0.0]]
# Computes an open loop speed estimate based on the previously planned
# trajectory, and the timestep since the last planning cycle.
# Input: timestep is in seconds
def get_open_loop_speed(self, timestep):
if len(self._prev_trajectory) == 1:
return self._prev_trajectory[0][2]
# If simulation time step is zero, give the start of the trajectory as the
# open loop estimate.
if timestep < 1e-4:
return self._prev_trajectory[0][2]
for i in range(len(self._prev_trajectory)-1):
distance_step = np.linalg.norm(np.subtract(self._prev_trajectory[i+1][0:2],
self._prev_trajectory[i][0:2]))
velocity = self._prev_trajectory[i][2]
time_delta = distance_step / velocity
# If time_delta exceeds the remaining time in our simulation timestep,
# interpolate between the velocity of the current step and the velocity
# of the next step to estimate the open loop velocity.
if time_delta > timestep:
v1 = self._prev_trajectory[i][2]
v2 = self._prev_trajectory[i+1][2]
v_delta = v2 - v1
interpolation_ratio = timestep / time_delta
return v1 + interpolation_ratio * v_delta
# Otherwise, keep checking.
else:
timestep -= time_delta
# Simulation time step exceeded the length of the path, which means we have likely
# stopped. Return the end velocity of the trajectory.
return self._prev_trajectory[-1][2]
######################################################
######################################################
# MODULE 7: COMPUTE VELOCITY PROFILE
# Read over the function comments to familiarize yourself with the
######################################################
######################################################
# Takes a path, and computes a velocity profile to our desired speed.
# - decelerate_to_stop denotes whether or not we need to decelerate to a
# stop line
# - follow_lead_vehicle denotes whether or not we need to follow a lead
# vehicle, with state given by lead_car_state.
# The order of precedence for handling these cases is stop sign handling,
# lead vehicle handling, then nominal lane maintenance. In a real velocity
# planner you would need to handle the coupling between these states, but
# for simplicity this project can be implemented by isolating each case.
# For all profiles, the required acceleration is given by self._a_max.
# Recall that the path is of the form [x_points, y_points, t_points].
def compute_velocity_profile(self, path, desired_speed, ego_state,
closed_loop_speed, decelerate_to_stop,
lead_car_state, follow_lead_vehicle):
"""Computes the velocity profile for the local planner path.
args:
path: Path (global frame) that the vehicle will follow.
Format: [x_points, y_points, t_points]
x_points: List of x values (m)
y_points: List of y values (m)
t_points: List of yaw values (rad)
Example of accessing the ith point's y value:
paths[1][i]
It is assumed that the stop line is at the end of the path.
desired_speed: speed which the vehicle should reach (m/s)
ego_state: ego state vector for the vehicle, in the global frame.
format: [ego_x, ego_y, ego_yaw, ego_open_loop_speed]
ego_x and ego_y : position (m)
ego_yaw : top-down orientation [-pi to pi]
ego_open_loop_speed : open loop speed (m/s)
closed_loop_speed: current (closed-loop) speed for vehicle (m/s)
decelerate_to_stop: Flag where if true, should decelerate to stop
lead_car_state: the lead vehicle current state.
Format: [lead_car_x, lead_car_y, lead_car_speed]
lead_car_x and lead_car_y : position (m)
lead_car_speed : lead car speed (m/s)
follow_lead_vehicle: If true, the ego car should perform lead
vehicle handling, as the lead vehicle is close enough to
influence the speed profile of the local path.
internal parameters of interest:
self._slow_speed: coasting speed (m/s) of the vehicle before it
comes to a stop
self._stop_line_buffer: buffer distance to stop line (m) for vehicle
to stop at
self._a_max: maximum acceleration/deceleration of the vehicle (m/s^2)
self._time_gap: Amount of time taken to reach the lead vehicle from
the current position
returns:
profile: Updated profile which contains the local path as well as
the speed to be tracked by the controller (global frame).
Length and speed in m and m/s.
Format: [[x0, y0, v0],
[x1, y1, v1],
...,
[xm, ym, vm]]
example:
profile[2][1]:
returns the 3rd point's y position in the local path
profile[5]:
returns [x5, y5, v5] (6th point in the local path)
"""
profile = []
# For our profile, use the open loop speed as our initial speed.
start_speed = ego_state[3]
# Generate a trapezoidal profile to decelerate to stop.
if decelerate_to_stop:
profile = self.decelerate_profile(path, start_speed)
# If we need to follow the lead vehicle, make sure we decelerate to its
# speed by the time we reach the time gap point.
elif follow_lead_vehicle:
profile = self.follow_profile(path, start_speed, desired_speed,
lead_car_state)
# Otherwise, compute the profile to reach our desired speed.
else:
profile = self.nominal_profile(path, start_speed, desired_speed)
# Interpolate between the zeroth state and the first state.
# This prevents the myopic controller from getting stuck at the zeroth
# state.
if len(profile) > 1:
interpolated_state = [(profile[1][0] - profile[0][0]) * 0.1 + profile[0][0],
(profile[1][1] - profile[0][1]) * 0.1 + profile[0][1],
(profile[1][2] - profile[0][2]) * 0.1 + profile[0][2]]
del profile[0]
profile.insert(0, interpolated_state)
# Save the planned profile for open loop speed estimation.
self._prev_trajectory = profile
return profile
# Computes a trapezoidal profile for decelerating to stop.
def decelerate_profile(self, path, start_speed):
"""Computes the velocity profile for the local path to decelerate to a
stop.
args:
path: Path (global frame) that the vehicle will follow.
Format: [x_points, y_points, t_points]
x_points: List of x values (m)
y_points: List of y values (m)
t_points: List of yaw values (rad)
Example of accessing the ith point's y value:
paths[1][i]
It is assumed that the stop line is at the end of the path.
start_speed: speed which the vehicle starts with (m/s)
internal parameters of interest:
self._slow_speed: coasting speed (m/s) of the vehicle before it
comes to a stop
self._stop_line_buffer: buffer distance to stop line (m) for vehicle
to stop at
self._a_max: maximum acceleration/deceleration of the vehicle (m/s^2)
returns:
profile: deceleration profile which contains the local path as well
as the speed to be tracked by the controller (global frame).
Length and speed in m and m/s.
Format: [[x0, y0, v0],
[x1, y1, v1],
...,
[xm, ym, vm]]
example:
profile[2][1]:
returns the 3rd point's y position in the local path
profile[5]:
returns [x5, y5, v5] (6th point in the local path)
"""
profile = []
slow_speed = self._slow_speed
stop_line_buffer = self._stop_line_buffer
# Using d = (v_f^2 - v_i^2) / (2 * a), compute the two distances
# used in the trapezoidal stop behaviour. decel_distance goes from
# start_speed to some coasting speed (slow_speed), then brake_distance
# goes from slow_speed to 0, both at a constant deceleration.
decel_distance = calc_distance(start_speed, slow_speed, -self._a_max)
brake_distance = calc_distance(slow_speed, 0, -self._a_max)
# compute total path length
path_length = 0.0
for i in range(len(path[0])-1):
path_length += np.linalg.norm([path[0][i+1] - path[0][i],
path[1][i+1] - path[1][i]])
stop_index = len(path[0]) - 1
temp_dist = 0.0
# Compute the index at which we should stop.
while (stop_index > 0) and (temp_dist < stop_line_buffer):
temp_dist += np.linalg.norm([path[0][stop_index] - path[0][stop_index-1],
path[1][stop_index] - path[1][stop_index-1]])
stop_index -= 1
# If the brake distance exceeds the length of the path, then we cannot
# perform a smooth deceleration and require a harder deceleration. Build
# the path up in reverse to ensure we reach zero speed at the required
# time.
if brake_distance + decel_distance + stop_line_buffer > path_length:
speeds = []
vf = 0.0
# The speeds past the stop line buffer should be zero.
for i in reversed(range(stop_index, len(path[0]))):
speeds.insert(0, 0.0)
# The rest of the speeds should be a linear ramp from zero,
# decelerating at -self._a_max.
for i in reversed(range(stop_index)):
dist = np.linalg.norm([path[0][i+1] - path[0][i],
path[1][i+1] - path[1][i]])
vi = calc_final_speed(vf, -self._a_max, dist)
# We don't want to have points above the starting speed
# along our profile, so clamp to start_speed.
if vi > start_speed:
vi = start_speed
speeds.insert(0, vi)
vf = vi
# Generate the profile, given the computed speeds.
for i in range(len(speeds)):
profile.append([path[0][i], path[1][i], speeds[i]])
# Otherwise, we will perform a full trapezoidal profile. The
# brake_index will be the index of the path at which we start
# braking, and the decel_index will be the index at which we stop
# decelerating to our slow_speed. These two indices denote the
# endpoints of the ramps in our trapezoidal profile.
else:
brake_index = stop_index
temp_dist = 0.0
# Compute the index at which to start braking down to zero.
while (brake_index > 0) and (temp_dist < brake_distance):
temp_dist += np.linalg.norm([path[0][brake_index] - path[0][brake_index-1],
path[1][brake_index] - path[1][brake_index-1]])
brake_index -= 1
# Compute the index to stop decelerating to the slow speed. This is
# done by stepping through the points until accumulating
# decel_distance of distance to said index, starting from the the
# start of the path.
decel_index = 0
temp_dist = 0.0
while (decel_index < brake_index) and (temp_dist < decel_distance):
temp_dist += np.linalg.norm([path[0][decel_index+1] - path[0][decel_index],
path[1][decel_index+1] - path[1][decel_index]])
decel_index += 1
# The speeds from the start to decel_index should be a linear ramp
# from the current speed down to the slow_speed, decelerating at
# -self._a_max.
vi = start_speed
for i in range(decel_index):
dist = np.linalg.norm([path[0][i+1] - path[0][i],
path[1][i+1] - path[1][i]])
vf = calc_final_speed(vi, -self._a_max, dist)
# We don't want to overshoot our slow_speed, so clamp it to that.
if vf < slow_speed:
vf = slow_speed
profile.append([path[0][i], path[1][i], vi])
vi = vf
# In this portion of the profile, we are maintaining our slow_speed.
for i in range(decel_index, brake_index):
profile.append([path[0][i], path[1][i], vi])
# The speeds from the brake_index to stop_index should be a
# linear ramp from the slow_speed down to the 0, decelerating at
# -self._a_max.
for i in range(brake_index, stop_index):
dist = np.linalg.norm([path[0][i+1] - path[0][i],
path[1][i+1] - path[1][i]])
vf = calc_final_speed(vi, -self._a_max, dist)
profile.append([path[0][i], path[1][i], vi])
vi = vf
# The rest of the profile consists of our stop_line_buffer, so
# it contains zero speed for all points.
for i in range(stop_index, len(path[0])):
profile.append([path[0][i], path[1][i], 0.0])
return profile
# Computes a profile for following a lead vehicle..
def follow_profile(self, path, start_speed, desired_speed, lead_car_state):
"""Computes the velocity profile for following a lead vehicle.
args:
path: Path (global frame) that the vehicle will follow.
Format: [x_points, y_points, t_points]
x_points: List of x values (m)
y_points: List of y values (m)
t_points: List of yaw values (rad)
Example of accessing the ith point's y value:
paths[1][i]
It is assumed that the stop line is at the end of the path.
start_speed: speed which the vehicle starts with (m/s)
desired_speed: speed which the vehicle should reach (m/s)
lead_car_state: the lead vehicle current state.
Format: [lead_car_x, lead_car_y, lead_car_speed]
lead_car_x and lead_car_y : position (m)
lead_car_speed : lead car speed (m/s)
internal parameters of interest:
self._a_max: maximum acceleration/deceleration of the vehicle (m/s^2)
self._time_gap: Amount of time taken to reach the lead vehicle from
the current position
returns:
profile: Updated follow vehicle profile which contains the local
path as well as the speed to be tracked by the controller
(global frame).
Length and speed in m and m/s.
Format: [[x0, y0, v0],
[x1, y1, v1],
...,
[xm, ym, vm]]
example:
profile[2][1]:
returns the 3rd point's y position in the local path
profile[5]:
returns [x5, y5, v5] (6th point in the local path)
"""
profile = []
# Find the closest point to the lead vehicle on our planned path.
min_index = len(path[0]) - 1
min_dist = float('Inf')
for i in range(len(path)):
dist = np.linalg.norm([path[0][i] - lead_car_state[0],
path[1][i] - lead_car_state[1]])
if dist < min_dist:
min_dist = dist
min_index = i
# Compute the time gap point, assuming our velocity is held constant at
# the minimum of the desired speed and the ego vehicle's velocity, from
# the closest point to the lead vehicle on our planned path.
desired_speed = min(lead_car_state[2], desired_speed)
ramp_end_index = min_index
distance = min_dist
distance_gap = desired_speed * self._time_gap
while (ramp_end_index > 0) and (distance > distance_gap):
distance += np.linalg.norm([path[0][ramp_end_index] - path[0][ramp_end_index-1],
path[1][ramp_end_index] - path[1][ramp_end_index-1]])
ramp_end_index -= 1
# We now need to reach the ego vehicle's speed by the time we reach the
# time gap point, ramp_end_index, which therefore is the end of our ramp
# velocity profile.
if desired_speed < start_speed:
decel_distance = calc_distance(start_speed, desired_speed, -self._a_max)
else:
decel_distance = calc_distance(start_speed, desired_speed, self._a_max)
# Here we will compute the speed profile from our initial speed to the
# end of the ramp.
vi = start_speed
for i in range(ramp_end_index + 1):
dist = np.linalg.norm([path[0][i+1] - path[0][i],
path[1][i+1] - path[1][i]])
if desired_speed < start_speed:
vf = calc_final_speed(vi, -self._a_max, dist)
else:
vf = calc_final_speed(vi, self._a_max, dist)
profile.append([path[0][i], path[1][i], vi])
vi = vf
# Once we hit the time gap point, we need to be at the desired speed.
# If we can't get there using a_max, do an abrupt change in the profile
# to use the controller to decelerate more quickly.
for i in range(ramp_end_index + 1, len(path[0])):
profile.append([path[0][i], path[1][i], desired_speed])
return profile
# Computes a profile for nominal speed tracking.
def nominal_profile(self, path, start_speed, desired_speed):
#print("normal:", desired_speed)
"""Computes the velocity profile for the local planner path in a normal
speed tracking case.
args:
path: Path (global frame) that the vehicle will follow.
Format: [x_points, y_points, t_points]
x_points: List of x values (m)
y_points: List of y values (m)
t_points: List of yaw values (rad)
Example of accessing the ith point's y value:
paths[1][i]
It is assumed that the stop line is at the end of the path.
desired_speed: speed which the vehicle should reach (m/s)
internal parameters of interest:
self._a_max: maximum acceleration/deceleration of the vehicle (m/s^2)
returns:
profile: Updated nominal speed profile which contains the local path
as well as the speed to be tracked by the controller (global frame).
Length and speed in m and m/s.
Format: [[x0, y0, v0],
[x1, y1, v1],
...,
[xm, ym, vm]]
example:
profile[2][1]:
returns the 3rd point's y position in the local path
profile[5]:
returns [x5, y5, v5] (6th point in the local path)
"""
profile = []
# Compute distance travelled from start speed to desired speed using
# a constant acceleration.
if desired_speed < start_speed:
accel_distance = calc_distance(start_speed, desired_speed, -self._a_max)
else:
accel_distance = calc_distance(start_speed, desired_speed, self._a_max)
# Here we will compute the end of the ramp for our velocity profile.
# At the end of the ramp, we will maintain our final speed.
ramp_end_index = 0
distance = 0.0
while (ramp_end_index < len(path[0])-1) and (distance < accel_distance):
distance += np.linalg.norm([path[0][ramp_end_index+1] - path[0][ramp_end_index],
path[1][ramp_end_index+1] - path[1][ramp_end_index]])
ramp_end_index += 1
# Here we will actually compute the velocities along the ramp.
vi = start_speed
for i in range(ramp_end_index):
dist = np.linalg.norm([path[0][i+1] - path[0][i],
path[1][i+1] - path[1][i]])
if desired_speed < start_speed:
vf = calc_final_speed(vi, -self._a_max, dist)
# clamp speed to desired speed
if vf < desired_speed:
vf = desired_speed
else:
vf = calc_final_speed(vi, self._a_max, dist)
# clamp speed to desired speed
if vf > desired_speed:
vf = desired_speed
profile.append([path[0][i], path[1][i], vi])
vi = vf
# If the ramp is over, then for the rest of the profile we should
# track the desired speed.
for i in range(ramp_end_index+1, len(path[0])):
profile.append([path[0][i], path[1][i], desired_speed])
return profile
######################################################
######################################################
# MODULE 7: COMPUTE TOTAL DISTANCE WITH CONSTANT ACCELERATION
# Read over the function comments to familiarize yourself with the
# arguments and necessary variables to return. Then follow the TODOs
# (top-down) and use the surrounding comments as a guide.
######################################################
######################################################
# Using d = (v_f^2 - v_i^2) / (2 * a), compute the distance
# required for a given acceleration/deceleration.
def calc_distance(v_i, v_f, a):
"""Computes the distance given an initial and final speed, with a constant
acceleration.
args:
v_i: initial speed (m/s)
v_f: final speed (m/s)
a: acceleration (m/s^2)
returns:
d: the final distance (m)
"""
#pass
# TODO: INSERT YOUR CODE BETWEEN THE DASHED LINES
# ------------------------------------------------------------------
# d = ...
# return d
return (v_f*v_f-v_i*v_i)/2/a
# ------------------------------------------------------------------
######################################################
######################################################
# MODULE 7: COMPUTE FINAL SPEED WITH CONSTANT ACCELERATION
# Read over the function comments to familiarize yourself with the
# arguments and necessary variables to return. Then follow the TODOs
# (top-down) and use the surrounding comments as a guide.
######################################################
######################################################
# Using v_f = sqrt(v_i^2 + 2ad), compute the final speed for a given
# acceleration across a given distance, with initial speed v_i.
# Make sure to check the discriminant of the radical. If it is negative,
# return zero as the final speed.
def calc_final_speed(v_i, a, d):
"""Computes the final speed given an initial speed, distance travelled,
and a constant acceleration.
args:
v_i: initial speed (m/s)
a: acceleration (m/s^2)
d: distance to be travelled (m)
returns:
v_f: the final speed (m/s)
"""
pass
# TODO: INSERT YOUR CODE BETWEEN THE DASHED LINES
# ------------------------------------------------------------------
# v_f = ...
# return v_f
temp = v_i*v_i+2*d*a
if temp < 0: return 0.0000001
else: return sqrt(temp)
# ------------------------------------------------------------------