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 16:08:40 -04:00
|
|
|
from city_model_structure.life_cycle_assessment.access_nrcan_catalogue \
|
|
|
|
import AccessNrcanCatalog
|
2024-07-18 17:19:32 -04:00
|
|
|
from city_model_structure.life_cycle_assessment.opening_emission \
|
|
|
|
import OpeningEmission
|
2024-07-15 15:06:44 -04:00
|
|
|
|
|
|
|
|
|
|
|
class LCACarbonWorkflow:
|
2024-07-16 10:25:31 -04:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
city_path,
|
2024-07-17 16:08:40 -04:00
|
|
|
archetypes_catalog_file_name,
|
|
|
|
constructions_catalog_file,
|
|
|
|
catalog='nrcan',
|
2024-07-16 10:25:31 -04:00
|
|
|
building_parameters=('height', 'year_of_construction', 'function')):
|
|
|
|
self.file_path = (Path(__file__).parent / 'input_files' / city_path)
|
2024-07-17 16:08:40 -04:00
|
|
|
self.catalogs_path = (Path(__file__).parent / 'input_files')
|
|
|
|
self.archetypes_catalog_file_name = archetypes_catalog_file_name
|
|
|
|
self.constructions_catalog_file = constructions_catalog_file
|
|
|
|
self.nrcan_catalogs = AccessNrcanCatalog(
|
|
|
|
self.catalogs_path,
|
|
|
|
archetypes=self.archetypes_catalog_file_name,
|
|
|
|
constructions=self.constructions_catalog_file)
|
2024-07-16 10:25:31 -04:00
|
|
|
self.out_path = (Path(__file__).parent / 'out_files')
|
2024-07-17 16:08:40 -04:00
|
|
|
self.handler = catalog
|
2024-07-16 10:25:31 -04:00
|
|
|
self.height, self.year_of_construction, self.function = \
|
|
|
|
building_parameters
|
2024-07-15 15:06:44 -04:00
|
|
|
|
|
|
|
print('[simulation start]')
|
|
|
|
|
2024-07-16 10:25:31 -04:00
|
|
|
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-20 10:39:33 -04:00
|
|
|
def calculate_building_component_emission(self, building):
|
2024-07-18 17:19:32 -04:00
|
|
|
surface_opening_emission = []
|
|
|
|
period_of_construction = self.nrcan_catalogs.year_to_period_of_construction(building.year_of_construction)
|
|
|
|
print(period_of_construction)
|
|
|
|
print(building.year_of_construction)
|
|
|
|
opaque_surface_code = self.nrcan_catalogs.find_opaque_surface(
|
|
|
|
self.nrcan_catalogs.hub_to_nrcan_function(building.function),
|
|
|
|
self.nrcan_catalogs.year_to_period_of_construction(
|
|
|
|
building.year_of_construction),
|
|
|
|
'6')
|
|
|
|
|
2024-07-16 16:29:33 -04:00
|
|
|
for surface in building.surfaces:
|
2024-07-18 17:19:32 -04:00
|
|
|
boundary_opening_emission = []
|
2024-07-17 14:35:00 -04:00
|
|
|
for boundary in surface.associated_thermal_boundaries:
|
2024-07-18 17:19:32 -04:00
|
|
|
opening_emission = []
|
2024-07-17 14:35:00 -04:00
|
|
|
if boundary.window_ratio == 0:
|
|
|
|
opening_surface = 0
|
|
|
|
opening_material_emission = 0
|
2024-07-17 16:08:40 -04:00
|
|
|
# print('window = 0')
|
2024-07-17 14:35:00 -04:00
|
|
|
else:
|
2024-07-18 17:19:32 -04:00
|
|
|
print('window != 0')
|
2024-07-20 10:39:33 -04:00
|
|
|
opening_emission = self._calculate_opening_emission(
|
|
|
|
building, surface, boundary, opaque_surface_code)
|
2024-07-19 14:08:32 -04:00
|
|
|
if opening_emission:
|
|
|
|
boundary_opening_emission += opening_emission
|
2024-07-18 17:19:32 -04:00
|
|
|
print('boundary_opening_emission', boundary_opening_emission)
|
2024-07-19 14:08:32 -04:00
|
|
|
if boundary_opening_emission:
|
|
|
|
surface_opening_emission += boundary_opening_emission
|
2024-07-20 10:39:33 -04:00
|
|
|
building_opening_emission = sum(surface_opening_emission)
|
|
|
|
print(building_opening_emission)
|
|
|
|
|
|
|
|
def _calculate_opening_emission(
|
|
|
|
self, building, surface, boundary, opaque_surface_code):
|
|
|
|
opening_emission = []
|
|
|
|
for opening in boundary.thermal_openings:
|
|
|
|
transparent_surface_type = 'Window'
|
|
|
|
if building.year_of_construction >= 2020 and \
|
|
|
|
surface.type == 'Roof':
|
|
|
|
transparent_surface_type = 'Skylight'
|
|
|
|
opening_emission.append(OpeningEmission(
|
|
|
|
self.nrcan_catalogs.search_transparent_surfaces(
|
|
|
|
transparent_surface_type, opaque_surface_code)['embodied_carbon'],
|
|
|
|
opening.area).calculate_opening_emission())
|
|
|
|
return opening_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 = []
|
2024-07-18 17:19:32 -04:00
|
|
|
opening_emission = []
|
2024-07-17 14:35:00 -04:00
|
|
|
for building in self.city.buildings:
|
2024-07-20 10:39:33 -04:00
|
|
|
self.calculate_building_component_emission(building)
|