Building Type

Module for defining building types.

class heatpro.building_type.BuildingType(*values)[source]

Bases: Enum

Enumeration of different building types.

This enum defines various types of buildings that can be used in energy management systems. Each building type is associated with a French label that can be used for display purposes.

OFFICE

Represents office buildings (Bureaux).

CAFE

Represents cafes (Café).

RETAIL

Represents retail stores (Commerces).

EHPAD

Represents elderly care facilities (EHPAD).

SCHOOL

Represents schools (Écoles).

HOTEL

Represents hotels (Hôtel).

RESIDENTIAL

Represents residential buildings (Résidentiel).

HEALTHCARE

Represents healthcare facilities (Santé).

SPORTS

Represents sports facilities (Sport).

CAFE = 'Café'
EHPAD = 'EHPAD'
HEALTHCARE = 'Santé'
HOTEL = 'Hôtel'
OFFICE = 'Bureaux'
RESIDENTIAL = 'Résidentiel'
RETAIL = 'Commerces'
SCHOOL = 'Écoles'
SPORTS = 'Sport'