properties documented

This commit is contained in:
Pilar Monsalvete 2023-08-08 16:02:13 -04:00
parent 31b52f6d37
commit 242b59bfff

View File

@ -178,10 +178,18 @@ class Building:
@property
def lighting_peak_load(self):
"""
Get building lighting peak load in W
:return: dict
"""
return self._lighting_peak_load
@property
def appliances_peak_load(self):
"""
Get building appliances peak load in W
:return: dict
"""
return self._appliances_peak_load
@property
@ -194,6 +202,10 @@ class Building:
@property
def energy_systems_archetype_name(self):
"""
Get energy systems archetype name
:return: dict
"""
return self._energy_systems_archetype_name
@property