38 lines
1.7 KiB
Python
38 lines
1.7 KiB
Python
from pathlib import Path
|
|
import subprocess
|
|
from hub.imports.geometry_factory import GeometryFactory
|
|
from scripts.geojson_creator import process_geojson
|
|
from hub.helpers.dictionaries import Dictionaries
|
|
from hub.imports.weather_factory import WeatherFactory
|
|
from hub.imports.results_factory import ResultFactory
|
|
from hub.exports.exports_factory import ExportsFactory
|
|
|
|
|
|
def pv_feasibility(current_x, current_y, current_diff, selected_buildings):
|
|
input_files_path = (Path(__file__).parent.parent / 'input_files')
|
|
output_path = (Path(__file__).parent.parent / 'out_files').resolve()
|
|
sra_output_path = output_path / 'sra_outputs' / 'extended_city_sra_outputs'
|
|
sra_output_path.mkdir(parents=True, exist_ok=True)
|
|
new_diff = current_diff * 5
|
|
geojson_file = process_geojson(x=current_x, y=current_y, diff=new_diff, expansion=True)
|
|
file_path = input_files_path / 'output_buildings.geojson'
|
|
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
|
|
WeatherFactory('epw', city).enrich()
|
|
ExportsFactory('sra', city, sra_output_path).export()
|
|
sra_path = (sra_output_path / f'{city.name}_sra.xml').resolve()
|
|
subprocess.run(['sra', str(sra_path)])
|
|
ResultFactory('sra', city, sra_output_path).enrich()
|
|
for selected_building in selected_buildings:
|
|
for building in city.buildings:
|
|
if selected_building.name == building.name:
|
|
selected_building.roofs[0].global_irradiance = building.roofs[0].global_irradiance
|
|
|
|
|
|
|
|
|