-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRun_VCWGv2.0.0.py
31 lines (28 loc) · 895 Bytes
/
Run_VCWGv2.0.0.py
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
from VCWG_Hydrology import VCWG_Hydro
"""
Specify file and case names
Developed by Mohsen Moradi and Amir A. Aliabadi
Atmospheric Innovations Research (AIR) Laboratory, University of Guelph, Guelph, Canada
Last update: December 2020
"""
#Basel
'''
epwFileName = 'ERA5_Basel_Jun.epw'
TopForcingFileName = None
VCWGParamFileName = 'initialize_Basel_MOST.uwg'
ViewFactorFileName = 'ViewFactor_Basel_MOST.txt'
# Case name to append output file names with
case = 'Basel_MOST'
'''
#Vancouver
#'''
epwFileName = None
TopForcingFileName = 'Vancouver2008_ERA5_Jul.csv'
VCWGParamFileName = 'initialize_Vancouver_LCZ1.uwg'
ViewFactorFileName = 'ViewFactor_Vancouver_LCZ1.txt'
# Case name to append output file names with
case = 'Vancouver_LCZ1'
#'''
# Initialize the UWG object and run the simulation
VCWG = VCWG_Hydro(epwFileName,TopForcingFileName,VCWGParamFileName,ViewFactorFileName,case)
VCWG.run()