forked from s_ranjbar/city_retrofit
85 lines
1.8 KiB
Python
85 lines
1.8 KiB
Python
"""
|
|
InternalGains module
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
Copyright © 2020 Project Author Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
|
|
"""
|
|
|
|
|
|
class InternalGains:
|
|
"""
|
|
InternalGains class
|
|
"""
|
|
def __init__(self):
|
|
self._average_internal_gain = None
|
|
self._convective_fraction = None
|
|
self._radiative_fraction = None
|
|
self._latent_fraction = None
|
|
|
|
@property
|
|
def average_internal_gain(self):
|
|
"""
|
|
Get internal gains average internal gain in w/m2
|
|
:return: float
|
|
"""
|
|
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
|
|
:return: None
|
|
"""
|
|
self._average_internal_gain = value
|
|
|
|
@property
|
|
def convective_fraction(self):
|
|
"""
|
|
Get internal gains convective fraction
|
|
:return: float
|
|
"""
|
|
return self._convective_fraction
|
|
|
|
@convective_fraction.setter
|
|
def convective_fraction(self, value):
|
|
"""
|
|
Set internal gains convective fraction
|
|
:param value: float
|
|
:return: None
|
|
"""
|
|
self._convective_fraction = value
|
|
|
|
@property
|
|
def radiative_fraction(self):
|
|
"""
|
|
Get internal gains radiative fraction
|
|
:return: float
|
|
"""
|
|
return self._radiative_fraction
|
|
|
|
@radiative_fraction.setter
|
|
def radiative_fraction(self, value):
|
|
"""
|
|
Set internal gains convective fraction
|
|
:param value: float
|
|
:return: None
|
|
"""
|
|
self._radiative_fraction = value
|
|
|
|
@property
|
|
def latent_fraction(self):
|
|
"""
|
|
Get internal gains latent fraction
|
|
:return: float
|
|
"""
|
|
return self._latent_fraction
|
|
|
|
@latent_fraction.setter
|
|
def latent_fraction(self, value):
|
|
"""
|
|
Set internal gains latent fraction
|
|
:param value: float
|
|
:return: None
|
|
"""
|
|
self._latent_fraction = value
|