2020-10-28 13:42:58 -04:00
|
|
|
"""
|
|
|
|
Building module
|
|
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
|
|
Copyright © 2020 Project Author Sanam Dabirian sanam.dabirian@mail.concordia.ca
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
class ScheduleValue:
|
|
|
|
"""
|
|
|
|
Schedule Values class
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, hour, probability):
|
|
|
|
self._hour = hour
|
|
|
|
self._probability = probability
|
|
|
|
|
|
|
|
@property
|
|
|
|
def hour(self):
|
|
|
|
"""
|
|
|
|
Get hours
|
|
|
|
:return: hour of a day
|
|
|
|
"""
|
|
|
|
return self._hour
|
|
|
|
|
|
|
|
@property
|
|
|
|
def probability(self):
|
2021-08-26 09:19:38 -04:00
|
|
|
"""
|
|
|
|
Get probabilities of occupants' presence
|
|
|
|
:return: occupants' presence probabilities
|
|
|
|
"""
|
|
|
|
return self._probability
|