mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
15 lines
573 B
Python
15 lines
573 B
Python
# This map defines the upgrades that are possible to be recommended by the recommendation engine
|
|
# For example,
|
|
UPGRADES_MAP = {
|
|
'Solid brick, as built, no insulation': 'Solid brick, as built, insulated',
|
|
'Suspended, no insulation': 'Suspended, insulated',
|
|
'Solid, no insulation': 'Solid, insulated',
|
|
}
|
|
|
|
PARTIAL_CAVITY_DESCRIPTIONS = [
|
|
"Cavity wall, as built, partial insulation",
|
|
"Cavity wall, partial insulation",
|
|
]
|
|
|
|
# We assume that the cavity is partially filled with insulation, and is filled 25% full
|
|
PARTIALLY_FILLED_PERCENTAGE_ASSUMPTION = 0.25
|