66 lines
2.3 KiB
Python
66 lines
2.3 KiB
Python
import sys
|
|
from pathlib import Path
|
|
import csv
|
|
sys.path.append('../hub')
|
|
try:
|
|
from imports.geometry_factory import GeometryFactory
|
|
from imports.construction_factory import ConstructionFactory
|
|
from imports.usage_factory import UsageFactory
|
|
from exports.exports_factory import ExportsFactory
|
|
from imports.customized_imports_factory import CustomizedImportsFactory
|
|
from imports.customized_imports.stochastic_schedules_importer import StochasticSchedulesImporter as ssi
|
|
|
|
for argument_tuple in sys.argv[1:]:
|
|
argument = argument_tuple.split(' ')
|
|
option = argument[0]
|
|
value = argument[1]
|
|
if option == '-g':
|
|
gml = value
|
|
|
|
print('[simulation start]')
|
|
city = GeometryFactory('citygml', gml).city
|
|
print(f'city created from {gml}')
|
|
for building in city.buildings:
|
|
building.year_of_construction = 2006
|
|
ConstructionFactory('nrel', city).enrich()
|
|
print('enrich constructions... done')
|
|
UsageFactory('comnet', city).enrich()
|
|
print('enrich usage... done')
|
|
in_path = (Path(__file__).parent.parent / 'data' / 'occupancyschedules_2019_point4.xlsx')
|
|
CustomizedImportsFactory(ssi, city, in_path).enrich()
|
|
print('enrich stochastic schedules for occupancy... done')
|
|
|
|
area = 0
|
|
volume = 0
|
|
for building in city.buildings:
|
|
volume = building.volume
|
|
for ground in building.grounds:
|
|
area += ground.perimeter_polygon.area
|
|
|
|
print('exporting:')
|
|
out_path = (Path(__file__).parent.parent / 'out_files')
|
|
ExportsFactory('obj', city, out_path).export()
|
|
print(' geometry exported...')
|
|
# todo: _idf exporter does not catch errors in exporting
|
|
_idf = ExportsFactory('idf', city, out_path).export_debug()
|
|
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())
|
|
obj_file = str((out_path / f'{city.name}.obj').resolve())
|
|
|
|
with open((out_path / f'{city.name}_out.csv').resolve()) as f:
|
|
reader = csv.reader(f, delimiter=',')
|
|
for row in reader:
|
|
if ':00:00' in row[0]:
|
|
print(f'row: {row[0]}, {row[8]}, {row[9]}')
|
|
|
|
print(f'info: {idf_file}, {csv_file}, {eso_file}, {area}, {volume}, {obj_file}')
|
|
print('[simulation end]')
|
|
except Exception as ex:
|
|
print('error: ', ex)
|
|
print('[simulation abort]')
|
|
sys.stdout.flush()
|