Costs module
Go to file
2024-06-10 00:57:59 -04:00
costs Update costs/version.py 2024-06-10 00:57:59 -04:00
tests remove unwanted prints 2023-08-10 12:37:55 -04:00
.gitignore Clean up 2023-11-22 18:35:24 +01:00
pyproject.toml merge branch 2023-07-18 16:31:49 -04:00
README.md Correct headers to match coding style guide 2023-07-20 11:50:31 -04:00
requirements.txt merge branch 2023-07-18 16:31:49 -04:00
setup.py merge branch 2023-07-18 16:31:49 -04:00

Cerc costs

Uses the cerc-hub as a base for cost calculation, it's intended to be used after executing the complete monthly energy balance workflow called building by building

This module processes the object-oriented generalization to be used the cost workflow

installation

$ pip install cerc-cost

usage

from costs.cost import Cost

Cost(building, retrofit_scenario=[scenario]>).life_cycle

The available scenarios are defined in the constant class as an enum

constants

CURRENT_STATUS = 0

SKIN_RETROFIT = 1

SYSTEM_RETROFIT_AND_PV = 2

SKIN_RETROFIT_AND_SYSTEM_RETROFIT_AND_PV = 3

RETROFITTING_SCENARIOS = [CURRENT_STATUS, SKIN_RETROFIT, SYSTEM_RETROFIT_AND_PV, SKIN_RETROFIT_AND_SYSTEM_RETROFIT_AND_PV]