-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.yml
executable file
·35 lines (28 loc) · 1.19 KB
/
config.yml
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
default:
# Minimum distance between OD pairs - FHWA specified critical limit
CRITICAL_DISTANCE: 70
# SOC limits for random assignment
SOC_LOWER_LIMIT: 80
SOC_UPPER_LIMIT: 100
# Start and end times for trip beginning
# We generate random trip start times between these times
START_TIME: "06:00:00"
END_TIME: "22:00:00"
# Start and End date for simulation
# We generate trial EV agents to run simulations between these dates
SIM_START_DATE: !expr as.POSIXct("2019/07/01")
SIM_END_DATE: !expr as.POSIXct("2019/08/01")
# A low trip average speed for calculating subsequent trips
AVG_TRIP_SPEED: 40 # mph
# Cost of rental per day - assumed constant across WA - can change with zip
AVG_RENTAL_CAR_COST: 50 # $ per day (or $ per trip here)
# Average fuel economy of rental car
AVG_FUEL_ECONOMY_RENTAL: 25 # mpg, since rental cars are generally newer
# Average fuel economy of a user owned car
AVG_FUEL_ECONOMY_OWN: 23 # mpg
# Furthest restroom break
AVG_RESTROOM_SPACING: 20 # miles
# The distance from the highway to look for charging stations
LOOKUP_DISTANCE: 10
# Global seed for all random number generations
GLOBAL_SEED: 123