properties documented
This commit is contained in:
parent
31b52f6d37
commit
242b59bfff
@ -178,10 +178,18 @@ class Building:
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def lighting_peak_load(self):
|
def lighting_peak_load(self):
|
||||||
|
"""
|
||||||
|
Get building lighting peak load in W
|
||||||
|
:return: dict
|
||||||
|
"""
|
||||||
return self._lighting_peak_load
|
return self._lighting_peak_load
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def appliances_peak_load(self):
|
def appliances_peak_load(self):
|
||||||
|
"""
|
||||||
|
Get building appliances peak load in W
|
||||||
|
:return: dict
|
||||||
|
"""
|
||||||
return self._appliances_peak_load
|
return self._appliances_peak_load
|
||||||
|
|
||||||
@property
|
@property
|
||||||
@ -194,6 +202,10 @@ class Building:
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def energy_systems_archetype_name(self):
|
def energy_systems_archetype_name(self):
|
||||||
|
"""
|
||||||
|
Get energy systems archetype name
|
||||||
|
:return: dict
|
||||||
|
"""
|
||||||
return self._energy_systems_archetype_name
|
return self._energy_systems_archetype_name
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
Loading…
Reference in New Issue
Block a user