Recognise a modern oil room heater as its own archetype 🟩

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Khalim Conn-Kowlessar 2026-06-30 17:54:38 +00:00
parent fe97a7fc1c
commit efa3a588df
2 changed files with 4 additions and 0 deletions

View file

@ -159,6 +159,9 @@ _MAIN_HEATING_CODES: dict[str, int] = {
# from the code (cert_to_inputs). A generic "Community heating" with no named # from the code (cert_to_inputs). A generic "Community heating" with no named
# source stays unmapped (-> None) — the source can't be assumed (ADR-0041). # source stays unmapped (-> None) — the source can't be assumed (ADR-0041).
"Community heating, boilers": 301, "Community heating, boilers": 301,
# Modern standalone oil room heater — SAP Table 4a 623 ("Oil room heater,
# 2000 or later", no boiler). Natural fuel heating oil (ADR-0041).
"Oil room heater, 2000 or later": 623,
} }

View file

@ -28,4 +28,5 @@ class MainHeatingSystemType(Enum):
SOLID_FUEL_ROOM_HEATER_CLOSED = "Solid fuel room heater, closed" SOLID_FUEL_ROOM_HEATER_CLOSED = "Solid fuel room heater, closed"
AIR_SOURCE_HEAT_PUMP = "Air source heat pump" AIR_SOURCE_HEAT_PUMP = "Air source heat pump"
COMMUNITY_BOILERS = "Community heating, boilers" COMMUNITY_BOILERS = "Community heating, boilers"
OIL_ROOM_HEATER_POST_2000 = "Oil room heater, 2000 or later"
UNKNOWN = "Unknown" UNKNOWN = "Unknown"