Model/recommendations/tests/test_data/wall_uvalue_test_cases.py
Khalim Conn-Kowlessar 7385719b37 Added wall test cases
2023-09-22 19:52:03 +01:00

80 lines
2.4 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": 0.7
},
{
"clean_description": "Cavity wall, as built, partial insulation",
"age_band": "F",
"is_granite_or_whinstone": False,
"is_sandstone_or_limestone": False,
"uvalue": 0.4
},
{
"clean_description": "Cavity wall, as built, partial insulation",
"age_band": "F",
"is_granite_or_whinstone": False,
"is_sandstone_or_limestone": False,
"uvalue": 0.4
},
{
"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
}
]