hub/city_model_structure/building_demand/internal_gains.py

106 lines
2.4 KiB
Python
Raw Normal View History

2020-10-28 13:42:58 -04:00
"""
InternalGains module
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2020 Project Author Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
"""
2021-09-14 13:46:48 -04:00
from typing import Union
2020-10-28 13:42:58 -04:00
class InternalGains:
"""
InternalGains class
"""
2020-10-28 13:42:58 -04:00
def __init__(self):
self._type = None
2020-10-28 13:42:58 -04:00
self._average_internal_gain = None
self._convective_fraction = None
self._radiative_fraction = None
self._latent_fraction = None
@property
def type(self) -> Union[None, str]:
"""
Get internal gains type
:return: None or string
"""
return self._type
@type.setter
def type(self, value):
"""
Set internal gains type
:param value: string
"""
if value is not None:
self._type = str(value)
2020-10-28 13:42:58 -04:00
@property
2021-09-14 13:46:48 -04:00
def average_internal_gain(self) -> Union[None, float]:
2020-10-28 13:42:58 -04:00
"""
Get internal gains average internal gain in W/m2
2021-09-14 13:46:48 -04:00
:return: None or float
2020-10-28 13:42:58 -04:00
"""
return self._average_internal_gain
@average_internal_gain.setter
def average_internal_gain(self, value):
"""
Set internal gains average internal gain in W/m2
:param value: float
2020-10-28 13:42:58 -04:00
"""
2021-09-14 13:46:48 -04:00
if value is not None:
self._average_internal_gain = float(value)
2020-10-28 13:42:58 -04:00
@property
2021-09-14 13:46:48 -04:00
def convective_fraction(self) -> Union[None, float]:
2020-10-28 13:42:58 -04:00
"""
Get internal gains convective fraction
2021-09-14 13:46:48 -04:00
:return: None or float
2020-10-28 13:42:58 -04:00
"""
return self._convective_fraction
@convective_fraction.setter
def convective_fraction(self, value):
"""
Set internal gains convective fraction
:param value: float
"""
2021-09-14 13:46:48 -04:00
if value is not None:
self._convective_fraction = float(value)
2020-10-28 13:42:58 -04:00
@property
2021-09-14 13:46:48 -04:00
def radiative_fraction(self) -> Union[None, float]:
2020-10-28 13:42:58 -04:00
"""
Get internal gains radiative fraction
2021-09-14 13:46:48 -04:00
:return: None or float
2020-10-28 13:42:58 -04:00
"""
return self._radiative_fraction
@radiative_fraction.setter
def radiative_fraction(self, value):
"""
Set internal gains convective fraction
:param value: float
"""
2021-09-14 13:46:48 -04:00
if value is not None:
self._radiative_fraction = float(value)
2020-10-28 13:42:58 -04:00
@property
2021-09-14 13:46:48 -04:00
def latent_fraction(self) -> Union[None, float]:
2020-10-28 13:42:58 -04:00
"""
Get internal gains latent fraction
2021-09-14 13:46:48 -04:00
:return: None or float
2020-10-28 13:42:58 -04:00
"""
return self._latent_fraction
@latent_fraction.setter
def latent_fraction(self, value):
"""
Set internal gains latent fraction
:param value: float
"""
2021-09-14 13:46:48 -04:00
if value is not None:
self._latent_fraction = float(value)