Metadata-Version: 2.4
Name: cerc-costs
Version: 0.1.0.7
Summary: CERC costs contains the basic cost calculation per CERC-Hub building.
License-Expression: LGPL-3.0-or-later
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.md
Dynamic: license-file

# 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]
>
