From ecc8bfcbb1dafd24664db6429b9b77eab1a684bf Mon Sep 17 00:00:00 2001 From: Peter Yefi Date: Wed, 26 Jan 2022 10:39:26 -0500 Subject: [PATCH] Added comments for a and b insel coefficient values --- city_model_structure/energy_systems/air_source_hp.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/city_model_structure/energy_systems/air_source_hp.py b/city_model_structure/energy_systems/air_source_hp.py index c6aeaa8a..9b219a16 100644 --- a/city_model_structure/energy_systems/air_source_hp.py +++ b/city_model_structure/energy_systems/air_source_hp.py @@ -18,8 +18,8 @@ class AirSourceHP(HeatPump): super().__init__() self._cooling_capacity = None self._cooling_comp_power = None - self._cooling_capacity_coff = None - self._cooling_comp_power_coff = None + self._cooling_capacity_coff = None # a coefficients for insel + self._cooling_comp_power_coff = None # b coefficients for insel self._heating_capacity = None self._heating_comp_power = None self._heating_capacity_coff = None @@ -96,8 +96,6 @@ class AirSourceHP(HeatPump): if self._cooling_comp_power_coff is None: self._cooling_comp_power_coff = value - - @property def heating_capacity(self) -> List[float]: """ @@ -169,5 +167,3 @@ class AirSourceHP(HeatPump): """ if self._heating_capacity_coff is None: self._heating_capacity_coff = value - -