lca_carbon_workflow/lca_carbon_workflow.py

70 lines
2.5 KiB
Python
Raw Normal View History

2024-07-15 15:06:44 -04:00
"""
2024-07-16 16:29:33 -04:00
lca_carbon_workflow module
2024-07-15 15:06:44 -04:00
Returns the summarize of envelope and energy systems
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2024 Concordia CERC group
Code contributors: Alireza Adli alireza.adli@concordia.ca
Mohammad Reza Seyedabadi mohammad.seyedabadi@mail.concordia.ca
"""
from pathlib import Path
from hub.imports.geometry_factory import GeometryFactory
from hub.imports.construction_factory import ConstructionFactory
from hub.helpers.dictionaries import Dictionaries
2024-07-17 14:35:00 -04:00
# from hub.city_model_structure.life_cycle_assessment.access_nrcan_catalogue \
# import AccessNrcanCatalog
# from hub.city_model_structure.life_cycle_assessment.building_component \
# import BuildingComponent
2024-07-15 15:06:44 -04:00
class LCACarbonWorkflow:
def __init__(
self,
city_path,
catalogue_path,
catalogue='nrcan',
building_parameters=('height', 'year_of_construction', 'function')):
self.file_path = (Path(__file__).parent / 'input_files' / city_path)
self.catalogue_path = (Path(__file__).parent / 'input_files' / catalogue_path)
self.out_path = (Path(__file__).parent / 'out_files')
self.handler = catalogue
self.height, self.year_of_construction, self.function = \
building_parameters
2024-07-15 15:06:44 -04:00
print('[simulation start]')
self.city = GeometryFactory(
'geojson',
path=self.file_path,
height_field=self.height,
year_of_construction_field=self.year_of_construction,
function_field=self.function,
function_to_hub=Dictionaries().montreal_function_to_hub_function).city
print(f'city created from {self.file_path}')
ConstructionFactory(self.handler, self.city).enrich()
2024-07-15 15:06:44 -04:00
2024-07-16 16:29:33 -04:00
@staticmethod
def calculate_opening_emission(building):
surface_emission = []
for surface in building.surfaces:
2024-07-17 14:35:00 -04:00
for boundary in surface.associated_thermal_boundaries:
if boundary.window_ratio == 0:
opening_surface = 0
opening_material_emission = 0
print('window = 0')
else:
opening_surface = 0
opening_material_emission = 0
print('window != 0')
# for opening in surface.associated_thermal_boundaries.thermal_openings:
# opening_surface += opening.area
# opening_material_emission =
2024-07-16 16:29:33 -04:00
2024-07-16 16:45:43 -04:00
def calculate_emission(self):
2024-07-17 14:35:00 -04:00
emitted_carbon = []
for building in self.city.buildings:
# self.calculate_opening_emission(building)
for surface in building.surfaces:
for boundary in surface.associated_thermal_boundaries:
print(boundary.window_ratio)