63 lines
2.0 KiB
Python
63 lines
2.0 KiB
Python
|
import glob
|
||
|
import sys
|
||
|
import os
|
||
|
from pathlib import Path
|
||
|
|
||
|
from hub.imports.geometry_factory import GeometryFactory
|
||
|
from hub.imports.construction_factory import ConstructionFactory
|
||
|
from hub.imports.usage_factory import UsageFactory
|
||
|
from hub.imports.weather_factory import WeatherFactory
|
||
|
from hub.exports.energy_building_exports_factory import EnergyBuildingsExportsFactory
|
||
|
from hub.helpers.dictionaries import Dictionaries
|
||
|
|
||
|
sys.path.append('./')
|
||
|
|
||
|
try:
|
||
|
file_path = (Path(__file__).parent / 'data' / 'summerschool_all_buildings.geojson')
|
||
|
out_path = (Path(__file__).parent / 'out_files')
|
||
|
files = glob.glob(f'{out_path}/*')
|
||
|
|
||
|
for file in files:
|
||
|
if file != '.gitignore':
|
||
|
os.remove(file)
|
||
|
|
||
|
print('[simulation start]')
|
||
|
city = GeometryFactory('geojson',
|
||
|
path=file_path,
|
||
|
height_field='citygml_me',
|
||
|
year_of_construction_field='ANNEE_CONS',
|
||
|
function_field='CODE_UTILI',
|
||
|
function_to_hub=Dictionaries().montreal_function_to_hub_function).city
|
||
|
|
||
|
for building in city.buildings:
|
||
|
building.year_of_construction = 2022
|
||
|
print(f'city created from {file_path}')
|
||
|
ConstructionFactory('nrcan', city).enrich()
|
||
|
print('enrich constructions... done')
|
||
|
UsageFactory('nrcan', city).enrich()
|
||
|
print('enrich usage... done')
|
||
|
WeatherFactory('epw', city).enrich()
|
||
|
print('enrich weather... done')
|
||
|
|
||
|
for b in city.buildings:
|
||
|
print(b.name, b.function, b.year_of_construction, b.floor_area, b.storeys_above_ground)
|
||
|
|
||
|
print('exporting:')
|
||
|
|
||
|
_idf = EnergyBuildingsExportsFactory('idf', city, out_path).export()
|
||
|
print(' idf exported...')
|
||
|
_idf.run()
|
||
|
|
||
|
csv_file = str((out_path / f'{city.name}_out.csv').resolve())
|
||
|
eso_file = str((out_path / f'{city.name}_out.eso').resolve())
|
||
|
idf_file = str((out_path / f'{city.name}.idf').resolve())
|
||
|
|
||
|
print(f'info: {idf_file}, {csv_file}, {eso_file}')
|
||
|
print('[simulation end]')
|
||
|
|
||
|
except Exception as ex:
|
||
|
print(ex)
|
||
|
print('error: ', ex)
|
||
|
print('[simulation abort]')
|
||
|
sys.stdout.flush()
|