from pathlib import Path import subprocess 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.results_factory import ResultFactory from hub.imports.energy_systems_factory import EnergySystemsFactory from scripts.energy_system_sizing_and_simulation_factory import EnergySystemsSimulationFactory import hub.helpers.constants as cte from hub.exports.exports_factory import ExportsFactory # Specify the GeoJSON file path input_files_path = (Path(__file__).parent / 'input_files') input_files_path.mkdir(parents=True, exist_ok=True) geojson_file_path = input_files_path / 'test.geojson' output_path = (Path(__file__).parent / 'out_files').resolve() output_path.mkdir(parents=True, exist_ok=True) energy_plus_output_path = output_path / 'energy_plus_outputs' energy_plus_output_path.mkdir(parents=True, exist_ok=True) simulation_results_path = (Path(__file__).parent / 'out_files' / 'simulation_results').resolve() simulation_results_path.mkdir(parents=True, exist_ok=True) sra_output_path = output_path / 'sra_outputs' sra_output_path.mkdir(parents=True, exist_ok=True) cost_analysis_output_path = output_path / 'cost_analysis' cost_analysis_output_path.mkdir(parents=True, exist_ok=True) city = GeometryFactory(file_type='geojson', path=geojson_file_path, height_field='maximum_roof_height', year_of_construction_field='year_built', function_field='building_type', function_to_hub=Dictionaries().montreal_function_to_hub_function).city ConstructionFactory('nrcan', city).enrich() UsageFactory('nrcan', city).enrich() WeatherFactory('epw', city).enrich() energy_plus_workflow(city, energy_plus_output_path) for building in city.buildings: building.energy_systems_archetype_name = 'PV+4Pipe+DHW' EnergySystemsFactory('montreal_future', city).enrich() for building in city.buildings: EnergySystemsSimulationFactory('archetype13', building=building, output_path=simulation_results_path).enrich()