Skip to content

Commit

Permalink
increased congestion crowding for park and ride
Browse files Browse the repository at this point in the history
  • Loading branch information
AshishKuls committed Jul 17, 2024
1 parent 9e7b592 commit 6d135f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tm2py/components/network/transit/transit_assign.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def calc_segment_cost(transit_volume: float, capacity, segment) -> float:
mode_char = line.mode.id

if mode_char in ["p"]:
congestion = 0.25 * ((transit_volume / capacity) ** 8)
congestion = 0.25 * ((transit_volume / capacity) ** 10)
else:
seated_capacity = (
line.vehicle.seated_capacity
Expand Down

0 comments on commit 6d135f1

Please sign in to comment.