(WIP) feat: add lachine geojson with mixed usage function

This commit is contained in:
Majid Rezaei 2024-09-22 19:01:25 -04:00
parent 5591439abf
commit 1ebd95518d
6 changed files with 107 additions and 5128 deletions

5
fix_geojson.py Normal file
View File

@ -0,0 +1,5 @@
import pandas as pd
file_path = "input_files/building_usage.xlsx"
file = pd.ExcelFile(file_path)

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

Binary file not shown.

49
input_files/test.geojson Normal file
View File

@ -0,0 +1,49 @@
{
"type": "FeatureCollection",
"features": [
{
"geometry": {
"coordinates": [
[
[
-73.66733104444639,
45.43566636911918
],
[
-73.66733104444639,
45.4353591129681
],
[
-73.66684619406267,
45.435353905836635
],
[
-73.66684199399202,
45.43566111136084
],
[
-73.66733104444639,
45.43566636911918
]
]
],
"type": "Polygon"
},
"type": "Feature",
"properties": {
"maximum_roof_height": 12,
"number_of_stories_above_ground": 3,
"number_of_stories": 3,
"floor_height": 4,
"building_type": "mixed use",
"usages": [{"usage": "6111", "percentage": 66}, {"usage": "1000", "percentage": 33}],
"name": "Building_340",
"year_built": 2024,
"footprint_area": 1294.998360413032,
"id": "Building_340_46b913f6",
"type": "10A",
"floor_area": 3884.995081239096
}
}
]
}

52
lachine_development.py Normal file
View File

@ -0,0 +1,52 @@
from pathlib import Path
import subprocess
from building_modelling.ep_run_enrich import energy_plus_workflow
from energy_system_modelling_package.energy_system_modelling_factories.montreal_energy_system_archetype_modelling_factory import \
MontrealEnergySystemArchetypesSimulationFactory
from energy_system_modelling_package.energy_system_modelling_factories.pv_assessment.pv_feasibility import \
pv_feasibility
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 energy_system_modelling_package.energy_system_retrofit.energy_system_retrofit_report import EnergySystemRetrofitReport
from building_modelling.geojson_creator import process_geojson
from energy_system_modelling_package import random_assignation
from hub.imports.energy_systems_factory import EnergySystemsFactory
from energy_system_modelling_package.energy_system_modelling_factories.energy_system_sizing_factory import EnergySystemsSizingFactory
from energy_system_modelling_package.energy_system_retrofit.energy_system_retrofit_results import consumption_data, cost_data
from costing_package.cost import Cost
from costing_package.constants import SYSTEM_RETROFIT_AND_PV, CURRENT_STATUS
from hub.exports.exports_factory import ExportsFactory
# Directory management
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)
# Create City from HUB
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()
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()