Made heat pump a parent class for air source and water to water sources heat pumps

This commit is contained in:
Peter Yefi 2021-12-15 09:22:20 +00:00
parent 680b635025
commit d703b8c8cf

View File

@ -0,0 +1,31 @@
"""
heat_pump module defines a heat pump
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2021 Project Author Peter Yefi peteryefi@gmail.com
"""
class HeatPump:
"""
HeatPump class
"""
def __init__(self):
self._model = None
@property
def model(self) -> str:
"""
Get model name
:return: str
"""
return self._model
@model.setter
def model(self, value):
"""
Set model (name, indicated in capacity)
:param value: str
"""
if self._model is None:
self._model = value