Skip to content

Commit

Permalink
BRT adjustment for BRT=1
Browse files Browse the repository at this point in the history
Representing fewer stops/reduced delay per stop
  • Loading branch information
lmz committed Aug 30, 2019
1 parent f46b87e commit cb6366f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions model-files/scripts/skims/PrepHwyNet.job
Original file line number Diff line number Diff line change
Expand Up @@ -156,11 +156,11 @@ loop period = 1, 5
; compute bus time
; no congestion for BRT facilities (two-levels)
IF (BRT = 1)
BUS_TIME = FFT + delayfactor * DISTANCE
BUS_TIME = FFT + (delayfactor * DISTANCE * 0.5)
ELSEIF (BRT = 2)
BUS_TIME = CTIM + delayfactor * DISTANCE * 0.5
BUS_TIME = CTIM + (delayfactor * DISTANCE * 0.5)
ELSE
BUS_TIME = CTIM + delayfactor * DISTANCE
BUS_TIME = CTIM + (delayfactor * DISTANCE)
ENDIF

endrun
Expand Down

0 comments on commit cb6366f

Please sign in to comment.