mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
123 lines
3.5 KiB
Python
123 lines
3.5 KiB
Python
"""
|
|
This script contains standard tables which are defined in rdsap. The most recent version of sap/rdsap is
|
|
based on the 2012 version, however the government is currently working on releasing a new version, and there
|
|
we will need to re-visit this
|
|
"""
|
|
|
|
age_band_data = [
|
|
{
|
|
"age_band": "A",
|
|
"England_Wales": "before 1900",
|
|
"Scotland": "before 1919",
|
|
"Northern_Ireland": "before 1919",
|
|
"Park_home_UK": None
|
|
},
|
|
{
|
|
"age_band": "B",
|
|
"England_Wales": "1900-1929",
|
|
"Scotland": "1919-1929",
|
|
"Northern_Ireland": "1919-1929",
|
|
"Park_home_UK": None
|
|
},
|
|
{
|
|
"age_band": "C",
|
|
"England_Wales": "1930-1949",
|
|
"Scotland": "1930-1949",
|
|
"Northern_Ireland": "1930-1949",
|
|
"Park_home_UK": None
|
|
},
|
|
{
|
|
"age_band": "D",
|
|
"England_Wales": "1950-1966",
|
|
"Scotland": "1950-1964",
|
|
"Northern_Ireland": "1950-1973",
|
|
"Park_home_UK": None
|
|
},
|
|
{
|
|
"age_band": "E",
|
|
"England_Wales": "1967-1975",
|
|
"Scotland": "1965-1975",
|
|
"Northern_Ireland": "1974-1977",
|
|
"Park_home_UK": None
|
|
},
|
|
{
|
|
"age_band": "F",
|
|
"England_Wales": "1976-1982",
|
|
"Scotland": "1976-1983",
|
|
"Northern_Ireland": "1978-1985",
|
|
"Park_home_UK": "before 1983"
|
|
},
|
|
{
|
|
"age_band": "G",
|
|
"England_Wales": "1983-1990",
|
|
"Scotland": "1984-1991",
|
|
"Northern_Ireland": "1986-1991",
|
|
"Park_home_UK": "1983-1995"
|
|
},
|
|
{
|
|
"age_band": "H",
|
|
"England_Wales": "1991-1995",
|
|
"Scotland": "1992-1998",
|
|
"Northern_Ireland": "1992-1999",
|
|
"Park_home_UK": None
|
|
},
|
|
{
|
|
"age_band": "I",
|
|
"England_Wales": "1996-2002",
|
|
"Scotland": "1999-2002",
|
|
"Northern_Ireland": "2000-2006",
|
|
"Park_home_UK": "1996-2005"
|
|
},
|
|
{
|
|
"age_band": "J",
|
|
"England_Wales": "2003-2006",
|
|
"Scotland": "2003-2007",
|
|
"Northern_Ireland": None,
|
|
"Park_home_UK": None
|
|
},
|
|
{
|
|
"age_band": "K",
|
|
"England_Wales": "2007-2011",
|
|
"Scotland": "2008-2011",
|
|
"Northern_Ireland": "2007-2013",
|
|
"Park_home_UK": "2006 onwards"
|
|
},
|
|
{
|
|
"age_band": "L",
|
|
"England_Wales": "2012 onwards",
|
|
"Scotland": "2012 onwards",
|
|
"Northern_Ireland": "2014 onwards",
|
|
"Park_home_UK": None
|
|
},
|
|
]
|
|
|
|
default_wall_thickness = [
|
|
{
|
|
"type": "stone", "A": 500, "B": 500, "C": 500, "D": 500, "E": 450, "F": 420, "G": 420, "H": 420,
|
|
"I": 450, "J_K_L": 450
|
|
},
|
|
{
|
|
"type": "solid brick", "A": 220, "B": 220, "C": 220, "D": 220, "E": 240, "F": 250, "G": 270, "H": 270,
|
|
"I": 300, "J_K_L": 300
|
|
},
|
|
{
|
|
"type": "cavity", "A": 250, "B": 250, "C": 250, "D": 250, "E": 250, "F": 260, "G": 270, "H": 270,
|
|
"I": 300, "J_K_L": 300
|
|
},
|
|
{
|
|
"type": "timber frame", "A": 150, "B": 150, "C": 150, "D": 250, "E": 270, "F": 270, "G": 270, "H": 270,
|
|
"I": 300, "J_K_L": 300
|
|
},
|
|
{
|
|
"type": "cob", "A": 540, "B": 540, "C": 540, "D": 540, "E": 540, "F": 540, "G": 560, "H": 560, "I": 590,
|
|
"J_K_L": 590
|
|
},
|
|
{
|
|
"type": "system build", "A": 250, "B": 250, "C": 250, "D": 250, "E": 250, "F": 300, "G": 300, "H": 300,
|
|
"I": 300, "J_K_L": 300
|
|
},
|
|
{
|
|
"type": "park home", "A": None, "B": None, "C": None, "D": None, "E": None, "F": 50, "G": None,
|
|
"H": None, "I": 50, "J_K_L": 100
|
|
},
|
|
]
|