49 lines
2.0 KiB
Python
49 lines
2.0 KiB
Python
"""
|
|
Costs Workflow
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
Copyright © 2022 Project Author Pilar Monsalvete Álvarez de Uribarri pilar.monsalvete@concordia.ca
|
|
"""
|
|
|
|
import glob
|
|
import os
|
|
|
|
from hub.imports.construction_factory import ConstructionFactory
|
|
from hub.helpers.dictionaries import Dictionaries
|
|
from pathlib import Path
|
|
from hub.imports.geometry_factory import GeometryFactory
|
|
from life_cycle_costs import LifeCycleCosts
|
|
from hub.catalog_factories.costs_catalog_factory import CostCatalogFactory
|
|
|
|
file_path = (Path(__file__).parent.parent / 'costs_workflow' / 'input_files' / 'Citylayers_neighbours.geojson')
|
|
out_path = (Path(__file__).parent.parent / 'costs_workflow' / 'out_files')
|
|
files = glob.glob(f'{out_path}/*')
|
|
for file in files:
|
|
if file != '.gitignore':
|
|
os.remove(file)
|
|
|
|
print('[simulation start]')
|
|
city = GeometryFactory('geojson',
|
|
path=file_path,
|
|
height_field='heightmax',
|
|
year_of_construction_field='ANNEE_CONS',
|
|
name_field='OBJECTID_12',
|
|
function_field='CODE_UTILI',
|
|
function_to_hub=Dictionaries().montreal_function_to_hub_function).city
|
|
print(f'city created from {file_path}')
|
|
ConstructionFactory('nrcan', city).enrich()
|
|
print('enrich constructions... done')
|
|
number_of_years = 40
|
|
consumer_price_index = 0.1
|
|
discount_rate = 0.06
|
|
retrofitting_scenario = 1
|
|
catalog = CostCatalogFactory('montreal_custom').catalog
|
|
|
|
for building in city.buildings:
|
|
lcc = LifeCycleCosts(building, catalog, number_of_years, consumer_price_index, discount_rate, retrofitting_scenario)
|
|
total_capital_costs = lcc.calculate_capital_costs()
|
|
# end_of_life_costs = lcc.calculate_end_of_life_costs()
|
|
# total_operational_costs = lcc.calculate_total_operational_costs()
|
|
# total_maintenance_costs = lcc.calculate_total_maintenance_costs()
|
|
# life_cycle_costs = total_capital_costs + end_of_life_costs + total_operational_costs + total_maintenance_costs
|
|
|