mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
Added floor uvalue cases
This commit is contained in:
parent
24709b98d6
commit
80c35d42df
1 changed files with 30 additions and 0 deletions
|
|
@ -29,4 +29,34 @@ floor_uvalue_test_cases = [
|
|||
"insulation_thickness": None,
|
||||
"expected": ValueError,
|
||||
},
|
||||
# 16 Glastonbury road EPR - the EPR has 0.71 due to the property having 320mm wall thickness, but default being 250
|
||||
{
|
||||
"floor_type": "suspended",
|
||||
"area": 34.5,
|
||||
"perimeter": 16.7,
|
||||
"age_band": "D",
|
||||
"wall_type": "cavity",
|
||||
"insulation_thickness": None,
|
||||
"expected": 0.72,
|
||||
},
|
||||
# 31 Loddon Way - the EPR has 0.5 due to the property having 320mm wall thickness, but default being 250
|
||||
{
|
||||
"floor_type": "solid",
|
||||
"area": 52.08,
|
||||
"perimeter": 16.2,
|
||||
"age_band": "E",
|
||||
"wall_type": "cavity",
|
||||
"insulation_thickness": None,
|
||||
"expected": 0.52,
|
||||
},
|
||||
# 62 Pearmain Drive
|
||||
{
|
||||
"floor_type": "solid",
|
||||
"area": 38.64,
|
||||
"perimeter": 18.1,
|
||||
"age_band": "E",
|
||||
"wall_type": "cavity",
|
||||
"insulation_thickness": None,
|
||||
"expected": 0.69,
|
||||
},
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue