From c384f3f42830ee4e6b6353d0f1f585ea63af2c4d Mon Sep 17 00:00:00 2001 From: jelgerjansen Date: Mon, 8 Jan 2024 09:54:15 +0100 Subject: [PATCH] Remove final modifier and move 'mSenFac(min=0.1)' to PartialZone component --- IDEAS/Buildings/Components/Interfaces/PartialZone.mo | 4 ++-- .../Components/Interfaces/RectangularZoneTemplateInterface.mo | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/IDEAS/Buildings/Components/Interfaces/PartialZone.mo b/IDEAS/Buildings/Components/Interfaces/PartialZone.mo index 05843daf2..3a725bba7 100644 --- a/IDEAS/Buildings/Components/Interfaces/PartialZone.mo +++ b/IDEAS/Buildings/Components/Interfaces/PartialZone.mo @@ -25,8 +25,8 @@ model PartialZone "Building zone model" annotation(Dialog(tab="Airflow", group="Airtightness")); parameter Modelica.Fluid.Types.Dynamics energyDynamicsAir=Modelica.Fluid.Types.Dynamics.FixedInitial "Type of energy balance for air model: dynamic (3 initialization options) or steady state"; - parameter Real mSenFac = 5 "Correction factor for thermal capacity of zone air." - annotation(Dialog(tab="Airflow",group="Air model")); + parameter Real mSenFac(min=0.1) = 5 "Correction factor for thermal capacity of zone air." + annotation(Dialog(tab="Advanced",group="Air model")); parameter Boolean linIntRad=sim.linIntRad "Linearized computation of long wave radiation" diff --git a/IDEAS/Buildings/Components/Interfaces/RectangularZoneTemplateInterface.mo b/IDEAS/Buildings/Components/Interfaces/RectangularZoneTemplateInterface.mo index 301ffb47b..1870b112e 100644 --- a/IDEAS/Buildings/Components/Interfaces/RectangularZoneTemplateInterface.mo +++ b/IDEAS/Buildings/Components/Interfaces/RectangularZoneTemplateInterface.mo @@ -7,8 +7,7 @@ partial model RectangularZoneTemplateInterface final V=A*h, final A=AZone, final hZone=h, - final fRH=11, - final mSenFac(min=0.1)); + final fRH=11); parameter IDEAS.Buildings.Components.Interfaces.BoundaryType bouTypA "Modelled boundary for face A of the zone"