Skip to content

Commit

Permalink
adding 2050 transit node constants to emme_config
Browse files Browse the repository at this point in the history
  • Loading branch information
bricegnichols committed Jul 30, 2018
1 parent 4bb4f49 commit 1c69cd3
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions emme_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@
'ashijtuvbwl' : 'asehdimjvutbpwl', 'ashijtuvbfl' : 'asehdimjvutbpfl',
'asbw' : 'asehdimjvutbpwl', 'ashijtuvbxl' : 'asehdimjvutbpxl',
'ahijstuvbw' : 'asehdimjvutbpw'}

###### Distance-based pricing######
add_distance_pricing = True
# rate below includes 3.5 cent carbon tax
distance_rate_dict = {'am' : 13.5, 'md' : 8.5, 'pm' : 13.5, 'ev' : 8.5, 'ni' : 8.5}
# HOT Lanes
add_hot_lane_tolls = True
hot_rate_dict = {'am' : 35, 'md' : 10, 'pm' : 35, 'ev' : 10, 'ni' : 10}
mode_file = 'modes.txt'
transit_vehicle_file = 'vehicles.txt'
base_net_name = '_roadway.in'
Expand All @@ -31,11 +37,11 @@

# in the junctions shapefile in the inputs/networks folder, this is the
# minimum scene_node value where facility type = 99
min_hov_node = 199203
min_hov_node = {'2014' : 199203, '2025' : 199026, '2040' : 199205, '2040' : 199205}
###################################
################################### SKIMS AND PATHS ####################################
log_file_name = 'outputs/logs/skims_log.txt'
STOP_THRESHOLD = 0.025
STOP_THRESHOLD = 0.026
parallel_instances = 12 # Number of simultaneous parallel processes. Must be a factor of 12.
max_iter = 50 # Assignment Convergence Criteria
best_relative_gap = 0.01 # Assignment Convergence Criteria
Expand Down Expand Up @@ -102,6 +108,14 @@
'0055':{'@hdwfr': '.1', '@wait' : '1', '@invt' : '.70'},
'0056':{'@hdwfr': '.1', '@wait' : '1', '@invt' : '.70'},
'0057':{'@hdwfr': '.1', '@wait' : '1', '@invt' : '.70'},
'0058':{'@hdwfr': '.1', '@wait' : '1', '@invt' : '.70'}},
'2050':{'0041':{'@hdwfr': '.1', '@wait' : '1', '@invt' : '.70'},
'0042':{'@hdwfr': '.1', '@wait' : '1', '@invt' : '.70'},
'0043':{'@hdwfr': '.1', '@wait' : '1', '@invt' : '.70'},
'0044':{'@hdwfr': '.1', '@wait' : '1', '@invt' : '.70'},
'0055':{'@hdwfr': '.1', '@wait' : '1', '@invt' : '.70'},
'0056':{'@hdwfr': '.1', '@wait' : '1', '@invt' : '.70'},
'0057':{'@hdwfr': '.1', '@wait' : '1', '@invt' : '.70'},
'0058':{'@hdwfr': '.1', '@wait' : '1', '@invt' : '.70'}}}

transit_network_tod_dict = {'5to6' : 'am', '6to7' : 'am', '7to8' : 'am', '8to9' : 'am',
Expand Down Expand Up @@ -165,7 +179,7 @@
# Define gravity model coefficients
autoop = 16.75 # Auto operation costs (in hundreds of cents per mile?)
avotda = 0.0303 # VOT
airport_control_total = {'2014' : 101838, '2020' : 130475, '2025' : 149027, '2030' : 170216, '2035' : 189617, '2040' : 211228, '2050': 257500}
airport_control_total = {'2014' : 101838, '2020' : 130475, '2025' : 149027, '2030' : 170216, '2035' : 189617, '2040' : 211228, '2050' : 257500}

# Change modes for toll links
toll_modes_dict = {'asehdimjvutbpfl' : 'aedmvutbpfl', 'asehdimjvutbpwl' : 'aedmvutbpwl', 'ahdimjbp' : 'admbp'}

0 comments on commit 1c69cd3

Please sign in to comment.