Skip to content

Commit

Permalink
Merge pull request #225 from SANDAG/ttr_remove_ff_wait_time
Browse files Browse the repository at this point in the history
Removed flexible fleet wait time from travel time reporter
  • Loading branch information
bhargavasana authored Oct 23, 2024
2 parents b0ecce4 + ee3dda5 commit f5d0d17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/python/TravelTimeReporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ def get_ff_time(self, nev = False):
np.maximum(
self.constants[flavor + "DiversionConstant"] + direct_time,
self.constants[flavor + "DiversionFactor"] * direct_time
) + self.constants[flavor + "WaitTime"],
),
self.settings["infinity"]
),
self.land_use.index,
Expand Down Expand Up @@ -483,4 +483,4 @@ def run(self):
TravelTimeReporter(model_run, settings_file).run()
end_time = time.time()

print("Travel time reporter run in {} seconds".format(round(end_time - start_time, 1)))
print("Travel time reporter run in {} seconds".format(round(end_time - start_time, 1)))

0 comments on commit f5d0d17

Please sign in to comment.