system_assignation/main.py

47 lines
2.2 KiB
Python
Raw Normal View History

from geojson_creator import process_geojson
2023-12-19 13:51:06 -05:00
from pathlib import Path
from scripts.ep_workflow import energy_plus_workflow
from hub.imports.geometry_factory import GeometryFactory
from hub.helpers.dictionaries import Dictionaries
from hub.imports.construction_factory import ConstructionFactory
from hub.imports.usage_factory import UsageFactory
from hub.imports.weather_factory import WeatherFactory
from hub.imports.energy_systems_factory import EnergySystemsFactory
from scripts.random_assignation import call_random, residential_systems_percentage, residential_new_systems_percentage
import hub.helpers.constants as cte
from hub.imports.energy_systems.energy_system_sizing import SystemSizing
from system_simulation import SystemSimulation
from hub.helpers.monthly_values import MonthlyValues
geojson_file = process_geojson(x=-73.5681295982132, y=45.49218262677643, diff=0.0001)
file_path = (Path(__file__).parent.parent / 'input_files' / f'{geojson_file}')
print('[simulation start]')
city = GeometryFactory('geojson',
path=file_path,
height_field='height',
year_of_construction_field='year_of_construction',
function_field='function',
function_to_hub=Dictionaries().montreal_function_to_hub_function).city
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')
energy_plus_workflow(city)
city_buildings_peak_heating_demands = {}
for building in city.buildings:
city_buildings_peak_heating_demands[f'{building.name}'] = building.heating_peak_load[cte.YEAR]
call_random(city.buildings, residential_systems_percentage)
EnergySystemsFactory('montreal_custom', city).enrich()
for building in city.buildings:
print(building.heating_consumption[cte.YEAR])
print(building.energy_systems_archetype_name)
call_random(city.buildings, residential_new_systems_percentage)
EnergySystemsFactory('north_america', city).enrich()
SystemSizing(city.buildings).hvac_sizing()
for building in city.buildings:
SystemSimulation(building).enrich()
print('test')