Add lighting facilities class for occupancy
This commit is contained in:
parent
849f459cee
commit
5e48597235
26
city_model_structure/lighting_facilities.py
Normal file
26
city_model_structure/lighting_facilities.py
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
"""
|
||||||
|
Building module
|
||||||
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
||||||
|
Copyright © 2020 Project Author Sanam Dabirian sanam.dabirian@mail.concordia.ca
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
class lighting_facilities:
|
||||||
|
"""
|
||||||
|
Lighting facilities class
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __init__(self, electric_power):
|
||||||
|
"""
|
||||||
|
Constructor
|
||||||
|
"""
|
||||||
|
|
||||||
|
self._electric_power = electric_power
|
||||||
|
|
||||||
|
@property
|
||||||
|
def electric_power(self):
|
||||||
|
"""
|
||||||
|
Get lighting electric power
|
||||||
|
:return: lighting electric power
|
||||||
|
"""
|
||||||
|
return self._electric_power
|
Loading…
Reference in New Issue
Block a user