mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
108 lines
3.2 KiB
Python
108 lines
3.2 KiB
Python
wall_uvalue_test_cases = [
|
|
{
|
|
"clean_description": "Cavity wall, as built, partial insulation",
|
|
"age_band": "A",
|
|
"is_granite_or_whinstone": False,
|
|
"is_sandstone_or_limestone": False,
|
|
"uvalue": 1.3
|
|
},
|
|
{
|
|
"clean_description": "Cavity wall, as built, partial insulation",
|
|
"age_band": "F",
|
|
"is_granite_or_whinstone": False,
|
|
"is_sandstone_or_limestone": False,
|
|
"uvalue": 0.85
|
|
},
|
|
{
|
|
"clean_description": "Cavity wall, as built, partial insulation",
|
|
"age_band": "G",
|
|
"is_granite_or_whinstone": False,
|
|
"is_sandstone_or_limestone": False,
|
|
"uvalue": 0.5375
|
|
},
|
|
{
|
|
|
|
"clean_description": "Solid brick, with internal insulation",
|
|
"age_band": "C",
|
|
"is_granite_or_whinstone": False,
|
|
"is_sandstone_or_limestone": False,
|
|
"uvalue": 0.32
|
|
},
|
|
{
|
|
"clean_description": "Solid brick, as built, no insulation",
|
|
"age_band": "C",
|
|
"is_granite_or_whinstone": False,
|
|
"is_sandstone_or_limestone": False,
|
|
"uvalue": 1.7
|
|
},
|
|
{
|
|
"clean_description": "Timber frame, as built, no insulation",
|
|
"age_band": "E",
|
|
"is_granite_or_whinstone": False,
|
|
"is_sandstone_or_limestone": False,
|
|
"uvalue": 0.8
|
|
},
|
|
{
|
|
"clean_description": "Sandstone or limestone, with external insulation",
|
|
"age_band": "E",
|
|
"is_granite_or_whinstone": False,
|
|
"is_sandstone_or_limestone": False,
|
|
"uvalue": 0.32
|
|
},
|
|
{
|
|
"clean_description": "Granite or whinstone, as built, partial insulation",
|
|
"age_band": "E",
|
|
"is_granite_or_whinstone": False,
|
|
"is_sandstone_or_limestone": False,
|
|
"uvalue": 0.55
|
|
},
|
|
{
|
|
"clean_description": "System built, as built, no insulation",
|
|
"age_band": "E",
|
|
"is_granite_or_whinstone": False,
|
|
"is_sandstone_or_limestone": False,
|
|
"uvalue": 1.7
|
|
},
|
|
{
|
|
"clean_description": "Cob, with internal insulation",
|
|
"age_band": "E",
|
|
"is_granite_or_whinstone": False,
|
|
"is_sandstone_or_limestone": False,
|
|
"uvalue": 0.26
|
|
},
|
|
{
|
|
"clean_description": "Park home wall, with internal insulation",
|
|
"age_band": "E",
|
|
"is_granite_or_whinstone": False,
|
|
"is_sandstone_or_limestone": False,
|
|
"uvalue": 0
|
|
},
|
|
{
|
|
"clean_description": "Cavity wall, as built, insulated",
|
|
"age_band": "F",
|
|
"is_granite_or_whinstone": False,
|
|
"is_sandstone_or_limestone": False,
|
|
"uvalue": 0.4
|
|
},
|
|
{
|
|
"clean_description": "Cavity wall, as built, insulated",
|
|
"age_band": "D",
|
|
"is_granite_or_whinstone": False,
|
|
"is_sandstone_or_limestone": False,
|
|
"uvalue": 0.7
|
|
},
|
|
{
|
|
"clean_description": "Cavity wall, filled cavity",
|
|
"age_band": "E",
|
|
"is_granite_or_whinstone": False,
|
|
"is_sandstone_or_limestone": False,
|
|
"uvalue": 0.7
|
|
},
|
|
{
|
|
"clean_description": "Cavity wall, as built, no insulation",
|
|
"age_band": "E",
|
|
"is_granite_or_whinstone": False,
|
|
"is_sandstone_or_limestone": False,
|
|
"uvalue": 1.5
|
|
}
|
|
]
|