costs_workflow/main.py

54 lines
2.4 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' / 'selected_building_2864.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 = 30
consumer_price_index = 0.04
discount_rate = 0.06
#retrofitting_scenario = 2
catalog = CostCatalogFactory('montreal_custom').catalog
for i in range(1,4) :
for building in city.buildings:
lcc = LifeCycleCosts(building, catalog, number_of_years, consumer_price_index, discount_rate, i)
total_capital_costs = lcc.calculate_capital_costs()
print(f'total capital costs scenario {i} are {total_capital_costs}')
end_of_life_costs = lcc.calculate_end_of_life_costs()
print(f'end_of_life_costs scenario {i} are {end_of_life_costs}')
total_operational_costs = lcc.calculate_total_operational_costs()
print(f'total_operational_costs scenario {i} are {total_operational_costs}')
total_maintenance_costs = lcc.calculate_total_maintenance_costs()
print(f'total_maintenance_costs scenario {i} are {total_maintenance_costs}')
life_cycle_costs = total_capital_costs + end_of_life_costs + total_operational_costs + total_maintenance_costs
print(f'life_cycle_costs scenario {i} are {life_cycle_costs}')