2023-12-20 15:33:50 -05:00
|
|
|
from geojson_creator import process_geojson
|
2023-12-19 13:51:06 -05:00
|
|
|
from pathlib import Path
|
2023-12-20 15:33:50 -05:00
|
|
|
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
|
2024-01-02 18:30:39 -05:00
|
|
|
from scripts.random_assignation import call_random, residential_systems_percentage, residential_new_systems_percentage
|
2023-12-20 15:33:50 -05:00
|
|
|
import hub.helpers.constants as cte
|
2024-01-02 18:30:39 -05:00
|
|
|
from hub.imports.energy_systems.energy_system_sizing import SystemSizing
|
2024-01-17 13:10:39 -05:00
|
|
|
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)
|
2023-12-20 15:33:50 -05:00
|
|
|
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]
|
2024-01-17 13:10:39 -05:00
|
|
|
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)
|
2024-01-02 18:30:39 -05:00
|
|
|
call_random(city.buildings, residential_new_systems_percentage)
|
|
|
|
EnergySystemsFactory('north_america', city).enrich()
|
|
|
|
SystemSizing(city.buildings).hvac_sizing()
|
2024-01-17 13:10:39 -05:00
|
|
|
for building in city.buildings:
|
|
|
|
if building.energy_systems_archetype_name == 'PV+ASHP+GasBoiler+TES':
|
|
|
|
building_new_heating_consumption = SystemSimulation(building).archetype1()
|
|
|
|
building.heating_consumption[cte.HOUR] = building_new_heating_consumption
|
|
|
|
building.heating_consumption[cte.MONTH] = MonthlyValues.get_total_month(building.heating_consumption[cte.HOUR])
|
|
|
|
building.heating_consumption[cte.YEAR] = [sum(building.heating_consumption[cte.MONTH])]
|
|
|
|
print(building.heating_consumption[cte.YEAR])
|
|
|
|
print(building.energy_systems_archetype_name)
|
|
|
|
|
2023-12-20 15:33:50 -05:00
|
|
|
print('test')
|