From b83f96aa4c5c15984b11558fce0e5b04d5610344 Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Tue, 9 Feb 2021 16:01:44 -0800 Subject: [PATCH 01/69] Checkout files from issue622_wet_coil_refactor_3 --- .../BaseClasses/DryCalcsFuzzy_V3.mo | 93 ++++ .../BaseClasses/DryWetCalcsFuzzy_V3.mo | 393 ++++++++++++++ .../BaseClasses/WetcalcsFuzzy_V3.mo | 192 +++++++ .../BaseClasses/determineWaterIndex.mo | 49 ++ .../HeatExchangers/BaseClasses/sigmoid.mo | 9 + .../Examples/WetCoilEffectivenessNTU.mo | 101 ++++ .../Validation/WetCoilEffectivenessNTU.mo | 316 +++++++++++ .../Validation/WetCoilEffectivenessNTU_FCU.mo | 399 ++++++++++++++ .../Validation/WetCoilEffectivenessNTU_FVM.mo | 239 ++++++++ .../WetEffectivenessNTU_Fuzzy_V3.mo | 509 ++++++++++++++++++ .../Examples/WetCoilEffectivenessNTU.mos | 16 + .../Validation/WetCoilEffectivenessNTU.mos | 44 ++ .../WetCoilEffectivenessNTU_FCU.mos | 68 +++ .../WetCoilEffectivenessNTU_FVM.mos | 19 + .../Utilities/Psychrometrics/hSat_pTSat.mo | 68 +++ 15 files changed, 2515 insertions(+) create mode 100644 Buildings/Fluid/HeatExchangers/BaseClasses/DryCalcsFuzzy_V3.mo create mode 100644 Buildings/Fluid/HeatExchangers/BaseClasses/DryWetCalcsFuzzy_V3.mo create mode 100644 Buildings/Fluid/HeatExchangers/BaseClasses/WetcalcsFuzzy_V3.mo create mode 100644 Buildings/Fluid/HeatExchangers/BaseClasses/determineWaterIndex.mo create mode 100644 Buildings/Fluid/HeatExchangers/BaseClasses/sigmoid.mo create mode 100644 Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mo create mode 100644 Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo create mode 100644 Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FCU.mo create mode 100644 Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FVM.mo create mode 100644 Buildings/Fluid/HeatExchangers/WetEffectivenessNTU_Fuzzy_V3.mo create mode 100644 Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mos create mode 100644 Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos create mode 100644 Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FCU.mos create mode 100644 Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FVM.mos create mode 100644 Buildings/Utilities/Psychrometrics/hSat_pTSat.mo diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/DryCalcsFuzzy_V3.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/DryCalcsFuzzy_V3.mo new file mode 100644 index 00000000000..aa9918df72c --- /dev/null +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/DryCalcsFuzzy_V3.mo @@ -0,0 +1,93 @@ +within Buildings.Fluid.HeatExchangers.BaseClasses; +model DryCalcsFuzzy_V3 "Fully dry coil model" + + // - water + input Modelica.SIunits.ThermalConductance UAWat + "UA for water side"; + input Modelica.SIunits.MassFlowRate mWat_flow + "Mass flow rate for water"; + input Modelica.SIunits.MassFlowRate mWatNonZer_flow(min=Modelica.Constants.eps) + "Mass flow rate for water, bounded away from zero"; + + input Modelica.SIunits.SpecificHeatCapacity cpWat + "Specific heat capacity of water"; + input Modelica.SIunits.Temperature TWatIn + "Water temperature at inlet"; + // -- air + input Modelica.SIunits.ThermalConductance UAAir + "UA for air side"; + input Modelica.SIunits.MassFlowRate mAir_flow(min=Modelica.Constants.eps) + "Mass flow rate of air"; + input Modelica.SIunits.MassFlowRate mAirNonZer_flow(min=Modelica.Constants.eps) + "Mass flow rate for air, bounded away from zero"; + + input Modelica.SIunits.SpecificHeatCapacity cpAir + "Specific heat capacity of moist air at constant pressure"; + input Modelica.SIunits.Temperature TAirIn + "Temperature of air at inlet"; + // -- misc. + input Buildings.Fluid.Types.HeatExchangerFlowRegime cfg + "The flow regime of the heat exchanger"; + input Modelica.SIunits.MassFlowRate mAir_flow_nominal; + input Modelica.SIunits.MassFlowRate mWat_flow_nominal; + parameter Real delta = 1E-3 "Small value used for smoothing"; + + output Modelica.SIunits.HeatFlowRate QTot_flow + "Heat transferred from water to air"; + output Modelica.SIunits.Temperature TWatOut + "Temperature of water at outlet"; + output Modelica.SIunits.Temperature TAirOut + "Temperature of air at the outlet"; + + output Real eps(min=0, max=1, unit="1") + "Effectiveness for heat exchanger"; + Modelica.SIunits.ThermalConductance CWat_flow=mWat_flow*cpWat + "Capacitance rate of water"; + Modelica.SIunits.ThermalConductance CAir_flow=mAir_flow*cpAir + "Capacitance rate of air"; + Modelica.SIunits.ThermalConductance CMin_flow_nominal=min(mAir_flow_nominal*cpAir,mWat_flow_nominal*cpWat) + "Minimum capacity rate"; + Modelica.SIunits.ThermalConductance CMax_flow_nominal=max(mAir_flow_nominal*cpAir,mWat_flow_nominal*cpWat) + "Maximum capacity rate"; + Modelica.SIunits.ThermalConductance CMin_flow=Buildings.Utilities.Math.Functions.smoothMin(x1=CAir_flow,x2=CWat_flow,deltaX=1E-3*(CMax_flow_nominal-CMin_flow_nominal)) + "Minimum capacity rate"; + + Modelica.SIunits.ThermalConductance UA + "Overall heat transfer coefficient"; + + output Modelica.SIunits.Temperature TSurAirOut + "Surface Temperature at air outlet"; + + +equation + + UA = 1/ (1 / UAAir + 1 / UAWat) + "UA is for the overall coil (i.e., both sides)"; + + + eps=epsilon_C(UA=UA, C1_flow=CWat_flow, C2_flow=CAir_flow, + flowRegime=Integer(cfg), CMin_flow_nominal= CMin_flow_nominal, CMax_flow_nominal=CMax_flow_nominal, delta= delta); + + QTot_flow = eps*CMin_flow*(TAirIn-TWatIn); + TAirOut=TAirIn-QTot_flow/(mAirNonZer_flow*cpAir); + TWatOut=TWatIn+QTot_flow/(mWatNonZer_flow*cpWat); + + (TAirOut-TSurAirOut)*UAAir=(TSurAirOut-TWatIn)*UAWat; + + + annotation (Icon(coordinateSystem(preserveAspectRatio=false), graphics={ + Rectangle( + extent={{-100,100},{100,-100}}, + lineColor={28,108,200}, + fillColor={255,213,170}, + fillPattern=FillPattern.Solid)}), Diagram( + coordinateSystem(preserveAspectRatio=false)), + Documentation(revisions=" + +", info=" +

This model implements the calculation for a 100% dry coil.

+

See Buildings.Fluid.HeatExchangers.DryCoilEffectivenessNTU for documentation.

+")); +end DryCalcsFuzzy_V3; diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/DryWetCalcsFuzzy_V3.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/DryWetCalcsFuzzy_V3.mo new file mode 100644 index 00000000000..005a0157961 --- /dev/null +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/DryWetCalcsFuzzy_V3.mo @@ -0,0 +1,393 @@ +within Buildings.Fluid.HeatExchangers.BaseClasses; +model DryWetCalcsFuzzy_V3 + "This model represents the swiching algorithm of the TK-fuzzy model for cooling coil applicaiton" + input Real Qfac; + replaceable package Medium2 = Modelica.Media.Interfaces.PartialMedium + "Medium 2 in the component" + annotation (choicesAllMatching = true); + + parameter Modelica.SIunits.MassFlowRate mWat_flow_nominal(min=0) + "Nominal mass flow rate for water" + annotation(Dialog(group = "Nominal condition")); + parameter Modelica.SIunits.MassFlowRate mAir_flow_nominal(min=0) + "Nominal mass flow rate for air" + annotation(Dialog(group = "Nominal condition")); + + input Buildings.Fluid.Types.HeatExchangerFlowRegime cfg= + Buildings.Fluid.Types.HeatExchangerFlowRegime.CounterFlow; + + // -- Water + Modelica.Blocks.Interfaces.RealInput UAWat( + final quantity="ThermalConductance", + final unit="W/K") + "Product of heat transfer coefficient times area for \"water\" side" + annotation (Placement(transformation(extent={{-160,100},{-140,120}}), + iconTransformation(extent={{-160,100},{-140,120}}))); + Modelica.Blocks.Interfaces.RealInput mWat_flow( + quantity="MassFlowRate", + min = 0, + final unit="kg/s") + "Mass flow rate for water" + annotation (Placement(transformation(extent={{-160,80},{-140,100}}), + iconTransformation(extent={{-160,80},{-140,100}}))); + Modelica.Blocks.Interfaces.RealInput cpWat( + final quantity="SpecificHeatCapacity", + final unit="J/(kg.K)") + "Inlet water temperature" + annotation (Placement(transformation(extent={{-160,60},{-140,80}}), + iconTransformation(extent={{-160,60},{-140,80}}))); + Modelica.Blocks.Interfaces.RealInput TWatIn( + final quantity="ThermodynamicTemperature", + final unit="K", + min = 200, + start = 288.15, + nominal = 300, + displayUnit="degC") + "Inlet water temperature" + annotation (Placement(transformation(extent={{-160,40},{-140,60}}), + iconTransformation(extent={{-160,40},{-140,60}}))); + // -- Air + Modelica.Blocks.Interfaces.RealInput UAAir( + final quantity="ThermalConductance", + final unit="W/K") + "Product of heat transfer coefficient times area for air side" + annotation (Placement(transformation(extent={{-160,-120},{-140,-100}}), + iconTransformation(extent={{-160,-120},{-140,-100}}))); + Modelica.Blocks.Interfaces.RealInput mAir_flow( + quantity="MassFlowRate", + min = 0, + final unit="kg/s") + "Mass flow rate for air" + annotation (Placement(transformation(extent={{-160,-100},{-140,-80}}), + iconTransformation(extent={{-160,-100},{-140,-80}}))); + Modelica.Blocks.Interfaces.RealInput cpAir( + final quantity="SpecificHeatCapacity", + final unit="J/(kg.K)") + "Inlet specific heat capacity (at constant pressure)" + annotation (Placement( + transformation(extent={{-160,-80},{-140,-60}}), iconTransformation( + extent={{-160,-80},{-140,-60}}))); + Modelica.Blocks.Interfaces.RealInput TAirIn( + final quantity="ThermodynamicTemperature", + final unit="K", + min = 200, + start = 288.15, + nominal = 300, + displayUnit="degC") + "Inlet air temperature" + annotation (Placement(transformation(extent={{-160,-60},{-140,-40}}), + iconTransformation(extent={{-160,-60},{-140,-40}}))); + Modelica.Blocks.Interfaces.RealInput hAirIn( + final quantity="SpecificEnergy", + final unit="J/kg") + "Inlet air enthalpy" + annotation ( + Placement(transformation(extent={{-160,-40},{-140,-20}}), + iconTransformation(extent={{-160,-40},{-140,-20}}))); + Modelica.Blocks.Interfaces.RealInput pAir( + final quantity="Pressure", + final unit="Pa", + displayUnit="bar", + min=70000, + nominal = 1e5) + "Inlet air absolute pressure" + annotation (Placement(transformation(extent={{-160,-20},{-140,0}}), + iconTransformation(extent={{-160,-20},{-140,0}}))); + Modelica.Blocks.Interfaces.RealInput wAirIn( + min=0, + max=1, + unit="1") + "Humidity ratio of water at inlet (kg water/kg moist air)" + annotation ( + Placement(transformation(extent={{-160,0},{-140,20}}), iconTransformation( + extent={{-160,0},{-140,20}}))); + + Modelica.Blocks.Interfaces.RealOutput QTot_flow( + final quantity="Power", + final unit="W") + "Total heat transfer from water into air, negative for cooling" + annotation ( + Placement(transformation(extent={{-10,-10},{10,10}}, + rotation=0, + origin={150,-20}))); + Modelica.Blocks.Interfaces.RealOutput QSen_flow( + final quantity="Power", + final unit="W") + "Sensible heat transfer from water into air, negative for cooling" + annotation ( + Placement(transformation(extent={{-10,-10},{10,10}}, + rotation=0, + origin={150,-60}))); + Modelica.SIunits.HeatFlowRate QLat_flow "Latent heat transfer rate"; + + Modelica.Blocks.Interfaces.RealOutput mCon_flow( + quantity="MassFlowRate", + final unit="kg/s") + "Mass flow of the condensate, negative for dehumidification" + annotation ( + Placement(transformation(extent={{-10,-10},{10,10}}, + rotation=0, + origin={150,-100}))); + Buildings.Fluid.HeatExchangers.BaseClasses.DryCalcsFuzzy_V3 fullydry( + UAWat = UAWat, + mWat_flow = mWat_flow, + cpWat = cpWat, + TWatIn = TWatIn, + UAAir = UAAir, + mAir_flow = mAir_flow, + mWatNonZer_flow = mWatNonZer_flow, + mAirNonZer_flow = mAirNonZer_flow, + cpAir = cpAir, + TAirIn = TAirIn, + final cfg = cfg, + mAir_flow_nominal=mAir_flow_nominal, + mWat_flow_nominal=mWat_flow_nominal); + + Buildings.Fluid.HeatExchangers.BaseClasses.WetcalcsFuzzy_V3 fullywet( + UAWat = UAWat, + mWat_flow = mWat_flow, + cpWat = cpWat, + TWatIn = TWatIn, + UAAir = UAAir, + mAir_flow = mAir_flow, + mWatNonZer_flow = mWatNonZer_flow, + mAirNonZer_flow = mAirNonZer_flow, + cpAir = cpAir, + TAirIn = TAirIn, + final cfg = cfg, + mAir_flow_nominal=mAir_flow_nominal, + mWat_flow_nominal=mWat_flow_nominal, + pAir=pAir,wAirIn=wAirIn); + + +protected + Modelica.SIunits.MassFlowRate mAirNonZer_flow(min=Modelica.Constants.eps)= + Buildings.Utilities.Math.Functions.smoothMax( + x1=mAir_flow, + x2=1E-3 *mAir_flow_nominal, + deltaX=0.25E-3*mAir_flow_nominal) + "Mass flow rate of air"; + Modelica.SIunits.MassFlowRate mWatNonZer_flow(min=Modelica.Constants.eps)= + Buildings.Utilities.Math.Functions.smoothMax( + x1=mWat_flow, + x2=1E-3 *mWat_flow_nominal, + deltaX=0.25E-3*mWat_flow_nominal) + "Mass flow rate of water"; + + Modelica.SIunits.Temperature TAirInDewPoi + "Dew point temperature of incoming air"; + + Buildings.Utilities.Psychrometrics.pW_X pWIn(X_w=wAirIn,p_in=pAir); + Buildings.Utilities.Psychrometrics.TDewPoi_pW TDewIn(p_w=pWIn.p_w); + + //-- parameters for fuzzy logics + Real mu_FW(unit="1",min=0, max=1), mu_FD(unit="1",min=0, max=1) "membership functions for Fully-Wet and Fully-Dry conditions"; + Real w_FW(unit="1",min=0, max=1), w_FD(unit="1",min=0, max=1) "normailized weight functions for Fully-Wet and Fully-Dry conditions"; + Real dryfra(unit="1",min=0, max=1) "dry fraction of cooling coil, e.g., 0.3 means condensation occurs at the 30% heat exchanger length from the air inlet"; + + +equation + + TAirInDewPoi = TDewIn.T; + + mu_FW= Buildings.Utilities.Math.Functions.spliceFunction( + pos=0,neg=1,x=fullywet.TSurAirIn-TAirInDewPoi,deltax=max(abs(fullydry.TSurAirOut- fullywet.TSurAirIn),1e-3)); + mu_FD= Buildings.Utilities.Math.Functions.spliceFunction( + pos=1,neg=0,x=fullydry.TSurAirOut-TAirInDewPoi,deltax=max(abs(fullydry.TSurAirOut- fullywet.TSurAirIn),1e-3)); + + w_FW=mu_FW/(mu_FW+mu_FD); + w_FD=mu_FD/(mu_FW+mu_FD); + + QTot_flow= -(w_FW*fullywet.QTot_flow+w_FD*fullydry.QTot_flow)*Qfac; + QSen_flow= -(w_FW*fullywet.QSen_flow+w_FD*fullydry.QTot_flow)*Qfac; + dryfra= w_FD; + + QLat_flow=QTot_flow-QSen_flow; + mCon_flow=QLat_flow/Buildings.Utilities.Psychrometrics.Constants.h_fg*Qfac; + annotation (Icon(coordinateSystem(preserveAspectRatio=false, extent={{-140,-120}, + {140,120}}), graphics={ + Rectangle( + extent={{-140,120},{140,-120}}, + lineColor={0,0,0}, + lineThickness=0.5, + pattern=LinePattern.Dot, + fillColor={236,236,236}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{20,40},{100,-40}}, + lineColor={28,108,200}, + fillColor={170,227,255}, + fillPattern=FillPattern.Forward), + Text( + extent={{24,36},{96,2}}, + textStyle={TextStyle.Bold}, + pattern=LinePattern.None, + textString="WET", + lineColor={0,0,0}), + Line( + points={{20,0},{120,0}}, + color={28,108,200}, + thickness=1, + pattern=LinePattern.Dash), + Ellipse( + extent={{72,0},{66,-6}}, + lineColor={28,108,200}, + fillColor={170,255,255}, + fillPattern=FillPattern.Solid), + Ellipse( + extent={{82,-4},{76,-10}}, + lineColor={28,108,200}, + fillColor={170,255,255}, + fillPattern=FillPattern.Solid), + Ellipse( + extent={{96,0},{88,-8}}, + lineColor={28,108,200}, + fillColor={170,255,255}, + fillPattern=FillPattern.Solid), + Ellipse( + extent={{64,-4},{58,-10}}, + lineColor={28,108,200}, + fillColor={170,255,255}, + fillPattern=FillPattern.Solid), + Ellipse( + extent={{54,0},{48,-6}}, + lineColor={28,108,200}, + fillColor={170,255,255}, + fillPattern=FillPattern.Solid), + Ellipse( + extent={{42,-4},{36,-10}}, + lineColor={28,108,200}, + fillColor={170,255,255}, + fillPattern=FillPattern.Solid), + Ellipse( + extent={{32,0},{24,-8}}, + lineColor={28,108,200}, + fillColor={170,255,255}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-60,40},{20,-40}}, + lineColor={28,108,200}, + fillColor={255,213,170}, + fillPattern=FillPattern.Forward), + Text( + extent={{-16,-4},{56,-38}}, + textStyle={TextStyle.Bold}, + textString="CALCS", + pattern=LinePattern.None), + Line( + points={{-80,0},{20,0}}, + color={28,108,200}, + thickness=1, + pattern=LinePattern.Dash), + Text( + extent={{-56,36},{16,2}}, + textStyle={TextStyle.Bold}, + textString="DRY", + pattern=LinePattern.None), + Text( + extent={{-22,60},{58,40}}, + lineColor={28,108,200}, + fillColor={170,170,255}, + fillPattern=FillPattern.Forward, + textString="Water", + textStyle={TextStyle.Italic}), + Text( + extent={{-20,-40},{60,-60}}, + lineColor={28,108,200}, + fillColor={170,170,255}, + fillPattern=FillPattern.Forward, + textString="Air", + textStyle={TextStyle.Italic}), + Text( + extent={{-116,-104},{-116,-116}}, + lineColor={28,108,200}, + horizontalAlignment=TextAlignment.Left, + textString="hA"), + Text( + extent={{-116,116},{-116,104}}, + lineColor={28,108,200}, + horizontalAlignment=TextAlignment.Left, + textString="hA"), + Text( + extent={{-116,96},{-116,84}}, + lineColor={28,108,200}, + horizontalAlignment=TextAlignment.Left, + textString="masFlo"), + Text( + extent={{-116,76},{-116,64}}, + lineColor={28,108,200}, + horizontalAlignment=TextAlignment.Left, + textString="cp"), + Text( + extent={{-116,56},{-116,44}}, + lineColor={28,108,200}, + horizontalAlignment=TextAlignment.Left, + textString="T_in"), + Text( + extent={{-116,-84},{-116,-96}}, + lineColor={28,108,200}, + horizontalAlignment=TextAlignment.Left, + textString="masFlo"), + Text( + extent={{-116,-64},{-116,-76}}, + lineColor={28,108,200}, + horizontalAlignment=TextAlignment.Left, + textString="cp"), + Text( + extent={{-116,-44},{-116,-56}}, + lineColor={28,108,200}, + horizontalAlignment=TextAlignment.Left, + textString="T_in"), + Text( + extent={{-116,-24},{-116,-36}}, + lineColor={28,108,200}, + horizontalAlignment=TextAlignment.Left, + textString="h_in"), + Text( + extent={{-116,-4},{-116,-16}}, + lineColor={28,108,200}, + horizontalAlignment=TextAlignment.Left, + textString="p_in"), + Text( + extent={{-116,16},{-116,4}}, + lineColor={28,108,200}, + horizontalAlignment=TextAlignment.Left, + textString="w_in"), + Text( + extent={{120,-12},{120,-24}}, + lineColor={28,108,200}, + textString="QTot_flow"), + Text( + extent={{104,-94},{104,-106}}, + lineColor={28,108,200}, + textString="mCon_flow"), + Text( + extent={{118,-52},{118,-64}}, + lineColor={28,108,200}, + textString="QSen")}), Diagram( + coordinateSystem(preserveAspectRatio=false, extent={{-140,-120},{140,120}}), + graphics={Text( + extent={{-100,120},{-20,80}}, + lineColor={28,108,200}, + fillColor={170,227,255}, + fillPattern=FillPattern.Forward, + horizontalAlignment=TextAlignment.Left, + textString="Note: please see text file for explicit +connections; there are too many +connections to show graphically here")}), + Documentation(revisions=" + +", info=" +

The switching criteria for (counter-flow) cooling coil modes are as follows.

+

R1: If the coil surface temperature at the air inlet is lower than the dew-point temperature at the inlet to the coil, then the cooling coil surface is fully-wet.

+

R2: If the surface temperature at the air outlet section is higher than the dew-point temperature of the air at the inlet, then the cooling coil surface is fully-dry.

+

At each point of a simulation time step, the fuzzy-modeling approach determines the weights for R1 and R2 respectively (namely μFW and μFD) from the dew-point and coil surface temperatures.

+

It calculates total and sensible heat transfer rates according to the weights as follows.

+

QtotFD Qtot,FDFW Qtot,FW

+

QsenFD Qsen,FDFW Qsen,FW

+

The fuzzy-modeling ensures μFW + μFD = 1, μFW >=0, μFD >=0, which means the fuzzy model outcomes of Qsen and Qtot are always convex combinations of heat transfer rates for fully-dry and fully-wet modes and therefore are always bounded by them.

+

The modeling approach also results in n-th order differentiable model depending on the selection of the underlying membership functions. This cooling coil model is once continuously differentiable even at the transition (or mode-switching) points.

+")); +end DryWetCalcsFuzzy_V3; diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetcalcsFuzzy_V3.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetcalcsFuzzy_V3.mo new file mode 100644 index 00000000000..e4b6d9ef3d2 --- /dev/null +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetcalcsFuzzy_V3.mo @@ -0,0 +1,192 @@ +within Buildings.Fluid.HeatExchangers.BaseClasses; +model WetcalcsFuzzy_V3 "Fully Wet coil model using esilon_C.mo function" + // - water + input Modelica.SIunits.ThermalConductance UAWat + "UA for water side"; + + input Modelica.SIunits.MassFlowRate mWat_flow + "Mass flow rate for water"; + input Modelica.SIunits.MassFlowRate mWatNonZer_flow + "None-zero Mass flow rate for water"; + input Modelica.SIunits.SpecificHeatCapacity cpWat + "Specific heat capacity of water"; + input Modelica.SIunits.Temperature TWatIn + "Water temperature at inlet"; + + input Modelica.SIunits.MassFlowRate mWat_flow_nominal; + + + // -- air + input Modelica.SIunits.Pressure pAir + "Pressure on air-side of coil"; + input Modelica.SIunits.ThermalConductance UAAir + "UA for air side"; + input Modelica.SIunits.MassFlowRate mAir_flow + "Mass flow rate of air"; + input Modelica.SIunits.MassFlowRate mAirNonZer_flow + "None-zero Mass flow rate for water"; + input Modelica.SIunits.SpecificHeatCapacity cpAir + "Specific heat capacity of moist air at constant pressure"; + input Modelica.SIunits.Temperature TAirIn + "Temperature of air at inlet"; + input Modelica.SIunits.MassFraction wAirIn + "Mass fraction of water in moist air at inlet"; + input Buildings.Fluid.Types.HeatExchangerFlowRegime cfg + "The configuration of the heat exchanger"; + input Modelica.SIunits.MassFlowRate mAir_flow_nominal; + + + Modelica.SIunits.SpecificEnthalpy hAirIn + "Specific enthalpy of air at inlet conditions"; + Buildings.Utilities.Psychrometrics.hSat_pTSat hSatWatInM(p=pAir,TSat=TWatIn) + "model to calculate saturated specific enthalpy of air at water inlet tempreature"; + Modelica.SIunits.SpecificEnthalpy hSatWatIn + "saturated specific enthalpy of air at water inlet tempreature"; + + Buildings.Utilities.Psychrometrics.hSat_pTSat hSatWatIn_dT_M(p=pAir,TSat=TWatIn+dTWat) + "model to calculate derivative of saturated specific enthalpy of air at water inlet temperature"; + Modelica.SIunits.SpecificHeatCapacity dhSatdTWatIn + "deriviative of saturated moist air enthalpy at water inlet temperature"; + Real NonZerDelWatTem + " regularization water temperature difference betwee inlet and outlet"; + + + + output Modelica.SIunits.HeatFlowRate QTot_flow + "Total heat flow from water to air stream"; + output Modelica.SIunits.HeatFlowRate QSen_flow + "Sensible heat flow from water to air stream"; + output Modelica.SIunits.Temperature TWatOut + "Temperature at the water outlet"; + output Modelica.SIunits.Temperature TSurAirIn + "Coil surface temperature at the air inlet"; + output Modelica.SIunits.Temperature TAirOut + "Temperature at the air outlet"; + Modelica.SIunits.SpecificEnthalpy hAirOut + "Specific enthalpy of moist air at the air outlet"; + Buildings.Utilities.Psychrometrics.hSat_pTSat hSatWatOutM(p=pAir,TSat=TWatOutHat) + "model to calculate saturated specific enthalpy of air at water outlet tempreature"; + Modelica.SIunits.SpecificEnthalpy hSatWatOut + "saturated specific enthalpy of air at water outlet tempreature"; + + Modelica.SIunits.Temperature TSurEff + "Effective surface temperature of the coil to split sensible and latent heat from total heat transfer rate"; + + Modelica.SIunits.SpecificEnthalpy hSatSurEff + "enthalpy of saturated moist air at the effective surface temperature"; + + Buildings.Utilities.Psychrometrics.hSat_pTSat hSatSurEffM(p=pAir,TSat=TSurEff); + Buildings.Utilities.Psychrometrics.hSat_pTSat hSatSurEffMinM(p=pAir,TSat=273.15+1); + + Modelica.SIunits.SpecificHeatCapacity cpEff + "Effective specific heat: change in enthalpy with respect to + temperature along the saturation line at the local water + temperature"; + constant Real cpEff0=2050 "for scaling"; + constant Real cpWat0=4200 "for scaling"; + parameter Real delta = 1E-3 "Small value used for smoothing"; + constant Modelica.SIunits.SpecificHeatCapacity cpDum=1 + " dummy cp to eliminate the warning message of the unit mismatch when using the eps-NTU model for the wet coil"; + constant Modelica.SIunits.TemperatureDifference dTWat=0.1; + parameter Real tau=6*60 + "time constant for the state estimation: introduced to avoid the algebraic loop of the wet coil equations"; + + + Modelica.SIunits.MassFlowRate UASta + "Overall mass transfer coefficient for dry coil"; + + Real NTUAirSta(unit="1") + "Number of transfer units for air-side only (NTU_a*)"; + + Real epsSta(start=0.66, unit="1") + "Effectiveness for heat exchanger (e*)"; + + + + Modelica.SIunits.MassFlowRate CStaMin + "min of product of mass flow rates and specific + heats; analogous to Cmin"; + + Modelica.SIunits.MassFlowRate CStaMin_flow_nominal= min(mAir_flow_nominal,mWat_flow_nominal*cpEff0/cpWat0) + "analogus to CMin_flow_nominal, only for a regularization"; + Modelica.SIunits.MassFlowRate CStaMax_flow_nominal= max(mAir_flow_nominal,mWat_flow_nominal*cpEff0/cpWat0) + "analogus to CMax_flow_nominal, only for a regularization"; + Modelica.SIunits.MassFlowRate deltaCStaMin=delta*min(mAir_flow_nominal,mWat_flow_nominal*cpEff0/cpWat0) + "min of product of mass flow rates and specific heats, analogous to Cmin"; + Modelica.SIunits.Temperature TWatOutHat(start=273.15+10) + "state_estimation of Temperature of water at outlet"; + +equation + + hAirIn=Buildings.Media.Air.specificEnthalpy_pTX(p=pAir,T=TAirIn,X={wAirIn,1-wAirIn}); + hSatWatIn=hSatWatInM.hSat; + dhSatdTWatIn=(hSatWatIn_dT_M.hSat-hSatWatInM.hSat)/dTWat; // dTWat is a parameter + hSatWatOut= hSatWatOutM.hSat; + NonZerDelWatTem=Buildings.Utilities.Math.Functions.regNonZeroPower(x=TWatOutHat-TWatIn,n=1,delta=0.1); + cpEff = Buildings.Utilities.Math.Functions.smoothMax( + (hSatWatOut - hSatWatIn)/NonZerDelWatTem, + dhSatdTWatIn, + cpEff0*delta); + + CStaMin=Buildings.Utilities.Math.Functions.smoothMin( + mAir_flow, + mWat_flow*cpWat/cpEff, + deltaCStaMin/4); + + UASta = (UAAir/cpAir)/(1 + (cpEff*UAAir)/(cpAir*UAWat)); + + epsSta=epsilon_C( + UA=UASta*cpDum, + C1_flow=mWat_flow*cpWat/cpEff*cpDum, + C2_flow=mAir_flow*cpDum, + flowRegime=Integer(cfg), + CMin_flow_nominal=CStaMin_flow_nominal*cpDum, + CMax_flow_nominal=CStaMax_flow_nominal*cpDum, + delta=delta); + + QTot_flow = epsSta*CStaMin*(hAirIn - hSatWatIn); + + QTot_flow = mAir_flow*(hAirIn- hAirOut); + QTot_flow = mWat_flow*cpWat*(TWatOut-TWatIn); + + NTUAirSta = UAAir/(mAir_flow*cpAir); + + hSatSurEff = Buildings.Utilities.Math.Functions.smoothMax(hSatSurEffMinM.hSat, hAirIn +(hAirOut - hAirIn) /(1 - exp(-NTUAirSta)),delta*1E4); // NTUAirSta is bounded as long as UAAir>0 due to the regularization of mAir_flow + + hSatSurEffM.hSat=hSatSurEff; + TAirOut = TSurEff +(TAirIn - TSurEff)*exp(-NTUAirSta); + QSen_flow= Buildings.Utilities.Math.Functions.smoothMin(mAir_flow*cpAir*(TAirIn-TAirOut),QTot_flow,delta*mWatNonZer_flow*cpWat0*5); // the last term is only for regularization with DTWater=5oC + + (TAirIn-TSurAirIn)*UAAir=(TSurAirIn-TWatOut)*UAWat; + der(TWatOutHat)=-1/tau*TWatOutHat+1/tau*TWatOut; + + annotation (Icon(graphics={ + Rectangle( + extent={{-100,100},{100,-100}}, + lineColor={28,108,200}, + fillColor={170,213,255}, + fillPattern=FillPattern.Solid)}), Documentation(revisions=" + +", info=" +

This model implements the calculation for a 100% wet coil.

+

The equations from Braun (1988) and Mitchell and Braun (2012a and b), which are essentially the extension of the ε-NTU approach to simultaneous sensible and latent heat transfer, are utilized.

+

The mathematical equations are analogous to that of the sensible heat exchanger. The key change is that the heat transfer is deriven by an enthalpy difference not by an temperature difference. This change in the deriving potential results in redefining capacitances and heat transfer coefficients accordinlgy.

+

The total heat transfer rate is expressed as

+

Qtot=ε* C*min (hair,in-hsat(Twat,in)),

+

where ε*=f(Cr*,NTU*) and f is the same epsilon-NTU relationships (depending on the heat exchanger configuration) for the sensible heat exchanger.

+

hair,in and hsat(Twat,in) are the specific enthalpies of the incoming moist air and saturated moist air at the water inlet temperature.

+

The capacitances of water and air streams are defined as

+

C*air=mair and C*wat=mwatcp,wat/csat,

+

where csat is an specific heat capacity, which indicates the sensitivity of the enthalpy of the staturated moist air w.r.t. the temperature, and is defined here as csat=(hsat(Twat,out)-hsat(Twat,in)) /(Twat,out-Twat,in).

+

The capacitance ratio and minimum capacitance are naturally defined as

+

Cr*=min(C*air,C*wat)/max(C*air,C*wat) and C*min=min(C*air,C*wat).

+


The number of transfer unit for the wet-coil is defined as NTU*=UA*/C*min, where

+

UA*=1/(1/(UAair/cp,air)+1/(UAwat/csat).

+

References

+

Braun, James E. 1988. "Methodologies for the Design and Control of Central Cooling Plants". PhD Thesis. University of Wisconsin - Madison. Available online: https://minds.wisconsin.edu/handle/1793/46694

+

Mitchell, John W., and James E. Braun. 2012a. Principles of heating, ventilation, and air conditioning in buildings. Hoboken, N.J.: Wiley.

+

Mitchell, John W., and James E. Braun. 2012b. "Supplementary Material Chapter 2: Heat Exchangers for Cooling Applications". Excerpt from Principles of heating, ventilation, and air conditioning in buildings. Hoboken, N.J.: Wiley. Available online: http://bcs.wiley.com/he-bcs/Books?action=index&itemId=0470624574&bcsId=7185

+")); +end WetcalcsFuzzy_V3; diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/determineWaterIndex.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/determineWaterIndex.mo new file mode 100644 index 00000000000..d5c7afacc98 --- /dev/null +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/determineWaterIndex.mo @@ -0,0 +1,49 @@ +within Buildings.Fluid.HeatExchangers.BaseClasses; +function determineWaterIndex + "Determine the index of water in a 2-component medium model" + input String[:] substanceNames "Names of substances of media"; + output Integer idxWat "Index of water"; +protected + Boolean found(fixed=false) "Flag, used for error checking"; + Integer N = size(substanceNames, 1) "Number of substances"; +algorithm + found:=false; + idxWat := 1; + for i in 1:N loop + if Modelica.Utilities.Strings.isEqual( + string1=substanceNames[i], + string2="water", + caseSensitive=false) then + idxWat := i; + found := true; + end if; + end for; + assert(found, + "Did not find medium species 'water' in the medium model. " + + "Change medium model."); + annotation (Documentation(revisions=" + +", info=" +

+Given an array of strings representing substance names, this function returns +the integer index of the substance named \"water\" (case-insensitive). +

+ +

+This function is useful to automate lookup up the index of water within a media +so as to avoid hard-coding or guessing what the index will be. Typically, this +function would be run once at initialization time. +

+")); +end determineWaterIndex; diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/sigmoid.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/sigmoid.mo new file mode 100644 index 00000000000..98e53e28ad2 --- /dev/null +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/sigmoid.mo @@ -0,0 +1,9 @@ +within Buildings.Fluid.HeatExchangers.BaseClasses; +function sigmoid + input Real a=1 "the magnitude of 'a' controls the transition area"; + input Real c=0 "the magnitude of 'c' controls the center point of the sigmoid membership function"; + input Real x; + output Real y; +algorithm + y:=1/(1 + Modelica.Math.exp(-a*(x - c))); +end sigmoid; diff --git a/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mo new file mode 100644 index 00000000000..253bf769539 --- /dev/null +++ b/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mo @@ -0,0 +1,101 @@ +within Buildings.Fluid.HeatExchangers.Examples; +model WetCoilEffectivenessNTU + "Duplicates WetCoilCounterFlowMassFlow example using fuzzy model" + extends Modelica.Icons.Example; + extends + Buildings.Fluid.HeatExchangers.Examples.BaseClasses.EffectivenessNTUMassFlow( + sou_1(nPorts=1), + sin_1(nPorts=1), + sou_2(nPorts=1), + sin_2(nPorts=1)); + + WetEffectivenessNTU_Fuzzy_V3 hex( + redeclare package Medium1 = Medium1, + redeclare package Medium2 = Medium2, + m1_flow_nominal=m1_flow_nominal, + m2_flow_nominal=m2_flow_nominal, + dp2_nominal(displayUnit="Pa") = 200, + allowFlowReversal1=true, + allowFlowReversal2=true, + dp1_nominal(displayUnit="Pa") = 3000, + UA_nominal=Q_flow_nominal/Buildings.Fluid.HeatExchangers.BaseClasses.lmtd( + T_a1_nominal, + T_b1_nominal, + T_a2_nominal, + T_b2_nominal), + show_T=true, + TWatOut_init=T_b1_nominal, + energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState) + "Heat exchanger" + annotation (Placement(transformation(extent={{80,20},{100,40}}))); + Sensors.RelativeHumidityTwoPort senRelHum( + redeclare package Medium = Medium2, + m_flow_nominal=m2_flow_nominal) + "Relative humidity sensor" + annotation (Placement(transformation(extent={{60,14},{40,34}}))); +/* + Modelica.Blocks.Sources.CombiTimeTable resDis( + tableOnFile=true, + tableName="tab1", + fileName=ModelicaServices.ExternalReferences.loadResource("modelica://Buildings/Resources/Data/Fluid/HeatExchangers/Examples/WetCoilEffNtuMassFlowFuzzy_V2_2.mos"), + columns={2,3}) "Reference results from WetCoilDiscretizedMassFlow" + annotation (Placement(transformation(extent={{-80,-50},{-60,-30}}))); + */ + +equation + connect(sou_1.ports[1], hex.port_a1) annotation (Line( + points={{18,62},{60,62},{60,36},{80,36}}, + color={0,127,255}, + smooth=Smooth.None)); + connect(hex.port_b1, sin_1.ports[1]) annotation (Line( + points={{100,36},{108,36},{108,60},{120,60}}, + color={0,127,255}, + smooth=Smooth.None)); + connect(hex.port_a2, sou_2.ports[1]) annotation (Line( + points={{100,24},{118,24}}, + color={0,127,255}, + smooth=Smooth.None)); + connect(hex.port_b2, senRelHum.port_a) annotation (Line( + points={{80,24},{60,24}}, + color={0,127,255}, + smooth=Smooth.None)); + connect(senRelHum.port_b, sin_2.ports[1]) annotation (Line( + points={{40,24},{20,24}}, + color={0,127,255}, + smooth=Smooth.None)); + annotation ( + experiment(Tolerance=1E-6, StopTime=3600), + __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mos" + "Simulate and plot"), + Diagram(coordinateSystem(preserveAspectRatio=true, + extent={{-100, -100},{200,200}})), + Documentation(revisions=" + +", info=" +

+This example model is meant to create a comparison of the + +WetEffectivenessNTU model (which is tested here) versus a + +WetCoilCounterFlow model over a similar example (compare this example with + +WetCoilCounterFlowMassFlow). +

+ +

+The two models correspond approximately (realizing that the + +WetEffectivenessNTU + model does not have dynamics) over the first half of the simulation but +does not agree well over the second half which subjects the model to +flow reversals. +

+")); +end WetCoilEffectivenessNTU; diff --git a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo new file mode 100644 index 00000000000..9257fbbdf04 --- /dev/null +++ b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo @@ -0,0 +1,316 @@ +within Buildings.Fluid.HeatExchangers.Validation; +model WetCoilEffectivenessNTU + "Model validation of the WetCoilEffNtu model compared with a reference" + extends Modelica.Icons.Example; + + package Medium_W = Buildings.Media.Water; + package Medium_A = Buildings.Media.Air; + + constant Modelica.SIunits.AbsolutePressure pAtm = 101325 + "Atmospheric pressure"; + + parameter Modelica.SIunits.Temperature T_a1_nominal= + Modelica.SIunits.Conversions.from_degF(42) + "Inlet water temperature"; + parameter Modelica.SIunits.Temperature T_a2_nominal= + Modelica.SIunits.Conversions.from_degF(80) + "Inlet air temperature"; + + parameter Modelica.SIunits.ThermalConductance UA_nominal = 4748 + "Total thermal conductance at nominal flow, from textbook"; + + parameter Real X_w2_nominal_0s(min=0,max=1) = 0.0035383 + "Inlet air humidity ratio at 0s real time (100% dry)"; + parameter Real X_w2_nominal_100s(min=0,max=1) = 0.0177 + "Inlet air humidity ratio at 100s real time (0% dry)"; + parameter Real X_w2_nominal_75s(min=0,max=1) = 0.0141 + "Inlet air humidity ratio at 75s real time (0% dry)"; + parameter Real X_w2_nominal_35s(min=0,max=1) = 0.0085 + "Inlet air humidity ratio at 35s real time (~40% dry)"; + parameter Modelica.SIunits.HeatFlowRate Q_flow_nominal_0s = 44234 + "Reference heat flow rate at 0s real time (100% dry)"; + parameter Modelica.SIunits.HeatFlowRate Q_flow_nominal_100s = 85625 + "Reference heat flow rate at 100s real time (0% dry)"; + parameter Modelica.SIunits.HeatFlowRate Q_flow_nominal_75s = 71368 + "Reference heat flow rate at 75s real time (0% dry)"; + parameter Modelica.SIunits.HeatFlowRate Q_flow_nominal_35s = 46348 + "Reference heat flow rate at 35s real time (~40% dry)"; + + parameter Modelica.SIunits.MassFlowRate m1_flow_nominal = 3.78 + "Nominal mass flow rate of water"; + parameter Modelica.SIunits.MassFlowRate m2_flow_nominal = 2.646 + "Nominal mass flow rate of air"; + parameter Types.HeatExchangerConfiguration hexCon=Types.HeatExchangerConfiguration.CrossFlowStream1MixedStream2Unmixed + "Heat exchanger configuration"; + + Buildings.Fluid.Sources.Boundary_pT sinAir( + redeclare package Medium = Medium_A, + use_p_in=false, + nPorts=3) + "Air sink" + annotation (Placement(transformation(extent={{-180,-50},{-160,-30}}))); + Sources.MassFlowSource_T souAir( + redeclare package Medium = Medium_A, + m_flow=m2_flow_nominal, + T=T_a2_nominal, + use_Xi_in=true, + nPorts=1) + "Air source" + annotation (Placement(transformation(extent={{140,-90},{120,-70}}))); + Buildings.Fluid.Sources.Boundary_pT sinWat( + redeclare package Medium = Medium_W, + nPorts=3) + "Sink for water" + annotation (Placement(transformation(extent={{60,30},{40,50}}))); + Sources.MassFlowSource_T souWat( + redeclare package Medium = Medium_W, + m_flow=m1_flow_nominal, + T=T_a1_nominal, + nPorts=1) + "Source for water" + annotation (Placement(transformation(extent={{-180,10},{-160,30}}))); + Modelica.SIunits.HeatFlowRate QTot1 = m1_flow_nominal * (h_b1 - h_a1) + "Total heat transferred to the water"; + Modelica.SIunits.HeatFlowRate QTot2 = m2_flow_nominal * (h_b2 - h_a2) + "Total heat tranferred to the air"; + Modelica.SIunits.SpecificEnthalpy h_a2=Medium_W.specificEnthalpy( + Medium_W.setState_phX( + p=hexWetNTU_IBPSA.port_a2.p, + h=actualStream(hexWetNTU_IBPSA.port_a2.h_outflow), + X={actualStream(hexWetNTU_IBPSA.port_a2.Xi_outflow[1]),1 - actualStream( + hexWetNTU_IBPSA.port_a2.Xi_outflow[1])})) "Specific enthalpy"; + Modelica.SIunits.SpecificEnthalpy h_a1=Medium_W.specificEnthalpy( + Medium_W.setState_ph(p=hexWetNTU_IBPSA.port_a1.p, h=actualStream( + hexWetNTU_IBPSA.port_a1.h_outflow))) "Specific enthalpy"; + Modelica.SIunits.SpecificEnthalpy h_b2=Medium_W.specificEnthalpy( + Medium_W.setState_phX( + p=hexWetNTU_IBPSA.port_b2.p, + h=actualStream(hexWetNTU_IBPSA.port_b2.h_outflow), + X={actualStream(hexWetNTU_IBPSA.port_b2.Xi_outflow[1]),1 - actualStream( + hexWetNTU_IBPSA.port_b2.Xi_outflow[1])})) "Specific enthalpy"; + Modelica.SIunits.SpecificEnthalpy h_b1=Medium_W.specificEnthalpy( + Medium_W.setState_ph(p=hexWetNTU_IBPSA.port_b1.p, h=actualStream( + hexWetNTU_IBPSA.port_b1.h_outflow))) "Specific enthalpy"; + Modelica.Blocks.Sources.CombiTimeTable X_w2( + table=[0,0.0035383; 1,0.01765], + timeScale=100) "Water mass fraction of entering air" + annotation (Placement(transformation(extent={{190,-90},{170,-70}}))); + Sensors.RelativeHumidityTwoPort RelHumIn(redeclare package Medium = Medium_A, + m_flow_nominal=m2_flow_nominal) "Inlet relative humidity" + annotation (Placement(transformation(extent={{30,-90},{10,-70}}))); + Sensors.TemperatureTwoPort TDryBulIn(redeclare package Medium = Medium_A, + m_flow_nominal=m2_flow_nominal) "Inlet dry bulb temperature" + annotation (Placement(transformation(extent={{70,-90},{50,-70}}))); + Modelica.Blocks.Sources.RealExpression pAir(y=pAtm) "Air pressure" + annotation (Placement(transformation(extent={{140,-52},{120,-28}}))); + Buildings.Utilities.Psychrometrics.TWetBul_TDryBulXi wetBulIn(redeclare + package Medium = Medium_A) + annotation (Placement(transformation(extent={{120,-18},{140,2}}))); + Sensors.MassFractionTwoPort senMasFraIn(redeclare package Medium = Medium_A, + m_flow_nominal=m2_flow_nominal) "Water mass fraction of entering air" + annotation (Placement(transformation(extent={{110,-90},{90,-70}}))); + Sensors.MassFractionTwoPort senMasFraOut(redeclare package Medium = Medium_A, + m_flow_nominal=m2_flow_nominal) "Water mass fraction of leaving air" + annotation (Placement(transformation(extent={{-110,-30},{-130,-50}}))); + Sensors.TemperatureTwoPort TDryBulOut(redeclare package Medium = Medium_A, + m_flow_nominal=m2_flow_nominal) "Dry bulb temperature of leaving air" + annotation (Placement(transformation(extent={{-70,-30},{-90,-50}}))); + Buildings.Utilities.Psychrometrics.TWetBul_TDryBulXi wetBulOut(redeclare + package Medium = Medium_A) + annotation (Placement(transformation(extent={{-40,-98},{-20,-78}}))); + Modelica.Blocks.Sources.RealExpression pAir1(y=pAtm) "Pressure" + annotation (Placement(transformation(extent={{-100,-112},{-80,-88}}))); + WetEffectivenessNTU_Fuzzy_V3 hexWetNTU( + redeclare package Medium1 = Medium_W, + redeclare package Medium2 = Medium_A, + UA_nominal=UA_nominal, + m1_flow_nominal=m1_flow_nominal, + m2_flow_nominal=m2_flow_nominal, + dp2_nominal=0, + dp1_nominal=0, + configuration=hexCon, + show_T=true) "Heat exchanger coil" + annotation (Placement(transformation(extent={{-40,64},{-20,84}}))); + Sources.MassFlowSource_T souWat1( + redeclare package Medium = Medium_W, + m_flow=m1_flow_nominal, + T=T_a1_nominal, + nPorts=1) + "Source for water" + annotation (Placement(transformation(extent={{-180,70},{-160,90}}))); + Sources.MassFlowSource_T souAir1( + redeclare package Medium = Medium_A, + m_flow=m2_flow_nominal, + T=T_a2_nominal, + use_Xi_in=true, + nPorts=1) + "Air source" + annotation (Placement(transformation(extent={{140,50},{120,70}}))); + WetCoilCounterFlow hexDis( + redeclare package Medium1 = Medium_W, + redeclare package Medium2 = Medium_A, + m1_flow_nominal=m1_flow_nominal, + m2_flow_nominal=m2_flow_nominal, + dp2_nominal=0, + allowFlowReversal1=true, + allowFlowReversal2=true, + dp1_nominal=0, + UA_nominal=UA_nominal, + show_T=true, + nEle=50, + energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyStateInitial, + tau1=0.1, + tau2=0.1, + tau_m=0.1) + "Discretized coil model" + annotation (Placement(transformation(extent={{-40,104},{-20,124}}))); + WetCoilEffectivesnessNTU hexWetNTU_IBPSA( + redeclare package Medium1 = Medium_W, + redeclare package Medium2 = Medium_A, + m1_flow_nominal=m1_flow_nominal, + m2_flow_nominal=m2_flow_nominal, + dp2_nominal=0, + dp1_nominal=0, + configuration=hexCon, + show_T=true, + T_a1_nominal=T_a1_nominal, + T_a2_nominal=T_a2_nominal, + Q_flow_nominal=Q_flow_nominal_35s, + X_w2_nominal=X_w2_nominal_35s) + "Epsilon-NTU coil model" + annotation (Placement(transformation(extent={{-40,4},{-20,24}}))); + Sources.MassFlowSource_T souWat2( + redeclare package Medium = Medium_W, + m_flow=m1_flow_nominal, + T=T_a1_nominal, + nPorts=1) + "Source for water" + annotation (Placement(transformation(extent={{-180,110},{-160,130}}))); + Sources.MassFlowSource_T souAir2( + redeclare package Medium = Medium_A, + m_flow=m2_flow_nominal, + T=T_a2_nominal, + use_Xi_in=true, + nPorts=1) + "Air source" + annotation (Placement(transformation(extent={{140,90},{120,110}}))); + Real isDryHexDis[hexDis.nEle]; + Real dryFraHexDis = sum(isDryHexDis) / hexDis.nEle; +equation + for iEle in 1:hexDis.nEle loop + isDryHexDis[iEle] = if abs(hexDis.ele[iEle].masExc.mWat_flow) < 1E-6 then 1 else 0; + end for; + connect(hexWetNTU_IBPSA.port_b1, sinWat.ports[1]) annotation (Line(points={{-20,20}, + {8,20},{8,42.6667},{40,42.6667}},color={0,127,255})); + connect(pAir.y, wetBulIn.p) annotation (Line(points={{119,-40},{110,-40},{110, + -16},{119,-16}}, color={0,0,127})); + connect(pAir1.y, wetBulOut.p) annotation (Line(points={{-79,-100},{-44,-100},{ + -44,-96},{-41,-96}},color={0,0,127})); + connect(senMasFraOut.port_b, sinAir.ports[1]) + annotation (Line(points={{-130,-40},{-156,-40},{-156,-37.3333},{-160, + -37.3333}}, color={0,127,255})); + connect(hexWetNTU_IBPSA.port_b2, TDryBulOut.port_a) annotation (Line(points={{-40,8}, + {-60,8},{-60,-40},{-70,-40}}, color={0,127,255})); + connect(TDryBulOut.port_b, senMasFraOut.port_a) + annotation (Line(points={{-90,-40},{-110,-40}}, color={0,127,255})); + connect(TDryBulOut.T, wetBulOut.TDryBul) + annotation (Line(points={{-80,-51},{-80,-80},{-41,-80}}, color={0,0,127})); + connect(senMasFraOut.X, wetBulOut.Xi[1]) annotation (Line(points={{-120,-51},{ + -120,-88},{-41,-88}}, color={0,0,127})); + connect(souAir.ports[1], senMasFraIn.port_a) + annotation (Line(points={{120,-80},{110,-80}}, color={0,127,255})); + connect(senMasFraIn.port_b, TDryBulIn.port_a) + annotation (Line(points={{90,-80},{70,-80}}, color={0,127,255})); + connect(senMasFraIn.X, wetBulIn.Xi[1]) + annotation (Line(points={{100,-69},{100,-8},{119,-8}}, color={0,0,127})); + connect(TDryBulIn.T, wetBulIn.TDryBul) + annotation (Line(points={{60,-69},{60,0},{119,0}}, color={0,0,127})); + connect(TDryBulIn.port_b, RelHumIn.port_a) + annotation (Line(points={{50,-80},{30,-80}}, color={0,127,255})); + connect(souWat.ports[1], hexWetNTU_IBPSA.port_a1) annotation (Line(points={{-160,20}, + {-40,20}}, color={0,127,255})); + connect(souWat1.ports[1], hexWetNTU.port_a1) annotation (Line(points={{-160,80}, + {-40,80}}, color={0,127,255})); + connect(hexWetNTU.port_b1, sinWat.ports[2]) annotation (Line(points={{-20,80}, + {0,80},{0,40},{40,40}}, color={0,127,255})); + connect(hexWetNTU_IBPSA.port_a2, RelHumIn.port_b) annotation (Line(points={{-20,8}, + {0,8},{0,-80},{10,-80}}, color={0,127,255})); + connect(hexWetNTU.port_b2, sinAir.ports[2]) annotation (Line(points={{-40,68}, + {-140,68},{-140,-40},{-160,-40}}, color={0,127,255})); + connect(X_w2.y[1], souAir.Xi_in[1]) annotation (Line(points={{169,-80},{160,-80}, + {160,-84},{142,-84}}, color={0,0,127})); + connect(X_w2.y[1], souAir1.Xi_in[1]) annotation (Line(points={{169,-80},{160,-80}, + {160,56},{142,56}}, color={0,0,127})); + connect(souWat2.ports[1], hexDis.port_a1) + annotation (Line(points={{-160,120},{-40,120}}, color={0,127,255})); + connect(sinAir.ports[3], hexDis.port_b2) annotation (Line(points={{-160, + -42.6667},{-140,-42.6667},{-140,108},{-40,108}}, + color={0,127,255})); + connect(hexDis.port_b1, sinWat.ports[3]) annotation (Line(points={{-20,120},{ + 4,120},{4,38},{40,38},{40,37.3333}}, + color={0,127,255})); + connect(X_w2.y[1], souAir2.Xi_in[1]) annotation (Line(points={{169,-80},{160,-80}, + {160,96},{142,96}}, color={0,0,127})); + connect(souAir1.ports[1], hexWetNTU.port_a2) annotation (Line(points={{120,60}, + {20,60},{20,68},{-20,68}}, color={0,127,255})); + connect(souAir2.ports[1], hexDis.port_a2) annotation (Line(points={{120,100},{ + 20,100},{20,108},{-20,108}}, color={0,127,255})); + annotation (Diagram(coordinateSystem(preserveAspectRatio=true, + extent={{-200,-140},{200,140}}), graphics={Text( + extent={{-74,14},{28,-10}}, + lineColor={238,46,47}, + horizontalAlignment=TextAlignment.Left, + textString="Cannot be parameterized with fully wet conditions")}), + experiment( + StopTime=100, + Tolerance=1e-06, + __Dymola_Algorithm="Cvode"), + __Dymola_Commands( + file="Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos" + "Simulate and plot"), + Documentation(info=" +

+This example duplicates an example from Mitchell and Braun 2012, example SM-2-1 +(Mitchell and Braun 2012) to validate a single case for the + +Buildings.Fluid.HeatExchangers.WetEffectivenessNTU model. +

+ +

Validation

+ +

+The example is a steady-state analysis of a partially wet coil with the inlet +conditions as specified in the model setup. +

+ +

+The slight deviations we find are believed due to differences in the tolerance +of the solver algorithms employed as well as differences in media property +calculations for air and water. +

+ +

References

+ +

+Mitchell, John W., and James E. Braun. 2012. +\"Supplementary Material Chapter 2: Heat Exchangers for Cooling Applications\". +Excerpt from Principles of heating, ventilation, and air conditioning in buildings. +Hoboken, N.J.: Wiley. Available online: + +http://bcs.wiley.com/he-bcs/Books?action=index&itemId=0470624574&bcsId=7185 +

+", revisions=" + +")); +end WetCoilEffectivenessNTU; diff --git a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FCU.mo b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FCU.mo new file mode 100644 index 00000000000..8dbfeb484b1 --- /dev/null +++ b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FCU.mo @@ -0,0 +1,399 @@ +within Buildings.Fluid.HeatExchangers.Validation; +model WetCoilEffectivenessNTU_FCU + "Validation of WetCoilEffectivesnessNTU based on fan coil unit performance data" + extends Modelica.Icons.Example; + package MediumAir = Buildings.Media.Air; + package MediumWater = Buildings.Media.Water; + parameter Modelica.SIunits.HeatFlowRate Q1_16_flow_nominal = 1176; + parameter Modelica.SIunits.HeatFlowRate Q1_7_flow_nominal = 2934; + parameter Modelica.SIunits.MassFlowRate m1_16_flow_nominal= + Q1_16_flow_nominal / (T_b1_16_nominal - T_a1_16_nominal) / cp1_nominal; + parameter Modelica.SIunits.MassFlowRate m1_7_flow_nominal= + Q1_7_flow_nominal / (T_b1_7_nominal - T_a1_7_nominal) / cp1_nominal; + parameter Modelica.SIunits.MassFlowRate m2_flow_nominal = 485 * 1.2 / 3600; + parameter Modelica.SIunits.Temperature T_a1_16_nominal = 16 + 273.15; + parameter Modelica.SIunits.Temperature T_b1_16_nominal = T_a1_16_nominal + 2; + parameter Modelica.SIunits.Temperature T_a1_7_nominal = 7 + 273.15; + parameter Modelica.SIunits.Temperature T_b1_7_nominal = T_a1_7_nominal + 5; + parameter Modelica.SIunits.Temperature T_a2_nominal = 27 + 273.15; + parameter Modelica.SIunits.MassFraction X_w2_nominal=0.010203; + parameter Modelica.SIunits.SpecificHeatCapacity cp1_nominal= + MediumWater.cp_const + "Source side specific heat capacity at nominal conditions"; + parameter Modelica.SIunits.SpecificHeatCapacity cp2_nominal= + MediumAir.specificHeatCapacityCp( + MediumAir.setState_pTX(MediumAir.p_default, T_a2_nominal)) + "Load side specific heat capacity at nominal conditions"; + // UA calculated on sensible cooling operating point. + parameter Modelica.SIunits.ThermalConductance CMin_nominal= + min(m1_16_flow_nominal * cp1_nominal, m2_flow_nominal * cp2_nominal) + "Minimum capacity flow rate at nominal conditions"; + parameter Modelica.SIunits.ThermalConductance CMax_nominal= + max(m1_16_flow_nominal * cp1_nominal, m2_flow_nominal * cp2_nominal) + "Maximum capacity flow rate at nominal conditions"; + parameter Real Z = CMin_nominal / CMax_nominal + "Ratio of capacity flow rates (CMin/CMax) at nominal conditions"; + parameter Buildings.Fluid.Types.HeatExchangerConfiguration hexCon= + Buildings.Fluid.Types.HeatExchangerConfiguration.CounterFlow + "Heat exchanger configuration"; + parameter Modelica.SIunits.ThermalConductance UA_nominal= + Buildings.Fluid.HeatExchangers.BaseClasses.ntu_epsilonZ( + eps=abs(Q1_16_flow_nominal / (CMin_nominal * (T_a1_16_nominal - T_a2_nominal))), + Z=Z, + flowRegime=Integer(hexCon)) * CMin_nominal + "Thermal conductance at nominal conditions"; + Buildings.Fluid.HeatExchangers.WetCoilEffectivesnessNTU cooCoi16_IBPSA( + redeclare package Medium1 = MediumWater, + redeclare package Medium2 = MediumAir, + Q_flow_nominal=Q1_16_flow_nominal, + dp1_nominal=0, + dp2_nominal=0, + m1_flow_nominal=m1_16_flow_nominal, + configuration=hexCon, + m2_flow_nominal=m2_flow_nominal, + T_a1_nominal=T_a1_16_nominal, + T_a2_nominal=T_a2_nominal, + X_w2_nominal=X_w2_nominal) + "Cooling coil with nominal conditions for cooling at 16 degrees water inlet temperature" + annotation (Placement(transformation(extent={{-10,76},{10,96}}))); + Sources.MassFlowSource_T bouAirCoo( + redeclare package Medium = MediumAir, + use_m_flow_in=true, + T=T_a2_nominal, + X={X_w2_nominal,1 - X_w2_nominal}, + nPorts=1) "Air boundary: 27/19 dry/wet bulb temperature" + annotation (Placement(transformation(extent={{60,70},{40,90}}))); + // fixme: reformat the table so it is readable. + Modelica.Blocks.Sources.CombiTimeTable cooData( + smoothness=Modelica.Blocks.Types.Smoothness.ConstantSegments, + table=[ + 0,485,1176,2176,2934; + 10000,420,1053,1948,2657; + 20000,330,865,1600,2209; + 30000,236,626,1158,1618; + 40000,123,389,720,1018; + 50000,0,0.001,0.001,0.001]) + "Manufacturers data for cooling mode - 1. air flow rate 2.power at 16 degC 3.sensible power at 7 degC 4.total power at 7degC" + annotation (Placement(transformation(extent={{-130,90},{-110,110}}))); + Sources.MassFlowSource_T bouAirCoo1( + redeclare package Medium = MediumAir, + use_m_flow_in=true, + T=T_a2_nominal, + X={X_w2_nominal, 1 - X_w2_nominal}, + nPorts=1) + "Air boundary: 27/19 dry/wet bulb temperature" + annotation (Placement(transformation(extent={{60,-26},{40,-6}}))); + Modelica.Blocks.Math.Gain gainFloFcu16(k=1/cp1_nominal/2) + "Conversion factor from power to kg/s water" + annotation (Placement(transformation(extent={{-66,94},{-54,106}}))); + Modelica.Blocks.Math.Gain gain(k=1.2/3600) + "Conversion factor from l/h to kg/s" + annotation (Placement(transformation(extent={{-2,106},{18,126}}))); + Sources.MassFlowSource_T bouWatCoo16( + use_m_flow_in=true, + redeclare package Medium = MediumWater, + T=T_a1_16_nominal, + nPorts=1) "Water boundary at 16 degrees" + annotation (Placement(transformation(extent={{-40,82},{-20,102}}))); + Sources.MassFlowSource_T bouWatCoo7( + use_m_flow_in=true, + redeclare package Medium = MediumWater, + T=T_a1_7_nominal, + nPorts=1) "Water boundary at 7 degrees" + annotation (Placement(transformation(extent={{-40,-14},{-20,6}}))); + Modelica.Blocks.Math.Gain gainFloFcu7(k=1/cp1_nominal/5) + "Conversion factor from power to kg/s water" + annotation (Placement(transformation(extent={{-66,-2},{-54,10}}))); + Buildings.Fluid.HeatExchangers.WetCoilEffectivesnessNTU cooCoi7_IBPSA( + redeclare package Medium1 = MediumWater, + redeclare package Medium2 = MediumAir, + show_T=true, + dp1_nominal=0, + dp2_nominal=0, + m1_flow_nominal=m1_7_flow_nominal, + configuration=hexCon, + m2_flow_nominal=m2_flow_nominal, + Q_flow_nominal=Q1_7_flow_nominal, + T_a1_nominal=T_a1_7_nominal, + T_a2_nominal=T_a2_nominal, + X_w2_nominal=X_w2_nominal) + "Cooling coil with nominal conditions for cooling at 7 degrees water inlet temperature" + annotation (Placement(transformation(extent={{-10,-20},{10,0}}))); + Sources.Boundary_pT sinAir( + redeclare package Medium = MediumAir, nPorts=7) + "Air sink" + annotation (Placement(transformation(extent={{-130,-10},{-110,10}}))); + Sources.Boundary_pT sinWat( + redeclare package Medium = MediumWater, nPorts=7) + "Water sink" + annotation (Placement(transformation(extent={{130,-10},{110,10}}))); + Buildings.Fluid.HeatExchangers.WetCoilEffectivesnessNTU cooCoi7Param16_IBPSA( + redeclare package Medium1 = MediumWater, + redeclare package Medium2 = MediumAir, + Q_flow_nominal=Q1_16_flow_nominal, + dp1_nominal=0, + dp2_nominal=0, + m1_flow_nominal=m1_16_flow_nominal, + configuration=hexCon, + m2_flow_nominal=m2_flow_nominal, + T_a1_nominal=T_a1_16_nominal, + T_a2_nominal=T_a2_nominal, + X_w2_nominal=X_w2_nominal) + "Cooling coil with nominal conditions for cooling at 16 degrees water inlet temperature and boundary conditions of 7 degrees water inlet" + annotation (Placement(transformation(extent={{-10,-66},{10,-46}}))); + Sources.MassFlowSource_T bouWatCoo7v2( + use_m_flow_in=true, + redeclare package Medium = MediumWater, + T=T_a1_7_nominal, + nPorts=1) "Water boundary at 7 degrees" + annotation (Placement(transformation(extent={{-40,-60},{-20,-40}}))); + Sources.MassFlowSource_T bouAirCoo2( + redeclare package Medium = MediumAir, + use_m_flow_in=true, + T=T_a2_nominal, + X={X_w2_nominal,1 - X_w2_nominal}, + nPorts=1) + "Air boundary: 27/19 dry/wet bulb temperature" + annotation (Placement(transformation(extent={{60,-72},{40,-52}}))); + WetEffectivenessNTU_Fuzzy_V3 cooCoi16( + redeclare package Medium1 = MediumWater, + redeclare package Medium2 = MediumAir, + configuration=hexCon, + m1_flow_nominal=m1_16_flow_nominal, + m2_flow_nominal=m2_flow_nominal, + UA_nominal=UA_nominal, + dp1_nominal=0, + dp2_nominal=0) + annotation (Placement(transformation(extent={{-10,52},{10,72}}))); + Sources.MassFlowSource_T bouWatCoo1( + use_m_flow_in=true, + redeclare package Medium = MediumWater, + T=T_a1_16_nominal, + nPorts=1) "Water boundary at 16 degrees" + annotation (Placement(transformation(extent={{-40,58},{-20,78}}))); + Sources.MassFlowSource_T bouAirCoo3( + redeclare package Medium = MediumAir, + use_m_flow_in=true, + T=T_a2_nominal, + X={X_w2_nominal,1 - X_w2_nominal}, + nPorts=1) "Air boundary: 27/19 dry/wet bulb temperature" + annotation (Placement(transformation(extent={{60,46},{40,66}}))); + Sources.MassFlowSource_T bouWatCoo7v1( + use_m_flow_in=true, + redeclare package Medium = MediumWater, + T=T_a1_7_nominal, + nPorts=1) "Water boundary at 7 degrees" + annotation (Placement(transformation(extent={{-40,-90},{-20,-70}}))); + Sources.MassFlowSource_T bouAirCoo5( + redeclare package Medium = MediumAir, + use_m_flow_in=true, + T=T_a2_nominal, + X={X_w2_nominal,1 - X_w2_nominal}, + nPorts=1) + "Air boundary: 27/19 dry/wet bulb temperature" + annotation (Placement(transformation(extent={{60,-102},{40,-82}}))); + WetEffectivenessNTU_Fuzzy_V3 cooCoi7Param16( + redeclare package Medium1 = MediumWater, + redeclare package Medium2 = MediumAir, + configuration=hexCon, + m1_flow_nominal=m1_16_flow_nominal, + m2_flow_nominal=m2_flow_nominal, + UA_nominal=UA_nominal, + dp1_nominal=0, + dp2_nominal=0) + annotation (Placement(transformation(extent={{-10,-96},{10,-76}}))); + WetCoilCounterFlow cooCoi16_Dis( + redeclare package Medium1 = MediumWater, + redeclare package Medium2 = MediumAir, + m1_flow_nominal=m1_16_flow_nominal, + m2_flow_nominal=m2_flow_nominal, + dp2_nominal=0, + allowFlowReversal1=true, + allowFlowReversal2=true, + dp1_nominal=0, + UA_nominal=UA_nominal, + show_T=true, + nEle=50, + energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyStateInitial, + tau1=0.1, + tau2=0.1, + tau_m=0.1) + annotation (Placement(transformation(extent={{-10,24},{10,44}}))); + Sources.MassFlowSource_T bouWatCoo3( + use_m_flow_in=true, + redeclare package Medium = MediumWater, + T=T_a1_16_nominal, + nPorts=1) "Water boundary at 16 degrees" + annotation (Placement(transformation(extent={{-40,30},{-20,50}}))); + Sources.MassFlowSource_T bouAirCoo6( + redeclare package Medium = MediumAir, + use_m_flow_in=true, + T=T_a2_nominal, + X={X_w2_nominal,1 - X_w2_nominal}, + nPorts=1) "Air boundary: 27/19 dry/wet bulb temperature" + annotation (Placement(transformation(extent={{60,18},{40,38}}))); + WetCoilCounterFlow cooCoi7Param16_Dis( + redeclare package Medium1 = MediumWater, + redeclare package Medium2 = MediumAir, + m1_flow_nominal=m1_16_flow_nominal, + m2_flow_nominal=m2_flow_nominal, + dp2_nominal=0, + allowFlowReversal1=true, + allowFlowReversal2=true, + dp1_nominal=0, + UA_nominal=UA_nominal, + show_T=true, + nEle=50, + energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyStateInitial, + tau1=0.1, + tau2=0.1, + tau_m=0.1) + annotation (Placement(transformation(extent={{-10,-124},{10,-104}}))); + Sources.MassFlowSource_T bouWatCoo7v3( + use_m_flow_in=true, + redeclare package Medium = MediumWater, + T=T_a1_7_nominal, + nPorts=1) "Water boundary at 7 degrees" + annotation (Placement(transformation(extent={{-40,-118},{-20,-98}}))); + Sources.MassFlowSource_T bouAirCoo4( + redeclare package Medium = MediumAir, + use_m_flow_in=true, + T=T_a2_nominal, + X={X_w2_nominal,1 - X_w2_nominal}, + nPorts=1) + "Air boundary: 27/19 dry/wet bulb temperature" + annotation (Placement(transformation(extent={{60,-130},{40,-110}}))); + Real isDryHexDis[cooCoi7Param16_Dis.nEle]; + Real dryFraHexDis = sum(isDryHexDis) / cooCoi7Param16_Dis.nEle; +equation + for iEle in 1:cooCoi7Param16_Dis.nEle loop + isDryHexDis[iEle] = if abs(cooCoi7Param16_Dis.ele[iEle].masExc.mWat_flow) < 1E-6 then 1 else 0; + end for; + // fixme: enable or delete the assertion + //assert(abs(cooCoi7.Q1_flow-cooCoi7Reverse.Q1_flow)+ + // abs(cooCoi7.mWat1_flow-cooCoi7Reverse.mWat2_flow)<1e-10, + // "The models cooCoi7 and cooCoi7Reverse do + // not return identical results as required."); + connect(gainFloFcu16.u, cooData.y[2]) + annotation (Line(points={{-67.2,100},{-109,100}},color={0,0,127})); + connect(gain.u, cooData.y[1]) + annotation (Line(points={{-4,116},{-74,116},{-74,100},{-109,100}}, + color={0,0,127})); + connect(gain.y, bouAirCoo.m_flow_in) + annotation (Line(points={{19,116},{68,116},{68,88},{62,88}}, + color={0,0,127})); + connect(gainFloFcu16.y, bouWatCoo16.m_flow_in) annotation (Line(points={{-53.4, + 100},{-42,100}}, color={0,0,127})); + connect(gainFloFcu7.y,bouWatCoo7. m_flow_in) + annotation (Line(points={{-53.4,4},{-42,4}}, color={0,0,127})); + connect(gainFloFcu7.u, cooData.y[4]) annotation (Line(points={{-67.2,4},{-74,4}, + {-74,100},{-109,100}}, color={0,0,127})); + connect(bouWatCoo7v2.m_flow_in, gainFloFcu7.y) annotation (Line(points={{-42,-42}, + {-50,-42},{-50,4},{-53.4,4}},color={0,0,127})); + connect(gain.y, bouAirCoo1.m_flow_in) annotation (Line(points={{19,116},{68,116}, + {68,-8},{62,-8}}, color={0,0,127})); + connect(gain.y, bouAirCoo2.m_flow_in) annotation (Line(points={{19,116},{68,116}, + {68,-54},{62,-54}}, color={0,0,127})); + connect(bouWatCoo7v2.ports[1], cooCoi7Param16_IBPSA.port_a1) + annotation (Line(points={{-20,-50},{-10,-50}}, color={0,127,255})); + connect(bouWatCoo7.ports[1], cooCoi7_IBPSA.port_a1) + annotation (Line(points={{-20,-4},{-10,-4}}, color={0,127,255})); + connect(cooCoi7_IBPSA.port_b1, sinWat.ports[1]) annotation (Line(points={{10,-4}, + {20,-4},{20,4},{80,4},{80,3.42857},{110,3.42857}}, color={0,127,255})); + connect(cooCoi7Param16_IBPSA.port_b1, sinWat.ports[2]) annotation (Line( + points={{10,-50},{46,-50},{46,-52},{80,-52},{80,2.28571},{110,2.28571}}, + color={0,127, + 255})); + connect(cooCoi16_IBPSA.port_b1, sinWat.ports[3]) annotation (Line(points={{10,92}, + {20,92},{20,116},{80,116},{80,1.14286},{110,1.14286}}, + color={0,127,255})); + connect(bouAirCoo1.ports[1], cooCoi7_IBPSA.port_a2) + annotation (Line(points={{40,-16},{10,-16}}, color={0,127,255})); + connect(bouAirCoo2.ports[1], cooCoi7Param16_IBPSA.port_a2) + annotation (Line(points={{40,-62},{10,-62}}, color={0,127,255})); + connect(sinAir.ports[1], cooCoi16_IBPSA.port_b2) annotation (Line(points={{-110, + 3.42857},{-80,3.42857},{-80,80},{-10,80}}, + color={0,127,255})); + connect(cooCoi7_IBPSA.port_b2, sinAir.ports[2]) annotation (Line(points={{-10,-16}, + {-80,-16},{-80,2.28571},{-110,2.28571}}, + color={0,127,255})); + connect(cooCoi7Param16_IBPSA.port_b2, sinAir.ports[3]) annotation (Line( + points={{-10,-62},{-80,-62},{-80,1.14286},{-110,1.14286}}, color={0,127, + 255})); + connect(cooCoi16.port_b2, sinAir.ports[4]) annotation (Line(points={{-10,56},{ + -80,56},{-80,1.11022e-16},{-110,1.11022e-16}}, + color={0,127,255})); + connect(cooCoi16.port_b1, sinWat.ports[4]) annotation (Line(points={{10,68},{80, + 68},{80,1.11022e-16},{110,1.11022e-16}}, + color={0,127,255})); + connect(bouAirCoo.ports[1], cooCoi16_IBPSA.port_a2) annotation (Line(points={{40,80}, + {10,80}}, color={0,127,255})); + connect(bouWatCoo16.ports[1], cooCoi16_IBPSA.port_a1) annotation (Line(points={{-20,92}, + {-10,92}}, color={0,127,255})); + connect(bouWatCoo1.ports[1], cooCoi16.port_a1) + annotation (Line(points={{-20,68},{-10,68}}, color={0,127,255})); + connect(bouAirCoo3.ports[1], cooCoi16.port_a2) annotation (Line(points={{40,56}, + {10,56}}, color={0,127,255})); + connect(gain.y, bouAirCoo3.m_flow_in) annotation (Line(points={{19,116},{68, + 116},{68,64},{62,64}}, + color={0,0,127})); + connect(gainFloFcu16.y, bouWatCoo1.m_flow_in) annotation (Line(points={{-53.4, + 100},{-48,100},{-48,76},{-42,76}}, + color={0,0,127})); + connect(bouWatCoo7v1.ports[1], cooCoi7Param16.port_a1) + annotation (Line(points={{-20,-80},{-10,-80}}, color={0,127,255})); + connect(cooCoi7Param16.port_b2, sinAir.ports[5]) annotation (Line(points={{-10,-92}, + {-80,-92},{-80,-2},{-110,-2},{-110,-1.14286}}, color={0,127,255})); + connect(bouAirCoo5.ports[1], cooCoi7Param16.port_a2) + annotation (Line(points={{40,-92},{10,-92}}, color={0,127,255})); + connect(cooCoi7Param16.port_b1, sinWat.ports[5]) annotation (Line(points={{10,-80}, + {80,-80},{80,-1.14286},{110,-1.14286}}, + color={0,127,255})); + connect(bouWatCoo7v2.m_flow_in, bouWatCoo7v1.m_flow_in) annotation (Line( + points={{-42,-42},{-50,-42},{-50,-72},{-42,-72}}, color={0,0,127})); + connect(gain.y, bouAirCoo5.m_flow_in) annotation (Line(points={{19,116},{68,116}, + {68,-84},{62,-84}}, color={0,0,127})); + connect(bouWatCoo3.ports[1],cooCoi16_Dis. port_a1) + annotation (Line(points={{-20,40},{-10,40}}, color={0,127,255})); + connect(bouAirCoo6.ports[1],cooCoi16_Dis. port_a2) + annotation (Line(points={{40,28},{10,28}}, color={0,127,255})); + connect(sinAir.ports[6],cooCoi16_Dis. port_b2) annotation (Line(points={{-110, + -2.28571},{-80,-2.28571},{-80,28},{-10,28}}, color={0,127,255})); + connect(cooCoi16_Dis.port_b1, sinWat.ports[6]) annotation (Line(points={{10,40}, + {80,40},{80,-2.28571},{110,-2.28571}}, color={0,127,255})); + connect(gainFloFcu16.y, bouWatCoo3.m_flow_in) annotation (Line(points={{-53.4, + 100},{-48,100},{-48,48},{-42,48}}, color={0,0,127})); + connect(gain.y, bouAirCoo6.m_flow_in) annotation (Line(points={{19,116},{68, + 116},{68,36},{62,36}}, color={0,0,127})); + connect(bouWatCoo7v3.ports[1],cooCoi7Param16_Dis. port_a1) + annotation (Line(points={{-20,-108},{-10,-108}}, color={0,127,255})); + connect(bouAirCoo4.ports[1],cooCoi7Param16_Dis. port_a2) + annotation (Line(points={{40,-120},{10,-120}}, color={0,127,255})); + connect(cooCoi7Param16_Dis.port_b2, sinAir.ports[7]) annotation (Line(points={{-10, + -120},{-80,-120},{-80,-3.42857},{-110,-3.42857}}, color={0,127,255})); + connect(gainFloFcu7.y, bouWatCoo7v3.m_flow_in) annotation (Line(points={{-53.4, + 4},{-50,4},{-50,-100},{-42,-100}}, color={0,0,127})); + connect(gain.y, bouAirCoo4.m_flow_in) annotation (Line(points={{19,116},{68,116}, + {68,-112},{62,-112}}, color={0,0,127})); + connect(cooCoi7Param16_Dis.port_b1, sinWat.ports[7]) annotation (Line(points={{10,-108}, + {80,-108},{80,0},{110,0},{110,-3.42857}}, color={0,127,255})); + annotation (experiment( + StopTime=50000, + Tolerance=1e-06, + __Dymola_Algorithm="Lsodar"), __Dymola_Commands( + file="Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FCU.mos" + "Simulate and plot"), + Documentation(info=" +

+fixme: complete info section. +

+", revisions=" +

+fixme: add revision section +

+"), + Diagram(coordinateSystem(extent={{-140,-140},{140,140}}), graphics={Text( + extent={{-134,146},{-12,110}}, + lineColor={28,108,200}, + textString="Water mass flow rate computed based on a constant deltaT at each operating point")})); +end WetCoilEffectivenessNTU_FCU; diff --git a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FVM.mo b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FVM.mo new file mode 100644 index 00000000000..a5f2ce207dd --- /dev/null +++ b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FVM.mo @@ -0,0 +1,239 @@ +within Buildings.Fluid.HeatExchangers.Validation; +model WetCoilEffectivenessNTU_FVM + "Model that demonstrates use of a heat exchanger with condensation that uses the epsilon-NTU relation" + extends Modelica.Icons.Example; + + package Medium1 = Buildings.Media.Water; + package Medium2 = Buildings.Media.Air; + + parameter Modelica.SIunits.SpecificHeatCapacity cp1= + Medium1.specificHeatCapacityCp( + Medium1.setState_pTX(Medium1.p_default, Medium1.T_default, Medium1.X_default)) + "Specific heat capacity of medium 2"; + parameter Modelica.SIunits.SpecificHeatCapacity cp2= + Medium2.specificHeatCapacityCp( + Medium2.setState_pTX(Medium2.p_default, Medium2.T_default, Medium2.X_default)) + "Specific heat capacity of medium 2"; + parameter Modelica.SIunits.MassFlowRate m1_flow = 5 + "Nominal mass flow rate medium 1"; + parameter Modelica.SIunits.MassFlowRate m2_flow = m1_flow*cp1/ + cp2 "Nominal mass flow rate medium 2"; + + Buildings.Fluid.Sources.Boundary_pT sin_2( + redeclare package Medium = Medium2, + use_p_in=true, + nPorts=4, + T=273.15 + 10) "Boundary condition" + annotation (Placement(transformation(extent={{-64,10}, + {-44,30}}))); + Buildings.Fluid.Sources.Boundary_pT sou_2( + redeclare package Medium = Medium2, + use_Xi_in=true, + T=273.15 + 5, + use_p_in=true, + use_T_in=true, + nPorts=4) "Boundary condition" + annotation (Placement(transformation(extent={{10,-10}, + {-10,10}}, origin={72,-10}))); + Modelica.Blocks.Sources.Ramp TWat( + height=10, + duration=60, + offset=5 + 273.15, + startTime=60) "Water temperature" + annotation (Placement(transformation(extent={{-100,50},{-80,70}}))); + Modelica.Blocks.Sources.Constant TDb(k=30 + 273.15) + "Drybulb temperature" + annotation (Placement(transformation(extent={{60,-90},{80,-70}}))); + Modelica.Blocks.Sources.Constant POut(k=101325) + annotation (Placement(transformation(extent={{-100,10},{-80,30}}))); + Buildings.Fluid.Sources.Boundary_pT sin_1( + redeclare package Medium = Medium1, + use_p_in=true, + nPorts=4, + p=300000, + T=273.15 + 25) + "Boundary condition" annotation (Placement(transformation(extent={{80,40}, + {60,60}}))); + Buildings.Fluid.Sources.Boundary_pT sou_1( + redeclare package Medium = Medium1, + p=300000 + 5000, + T=273.15 + 50, + use_T_in=true, + nPorts=4) + "Boundary condition" annotation (Placement(transformation(extent={{-62,40}, + {-42,60}}))); + + Buildings.Fluid.HeatExchangers.DryCoilEffectivenessNTU hexDry( + redeclare package Medium1 = Medium1, + redeclare package Medium2 = Medium2, + dp1_nominal=500, + dp2_nominal=10, + m1_flow_nominal=m1_flow, + m2_flow_nominal=m2_flow, + use_Q_flow_nominal=true, + Q_flow_nominal=m2_flow*cp2*(24 - 20), + configuration=Buildings.Fluid.Types.HeatExchangerConfiguration.CounterFlow, + show_T=true, + T_a1_nominal=303.15, + T_a2_nominal=293.15) "Dry coil" + annotation (Placement(transformation(extent={{-10,0},{10,20}}))); + WetEffectivenessNTU_Fuzzy_V3 hexWetNtu( + redeclare package Medium1 = Medium1, + redeclare package Medium2 = Medium2, + dp1_nominal=500, + dp2_nominal=10, + m1_flow_nominal=m1_flow, + m2_flow_nominal=m2_flow, + UA_nominal=13854.5, + configuration=Buildings.Fluid.Types.HeatExchangerConfiguration.CrossFlowStream1UnmixedStream2Mixed, + show_T=true) + "Heat exchanger" + annotation (Placement(transformation(extent={{-10,-58},{10,-38}}))); + Modelica.Blocks.Sources.Trapezoid trapezoid( + amplitude=5000, + rising=10, + width=100, + falling=10, + period=3600, + offset=300000) + "Pressure boundary condition" + annotation (Placement(transformation(extent={{40,70},{60,90}}))); + WetCoilCounterFlow hexFVM( + redeclare package Medium1 = Medium1, + redeclare package Medium2 = Medium2, + dp1_nominal=500, + dp2_nominal=10, + m1_flow_nominal=m1_flow, + m2_flow_nominal=m2_flow, + show_T=true, + UA_nominal=13854.5, + nEle=100) "Heat exchanger" + annotation (Placement(transformation(extent={{-10,-26},{10,-6}}))); + Modelica.Blocks.Sources.Ramp XIn1( + height=30*1e-3, + duration=60, + offset=2*1e-3, + startTime=360) "Humidity boundary condition" + annotation (Placement(transformation(extent={{60,-50},{80,-30}}))); + Modelica.Blocks.Sources.Ramp PIn( + height=200, + duration=60, + offset=101325, + startTime=100) "Pressure boundary condition" + annotation (Placement(transformation(extent={{60,-132},{80, + -112}}))); + WetCoilEffectivesnessNTU hexWetIBPSA( + redeclare package Medium1 = Medium1, + redeclare package Medium2 = Medium2, + show_T=true, + dp1_nominal=500, + dp2_nominal=10, + m1_flow_nominal=m1_flow, + m2_flow_nominal=m2_flow, + T_a1_nominal=303.15, + T_a2_nominal=293.15, + Q_flow_nominal=m2_flow*cp2*(24 - 20), + configuration=Buildings.Fluid.Types.HeatExchangerConfiguration.CrossFlowStream1UnmixedStream2Mixed) + annotation (Placement(transformation(extent={{-10,-90},{10,-70}}))); + Real isDryHexDis[hexFVM.nEle]; + Real dryFraHexDis = sum(isDryHexDis) / hexFVM.nEle; + + + +equation + for iEle in 1:hexFVM.nEle loop + isDryHexDis[iEle] = if abs(hexFVM.ele[iEle].masExc.mWat_flow) < 1E-6 then 1 else 0; + end for; + connect(TDb.y, sou_2.T_in) annotation (Line(points={{81,-80},{100,-80},{100, + -6},{84,-6}}, + color={0,0,127})); + connect(TWat.y, sou_1.T_in) + annotation (Line(points={{-79,60},{-72,60},{-72,54},{-64,54}}, + color={0,0,127})); + connect(POut.y, sin_2.p_in) annotation (Line( + points={{-79,20},{-72,20},{-72,28},{-66,28}}, + color={0,0,127}, + smooth=Smooth.None)); + connect(hexDry.port_a1, sou_1.ports[1]) annotation (Line( + points={{-10,16},{-24,16},{-24,53},{-42,53}}, + color={0,127,255}, + smooth=Smooth.None)); + connect(hexWetNtu.port_a1, sou_1.ports[2]) annotation (Line( + points={{-10,-42},{-28,-42},{-28,51},{-42,51}}, + color={0,127,255}, + smooth=Smooth.None)); + connect(hexDry.port_b2, sin_2.ports[1]) annotation (Line( + points={{-10,4},{-32,4},{-32,23},{-44,23}}, + color={0,127,255}, + smooth=Smooth.None)); + connect(hexWetNtu.port_b2, sin_2.ports[2]) annotation (Line( + points={{-10,-54},{-36,-54},{-36,21},{-44,21}}, + color={0,127,255}, + smooth=Smooth.None)); + connect(hexDry.port_b1, sin_1.ports[1]) annotation (Line( + points={{10,16},{34,16},{34,53},{60,53}}, + color={0,127,255}, + smooth=Smooth.None)); + connect(hexWetNtu.port_b1, sin_1.ports[2]) annotation (Line( + points={{10,-42},{38,-42},{38,51},{60,51}}, + color={0,127,255}, + smooth=Smooth.None)); + connect(hexDry.port_a2, sou_2.ports[1]) annotation (Line( + points={{10,4},{36,4},{36,-7},{62,-7}}, + color={0,127,255}, + smooth=Smooth.None)); + connect(hexWetNtu.port_a2, sou_2.ports[2]) annotation (Line( + points={{10,-54},{32,-54},{32,-9},{62,-9}}, + color={0,127,255}, + smooth=Smooth.None)); + connect(trapezoid.y, sin_1.p_in) annotation (Line( + points={{61,80},{92,80},{92,58},{82,58}}, + color={0,0,127}, + smooth=Smooth.None)); + connect(sou_1.ports[3], hexFVM.port_a1) annotation (Line(points={{-42,49},{-20, + 49},{-20,-10},{-10,-10}}, color={0,127,255})); + connect(sin_2.ports[3], hexFVM.port_b2) annotation (Line(points={{-44,19},{-28, + 19},{-28,-22},{-10,-22}}, color={0,127,255})); + connect(hexFVM.port_a2, sou_2.ports[3]) annotation (Line(points={{10,-22},{38, + -22},{38,-11},{62,-11}}, color={0,127,255})); + connect(hexFVM.port_b1, sin_1.ports[3]) annotation (Line(points={{10,-10},{36, + -10},{36,49},{60,49}}, color={0,127,255})); + connect(PIn.y, sou_2.p_in) annotation (Line(points={{81,-122},{102,-122},{102, + -2},{84,-2}}, color={0,0,127})); + connect(XIn1.y, sou_2.Xi_in[1]) annotation (Line(points={{81,-40},{96,-40},{ + 96,-14},{84,-14}}, color={0,0,127})); + connect(sou_2.ports[4], hexWetIBPSA.port_a2) annotation (Line(points={{62,-13}, + {40,-13},{40,-86},{10,-86}}, color={0,127,255})); + connect(sin_2.ports[4], hexWetIBPSA.port_b2) annotation (Line(points={{-44,17}, + {-40,17},{-40,-86},{-10,-86}}, color={0,127,255})); + connect(sou_1.ports[4], hexWetIBPSA.port_a1) annotation (Line(points={{-42,47}, + {-26,47},{-26,-74},{-10,-74}}, color={0,127,255})); + connect(hexWetIBPSA.port_b1, sin_1.ports[4]) annotation (Line(points={{10,-74}, + {36,-74},{36,47},{60,47}}, color={0,127,255})); + annotation(experiment(Tolerance=1e-6, StopTime=360), +__Dymola_Commands(file= + "modelica://Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FVM.mos" + "Simulate and plot"), +Documentation(info=" +

+This model tests + +Buildings.Fluid.HeatExchangers.DryCoilEffectivenessNTU +for different inlet conditions. +

+", revisions=" + +"), + Diagram(coordinateSystem(extent={{-140,-180},{140,180}}))); +end WetCoilEffectivenessNTU_FVM; diff --git a/Buildings/Fluid/HeatExchangers/WetEffectivenessNTU_Fuzzy_V3.mo b/Buildings/Fluid/HeatExchangers/WetEffectivenessNTU_Fuzzy_V3.mo new file mode 100644 index 00000000000..a365c18e102 --- /dev/null +++ b/Buildings/Fluid/HeatExchangers/WetEffectivenessNTU_Fuzzy_V3.mo @@ -0,0 +1,509 @@ +within Buildings.Fluid.HeatExchangers; +model WetEffectivenessNTU_Fuzzy_V3 + "Heat exchanger with effectiveness - NTU relation and with moisture condensation" + extends Buildings.Fluid.Interfaces.PartialFourPortInterface( + redeclare replaceable package Medium2 = Buildings.Media.Air); + extends Buildings.Fluid.Interfaces.FourPortFlowResistanceParameters( + final computeFlowResistance1=true, + final computeFlowResistance2=true); + + import con = Buildings.Fluid.Types.HeatExchangerConfiguration; + import flo = Buildings.Fluid.Types.HeatExchangerFlowRegime; + + parameter Modelica.SIunits.ThermalConductance UA_nominal(min=0) + "Thermal conductance at nominal flow, used to compute heat capacity" + annotation(Dialog(tab="General", group="Nominal condition")); + parameter Real r_nominal=2/3 + "Ratio between air-side and water-side convective heat transfer coefficient" + annotation (Dialog(group="Nominal condition")); + parameter Boolean waterSideFlowDependent=true + "Set to false to make water-side hA independent of mass flow rate" + annotation (Dialog(tab="Heat transfer")); + parameter Boolean airSideFlowDependent=true + "Set to false to make air-side hA independent of mass flow rate" + annotation (Dialog(tab="Heat transfer")); + parameter Boolean waterSideTemperatureDependent=false + "Set to false to make water-side hA independent of temperature" + annotation (Dialog(tab="Heat transfer")); + parameter Boolean airSideTemperatureDependent=false + "Set to false to make air-side hA independent of temperature" + annotation (Dialog(tab="Heat transfer")); + parameter Buildings.Fluid.Types.HeatExchangerConfiguration configuration= + con.CounterFlow + "Heat exchanger configuration"; + // Dynamics + parameter Modelica.Fluid.Types.Dynamics energyDynamics= + Modelica.Fluid.Types.Dynamics.SteadyState + "Type of energy balance: dynamic (3 initialization options) or steady state" + annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); + parameter Modelica.Fluid.Types.Dynamics massDynamics=energyDynamics + "Type of mass balance: dynamic (3 initialization options) or steady state" + annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); + + Modelica.SIunits.HeatFlowRate Q1_flow = -dryWetCalcs.QTot_flow + "Heat input into water stream (positive if air is cooled)"; + Modelica.SIunits.HeatFlowRate Q2_flow = dryWetCalcs.QTot_flow + "Total heat input into air stream (negative if air is cooled)"; + Modelica.SIunits.HeatFlowRate QSen2_flow = dryWetCalcs.QSen_flow + "Sensible heat input into air stream (negative if air is cooled)"; + Modelica.SIunits.HeatFlowRate QLat2_flow= + Buildings.Utilities.Psychrometrics.Constants.h_fg * mWat_flow + "Latent heat input into air (negative if air is dehumidified)"; + Real SHR( + min=0, + max=1, + unit="1") = QSen2_flow / + noEvent(if (Q2_flow > 1E-6 or Q2_flow < -1E-6) then Q2_flow else 1) + "Sensible to total heat ratio"; + Modelica.SIunits.MassFlowRate mWat_flow = dryWetCalcs.mCon_flow + "Water flow rate of condensate removed from the air stream"; + +protected + Real delta=1E-2 + "a parameter for normailization"; + Real delta1=1E-1 + "a parameter for normailization"; + Real fac1 = Buildings.Utilities.Math.Functions.smoothMin((1/delta * m1_flow/m1_flow_nominal)^2,1,delta1); + //Real fac1 = if abs(m1_flow/m1_flow_nominal) >= delta then 1 else (1/delta * m1_flow/m1_flow_nominal)^2; + Real fac2 = Buildings.Utilities.Math.Functions.smoothMin((1/delta * m2_flow/m2_flow_nominal)^2,1,delta1); + //Real fac2 = if abs(m2_flow)/m2_flow_nominal >= delta then 1 else (1/delta * m2_flow/m2_flow_nominal)^2; + Real Qfac = fac1*fac2; + + Buildings.Fluid.HeatExchangers.HeaterCooler_u heaCoo( + redeclare final package Medium = Medium1, + final dp_nominal = dp1_nominal, + final m_flow_nominal = m1_flow_nominal, + final energyDynamics = energyDynamics, + final massDynamics = massDynamics, + final Q_flow_nominal=-1) + "Heat exchange with water stream" + annotation (Placement(transformation(extent={{60,50},{80,70}}))); + + Buildings.Fluid.Humidifiers.Humidifier_u heaCooHum_u( + redeclare final package Medium = Medium2, + mWat_flow_nominal = 1, + dp_nominal = dp2_nominal, + m_flow_nominal = m2_flow_nominal, + energyDynamics = energyDynamics, + massDynamics = massDynamics) + "Heat and moisture exchange with air stream" + annotation (Placement(transformation(extent={{-60,-70},{-80,-50}}))); + Buildings.Fluid.HeatExchangers.BaseClasses.HADryCoil hA( + final UA_nominal = UA_nominal, + final m_flow_nominal_a = m2_flow_nominal, + final m_flow_nominal_w = m1_flow_nominal, + final waterSideTemperatureDependent = waterSideTemperatureDependent, + final waterSideFlowDependent = waterSideFlowDependent, + final airSideTemperatureDependent = airSideTemperatureDependent, + final airSideFlowDependent = airSideFlowDependent, + r_nominal = r_nominal) + "Model for convective heat transfer coefficient" + annotation (Placement(transformation(extent={{-68,-13},{-50,9}}))); + BaseClasses.DryWetCalcsFuzzy_V3 dryWetCalcs( + redeclare final package Medium2 = Medium2, + final cfg=flowRegime, + final mWat_flow_nominal=m1_flow_nominal, + final mAir_flow_nominal=m2_flow_nominal, + Qfac=Qfac) "Dry/wet calculations block" + annotation (Placement(transformation(extent={{-20,-40},{60,40}}))); + Modelica.Blocks.Sources.RealExpression cp_a1Exp( + final y = if allowFlowReversal1 + then + fra_a1 * Medium1.specificHeatCapacityCp(state_a1_inflow) + + fra_b1 * Medium1.specificHeatCapacityCp(state_b1_inflow) + else + Medium1.specificHeatCapacityCp(state_a1_inflow)) + "Expression for cp of air" + annotation (Placement(transformation(extent={{-44,18},{-30,30}}))); + Modelica.Blocks.Sources.RealExpression XWat_a2Exp( + final y = if allowFlowReversal2 + then + fra_a2 * state_a2_inflow.X[nWat] + fra_b2 * state_b2_inflow.X[nWat] + else + state_a2_inflow.X[nWat]) + "Expression for XWat" + annotation (Placement(transformation(extent={{-44,-2},{-30,10}}))); + Modelica.Blocks.Sources.RealExpression p_a2Exp( + final y = port_a2.p) + "Pressure at port a2" + annotation (Placement(transformation(extent={{-44,-10},{-30,2}}))); + Modelica.Blocks.Sources.RealExpression h_a2Exp( + final y = if allowFlowReversal2 + then + fra_a2 * Medium2.specificEnthalpy(state_a2_inflow) + + fra_b2 * Medium2.specificEnthalpy(state_b2_inflow) + else + Medium2.specificEnthalpy(state_a2_inflow)) + "Specific enthalpy at port a2" + annotation (Placement(transformation(extent={{-44,-18},{-30,-6}}))); + Modelica.Blocks.Sources.RealExpression cp_a2Exp( + final y = if allowFlowReversal2 + then + fra_a2 * Medium2.specificHeatCapacityCp(state_a2_inflow) + + fra_b2 * Medium2.specificHeatCapacityCp(state_b2_inflow) + else + Medium2.specificHeatCapacityCp(state_a2_inflow)) + "Specific heat capacity at port a2" + annotation (Placement(transformation(extent={{-44,-30},{-30,-18}}))); + Modelica.Blocks.Sources.RealExpression TIn_a1Exp( + final y = if allowFlowReversal1 + then + fra_a1 * Medium1.temperature(state_a1_inflow) + + fra_b1 * Medium1.temperature(state_b1_inflow) + else + Medium1.temperature(state_a1_inflow)) + "Temperature at port a1" + annotation (Placement(transformation(extent={{-98,16},{-84,28}}))); + Modelica.Blocks.Sources.RealExpression TIn_a2Exp( + final y = if allowFlowReversal2 + then + fra_a2 * Medium2.temperature(state_a2_inflow) + + fra_b2 * Medium2.temperature(state_b2_inflow) + else + Medium2.temperature(state_a2_inflow)) + "Temperature at port a2" + annotation (Placement(transformation(extent={{-98,-8},{-84,4}}))); + Modelica.Blocks.Sources.RealExpression m_flow_a1Exp(final y=Buildings.Utilities.Math.Functions.regNonZeroPower(x=port_a1.m_flow,n=1,delta=delta*m1_flow_nominal)) + "Absolute value of mass flow rate on water side" + annotation (Placement(transformation(extent={{-98,30},{-84,42}}))); + Modelica.Blocks.Sources.RealExpression m_flow_a2Exp(final y=Buildings.Utilities.Math.Functions.regNonZeroPower(x=port_a2.m_flow,n=1,delta=delta*m2_flow_nominal)) + "Absolute value of mass flow rate on air side" + annotation (Placement(transformation(extent={{-98,-36},{-84,-24}}))); + final parameter Integer nWat= + Buildings.Fluid.HeatExchangers.BaseClasses.determineWaterIndex( + Medium2.substanceNames) + "Index of water"; + parameter flo flowRegime_nominal(fixed=false) + "Heat exchanger flow regime at nominal flow rates"; + flo flowRegime(fixed=false, start=flowRegime_nominal) + "Heat exchanger flow regime"; + + Buildings.HeatTransfer.Sources.PrescribedHeatFlow preHea + "Prescribed heat flow" + annotation (Placement(transformation(extent={{20,-90},{0,-70}}))); + Real fra_a1(min=0, max=1) + "Fraction of incoming state taken from port a2 + (used to avoid excessive calls to regStep)"; + Real fra_b1(min=0, max=1) + "Fraction of incoming state taken from port b2 + (used to avoid excessive calls to regStep)"; + Real fra_a2(min=0, max=1) + "Fraction of incoming state taken from port a2 + (used to avoid excessive calls to regStep)"; + Real fra_b2(min=0, max=1) + "Fraction of incoming state taken from port b2 + (used to avoid excessive calls to regStep)"; + + Modelica.SIunits.ThermalConductance C1_flow = abs(m1_flow)* + ( if allowFlowReversal1 then + fra_a1 * Medium1.specificHeatCapacityCp(state_a1_inflow) + + fra_b1 * Medium1.specificHeatCapacityCp(state_b1_inflow) else + Medium1.specificHeatCapacityCp(state_a1_inflow)) + "Heat capacity flow rate medium 1"; + Modelica.SIunits.ThermalConductance C2_flow = abs(m2_flow)* + ( if allowFlowReversal2 then + fra_a2 * Medium2.specificHeatCapacityCp(state_a2_inflow) + + fra_b2 * Medium2.specificHeatCapacityCp(state_b2_inflow) else + Medium2.specificHeatCapacityCp(state_a2_inflow)) + "Heat capacity flow rate medium 2"; + parameter Modelica.SIunits.SpecificHeatCapacity cp1_nominal(fixed=false) + "Specific heat capacity of medium 1 at nominal condition"; + parameter Modelica.SIunits.SpecificHeatCapacity cp2_nominal(fixed=false) + "Specific heat capacity of medium 2 at nominal condition"; + parameter Modelica.SIunits.ThermalConductance C1_flow_nominal(fixed=false) + "Nominal capacity flow rate of Medium 1"; + parameter Modelica.SIunits.ThermalConductance C2_flow_nominal(fixed=false) + "Nominal capacity flow rate of Medium 2"; + final parameter Medium1.ThermodynamicState sta1_default = Medium1.setState_phX( + h=Medium1.h_default, + p=Medium1.p_default, + X=Medium1.X_default[1:Medium1.nXi]) "Default state for medium 1"; + final parameter Medium2.ThermodynamicState sta2_default = Medium2.setState_phX( + h=Medium2.h_default, + p=Medium2.p_default, + X=Medium2.X_default[1:Medium2.nXi]) "Default state for medium 2"; + +initial equation + cp1_nominal = Medium1.specificHeatCapacityCp(sta1_default); + cp2_nominal = Medium2.specificHeatCapacityCp(sta2_default); + C1_flow_nominal = m1_flow_nominal*cp1_nominal; + C2_flow_nominal = m2_flow_nominal*cp2_nominal; + if (configuration == con.CrossFlowStream1MixedStream2Unmixed) then + flowRegime_nominal = if (C1_flow_nominal < C2_flow_nominal) + then + flo.CrossFlowCMinMixedCMaxUnmixed + else + flo.CrossFlowCMinUnmixedCMaxMixed; + elseif (configuration == con.CrossFlowStream1UnmixedStream2Mixed) then + flowRegime_nominal = if (C1_flow_nominal < C2_flow_nominal) + then + flo.CrossFlowCMinUnmixedCMaxMixed + else + flo.CrossFlowCMinMixedCMaxUnmixed; + elseif (configuration == con.ParallelFlow) then + flowRegime_nominal = flo.ParallelFlow; + elseif (configuration == con.CounterFlow) then + flowRegime_nominal = flo.CounterFlow; + elseif (configuration == con.CrossFlowUnmixed) then + flowRegime_nominal = flo.CrossFlowUnmixed; + else + // Invalid flow regime. Assign a value to flowRegime_nominal, and stop with an assert + flowRegime_nominal = flo.CrossFlowUnmixed; + assert(configuration >= con.ParallelFlow and + configuration <= con.CrossFlowStream1UnmixedStream2Mixed, + "Invalid heat exchanger configuration."); + end if; + +equation + if allowFlowReversal1 then + fra_a1 = Modelica.Fluid.Utilities.regStep( + m1_flow, + 1, + 0, + m1_flow_small); + fra_b1 = 1-fra_a1; + else + fra_a1 = 1; + fra_b1 = 0; + end if; + if allowFlowReversal2 then + fra_a2 = Modelica.Fluid.Utilities.regStep( + m2_flow, + 1, + 0, + m2_flow_small); + fra_b2 = 1-fra_a2; + else + fra_a2 = 1; + fra_b2 = 0; + end if; + // Assign the flow regime for the given heat exchanger configuration and + // mass flow rates + if (configuration == con.ParallelFlow) then + flowRegime = if (C1_flow*C2_flow >= 0) + then + flo.ParallelFlow + else + flo.CounterFlow; + elseif (configuration == con.CounterFlow) then + flowRegime = if (C1_flow*C2_flow >= 0) + then + flo.CounterFlow + else + flo.ParallelFlow; + elseif (configuration == con.CrossFlowUnmixed) then + flowRegime = flo.CrossFlowUnmixed; + elseif (configuration == con.CrossFlowStream1MixedStream2Unmixed) then + flowRegime = if (C1_flow < C2_flow) + then + flo.CrossFlowCMinMixedCMaxUnmixed + else + flo.CrossFlowCMinUnmixedCMaxMixed; + else + // have ( configuration == con.CrossFlowStream1UnmixedStream2Mixed) + flowRegime = if (C1_flow < C2_flow) + then + flo.CrossFlowCMinUnmixedCMaxMixed + else + flo.CrossFlowCMinMixedCMaxUnmixed; + end if; + + connect(heaCoo.port_b, port_b1) annotation (Line(points={{80,60},{80,60},{100,60}},color={0,127,255}, + thickness=1)); + connect(heaCooHum_u.port_b, port_b2) annotation (Line( + points={{-80,-60},{-90,-60},{-100,-60}}, + color={0,127,255}, + thickness=1)); + connect(hA.hA_1, dryWetCalcs.UAWat) annotation (Line(points={{-49.1,5.7},{-46, + 5.7},{-46,36.6667},{-22.8571,36.6667}}, color={0,0,127})); + connect(hA.hA_2, dryWetCalcs.UAAir) annotation (Line(points={{-49.1,-9.7},{ + -46,-9.7},{-46,-36},{-46,-36.6667},{-22.8571,-36.6667}}, + color={0,0,127})); + connect(cp_a1Exp.y, dryWetCalcs.cpWat) annotation (Line(points={{-29.3,24},{ + -22.8571,24},{-22.8571,23.3333}}, + color={0,0,127})); + connect(XWat_a2Exp.y, dryWetCalcs.wAirIn) annotation (Line(points={{-29.3,4}, + {-22.8571,4},{-22.8571,3.33333}}, color={0,0,127})); + connect(p_a2Exp.y, dryWetCalcs.pAir) annotation (Line(points={{-29.3,-4},{ + -22.8571,-4},{-22.8571,-3.33333}}, + color={0,0,127})); + connect(h_a2Exp.y, dryWetCalcs.hAirIn) annotation (Line(points={{-29.3,-12},{ + -22,-12},{-22,-10},{-22.8571,-10}}, + color={0,0,127})); + connect(cp_a2Exp.y, dryWetCalcs.cpAir) annotation (Line(points={{-29.3,-24},{ + -22.8571,-24},{-22.8571,-23.3333}}, + color={0,0,127})); + connect(TIn_a1Exp.y, hA.T_1) annotation (Line(points={{-83.3,22},{-80,22},{-80, + 1.3},{-68.9,1.3}}, color={0,0,127})); + connect(TIn_a1Exp.y, dryWetCalcs.TWatIn) annotation (Line(points={{-83.3,22}, + {-50,22},{-50,16.6667},{-22.8571,16.6667}}, color={0,0,127})); + connect(TIn_a2Exp.y, hA.T_2) annotation (Line(points={{-83.3,-2},{-76,-2},{-76, + -5.3},{-68.9,-5.3}}, color={0,0,127})); + connect(TIn_a2Exp.y, dryWetCalcs.TAirIn) annotation (Line(points={{-83.3,-2}, + {-76,-2},{-76,-16.6667},{-22.8571,-16.6667}}, color={0,0,127})); + connect(m_flow_a1Exp.y, hA.m1_flow) annotation (Line(points={{-83.3,36},{-76,36}, + {-76,5.7},{-68.9,5.7}}, color={0,0,127})); + connect(m_flow_a1Exp.y, dryWetCalcs.mWat_flow) annotation (Line(points={{-83.3, + 36},{-50,36},{-50,30},{-22.8571,30}}, color={0,0,127})); + connect(port_a1, heaCoo.port_a) annotation (Line( + points={{-100,60},{-20,60},{60,60}}, + color={0,127,255}, + thickness=1)); + connect(m_flow_a2Exp.y, hA.m2_flow) annotation (Line(points={{-83.3,-30},{-80, + -30},{-80,-9.7},{-68.9,-9.7}}, + color={0,0,127})); + connect(m_flow_a2Exp.y, dryWetCalcs.mAir_flow) annotation (Line(points={{-83.3, + -30},{-22.8571,-30}}, color={0,0,127})); + connect(port_a2, heaCooHum_u.port_a) annotation (Line( + points={{100,-60},{20,-60},{-60,-60}}, + color={0,127,255}, + thickness=1)); + connect(preHea.port, heaCooHum_u.heatPort) annotation (Line(points={{0,-80},{-40, + -80},{-40,-66},{-60,-66}}, color={191,0,0})); + connect(dryWetCalcs.QTot_flow, heaCoo.u) annotation (Line(points={{62.8571, + -6.66667},{80,-6.66667},{80,44},{40,44},{40,66},{58,66}}, + color={0,0,127})); + connect(dryWetCalcs.mCon_flow, heaCooHum_u.u) annotation (Line(points={{62.8571, + -33.3333},{70,-33.3333},{70,-54},{-59,-54}}, color={0,0,127})); + connect(preHea.Q_flow, dryWetCalcs.QTot_flow) annotation (Line(points={{20,-80}, + {44,-80},{80,-80},{80,-6.66667},{62.8571,-6.66667}}, + color={0,0,127})); + annotation ( + defaultComponentName="hexWetNtu", + Icon(graphics={ + Rectangle( + extent={{-70,80},{70,-80}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={95,95,95}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{36,80},{40,-80}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,0,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-40,80},{-36,-80}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,0,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-2,80},{2,-80}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,0,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-100,-55},{101,-65}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,127,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-98,65},{103,55}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,0,255}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-70,80},{70,-80}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={95,95,95}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-100,-55},{101,-65}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,127,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-98,65},{103,55}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,0,255}, + fillPattern=FillPattern.Solid), + Polygon( + points={{46,-62},{44,-72},{50,-76},{58,-72},{56,-62},{50,-50},{46,-62}}, + lineColor={0,0,255}, + fillColor={0,0,255}, + fillPattern=FillPattern.Solid, + smooth=Smooth.Bezier), + Polygon( + points={{24,-52},{22,-62},{28,-66},{36,-62},{34,-52},{28,-40},{24,-52}}, + lineColor={0,0,255}, + fillColor={0,0,255}, + fillPattern=FillPattern.Solid, + smooth=Smooth.Bezier), + Polygon( + points={{0,-48},{-2,-58},{4,-62},{12,-58},{10,-48},{4,-36},{0,-48}}, + lineColor={0,0,255}, + fillColor={0,0,255}, + fillPattern=FillPattern.Solid, + smooth=Smooth.Bezier), + Polygon( + points={{-18,-64},{-20,-74},{-14,-78},{-6,-74},{-8,-64},{-14,-52},{ + -18,-64}}, + lineColor={0,0,255}, + fillColor={0,0,255}, + fillPattern=FillPattern.Solid, + smooth=Smooth.Bezier), + Polygon( + points={{-40,-50},{-42,-60},{-36,-64},{-28,-60},{-30,-50},{-36,-38},{ + -40,-50}}, + lineColor={0,0,255}, + fillColor={0,0,255}, + fillPattern=FillPattern.Solid, + smooth=Smooth.Bezier), + Polygon( + points={{-58,-62},{-60,-72},{-54,-76},{-46,-72},{-48,-62},{-54,-50},{ + -58,-62}}, + lineColor={0,0,255}, + fillColor={0,0,255}, + fillPattern=FillPattern.Solid, + smooth=Smooth.Bezier)}), + Diagram(graphics={Text( + extent={{44,84},{86,76}}, + lineColor={28,108,200}, + textString="Water Side", + textStyle={TextStyle.Italic}, + horizontalAlignment=TextAlignment.Left), + Text( + extent={{-42,-80},{0,-88}}, + lineColor={28,108,200}, + textStyle={TextStyle.Italic}, + horizontalAlignment=TextAlignment.Left, + textString="Air Side")}), + Documentation(info=" +


This model describes a cooling coil that is capable of simulating fully-dry, partially-wet, and fully-wet regimes. The model is developed for counter flow heat exchangers but is also applicable for the cross-flow configuration (it is recommended to have over four tube rows for the cross-flow heat exchangers (Elmahdy and Mitalas, 1977 and Braun, 1988). The model can also be used for a heat exchanger, which acts as both heating coil (for some period of time) and cooling coil (for the others). However, it is not recommended to use this model for heating coil only or for cooling coil with no water condensation for computational efficiency.

+

Main equations

+

The coil model consists of two-equation sets, one for the fully-dry mode and the other for the fully-wet mode. For the fully-dry mode, the ε-NTU approach (Elmahdy and Mitalas, 1977) is used. For the fully-wet mode, equations from Braun (1988) and Mitchell and Braun (2012a and b), which are essentially the extension of the ε-NTU approach to simultaneous sensible and latent heat transfer, are utilized. The equation sets are switched depending on the switching criteria described below that determines the right mode based on a coil surface temperature and dew-point temperature for the air at the inlet of the coil. The transition regime between the two modes, which represents the partially-wet and partially-dry coil, is approximated by employing a fuzzy modeling approach, so-called Takagi-Sugeno fuzzy modeling (Takagi and Sugeno, 1985), which provides a continuously differentiable coil model that can cover all fully-dry, partially-dry and wet, and fully-wet regimes.

+

The switching rules are;

+

R1: If the coil surface temperature at the air inlet is lower than the dew-point temperature at inlet to the coil, then the cooling coil surface is fully-wet.

+

R2: If the surface temperature at the air outlet section is higher than the dew-point temperature of air at inlet, then the cooling coil surface is fully-dry.

+

R3: If any of the conditions in R1 or R2 is not satisfied, then the cooling coil is partially wet partially dry.

+


For more detailed descriptions of the fully-wet coil model and the fuzzy modeling approach, see Buildings.Fluid.HeatExchangers.BaseClasses.WetcalcsFuzzy_V3 and Buildings.Fluid.HeatExchangers.BaseClasses.DryWetCalcsFuzzy_V3.

+

Assumptions and limitations

+

This model contains the following assumptions and limitations:

+

Medium 2 must be air due to the use of various Psychrometric functions.

+

The model uses steady-state physics. That is, no dynamics associated with water and coil materials are considered.

+

The Lewis number, which relates the mass transfer coefficient to the heat transfer coefficient, is assumed to be 1.

+

The model is not suitable for a cross-flow heat exchanger of which the number of passes is less than four.

+

Validation

+

Validation results can be found in Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU, which compares with a discretized wet coil model (Buildings.Fluid.HeatExchangers.WetCoilDiscretized) for a textbook problem from Mitchell and Braun (2012b, Example SM2-1). In the problem, the absolute humidity of the air inlet increases while fixing the other boundary conditions of temperatures and flow rates of water and air, which allows investigating transition behaviors of the model from fully-dry to fully-wet modes.

+

References

+

Braun, James E. 1988. "Methodologies for the Design and Control of Central Cooling Plants". PhD Thesis. University of Wisconsin - Madison. Available online: https://minds.wisconsin.edu/handle/1793/46694

+

Mitchell, John W., and James E. Braun. 2012a. Principles of heating, ventilation, and air conditioning in buildings. Hoboken, N.J.: Wiley.

+

Mitchell, John W., and James E. Braun. 2012b. "Supplementary Material Chapter 2: Heat Exchangers for Cooling Applications". Excerpt from Principles of heating, ventilation, and air conditioning in buildings. Hoboken, N.J.: Wiley. Available online: http://bcs.wiley.com/he-bcs/Books?action=index&itemId=0470624574&bcsId=7185

+

Elmahdy, A.H. and Mitalas, G.P. 1977. "A Simple Model for Cooling and Dehumidifying Coils for Use In Calculating Energy Requirements for Buildings". ASHRAE Transactions. Vol.83. Part 2. pp. 103-117.

+

Takagi, T. and Sugeno, M., 1985. Fuzzy identification of systems and its applications to modeling and control. IEEE transactions on systems, man, and cybernetics, (1), pp.116-132.

+", revisions=" + +"), + __Dymola_Commands(file= + "Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffNtuMassFlowFuzzy.mos")); +end WetEffectivenessNTU_Fuzzy_V3; diff --git a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mos b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mos new file mode 100644 index 00000000000..c550dc54984 --- /dev/null +++ b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mos @@ -0,0 +1,16 @@ +old_StoreProtectedVariables = Advanced.StoreProtectedVariables; +Advanced.StoreProtectedVariables = true; +simulateModel("Buildings.Fluid.HeatExchangers.Examples.WetCoilEffectivenessNTU", + tolerance=1e-6, stopTime=3600, method="Dassl", resultFile="WetCoilEffectivenessNTU"); +Advanced.StoreProtectedVariables = old_StoreProtectedVariables; +createPlot( + id=1, + position={0, 0, 782, 636}, + y={"hex.Q2_flow", "hex.QLat2_flow", "resDis.y[1]", "resDis.y[2]"}, + grid=true); +createPlot( + id=1, + y={"hex.port_a1.m_flow", "hex.port_a2.m_flow"}, + grid=true, + subPlot=2); + diff --git a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos new file mode 100644 index 00000000000..9bd7e67691c --- /dev/null +++ b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos @@ -0,0 +1,44 @@ +old_StoreProtectedVariables = Advanced.StoreProtectedVariables; +Advanced.StoreProtectedVariables = true; +simulateModel("Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU", + method="cvode", + tolerance=1e-06, + stopTime=100, + resultFile="WetCoilEffectivenessNTU"); +Advanced.StoreProtectedVariables = old_StoreProtectedVariables; +createPlot( + id=1, + position={59, 59, 1186, 1286}, + y={"hexWetNTU.Q1_flow", "hexWetNTU_IBPSA.Q1_flow", "hexDis.Q1_flow"}, + autoscale=true, + autoerase=true, + autoreplot=true, + grid=true, + color=true); +createPlot( + id=1, + subPlot=2, + y={"hexWetNTU.sta_b2.T", "hexWetNTU_IBPSA.sta_b2.T", "hexDis.sta_b2.T"}, + autoscale=true, + autoerase=true, + autoreplot=true, + grid=true, + color=true); +createPlot( + id=2, + position={1255, 58, 1140, 1286}, + y={"hexWetNTU.dryWetCalcs.dryfra", "hexWetNTU.SHR", "dryFraHexDis"}, + autoscale=true, + autoerase=true, + autoreplot=true, + grid=true, + color=true); +createPlot( + id=2, + subPlot=2, + y={"hexWetNTU.dryWetCalcs.w_PW", "hexWetNTU.dryWetCalcs.w_FW","hexWetNTU.dryWetCalcs.w_FD"}, + autoscale=true, + autoerase=true, + autoreplot=true, + grid=true, + color=true); \ No newline at end of file diff --git a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FCU.mos b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FCU.mos new file mode 100644 index 00000000000..6367dfac8bb --- /dev/null +++ b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FCU.mos @@ -0,0 +1,68 @@ +old_StoreProtectedVariables = Advanced.StoreProtectedVariables; +Advanced.StoreProtectedVariables = true; +simulateModel("Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU_FCU", + stopTime=50000, + method="cvode", + tolerance=1e-06, + resultFile="WetCoilEffectivenessNTU_FCU"); +Advanced.StoreProtectedVariables = old_StoreProtectedVariables; +createPlot( + id=1, + position={0, 0, 1054, 1126}, + y={"cooCoi7Param16.Q1_flow", "cooCoi7Param16_IBPSA.Q1_flow", "cooCoi7Param16_Dis.Q1_flow", "cooCoi7_IBPSA.Q1_flow", "cooData.y[4]"}, + autoscale = true, + autoerase = true, + autoreplot = true, + grid = true, + color = true); +createPlot( + id=1, + subPlot=2, + y={"cooCoi7Param16.QSen2_flow", "cooCoi7Param16_IBPSA.QSen2_flow", "cooCoi7Param16_Dis.QSen2_flow", "cooCoi7_IBPSA.QSen2_flow"}, + autoscale = true, + autoerase = true, + autoreplot = true, + grid = true, + color = true); +plotExpression( + apply( + -1*WetCoilEffectivenessNTU_FCU[end].cooData.y[3]), + false, + "-cooData.y[3]", + 1); +createPlot( + id=1, + subPlot=3, + y={"m1_7_flow_nominal", "cooCoi7_IBPSA.port_a1.m_flow", "m2_flow_nominal", "cooCoi7_IBPSA.port_a2.m_flow"}, + autoscale = true, + autoerase = true, + autoreplot = true, + grid = true, + color = true); +createPlot( + id=2, + position={1083, 1, 1054, 1128}, + y={"cooCoi16.Q1_flow", "cooCoi16_IBPSA.Q1_flow", "cooCoi16_Dis.Q1_flow", "cooData.y[2]"}, + autoscale = true, + autoerase = true, + autoreplot = true, + grid = true, + color = true); +createPlot( + id=2, + subPlot=2, + y={"m1_16_flow_nominal", "cooCoi16_IBPSA.port_a1.m_flow", "m2_flow_nominal", "cooCoi16_IBPSA.port_a2.m_flow"}, + autoscale = true, + autoerase = true, + autoreplot = true, + grid = true, + color = true); +createPlot( + id=3, + position={1511, 83, 920, 554}, + y={"dryFraHexDis", "cooCoi7Param16.dryWetCalcs.dryfra", "cooCoi16.dryWetCalcs.dryfra"}, + autoscale = true, + autoerase = true, + autoreplot = true, + grid = true, + color = true); diff --git a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FVM.mos b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FVM.mos new file mode 100644 index 00000000000..27d0f7c91f5 --- /dev/null +++ b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FVM.mos @@ -0,0 +1,19 @@ +// Script generated by Dymola Wed Jul 8 10:37:06 2020 +old_StoreProtectedVariables = Advanced.StoreProtectedVariables; +Advanced.StoreProtectedVariables = true; +simulateModel("Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU_FVM", + method="dassl", tolerance=1e-06, stopTime=3600, resultFile="WetCoilEffectivenessNTU_FVM"); +Advanced.StoreProtectedVariables = old_StoreProtectedVariables; +createPlot( + id=1, + subPlot=1, + y={"hexDry.Q2_flow", "hexWetNtu.Q2_flow", "hexFVM.Q2_flow", "hexWetIBPSA.Q2_flow"}, + grid=true, + filename="WetCoilEffectivenessNTU_FVM.mat"); +createPlot( + id=1, + subPlot=2, + y={"dryFraHexDis","hexWetNtu.dryWetCalcs.w_FD"}, + grid=true, + filename="WetCoilEffectivenessNTU_FVM.mat"); + diff --git a/Buildings/Utilities/Psychrometrics/hSat_pTSat.mo b/Buildings/Utilities/Psychrometrics/hSat_pTSat.mo new file mode 100644 index 00000000000..7aaf8c0ebb0 --- /dev/null +++ b/Buildings/Utilities/Psychrometrics/hSat_pTSat.mo @@ -0,0 +1,68 @@ +within Buildings.Utilities.Psychrometrics; +model hSat_pTSat + "Calculate saturation enthalpy given a saturation (dry bulb) temperature" + extends Modelica.Blocks.Icons.Block; + + Modelica.Blocks.Interfaces.RealInput p( + final quantity="Pressure", + final unit="Pa", + displayUnit="bar") = 101325 + "Pressure of the fluid" + annotation (Placement(transformation(extent={{-120,30},{-100,50}}), + iconTransformation(extent={{-120,30},{-100,50}}))); + Modelica.Blocks.Interfaces.RealInput TSat( + final quantity="ThermodynamicTemperature", + final unit="K", + min = 0.0, + start = 288.15, + nominal = 300, + displayUnit="degC") + "Saturation temperature of the fluid" + annotation (Placement(transformation(extent={{-120,-50},{-100,-30}}), + iconTransformation(extent={{-120,-50},{-100,-30}}))); + + Modelica.Blocks.Interfaces.RealOutput hSat( + final quantity="SpecificEnergy", + final unit="J/kg") + "Dew point temperature of air" + annotation (Placement(transformation(extent={{100,-10},{120,10}}))); + +protected + constant Integer watIdx = 1 "Index of water"; + constant Integer othIdx = 2 "Index of other species"; + constant Real phiSat(min=0, max=1) = 1 "Saturation relative humidity"; + Modelica.SIunits.AbsolutePressure pSat + "Saturation pressure of water vapor in air at TSat"; + Real XSat[2] + "Mass fractions of water and air in moist air at saturation"; + +equation + pSat = Buildings.Utilities.Psychrometrics.Functions.saturationPressure(TSat); + XSat[watIdx] = Buildings.Utilities.Psychrometrics.Functions.X_pSatpphi( + pSat=pSat, p=p, phi=phiSat); + XSat[othIdx] = 1 - XSat[watIdx]; + hSat = Buildings.Media.Air.specificEnthalpy_pTX(p=p, T=TSat, X=XSat); + annotation (Icon(coordinateSystem(preserveAspectRatio=false)), Diagram( + coordinateSystem(preserveAspectRatio=false)), + Documentation(revisions=" + +", info=" +

+This model is a convenience wrapper for calculating the enthalpy of saturated +air given the saturation temperature and fluid pressure. +

+ +

+The model wraps several existing psychrometric functions and the +Buildings.Media.Air medium +library. +

+")); +end hSat_pTSat; From 91d27531b423bef7a00ea3bd1a335addc92f41d5 Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Tue, 9 Feb 2021 16:04:16 -0800 Subject: [PATCH 02/69] Run write_package_order --- Buildings/Fluid/HeatExchangers/BaseClasses/package.order | 5 +++++ Buildings/Fluid/HeatExchangers/Examples/package.order | 1 + Buildings/Fluid/HeatExchangers/Validation/package.order | 3 +++ Buildings/Fluid/HeatExchangers/package.order | 1 + Buildings/Utilities/Psychrometrics/package.order | 1 + 5 files changed, 11 insertions(+) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/package.order b/Buildings/Fluid/HeatExchangers/BaseClasses/package.order index 3dfbd5d39be..42df43235c8 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/package.order +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/package.order @@ -1,5 +1,7 @@ CoilHeader CoilRegister +DryCalcsFuzzy_V3 +DryWetCalcsFuzzy_V3 DuctManifoldFixedResistance DuctManifoldFlowDistributor DuctManifoldNoResistance @@ -20,6 +22,8 @@ PipeManifoldFixedResistance PipeManifoldFlowDistributor PipeManifoldNoResistance RayleighNumber +WetcalcsFuzzy_V3 +determineWaterIndex dynamicViscosityWater epsilon_C epsilon_ntuZ @@ -27,4 +31,5 @@ isobaricExpansionCoefficientWater lmtd ntu_epsilonZ prandtlNumberWater +sigmoid Examples diff --git a/Buildings/Fluid/HeatExchangers/Examples/package.order b/Buildings/Fluid/HeatExchangers/Examples/package.order index ea588a6a00b..d84259cc84f 100644 --- a/Buildings/Fluid/HeatExchangers/Examples/package.order +++ b/Buildings/Fluid/HeatExchangers/Examples/package.order @@ -14,4 +14,5 @@ WetCoilCounterFlowMassFlow WetCoilCounterFlowPControl WetCoilDiscretizedMassFlow WetCoilDiscretizedPControl +WetCoilEffectivenessNTU BaseClasses diff --git a/Buildings/Fluid/HeatExchangers/Validation/package.order b/Buildings/Fluid/HeatExchangers/Validation/package.order index 9e78f225b19..6b647289856 100644 --- a/Buildings/Fluid/HeatExchangers/Validation/package.order +++ b/Buildings/Fluid/HeatExchangers/Validation/package.order @@ -6,3 +6,6 @@ PrescribedOutlet PrescribedOutlet_dynamic WetCoilDiscretizedInitialization WetCoilDiscretizedInitializationPerfectGases +WetCoilEffectivenessNTU +WetCoilEffectivenessNTU_FCU +WetCoilEffectivenessNTU_FVM diff --git a/Buildings/Fluid/HeatExchangers/package.order b/Buildings/Fluid/HeatExchangers/package.order index 7b44a9110bc..1e375f1abd7 100644 --- a/Buildings/Fluid/HeatExchangers/package.order +++ b/Buildings/Fluid/HeatExchangers/package.order @@ -10,6 +10,7 @@ PrescribedOutlet SensibleCooler_T WetCoilCounterFlow WetCoilDiscretized +WetEffectivenessNTU_Fuzzy_V3 ActiveBeams CoolingTowers DXCoils diff --git a/Buildings/Utilities/Psychrometrics/package.order b/Buildings/Utilities/Psychrometrics/package.order index c3517dd1877..5f720a29be2 100644 --- a/Buildings/Utilities/Psychrometrics/package.order +++ b/Buildings/Utilities/Psychrometrics/package.order @@ -11,6 +11,7 @@ ToDryAir ToTotalAir X_pTphi X_pW +hSat_pTSat pW_TDewPoi pW_X Functions From cdb777836c17464c7e808a151f97a5038961adcb Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Tue, 9 Feb 2021 16:25:45 -0800 Subject: [PATCH 03/69] Rename classes, refactor example and validation --- ...ryCalcsFuzzy_V3.mo => WetCoilDryRegime.mo} | 7 +- ...alcsFuzzy_V3.mo => WetCoilDryWetRegime.mo} | 67 ++- ...etcalcsFuzzy_V3.mo => WetCoilWetRegime.mo} | 11 +- .../HeatExchangers/BaseClasses/package.order | 6 +- .../Examples/WetCoilEffectivenessNTU.mo | 6 +- .../Validation/WetCoilEffectivenessNTU.mo | 130 ++---- .../Validation/WetCoilEffectivenessNTU_FCU.mo | 399 ------------------ .../Validation/WetCoilEffectivenessNTU_FVM.mo | 239 ----------- .../HeatExchangers/Validation/package.order | 2 - ..._Fuzzy_V3.mo => WetCoiEffectivenessNTU.mo} | 6 +- Buildings/Fluid/HeatExchangers/package.order | 2 +- 11 files changed, 75 insertions(+), 800 deletions(-) rename Buildings/Fluid/HeatExchangers/BaseClasses/{DryCalcsFuzzy_V3.mo => WetCoilDryRegime.mo} (98%) rename Buildings/Fluid/HeatExchangers/BaseClasses/{DryWetCalcsFuzzy_V3.mo => WetCoilDryWetRegime.mo} (93%) rename Buildings/Fluid/HeatExchangers/BaseClasses/{WetcalcsFuzzy_V3.mo => WetCoilWetRegime.mo} (99%) delete mode 100644 Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FCU.mo delete mode 100644 Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FVM.mo rename Buildings/Fluid/HeatExchangers/{WetEffectivenessNTU_Fuzzy_V3.mo => WetCoiEffectivenessNTU.mo} (99%) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/DryCalcsFuzzy_V3.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo similarity index 98% rename from Buildings/Fluid/HeatExchangers/BaseClasses/DryCalcsFuzzy_V3.mo rename to Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo index aa9918df72c..e05f4de84e9 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/DryCalcsFuzzy_V3.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo @@ -1,5 +1,5 @@ within Buildings.Fluid.HeatExchangers.BaseClasses; -model DryCalcsFuzzy_V3 "Fully dry coil model" +model WetCoilDryRegime "Fully dry coil model" // - water input Modelica.SIunits.ThermalConductance UAWat @@ -58,13 +58,11 @@ model DryCalcsFuzzy_V3 "Fully dry coil model" output Modelica.SIunits.Temperature TSurAirOut "Surface Temperature at air outlet"; - equation UA = 1/ (1 / UAAir + 1 / UAWat) "UA is for the overall coil (i.e., both sides)"; - eps=epsilon_C(UA=UA, C1_flow=CWat_flow, C2_flow=CAir_flow, flowRegime=Integer(cfg), CMin_flow_nominal= CMin_flow_nominal, CMax_flow_nominal=CMax_flow_nominal, delta= delta); @@ -74,7 +72,6 @@ equation (TAirOut-TSurAirOut)*UAAir=(TSurAirOut-TWatIn)*UAWat; - annotation (Icon(coordinateSystem(preserveAspectRatio=false), graphics={ Rectangle( extent={{-100,100},{100,-100}}, @@ -90,4 +87,4 @@ equation

This model implements the calculation for a 100% dry coil.

See Buildings.Fluid.HeatExchangers.DryCoilEffectivenessNTU for documentation.

")); -end DryCalcsFuzzy_V3; +end WetCoilDryRegime; diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/DryWetCalcsFuzzy_V3.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo similarity index 93% rename from Buildings/Fluid/HeatExchangers/BaseClasses/DryWetCalcsFuzzy_V3.mo rename to Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo index 005a0157961..d4e694ddd76 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/DryWetCalcsFuzzy_V3.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo @@ -1,6 +1,6 @@ within Buildings.Fluid.HeatExchangers.BaseClasses; -model DryWetCalcsFuzzy_V3 - "This model represents the swiching algorithm of the TK-fuzzy model for cooling coil applicaiton" +model WetCoilDryWetRegime + "This model represents the switching algorithm of the TK-fuzzy model for cooling coil applicaiton" input Real Qfac; replaceable package Medium2 = Modelica.Media.Interfaces.PartialMedium "Medium 2 in the component" @@ -128,37 +128,37 @@ model DryWetCalcsFuzzy_V3 Placement(transformation(extent={{-10,-10},{10,10}}, rotation=0, origin={150,-100}))); - Buildings.Fluid.HeatExchangers.BaseClasses.DryCalcsFuzzy_V3 fullydry( - UAWat = UAWat, - mWat_flow = mWat_flow, - cpWat = cpWat, - TWatIn = TWatIn, - UAAir = UAAir, - mAir_flow = mAir_flow, - mWatNonZer_flow = mWatNonZer_flow, - mAirNonZer_flow = mAirNonZer_flow, - cpAir = cpAir, - TAirIn = TAirIn, - final cfg = cfg, - mAir_flow_nominal=mAir_flow_nominal, - mWat_flow_nominal=mWat_flow_nominal); - - Buildings.Fluid.HeatExchangers.BaseClasses.WetcalcsFuzzy_V3 fullywet( - UAWat = UAWat, - mWat_flow = mWat_flow, - cpWat = cpWat, - TWatIn = TWatIn, - UAAir = UAAir, - mAir_flow = mAir_flow, - mWatNonZer_flow = mWatNonZer_flow, - mAirNonZer_flow = mAirNonZer_flow, - cpAir = cpAir, - TAirIn = TAirIn, - final cfg = cfg, - mAir_flow_nominal=mAir_flow_nominal, - mWat_flow_nominal=mWat_flow_nominal, - pAir=pAir,wAirIn=wAirIn); + Buildings.Fluid.HeatExchangers.BaseClasses.WetCoilDryRegime fullydry( + UAWat=UAWat, + mWat_flow=mWat_flow, + cpWat=cpWat, + TWatIn=TWatIn, + UAAir=UAAir, + mAir_flow=mAir_flow, + mWatNonZer_flow=mWatNonZer_flow, + mAirNonZer_flow=mAirNonZer_flow, + cpAir=cpAir, + TAirIn=TAirIn, + final cfg=cfg, + mAir_flow_nominal=mAir_flow_nominal, + mWat_flow_nominal=mWat_flow_nominal); + Buildings.Fluid.HeatExchangers.BaseClasses.WetCoilWetRegime fullywet( + UAWat=UAWat, + mWat_flow=mWat_flow, + cpWat=cpWat, + TWatIn=TWatIn, + UAAir=UAAir, + mAir_flow=mAir_flow, + mWatNonZer_flow=mWatNonZer_flow, + mAirNonZer_flow=mAirNonZer_flow, + cpAir=cpAir, + TAirIn=TAirIn, + final cfg=cfg, + mAir_flow_nominal=mAir_flow_nominal, + mWat_flow_nominal=mWat_flow_nominal, + pAir=pAir, + wAirIn=wAirIn); protected Modelica.SIunits.MassFlowRate mAirNonZer_flow(min=Modelica.Constants.eps)= @@ -185,7 +185,6 @@ protected Real w_FW(unit="1",min=0, max=1), w_FD(unit="1",min=0, max=1) "normailized weight functions for Fully-Wet and Fully-Dry conditions"; Real dryfra(unit="1",min=0, max=1) "dry fraction of cooling coil, e.g., 0.3 means condensation occurs at the 30% heat exchanger length from the air inlet"; - equation TAirInDewPoi = TDewIn.T; @@ -390,4 +389,4 @@ connections to show graphically here")}),

The fuzzy-modeling ensures μFW + μFD = 1, μFW >=0, μFD >=0, which means the fuzzy model outcomes of Qsen and Qtot are always convex combinations of heat transfer rates for fully-dry and fully-wet modes and therefore are always bounded by them.

The modeling approach also results in n-th order differentiable model depending on the selection of the underlying membership functions. This cooling coil model is once continuously differentiable even at the transition (or mode-switching) points.

")); -end DryWetCalcsFuzzy_V3; +end WetCoilDryWetRegime; diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetcalcsFuzzy_V3.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo similarity index 99% rename from Buildings/Fluid/HeatExchangers/BaseClasses/WetcalcsFuzzy_V3.mo rename to Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo index e4b6d9ef3d2..2fb8bdfc51c 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetcalcsFuzzy_V3.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo @@ -1,5 +1,5 @@ within Buildings.Fluid.HeatExchangers.BaseClasses; -model WetcalcsFuzzy_V3 "Fully Wet coil model using esilon_C.mo function" +model WetCoilWetRegime "Fully Wet coil model using esilon_C.mo function" // - water input Modelica.SIunits.ThermalConductance UAWat "UA for water side"; @@ -15,7 +15,6 @@ model WetcalcsFuzzy_V3 "Fully Wet coil model using esilon_C.mo function" input Modelica.SIunits.MassFlowRate mWat_flow_nominal; - // -- air input Modelica.SIunits.Pressure pAir "Pressure on air-side of coil"; @@ -35,7 +34,6 @@ model WetcalcsFuzzy_V3 "Fully Wet coil model using esilon_C.mo function" "The configuration of the heat exchanger"; input Modelica.SIunits.MassFlowRate mAir_flow_nominal; - Modelica.SIunits.SpecificEnthalpy hAirIn "Specific enthalpy of air at inlet conditions"; Buildings.Utilities.Psychrometrics.hSat_pTSat hSatWatInM(p=pAir,TSat=TWatIn) @@ -50,8 +48,6 @@ model WetcalcsFuzzy_V3 "Fully Wet coil model using esilon_C.mo function" Real NonZerDelWatTem " regularization water temperature difference betwee inlet and outlet"; - - output Modelica.SIunits.HeatFlowRate QTot_flow "Total heat flow from water to air stream"; output Modelica.SIunits.HeatFlowRate QSen_flow @@ -91,7 +87,6 @@ model WetcalcsFuzzy_V3 "Fully Wet coil model using esilon_C.mo function" parameter Real tau=6*60 "time constant for the state estimation: introduced to avoid the algebraic loop of the wet coil equations"; - Modelica.SIunits.MassFlowRate UASta "Overall mass transfer coefficient for dry coil"; @@ -101,8 +96,6 @@ model WetcalcsFuzzy_V3 "Fully Wet coil model using esilon_C.mo function" Real epsSta(start=0.66, unit="1") "Effectiveness for heat exchanger (e*)"; - - Modelica.SIunits.MassFlowRate CStaMin "min of product of mass flow rates and specific heats; analogous to Cmin"; @@ -189,4 +182,4 @@ equation

Mitchell, John W., and James E. Braun. 2012a. Principles of heating, ventilation, and air conditioning in buildings. Hoboken, N.J.: Wiley.

Mitchell, John W., and James E. Braun. 2012b. "Supplementary Material Chapter 2: Heat Exchangers for Cooling Applications". Excerpt from Principles of heating, ventilation, and air conditioning in buildings. Hoboken, N.J.: Wiley. Available online: http://bcs.wiley.com/he-bcs/Books?action=index&itemId=0470624574&bcsId=7185

")); -end WetcalcsFuzzy_V3; +end WetCoilWetRegime; diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/package.order b/Buildings/Fluid/HeatExchangers/BaseClasses/package.order index 42df43235c8..0a32f9ad992 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/package.order +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/package.order @@ -1,7 +1,5 @@ CoilHeader CoilRegister -DryCalcsFuzzy_V3 -DryWetCalcsFuzzy_V3 DuctManifoldFixedResistance DuctManifoldFlowDistributor DuctManifoldNoResistance @@ -22,7 +20,9 @@ PipeManifoldFixedResistance PipeManifoldFlowDistributor PipeManifoldNoResistance RayleighNumber -WetcalcsFuzzy_V3 +WetCoilDryRegime +WetCoilDryWetRegime +WetCoilWetRegime determineWaterIndex dynamicViscosityWater epsilon_C diff --git a/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mo index 253bf769539..70b68cbe7ca 100644 --- a/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mo @@ -9,7 +9,7 @@ model WetCoilEffectivenessNTU sou_2(nPorts=1), sin_2(nPorts=1)); - WetEffectivenessNTU_Fuzzy_V3 hex( + WetCoiEffectivenessNTU hex( redeclare package Medium1 = Medium1, redeclare package Medium2 = Medium2, m1_flow_nominal=m1_flow_nominal, @@ -24,9 +24,7 @@ model WetCoilEffectivenessNTU T_a2_nominal, T_b2_nominal), show_T=true, - TWatOut_init=T_b1_nominal, - energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState) - "Heat exchanger" + energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState) "Heat exchanger" annotation (Placement(transformation(extent={{80,20},{100,40}}))); Sensors.RelativeHumidityTwoPort senRelHum( redeclare package Medium = Medium2, diff --git a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo index 9257fbbdf04..c649d11d856 100644 --- a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo @@ -46,7 +46,7 @@ model WetCoilEffectivenessNTU Buildings.Fluid.Sources.Boundary_pT sinAir( redeclare package Medium = Medium_A, use_p_in=false, - nPorts=3) + nPorts=2) "Air sink" annotation (Placement(transformation(extent={{-180,-50},{-160,-30}}))); Sources.MassFlowSource_T souAir( @@ -59,38 +59,9 @@ model WetCoilEffectivenessNTU annotation (Placement(transformation(extent={{140,-90},{120,-70}}))); Buildings.Fluid.Sources.Boundary_pT sinWat( redeclare package Medium = Medium_W, - nPorts=3) + nPorts=2) "Sink for water" - annotation (Placement(transformation(extent={{60,30},{40,50}}))); - Sources.MassFlowSource_T souWat( - redeclare package Medium = Medium_W, - m_flow=m1_flow_nominal, - T=T_a1_nominal, - nPorts=1) - "Source for water" - annotation (Placement(transformation(extent={{-180,10},{-160,30}}))); - Modelica.SIunits.HeatFlowRate QTot1 = m1_flow_nominal * (h_b1 - h_a1) - "Total heat transferred to the water"; - Modelica.SIunits.HeatFlowRate QTot2 = m2_flow_nominal * (h_b2 - h_a2) - "Total heat tranferred to the air"; - Modelica.SIunits.SpecificEnthalpy h_a2=Medium_W.specificEnthalpy( - Medium_W.setState_phX( - p=hexWetNTU_IBPSA.port_a2.p, - h=actualStream(hexWetNTU_IBPSA.port_a2.h_outflow), - X={actualStream(hexWetNTU_IBPSA.port_a2.Xi_outflow[1]),1 - actualStream( - hexWetNTU_IBPSA.port_a2.Xi_outflow[1])})) "Specific enthalpy"; - Modelica.SIunits.SpecificEnthalpy h_a1=Medium_W.specificEnthalpy( - Medium_W.setState_ph(p=hexWetNTU_IBPSA.port_a1.p, h=actualStream( - hexWetNTU_IBPSA.port_a1.h_outflow))) "Specific enthalpy"; - Modelica.SIunits.SpecificEnthalpy h_b2=Medium_W.specificEnthalpy( - Medium_W.setState_phX( - p=hexWetNTU_IBPSA.port_b2.p, - h=actualStream(hexWetNTU_IBPSA.port_b2.h_outflow), - X={actualStream(hexWetNTU_IBPSA.port_b2.Xi_outflow[1]),1 - actualStream( - hexWetNTU_IBPSA.port_b2.Xi_outflow[1])})) "Specific enthalpy"; - Modelica.SIunits.SpecificEnthalpy h_b1=Medium_W.specificEnthalpy( - Medium_W.setState_ph(p=hexWetNTU_IBPSA.port_b1.p, h=actualStream( - hexWetNTU_IBPSA.port_b1.h_outflow))) "Specific enthalpy"; + annotation (Placement(transformation(extent={{80,10},{60,30}}))); Modelica.Blocks.Sources.CombiTimeTable X_w2( table=[0,0.0035383; 1,0.01765], timeScale=100) "Water mass fraction of entering air" @@ -120,7 +91,7 @@ model WetCoilEffectivenessNTU annotation (Placement(transformation(extent={{-40,-98},{-20,-78}}))); Modelica.Blocks.Sources.RealExpression pAir1(y=pAtm) "Pressure" annotation (Placement(transformation(extent={{-100,-112},{-80,-88}}))); - WetEffectivenessNTU_Fuzzy_V3 hexWetNTU( + WetCoiEffectivenessNTU hexWetNTU( redeclare package Medium1 = Medium_W, redeclare package Medium2 = Medium_A, UA_nominal=UA_nominal, @@ -130,22 +101,14 @@ model WetCoilEffectivenessNTU dp1_nominal=0, configuration=hexCon, show_T=true) "Heat exchanger coil" - annotation (Placement(transformation(extent={{-40,64},{-20,84}}))); + annotation (Placement(transformation(extent={{-40,-4},{-20,16}}))); Sources.MassFlowSource_T souWat1( redeclare package Medium = Medium_W, m_flow=m1_flow_nominal, T=T_a1_nominal, nPorts=1) "Source for water" - annotation (Placement(transformation(extent={{-180,70},{-160,90}}))); - Sources.MassFlowSource_T souAir1( - redeclare package Medium = Medium_A, - m_flow=m2_flow_nominal, - T=T_a2_nominal, - use_Xi_in=true, - nPorts=1) - "Air source" - annotation (Placement(transformation(extent={{140,50},{120,70}}))); + annotation (Placement(transformation(extent={{-180,2},{-160,22}}))); WetCoilCounterFlow hexDis( redeclare package Medium1 = Medium_W, redeclare package Medium2 = Medium_A, @@ -163,29 +126,14 @@ model WetCoilEffectivenessNTU tau2=0.1, tau_m=0.1) "Discretized coil model" - annotation (Placement(transformation(extent={{-40,104},{-20,124}}))); - WetCoilEffectivesnessNTU hexWetNTU_IBPSA( - redeclare package Medium1 = Medium_W, - redeclare package Medium2 = Medium_A, - m1_flow_nominal=m1_flow_nominal, - m2_flow_nominal=m2_flow_nominal, - dp2_nominal=0, - dp1_nominal=0, - configuration=hexCon, - show_T=true, - T_a1_nominal=T_a1_nominal, - T_a2_nominal=T_a2_nominal, - Q_flow_nominal=Q_flow_nominal_35s, - X_w2_nominal=X_w2_nominal_35s) - "Epsilon-NTU coil model" - annotation (Placement(transformation(extent={{-40,4},{-20,24}}))); + annotation (Placement(transformation(extent={{-40,36},{-20,56}}))); Sources.MassFlowSource_T souWat2( redeclare package Medium = Medium_W, m_flow=m1_flow_nominal, T=T_a1_nominal, nPorts=1) "Source for water" - annotation (Placement(transformation(extent={{-180,110},{-160,130}}))); + annotation (Placement(transformation(extent={{-180,42},{-160,62}}))); Sources.MassFlowSource_T souAir2( redeclare package Medium = Medium_A, m_flow=m2_flow_nominal, @@ -193,24 +141,15 @@ model WetCoilEffectivenessNTU use_Xi_in=true, nPorts=1) "Air source" - annotation (Placement(transformation(extent={{140,90},{120,110}}))); - Real isDryHexDis[hexDis.nEle]; - Real dryFraHexDis = sum(isDryHexDis) / hexDis.nEle; + annotation (Placement(transformation(extent={{140,30},{120,50}}))); equation - for iEle in 1:hexDis.nEle loop - isDryHexDis[iEle] = if abs(hexDis.ele[iEle].masExc.mWat_flow) < 1E-6 then 1 else 0; - end for; - connect(hexWetNTU_IBPSA.port_b1, sinWat.ports[1]) annotation (Line(points={{-20,20}, - {8,20},{8,42.6667},{40,42.6667}},color={0,127,255})); connect(pAir.y, wetBulIn.p) annotation (Line(points={{119,-40},{110,-40},{110, -16},{119,-16}}, color={0,0,127})); connect(pAir1.y, wetBulOut.p) annotation (Line(points={{-79,-100},{-44,-100},{ -44,-96},{-41,-96}},color={0,0,127})); connect(senMasFraOut.port_b, sinAir.ports[1]) - annotation (Line(points={{-130,-40},{-156,-40},{-156,-37.3333},{-160, - -37.3333}}, color={0,127,255})); - connect(hexWetNTU_IBPSA.port_b2, TDryBulOut.port_a) annotation (Line(points={{-40,8}, - {-60,8},{-60,-40},{-70,-40}}, color={0,127,255})); + annotation (Line(points={{-130,-40},{-156,-40},{-156,-38},{-160,-38}}, + color={0,127,255})); connect(TDryBulOut.port_b, senMasFraOut.port_a) annotation (Line(points={{-90,-40},{-110,-40}}, color={0,127,255})); connect(TDryBulOut.T, wetBulOut.TDryBul) @@ -227,40 +166,29 @@ equation annotation (Line(points={{60,-69},{60,0},{119,0}}, color={0,0,127})); connect(TDryBulIn.port_b, RelHumIn.port_a) annotation (Line(points={{50,-80},{30,-80}}, color={0,127,255})); - connect(souWat.ports[1], hexWetNTU_IBPSA.port_a1) annotation (Line(points={{-160,20}, - {-40,20}}, color={0,127,255})); - connect(souWat1.ports[1], hexWetNTU.port_a1) annotation (Line(points={{-160,80}, - {-40,80}}, color={0,127,255})); - connect(hexWetNTU.port_b1, sinWat.ports[2]) annotation (Line(points={{-20,80}, - {0,80},{0,40},{40,40}}, color={0,127,255})); - connect(hexWetNTU_IBPSA.port_a2, RelHumIn.port_b) annotation (Line(points={{-20,8}, - {0,8},{0,-80},{10,-80}}, color={0,127,255})); - connect(hexWetNTU.port_b2, sinAir.ports[2]) annotation (Line(points={{-40,68}, - {-140,68},{-140,-40},{-160,-40}}, color={0,127,255})); + connect(souWat1.ports[1], hexWetNTU.port_a1) annotation (Line(points={{-160,12}, + {-40,12}}, color={0,127,255})); + connect(hexWetNTU.port_b1, sinWat.ports[1]) annotation (Line(points={{-20,12}, + {40,12},{40,18},{60,18},{60,22}}, + color={0,127,255})); connect(X_w2.y[1], souAir.Xi_in[1]) annotation (Line(points={{169,-80},{160,-80}, {160,-84},{142,-84}}, color={0,0,127})); - connect(X_w2.y[1], souAir1.Xi_in[1]) annotation (Line(points={{169,-80},{160,-80}, - {160,56},{142,56}}, color={0,0,127})); connect(souWat2.ports[1], hexDis.port_a1) - annotation (Line(points={{-160,120},{-40,120}}, color={0,127,255})); - connect(sinAir.ports[3], hexDis.port_b2) annotation (Line(points={{-160, - -42.6667},{-140,-42.6667},{-140,108},{-40,108}}, - color={0,127,255})); - connect(hexDis.port_b1, sinWat.ports[3]) annotation (Line(points={{-20,120},{ - 4,120},{4,38},{40,38},{40,37.3333}}, - color={0,127,255})); + annotation (Line(points={{-160,52},{-40,52}}, color={0,127,255})); + connect(sinAir.ports[2], hexDis.port_b2) annotation (Line(points={{-160,-42},{ + -140,-42},{-140,40},{-40,40}}, color={0,127,255})); + connect(hexDis.port_b1, sinWat.ports[2]) annotation (Line(points={{-20,52},{40, + 52},{40,20},{60,20},{60,18}}, color={0,127,255})); connect(X_w2.y[1], souAir2.Xi_in[1]) annotation (Line(points={{169,-80},{160,-80}, - {160,96},{142,96}}, color={0,0,127})); - connect(souAir1.ports[1], hexWetNTU.port_a2) annotation (Line(points={{120,60}, - {20,60},{20,68},{-20,68}}, color={0,127,255})); - connect(souAir2.ports[1], hexDis.port_a2) annotation (Line(points={{120,100},{ - 20,100},{20,108},{-20,108}}, color={0,127,255})); + {160,36},{142,36}}, color={0,0,127})); + connect(souAir2.ports[1], hexDis.port_a2) annotation (Line(points={{120,40},{-20, + 40}}, color={0,127,255})); + connect(hexWetNTU.port_b2, TDryBulOut.port_a) annotation (Line(points={{-40,0}, + {-60,0},{-60,-40},{-70,-40}}, color={0,127,255})); + connect(hexWetNTU.port_a2, RelHumIn.port_b) annotation (Line(points={{-20,0},{ + 0,0},{0,-80},{10,-80}}, color={0,127,255})); annotation (Diagram(coordinateSystem(preserveAspectRatio=true, - extent={{-200,-140},{200,140}}), graphics={Text( - extent={{-74,14},{28,-10}}, - lineColor={238,46,47}, - horizontalAlignment=TextAlignment.Left, - textString="Cannot be parameterized with fully wet conditions")}), + extent={{-200,-120},{200,120}})), experiment( StopTime=100, Tolerance=1e-06, diff --git a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FCU.mo b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FCU.mo deleted file mode 100644 index 8dbfeb484b1..00000000000 --- a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FCU.mo +++ /dev/null @@ -1,399 +0,0 @@ -within Buildings.Fluid.HeatExchangers.Validation; -model WetCoilEffectivenessNTU_FCU - "Validation of WetCoilEffectivesnessNTU based on fan coil unit performance data" - extends Modelica.Icons.Example; - package MediumAir = Buildings.Media.Air; - package MediumWater = Buildings.Media.Water; - parameter Modelica.SIunits.HeatFlowRate Q1_16_flow_nominal = 1176; - parameter Modelica.SIunits.HeatFlowRate Q1_7_flow_nominal = 2934; - parameter Modelica.SIunits.MassFlowRate m1_16_flow_nominal= - Q1_16_flow_nominal / (T_b1_16_nominal - T_a1_16_nominal) / cp1_nominal; - parameter Modelica.SIunits.MassFlowRate m1_7_flow_nominal= - Q1_7_flow_nominal / (T_b1_7_nominal - T_a1_7_nominal) / cp1_nominal; - parameter Modelica.SIunits.MassFlowRate m2_flow_nominal = 485 * 1.2 / 3600; - parameter Modelica.SIunits.Temperature T_a1_16_nominal = 16 + 273.15; - parameter Modelica.SIunits.Temperature T_b1_16_nominal = T_a1_16_nominal + 2; - parameter Modelica.SIunits.Temperature T_a1_7_nominal = 7 + 273.15; - parameter Modelica.SIunits.Temperature T_b1_7_nominal = T_a1_7_nominal + 5; - parameter Modelica.SIunits.Temperature T_a2_nominal = 27 + 273.15; - parameter Modelica.SIunits.MassFraction X_w2_nominal=0.010203; - parameter Modelica.SIunits.SpecificHeatCapacity cp1_nominal= - MediumWater.cp_const - "Source side specific heat capacity at nominal conditions"; - parameter Modelica.SIunits.SpecificHeatCapacity cp2_nominal= - MediumAir.specificHeatCapacityCp( - MediumAir.setState_pTX(MediumAir.p_default, T_a2_nominal)) - "Load side specific heat capacity at nominal conditions"; - // UA calculated on sensible cooling operating point. - parameter Modelica.SIunits.ThermalConductance CMin_nominal= - min(m1_16_flow_nominal * cp1_nominal, m2_flow_nominal * cp2_nominal) - "Minimum capacity flow rate at nominal conditions"; - parameter Modelica.SIunits.ThermalConductance CMax_nominal= - max(m1_16_flow_nominal * cp1_nominal, m2_flow_nominal * cp2_nominal) - "Maximum capacity flow rate at nominal conditions"; - parameter Real Z = CMin_nominal / CMax_nominal - "Ratio of capacity flow rates (CMin/CMax) at nominal conditions"; - parameter Buildings.Fluid.Types.HeatExchangerConfiguration hexCon= - Buildings.Fluid.Types.HeatExchangerConfiguration.CounterFlow - "Heat exchanger configuration"; - parameter Modelica.SIunits.ThermalConductance UA_nominal= - Buildings.Fluid.HeatExchangers.BaseClasses.ntu_epsilonZ( - eps=abs(Q1_16_flow_nominal / (CMin_nominal * (T_a1_16_nominal - T_a2_nominal))), - Z=Z, - flowRegime=Integer(hexCon)) * CMin_nominal - "Thermal conductance at nominal conditions"; - Buildings.Fluid.HeatExchangers.WetCoilEffectivesnessNTU cooCoi16_IBPSA( - redeclare package Medium1 = MediumWater, - redeclare package Medium2 = MediumAir, - Q_flow_nominal=Q1_16_flow_nominal, - dp1_nominal=0, - dp2_nominal=0, - m1_flow_nominal=m1_16_flow_nominal, - configuration=hexCon, - m2_flow_nominal=m2_flow_nominal, - T_a1_nominal=T_a1_16_nominal, - T_a2_nominal=T_a2_nominal, - X_w2_nominal=X_w2_nominal) - "Cooling coil with nominal conditions for cooling at 16 degrees water inlet temperature" - annotation (Placement(transformation(extent={{-10,76},{10,96}}))); - Sources.MassFlowSource_T bouAirCoo( - redeclare package Medium = MediumAir, - use_m_flow_in=true, - T=T_a2_nominal, - X={X_w2_nominal,1 - X_w2_nominal}, - nPorts=1) "Air boundary: 27/19 dry/wet bulb temperature" - annotation (Placement(transformation(extent={{60,70},{40,90}}))); - // fixme: reformat the table so it is readable. - Modelica.Blocks.Sources.CombiTimeTable cooData( - smoothness=Modelica.Blocks.Types.Smoothness.ConstantSegments, - table=[ - 0,485,1176,2176,2934; - 10000,420,1053,1948,2657; - 20000,330,865,1600,2209; - 30000,236,626,1158,1618; - 40000,123,389,720,1018; - 50000,0,0.001,0.001,0.001]) - "Manufacturers data for cooling mode - 1. air flow rate 2.power at 16 degC 3.sensible power at 7 degC 4.total power at 7degC" - annotation (Placement(transformation(extent={{-130,90},{-110,110}}))); - Sources.MassFlowSource_T bouAirCoo1( - redeclare package Medium = MediumAir, - use_m_flow_in=true, - T=T_a2_nominal, - X={X_w2_nominal, 1 - X_w2_nominal}, - nPorts=1) - "Air boundary: 27/19 dry/wet bulb temperature" - annotation (Placement(transformation(extent={{60,-26},{40,-6}}))); - Modelica.Blocks.Math.Gain gainFloFcu16(k=1/cp1_nominal/2) - "Conversion factor from power to kg/s water" - annotation (Placement(transformation(extent={{-66,94},{-54,106}}))); - Modelica.Blocks.Math.Gain gain(k=1.2/3600) - "Conversion factor from l/h to kg/s" - annotation (Placement(transformation(extent={{-2,106},{18,126}}))); - Sources.MassFlowSource_T bouWatCoo16( - use_m_flow_in=true, - redeclare package Medium = MediumWater, - T=T_a1_16_nominal, - nPorts=1) "Water boundary at 16 degrees" - annotation (Placement(transformation(extent={{-40,82},{-20,102}}))); - Sources.MassFlowSource_T bouWatCoo7( - use_m_flow_in=true, - redeclare package Medium = MediumWater, - T=T_a1_7_nominal, - nPorts=1) "Water boundary at 7 degrees" - annotation (Placement(transformation(extent={{-40,-14},{-20,6}}))); - Modelica.Blocks.Math.Gain gainFloFcu7(k=1/cp1_nominal/5) - "Conversion factor from power to kg/s water" - annotation (Placement(transformation(extent={{-66,-2},{-54,10}}))); - Buildings.Fluid.HeatExchangers.WetCoilEffectivesnessNTU cooCoi7_IBPSA( - redeclare package Medium1 = MediumWater, - redeclare package Medium2 = MediumAir, - show_T=true, - dp1_nominal=0, - dp2_nominal=0, - m1_flow_nominal=m1_7_flow_nominal, - configuration=hexCon, - m2_flow_nominal=m2_flow_nominal, - Q_flow_nominal=Q1_7_flow_nominal, - T_a1_nominal=T_a1_7_nominal, - T_a2_nominal=T_a2_nominal, - X_w2_nominal=X_w2_nominal) - "Cooling coil with nominal conditions for cooling at 7 degrees water inlet temperature" - annotation (Placement(transformation(extent={{-10,-20},{10,0}}))); - Sources.Boundary_pT sinAir( - redeclare package Medium = MediumAir, nPorts=7) - "Air sink" - annotation (Placement(transformation(extent={{-130,-10},{-110,10}}))); - Sources.Boundary_pT sinWat( - redeclare package Medium = MediumWater, nPorts=7) - "Water sink" - annotation (Placement(transformation(extent={{130,-10},{110,10}}))); - Buildings.Fluid.HeatExchangers.WetCoilEffectivesnessNTU cooCoi7Param16_IBPSA( - redeclare package Medium1 = MediumWater, - redeclare package Medium2 = MediumAir, - Q_flow_nominal=Q1_16_flow_nominal, - dp1_nominal=0, - dp2_nominal=0, - m1_flow_nominal=m1_16_flow_nominal, - configuration=hexCon, - m2_flow_nominal=m2_flow_nominal, - T_a1_nominal=T_a1_16_nominal, - T_a2_nominal=T_a2_nominal, - X_w2_nominal=X_w2_nominal) - "Cooling coil with nominal conditions for cooling at 16 degrees water inlet temperature and boundary conditions of 7 degrees water inlet" - annotation (Placement(transformation(extent={{-10,-66},{10,-46}}))); - Sources.MassFlowSource_T bouWatCoo7v2( - use_m_flow_in=true, - redeclare package Medium = MediumWater, - T=T_a1_7_nominal, - nPorts=1) "Water boundary at 7 degrees" - annotation (Placement(transformation(extent={{-40,-60},{-20,-40}}))); - Sources.MassFlowSource_T bouAirCoo2( - redeclare package Medium = MediumAir, - use_m_flow_in=true, - T=T_a2_nominal, - X={X_w2_nominal,1 - X_w2_nominal}, - nPorts=1) - "Air boundary: 27/19 dry/wet bulb temperature" - annotation (Placement(transformation(extent={{60,-72},{40,-52}}))); - WetEffectivenessNTU_Fuzzy_V3 cooCoi16( - redeclare package Medium1 = MediumWater, - redeclare package Medium2 = MediumAir, - configuration=hexCon, - m1_flow_nominal=m1_16_flow_nominal, - m2_flow_nominal=m2_flow_nominal, - UA_nominal=UA_nominal, - dp1_nominal=0, - dp2_nominal=0) - annotation (Placement(transformation(extent={{-10,52},{10,72}}))); - Sources.MassFlowSource_T bouWatCoo1( - use_m_flow_in=true, - redeclare package Medium = MediumWater, - T=T_a1_16_nominal, - nPorts=1) "Water boundary at 16 degrees" - annotation (Placement(transformation(extent={{-40,58},{-20,78}}))); - Sources.MassFlowSource_T bouAirCoo3( - redeclare package Medium = MediumAir, - use_m_flow_in=true, - T=T_a2_nominal, - X={X_w2_nominal,1 - X_w2_nominal}, - nPorts=1) "Air boundary: 27/19 dry/wet bulb temperature" - annotation (Placement(transformation(extent={{60,46},{40,66}}))); - Sources.MassFlowSource_T bouWatCoo7v1( - use_m_flow_in=true, - redeclare package Medium = MediumWater, - T=T_a1_7_nominal, - nPorts=1) "Water boundary at 7 degrees" - annotation (Placement(transformation(extent={{-40,-90},{-20,-70}}))); - Sources.MassFlowSource_T bouAirCoo5( - redeclare package Medium = MediumAir, - use_m_flow_in=true, - T=T_a2_nominal, - X={X_w2_nominal,1 - X_w2_nominal}, - nPorts=1) - "Air boundary: 27/19 dry/wet bulb temperature" - annotation (Placement(transformation(extent={{60,-102},{40,-82}}))); - WetEffectivenessNTU_Fuzzy_V3 cooCoi7Param16( - redeclare package Medium1 = MediumWater, - redeclare package Medium2 = MediumAir, - configuration=hexCon, - m1_flow_nominal=m1_16_flow_nominal, - m2_flow_nominal=m2_flow_nominal, - UA_nominal=UA_nominal, - dp1_nominal=0, - dp2_nominal=0) - annotation (Placement(transformation(extent={{-10,-96},{10,-76}}))); - WetCoilCounterFlow cooCoi16_Dis( - redeclare package Medium1 = MediumWater, - redeclare package Medium2 = MediumAir, - m1_flow_nominal=m1_16_flow_nominal, - m2_flow_nominal=m2_flow_nominal, - dp2_nominal=0, - allowFlowReversal1=true, - allowFlowReversal2=true, - dp1_nominal=0, - UA_nominal=UA_nominal, - show_T=true, - nEle=50, - energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyStateInitial, - tau1=0.1, - tau2=0.1, - tau_m=0.1) - annotation (Placement(transformation(extent={{-10,24},{10,44}}))); - Sources.MassFlowSource_T bouWatCoo3( - use_m_flow_in=true, - redeclare package Medium = MediumWater, - T=T_a1_16_nominal, - nPorts=1) "Water boundary at 16 degrees" - annotation (Placement(transformation(extent={{-40,30},{-20,50}}))); - Sources.MassFlowSource_T bouAirCoo6( - redeclare package Medium = MediumAir, - use_m_flow_in=true, - T=T_a2_nominal, - X={X_w2_nominal,1 - X_w2_nominal}, - nPorts=1) "Air boundary: 27/19 dry/wet bulb temperature" - annotation (Placement(transformation(extent={{60,18},{40,38}}))); - WetCoilCounterFlow cooCoi7Param16_Dis( - redeclare package Medium1 = MediumWater, - redeclare package Medium2 = MediumAir, - m1_flow_nominal=m1_16_flow_nominal, - m2_flow_nominal=m2_flow_nominal, - dp2_nominal=0, - allowFlowReversal1=true, - allowFlowReversal2=true, - dp1_nominal=0, - UA_nominal=UA_nominal, - show_T=true, - nEle=50, - energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyStateInitial, - tau1=0.1, - tau2=0.1, - tau_m=0.1) - annotation (Placement(transformation(extent={{-10,-124},{10,-104}}))); - Sources.MassFlowSource_T bouWatCoo7v3( - use_m_flow_in=true, - redeclare package Medium = MediumWater, - T=T_a1_7_nominal, - nPorts=1) "Water boundary at 7 degrees" - annotation (Placement(transformation(extent={{-40,-118},{-20,-98}}))); - Sources.MassFlowSource_T bouAirCoo4( - redeclare package Medium = MediumAir, - use_m_flow_in=true, - T=T_a2_nominal, - X={X_w2_nominal,1 - X_w2_nominal}, - nPorts=1) - "Air boundary: 27/19 dry/wet bulb temperature" - annotation (Placement(transformation(extent={{60,-130},{40,-110}}))); - Real isDryHexDis[cooCoi7Param16_Dis.nEle]; - Real dryFraHexDis = sum(isDryHexDis) / cooCoi7Param16_Dis.nEle; -equation - for iEle in 1:cooCoi7Param16_Dis.nEle loop - isDryHexDis[iEle] = if abs(cooCoi7Param16_Dis.ele[iEle].masExc.mWat_flow) < 1E-6 then 1 else 0; - end for; - // fixme: enable or delete the assertion - //assert(abs(cooCoi7.Q1_flow-cooCoi7Reverse.Q1_flow)+ - // abs(cooCoi7.mWat1_flow-cooCoi7Reverse.mWat2_flow)<1e-10, - // "The models cooCoi7 and cooCoi7Reverse do - // not return identical results as required."); - connect(gainFloFcu16.u, cooData.y[2]) - annotation (Line(points={{-67.2,100},{-109,100}},color={0,0,127})); - connect(gain.u, cooData.y[1]) - annotation (Line(points={{-4,116},{-74,116},{-74,100},{-109,100}}, - color={0,0,127})); - connect(gain.y, bouAirCoo.m_flow_in) - annotation (Line(points={{19,116},{68,116},{68,88},{62,88}}, - color={0,0,127})); - connect(gainFloFcu16.y, bouWatCoo16.m_flow_in) annotation (Line(points={{-53.4, - 100},{-42,100}}, color={0,0,127})); - connect(gainFloFcu7.y,bouWatCoo7. m_flow_in) - annotation (Line(points={{-53.4,4},{-42,4}}, color={0,0,127})); - connect(gainFloFcu7.u, cooData.y[4]) annotation (Line(points={{-67.2,4},{-74,4}, - {-74,100},{-109,100}}, color={0,0,127})); - connect(bouWatCoo7v2.m_flow_in, gainFloFcu7.y) annotation (Line(points={{-42,-42}, - {-50,-42},{-50,4},{-53.4,4}},color={0,0,127})); - connect(gain.y, bouAirCoo1.m_flow_in) annotation (Line(points={{19,116},{68,116}, - {68,-8},{62,-8}}, color={0,0,127})); - connect(gain.y, bouAirCoo2.m_flow_in) annotation (Line(points={{19,116},{68,116}, - {68,-54},{62,-54}}, color={0,0,127})); - connect(bouWatCoo7v2.ports[1], cooCoi7Param16_IBPSA.port_a1) - annotation (Line(points={{-20,-50},{-10,-50}}, color={0,127,255})); - connect(bouWatCoo7.ports[1], cooCoi7_IBPSA.port_a1) - annotation (Line(points={{-20,-4},{-10,-4}}, color={0,127,255})); - connect(cooCoi7_IBPSA.port_b1, sinWat.ports[1]) annotation (Line(points={{10,-4}, - {20,-4},{20,4},{80,4},{80,3.42857},{110,3.42857}}, color={0,127,255})); - connect(cooCoi7Param16_IBPSA.port_b1, sinWat.ports[2]) annotation (Line( - points={{10,-50},{46,-50},{46,-52},{80,-52},{80,2.28571},{110,2.28571}}, - color={0,127, - 255})); - connect(cooCoi16_IBPSA.port_b1, sinWat.ports[3]) annotation (Line(points={{10,92}, - {20,92},{20,116},{80,116},{80,1.14286},{110,1.14286}}, - color={0,127,255})); - connect(bouAirCoo1.ports[1], cooCoi7_IBPSA.port_a2) - annotation (Line(points={{40,-16},{10,-16}}, color={0,127,255})); - connect(bouAirCoo2.ports[1], cooCoi7Param16_IBPSA.port_a2) - annotation (Line(points={{40,-62},{10,-62}}, color={0,127,255})); - connect(sinAir.ports[1], cooCoi16_IBPSA.port_b2) annotation (Line(points={{-110, - 3.42857},{-80,3.42857},{-80,80},{-10,80}}, - color={0,127,255})); - connect(cooCoi7_IBPSA.port_b2, sinAir.ports[2]) annotation (Line(points={{-10,-16}, - {-80,-16},{-80,2.28571},{-110,2.28571}}, - color={0,127,255})); - connect(cooCoi7Param16_IBPSA.port_b2, sinAir.ports[3]) annotation (Line( - points={{-10,-62},{-80,-62},{-80,1.14286},{-110,1.14286}}, color={0,127, - 255})); - connect(cooCoi16.port_b2, sinAir.ports[4]) annotation (Line(points={{-10,56},{ - -80,56},{-80,1.11022e-16},{-110,1.11022e-16}}, - color={0,127,255})); - connect(cooCoi16.port_b1, sinWat.ports[4]) annotation (Line(points={{10,68},{80, - 68},{80,1.11022e-16},{110,1.11022e-16}}, - color={0,127,255})); - connect(bouAirCoo.ports[1], cooCoi16_IBPSA.port_a2) annotation (Line(points={{40,80}, - {10,80}}, color={0,127,255})); - connect(bouWatCoo16.ports[1], cooCoi16_IBPSA.port_a1) annotation (Line(points={{-20,92}, - {-10,92}}, color={0,127,255})); - connect(bouWatCoo1.ports[1], cooCoi16.port_a1) - annotation (Line(points={{-20,68},{-10,68}}, color={0,127,255})); - connect(bouAirCoo3.ports[1], cooCoi16.port_a2) annotation (Line(points={{40,56}, - {10,56}}, color={0,127,255})); - connect(gain.y, bouAirCoo3.m_flow_in) annotation (Line(points={{19,116},{68, - 116},{68,64},{62,64}}, - color={0,0,127})); - connect(gainFloFcu16.y, bouWatCoo1.m_flow_in) annotation (Line(points={{-53.4, - 100},{-48,100},{-48,76},{-42,76}}, - color={0,0,127})); - connect(bouWatCoo7v1.ports[1], cooCoi7Param16.port_a1) - annotation (Line(points={{-20,-80},{-10,-80}}, color={0,127,255})); - connect(cooCoi7Param16.port_b2, sinAir.ports[5]) annotation (Line(points={{-10,-92}, - {-80,-92},{-80,-2},{-110,-2},{-110,-1.14286}}, color={0,127,255})); - connect(bouAirCoo5.ports[1], cooCoi7Param16.port_a2) - annotation (Line(points={{40,-92},{10,-92}}, color={0,127,255})); - connect(cooCoi7Param16.port_b1, sinWat.ports[5]) annotation (Line(points={{10,-80}, - {80,-80},{80,-1.14286},{110,-1.14286}}, - color={0,127,255})); - connect(bouWatCoo7v2.m_flow_in, bouWatCoo7v1.m_flow_in) annotation (Line( - points={{-42,-42},{-50,-42},{-50,-72},{-42,-72}}, color={0,0,127})); - connect(gain.y, bouAirCoo5.m_flow_in) annotation (Line(points={{19,116},{68,116}, - {68,-84},{62,-84}}, color={0,0,127})); - connect(bouWatCoo3.ports[1],cooCoi16_Dis. port_a1) - annotation (Line(points={{-20,40},{-10,40}}, color={0,127,255})); - connect(bouAirCoo6.ports[1],cooCoi16_Dis. port_a2) - annotation (Line(points={{40,28},{10,28}}, color={0,127,255})); - connect(sinAir.ports[6],cooCoi16_Dis. port_b2) annotation (Line(points={{-110, - -2.28571},{-80,-2.28571},{-80,28},{-10,28}}, color={0,127,255})); - connect(cooCoi16_Dis.port_b1, sinWat.ports[6]) annotation (Line(points={{10,40}, - {80,40},{80,-2.28571},{110,-2.28571}}, color={0,127,255})); - connect(gainFloFcu16.y, bouWatCoo3.m_flow_in) annotation (Line(points={{-53.4, - 100},{-48,100},{-48,48},{-42,48}}, color={0,0,127})); - connect(gain.y, bouAirCoo6.m_flow_in) annotation (Line(points={{19,116},{68, - 116},{68,36},{62,36}}, color={0,0,127})); - connect(bouWatCoo7v3.ports[1],cooCoi7Param16_Dis. port_a1) - annotation (Line(points={{-20,-108},{-10,-108}}, color={0,127,255})); - connect(bouAirCoo4.ports[1],cooCoi7Param16_Dis. port_a2) - annotation (Line(points={{40,-120},{10,-120}}, color={0,127,255})); - connect(cooCoi7Param16_Dis.port_b2, sinAir.ports[7]) annotation (Line(points={{-10, - -120},{-80,-120},{-80,-3.42857},{-110,-3.42857}}, color={0,127,255})); - connect(gainFloFcu7.y, bouWatCoo7v3.m_flow_in) annotation (Line(points={{-53.4, - 4},{-50,4},{-50,-100},{-42,-100}}, color={0,0,127})); - connect(gain.y, bouAirCoo4.m_flow_in) annotation (Line(points={{19,116},{68,116}, - {68,-112},{62,-112}}, color={0,0,127})); - connect(cooCoi7Param16_Dis.port_b1, sinWat.ports[7]) annotation (Line(points={{10,-108}, - {80,-108},{80,0},{110,0},{110,-3.42857}}, color={0,127,255})); - annotation (experiment( - StopTime=50000, - Tolerance=1e-06, - __Dymola_Algorithm="Lsodar"), __Dymola_Commands( - file="Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FCU.mos" - "Simulate and plot"), - Documentation(info=" -

-fixme: complete info section. -

-", revisions=" -

-fixme: add revision section -

-"), - Diagram(coordinateSystem(extent={{-140,-140},{140,140}}), graphics={Text( - extent={{-134,146},{-12,110}}, - lineColor={28,108,200}, - textString="Water mass flow rate computed based on a constant deltaT at each operating point")})); -end WetCoilEffectivenessNTU_FCU; diff --git a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FVM.mo b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FVM.mo deleted file mode 100644 index a5f2ce207dd..00000000000 --- a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FVM.mo +++ /dev/null @@ -1,239 +0,0 @@ -within Buildings.Fluid.HeatExchangers.Validation; -model WetCoilEffectivenessNTU_FVM - "Model that demonstrates use of a heat exchanger with condensation that uses the epsilon-NTU relation" - extends Modelica.Icons.Example; - - package Medium1 = Buildings.Media.Water; - package Medium2 = Buildings.Media.Air; - - parameter Modelica.SIunits.SpecificHeatCapacity cp1= - Medium1.specificHeatCapacityCp( - Medium1.setState_pTX(Medium1.p_default, Medium1.T_default, Medium1.X_default)) - "Specific heat capacity of medium 2"; - parameter Modelica.SIunits.SpecificHeatCapacity cp2= - Medium2.specificHeatCapacityCp( - Medium2.setState_pTX(Medium2.p_default, Medium2.T_default, Medium2.X_default)) - "Specific heat capacity of medium 2"; - parameter Modelica.SIunits.MassFlowRate m1_flow = 5 - "Nominal mass flow rate medium 1"; - parameter Modelica.SIunits.MassFlowRate m2_flow = m1_flow*cp1/ - cp2 "Nominal mass flow rate medium 2"; - - Buildings.Fluid.Sources.Boundary_pT sin_2( - redeclare package Medium = Medium2, - use_p_in=true, - nPorts=4, - T=273.15 + 10) "Boundary condition" - annotation (Placement(transformation(extent={{-64,10}, - {-44,30}}))); - Buildings.Fluid.Sources.Boundary_pT sou_2( - redeclare package Medium = Medium2, - use_Xi_in=true, - T=273.15 + 5, - use_p_in=true, - use_T_in=true, - nPorts=4) "Boundary condition" - annotation (Placement(transformation(extent={{10,-10}, - {-10,10}}, origin={72,-10}))); - Modelica.Blocks.Sources.Ramp TWat( - height=10, - duration=60, - offset=5 + 273.15, - startTime=60) "Water temperature" - annotation (Placement(transformation(extent={{-100,50},{-80,70}}))); - Modelica.Blocks.Sources.Constant TDb(k=30 + 273.15) - "Drybulb temperature" - annotation (Placement(transformation(extent={{60,-90},{80,-70}}))); - Modelica.Blocks.Sources.Constant POut(k=101325) - annotation (Placement(transformation(extent={{-100,10},{-80,30}}))); - Buildings.Fluid.Sources.Boundary_pT sin_1( - redeclare package Medium = Medium1, - use_p_in=true, - nPorts=4, - p=300000, - T=273.15 + 25) - "Boundary condition" annotation (Placement(transformation(extent={{80,40}, - {60,60}}))); - Buildings.Fluid.Sources.Boundary_pT sou_1( - redeclare package Medium = Medium1, - p=300000 + 5000, - T=273.15 + 50, - use_T_in=true, - nPorts=4) - "Boundary condition" annotation (Placement(transformation(extent={{-62,40}, - {-42,60}}))); - - Buildings.Fluid.HeatExchangers.DryCoilEffectivenessNTU hexDry( - redeclare package Medium1 = Medium1, - redeclare package Medium2 = Medium2, - dp1_nominal=500, - dp2_nominal=10, - m1_flow_nominal=m1_flow, - m2_flow_nominal=m2_flow, - use_Q_flow_nominal=true, - Q_flow_nominal=m2_flow*cp2*(24 - 20), - configuration=Buildings.Fluid.Types.HeatExchangerConfiguration.CounterFlow, - show_T=true, - T_a1_nominal=303.15, - T_a2_nominal=293.15) "Dry coil" - annotation (Placement(transformation(extent={{-10,0},{10,20}}))); - WetEffectivenessNTU_Fuzzy_V3 hexWetNtu( - redeclare package Medium1 = Medium1, - redeclare package Medium2 = Medium2, - dp1_nominal=500, - dp2_nominal=10, - m1_flow_nominal=m1_flow, - m2_flow_nominal=m2_flow, - UA_nominal=13854.5, - configuration=Buildings.Fluid.Types.HeatExchangerConfiguration.CrossFlowStream1UnmixedStream2Mixed, - show_T=true) - "Heat exchanger" - annotation (Placement(transformation(extent={{-10,-58},{10,-38}}))); - Modelica.Blocks.Sources.Trapezoid trapezoid( - amplitude=5000, - rising=10, - width=100, - falling=10, - period=3600, - offset=300000) - "Pressure boundary condition" - annotation (Placement(transformation(extent={{40,70},{60,90}}))); - WetCoilCounterFlow hexFVM( - redeclare package Medium1 = Medium1, - redeclare package Medium2 = Medium2, - dp1_nominal=500, - dp2_nominal=10, - m1_flow_nominal=m1_flow, - m2_flow_nominal=m2_flow, - show_T=true, - UA_nominal=13854.5, - nEle=100) "Heat exchanger" - annotation (Placement(transformation(extent={{-10,-26},{10,-6}}))); - Modelica.Blocks.Sources.Ramp XIn1( - height=30*1e-3, - duration=60, - offset=2*1e-3, - startTime=360) "Humidity boundary condition" - annotation (Placement(transformation(extent={{60,-50},{80,-30}}))); - Modelica.Blocks.Sources.Ramp PIn( - height=200, - duration=60, - offset=101325, - startTime=100) "Pressure boundary condition" - annotation (Placement(transformation(extent={{60,-132},{80, - -112}}))); - WetCoilEffectivesnessNTU hexWetIBPSA( - redeclare package Medium1 = Medium1, - redeclare package Medium2 = Medium2, - show_T=true, - dp1_nominal=500, - dp2_nominal=10, - m1_flow_nominal=m1_flow, - m2_flow_nominal=m2_flow, - T_a1_nominal=303.15, - T_a2_nominal=293.15, - Q_flow_nominal=m2_flow*cp2*(24 - 20), - configuration=Buildings.Fluid.Types.HeatExchangerConfiguration.CrossFlowStream1UnmixedStream2Mixed) - annotation (Placement(transformation(extent={{-10,-90},{10,-70}}))); - Real isDryHexDis[hexFVM.nEle]; - Real dryFraHexDis = sum(isDryHexDis) / hexFVM.nEle; - - - -equation - for iEle in 1:hexFVM.nEle loop - isDryHexDis[iEle] = if abs(hexFVM.ele[iEle].masExc.mWat_flow) < 1E-6 then 1 else 0; - end for; - connect(TDb.y, sou_2.T_in) annotation (Line(points={{81,-80},{100,-80},{100, - -6},{84,-6}}, - color={0,0,127})); - connect(TWat.y, sou_1.T_in) - annotation (Line(points={{-79,60},{-72,60},{-72,54},{-64,54}}, - color={0,0,127})); - connect(POut.y, sin_2.p_in) annotation (Line( - points={{-79,20},{-72,20},{-72,28},{-66,28}}, - color={0,0,127}, - smooth=Smooth.None)); - connect(hexDry.port_a1, sou_1.ports[1]) annotation (Line( - points={{-10,16},{-24,16},{-24,53},{-42,53}}, - color={0,127,255}, - smooth=Smooth.None)); - connect(hexWetNtu.port_a1, sou_1.ports[2]) annotation (Line( - points={{-10,-42},{-28,-42},{-28,51},{-42,51}}, - color={0,127,255}, - smooth=Smooth.None)); - connect(hexDry.port_b2, sin_2.ports[1]) annotation (Line( - points={{-10,4},{-32,4},{-32,23},{-44,23}}, - color={0,127,255}, - smooth=Smooth.None)); - connect(hexWetNtu.port_b2, sin_2.ports[2]) annotation (Line( - points={{-10,-54},{-36,-54},{-36,21},{-44,21}}, - color={0,127,255}, - smooth=Smooth.None)); - connect(hexDry.port_b1, sin_1.ports[1]) annotation (Line( - points={{10,16},{34,16},{34,53},{60,53}}, - color={0,127,255}, - smooth=Smooth.None)); - connect(hexWetNtu.port_b1, sin_1.ports[2]) annotation (Line( - points={{10,-42},{38,-42},{38,51},{60,51}}, - color={0,127,255}, - smooth=Smooth.None)); - connect(hexDry.port_a2, sou_2.ports[1]) annotation (Line( - points={{10,4},{36,4},{36,-7},{62,-7}}, - color={0,127,255}, - smooth=Smooth.None)); - connect(hexWetNtu.port_a2, sou_2.ports[2]) annotation (Line( - points={{10,-54},{32,-54},{32,-9},{62,-9}}, - color={0,127,255}, - smooth=Smooth.None)); - connect(trapezoid.y, sin_1.p_in) annotation (Line( - points={{61,80},{92,80},{92,58},{82,58}}, - color={0,0,127}, - smooth=Smooth.None)); - connect(sou_1.ports[3], hexFVM.port_a1) annotation (Line(points={{-42,49},{-20, - 49},{-20,-10},{-10,-10}}, color={0,127,255})); - connect(sin_2.ports[3], hexFVM.port_b2) annotation (Line(points={{-44,19},{-28, - 19},{-28,-22},{-10,-22}}, color={0,127,255})); - connect(hexFVM.port_a2, sou_2.ports[3]) annotation (Line(points={{10,-22},{38, - -22},{38,-11},{62,-11}}, color={0,127,255})); - connect(hexFVM.port_b1, sin_1.ports[3]) annotation (Line(points={{10,-10},{36, - -10},{36,49},{60,49}}, color={0,127,255})); - connect(PIn.y, sou_2.p_in) annotation (Line(points={{81,-122},{102,-122},{102, - -2},{84,-2}}, color={0,0,127})); - connect(XIn1.y, sou_2.Xi_in[1]) annotation (Line(points={{81,-40},{96,-40},{ - 96,-14},{84,-14}}, color={0,0,127})); - connect(sou_2.ports[4], hexWetIBPSA.port_a2) annotation (Line(points={{62,-13}, - {40,-13},{40,-86},{10,-86}}, color={0,127,255})); - connect(sin_2.ports[4], hexWetIBPSA.port_b2) annotation (Line(points={{-44,17}, - {-40,17},{-40,-86},{-10,-86}}, color={0,127,255})); - connect(sou_1.ports[4], hexWetIBPSA.port_a1) annotation (Line(points={{-42,47}, - {-26,47},{-26,-74},{-10,-74}}, color={0,127,255})); - connect(hexWetIBPSA.port_b1, sin_1.ports[4]) annotation (Line(points={{10,-74}, - {36,-74},{36,47},{60,47}}, color={0,127,255})); - annotation(experiment(Tolerance=1e-6, StopTime=360), -__Dymola_Commands(file= - "modelica://Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FVM.mos" - "Simulate and plot"), -Documentation(info=" -

-This model tests - -Buildings.Fluid.HeatExchangers.DryCoilEffectivenessNTU -for different inlet conditions. -

-", revisions=" -
    -
  • -December 22, 2014 by Michael Wetter:
    -Removed Modelica.Fluid.System -to address issue -#311. -
  • -
  • -February 12, 2010, by Michael Wetter:
    -First implementation. -
  • -
-"), - Diagram(coordinateSystem(extent={{-140,-180},{140,180}}))); -end WetCoilEffectivenessNTU_FVM; diff --git a/Buildings/Fluid/HeatExchangers/Validation/package.order b/Buildings/Fluid/HeatExchangers/Validation/package.order index 6b647289856..821b1c52bd1 100644 --- a/Buildings/Fluid/HeatExchangers/Validation/package.order +++ b/Buildings/Fluid/HeatExchangers/Validation/package.order @@ -7,5 +7,3 @@ PrescribedOutlet_dynamic WetCoilDiscretizedInitialization WetCoilDiscretizedInitializationPerfectGases WetCoilEffectivenessNTU -WetCoilEffectivenessNTU_FCU -WetCoilEffectivenessNTU_FVM diff --git a/Buildings/Fluid/HeatExchangers/WetEffectivenessNTU_Fuzzy_V3.mo b/Buildings/Fluid/HeatExchangers/WetCoiEffectivenessNTU.mo similarity index 99% rename from Buildings/Fluid/HeatExchangers/WetEffectivenessNTU_Fuzzy_V3.mo rename to Buildings/Fluid/HeatExchangers/WetCoiEffectivenessNTU.mo index a365c18e102..d81c0ed6343 100644 --- a/Buildings/Fluid/HeatExchangers/WetEffectivenessNTU_Fuzzy_V3.mo +++ b/Buildings/Fluid/HeatExchangers/WetCoiEffectivenessNTU.mo @@ -1,5 +1,5 @@ within Buildings.Fluid.HeatExchangers; -model WetEffectivenessNTU_Fuzzy_V3 +model WetCoiEffectivenessNTU "Heat exchanger with effectiveness - NTU relation and with moisture condensation" extends Buildings.Fluid.Interfaces.PartialFourPortInterface( redeclare replaceable package Medium2 = Buildings.Media.Air); @@ -99,7 +99,7 @@ protected r_nominal = r_nominal) "Model for convective heat transfer coefficient" annotation (Placement(transformation(extent={{-68,-13},{-50,9}}))); - BaseClasses.DryWetCalcsFuzzy_V3 dryWetCalcs( + BaseClasses.WetCoilDryWetRegime dryWetCalcs( redeclare final package Medium2 = Medium2, final cfg=flowRegime, final mWat_flow_nominal=m1_flow_nominal, @@ -506,4 +506,4 @@ equation "), __Dymola_Commands(file= "Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffNtuMassFlowFuzzy.mos")); -end WetEffectivenessNTU_Fuzzy_V3; +end WetCoiEffectivenessNTU; diff --git a/Buildings/Fluid/HeatExchangers/package.order b/Buildings/Fluid/HeatExchangers/package.order index 1e375f1abd7..05755256680 100644 --- a/Buildings/Fluid/HeatExchangers/package.order +++ b/Buildings/Fluid/HeatExchangers/package.order @@ -10,7 +10,7 @@ PrescribedOutlet SensibleCooler_T WetCoilCounterFlow WetCoilDiscretized -WetEffectivenessNTU_Fuzzy_V3 +WetCoiEffectivenessNTU ActiveBeams CoolingTowers DXCoils From 4c952983fceca0a98a3a2514d28e08ffb946f3df Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Tue, 9 Feb 2021 17:22:18 -0800 Subject: [PATCH 04/69] Delete sigmoid (not used) --- Buildings/Fluid/HeatExchangers/BaseClasses/package.order | 1 - Buildings/Fluid/HeatExchangers/BaseClasses/sigmoid.mo | 9 --------- 2 files changed, 10 deletions(-) delete mode 100644 Buildings/Fluid/HeatExchangers/BaseClasses/sigmoid.mo diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/package.order b/Buildings/Fluid/HeatExchangers/BaseClasses/package.order index 0a32f9ad992..e75a25575b2 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/package.order +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/package.order @@ -31,5 +31,4 @@ isobaricExpansionCoefficientWater lmtd ntu_epsilonZ prandtlNumberWater -sigmoid Examples diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/sigmoid.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/sigmoid.mo deleted file mode 100644 index 98e53e28ad2..00000000000 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/sigmoid.mo +++ /dev/null @@ -1,9 +0,0 @@ -within Buildings.Fluid.HeatExchangers.BaseClasses; -function sigmoid - input Real a=1 "the magnitude of 'a' controls the transition area"; - input Real c=0 "the magnitude of 'c' controls the center point of the sigmoid membership function"; - input Real x; - output Real y; -algorithm - y:=1/(1 + Modelica.Math.exp(-a*(x - c))); -end sigmoid; From 87fa3f7d26a31655223691e8ea65aad8b8bdc1e7 Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Thu, 11 Feb 2021 16:09:33 -0800 Subject: [PATCH 05/69] Update doc and description strings [ci skip] --- .../Examples/WetCoilEffectivenessNTU.mo | 40 +++++++++---------- .../Validation/WetCoilEffectivenessNTU.mo | 31 +++++++------- 2 files changed, 33 insertions(+), 38 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mo index 70b68cbe7ca..0b4ab264669 100644 --- a/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mo @@ -1,6 +1,6 @@ within Buildings.Fluid.HeatExchangers.Examples; model WetCoilEffectivenessNTU - "Duplicates WetCoilCounterFlowMassFlow example using fuzzy model" + "Model that tests the wet coil effectiveness-NTU model with variable mass flow rates" extends Modelica.Icons.Example; extends Buildings.Fluid.HeatExchangers.Examples.BaseClasses.EffectivenessNTUMassFlow( @@ -24,21 +24,15 @@ model WetCoilEffectivenessNTU T_a2_nominal, T_b2_nominal), show_T=true, - energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState) "Heat exchanger" + energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState) + "Heat exchanger" annotation (Placement(transformation(extent={{80,20},{100,40}}))); + Sensors.RelativeHumidityTwoPort senRelHum( redeclare package Medium = Medium2, m_flow_nominal=m2_flow_nominal) "Relative humidity sensor" annotation (Placement(transformation(extent={{60,14},{40,34}}))); -/* - Modelica.Blocks.Sources.CombiTimeTable resDis( - tableOnFile=true, - tableName="tab1", - fileName=ModelicaServices.ExternalReferences.loadResource("modelica://Buildings/Resources/Data/Fluid/HeatExchangers/Examples/WetCoilEffNtuMassFlowFuzzy_V2_2.mos"), - columns={2,3}) "Reference results from WetCoilDiscretizedMassFlow" - annotation (Placement(transformation(extent={{-80,-50},{-60,-30}}))); - */ equation connect(sou_1.ports[1], hex.port_a1) annotation (Line( @@ -78,22 +72,24 @@ issue 622 for more information. ", info="

-This example model is meant to create a comparison of the - -WetEffectivenessNTU model (which is tested here) versus a +This example is meant to create a comparison of + +Buildings.Fluid.HeatExchangers.WetCoiEffectivenessNTU +(which is simulated here) versus -WetCoilCounterFlow model over a similar example (compare this example with +Buildings.Fluid.HeatExchangers.WetCoilCounterFlow +over a similar example. +It is intended to be compared with -WetCoilCounterFlowMassFlow). +Buildings.Fluid.HeatExchangers.Examples.WetCoilCounterFlowMassFlow).

-

-The two models correspond approximately (realizing that the - -WetEffectivenessNTU - model does not have dynamics) over the first half of the simulation but -does not agree well over the second half which subjects the model to -flow reversals. +The two models match approximately (considering that + +Buildings.Fluid.HeatExchangers.WetCoiEffectivenessNTU +does not have dynamics) over the first half of the simulation but +do not agree well over the second half which subjects the model to +flow reversal.

")); end WetCoilEffectivenessNTU; diff --git a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo index c649d11d856..4495127ac14 100644 --- a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo @@ -1,6 +1,6 @@ within Buildings.Fluid.HeatExchangers.Validation; model WetCoilEffectivenessNTU - "Model validation of the WetCoilEffNtu model compared with a reference" + "Model that validates the wet coil effectiveness-NTU model" extends Modelica.Icons.Example; package Medium_W = Buildings.Media.Water; @@ -75,7 +75,7 @@ model WetCoilEffectivenessNTU Modelica.Blocks.Sources.RealExpression pAir(y=pAtm) "Air pressure" annotation (Placement(transformation(extent={{140,-52},{120,-28}}))); Buildings.Utilities.Psychrometrics.TWetBul_TDryBulXi wetBulIn(redeclare - package Medium = Medium_A) + package Medium = Medium_A) "Computation of wet bulb temperature" annotation (Placement(transformation(extent={{120,-18},{140,2}}))); Sensors.MassFractionTwoPort senMasFraIn(redeclare package Medium = Medium_A, m_flow_nominal=m2_flow_nominal) "Water mass fraction of entering air" @@ -87,9 +87,9 @@ model WetCoilEffectivenessNTU m_flow_nominal=m2_flow_nominal) "Dry bulb temperature of leaving air" annotation (Placement(transformation(extent={{-70,-30},{-90,-50}}))); Buildings.Utilities.Psychrometrics.TWetBul_TDryBulXi wetBulOut(redeclare - package Medium = Medium_A) + package Medium = Medium_A) "Computation of wet bulb temperature" annotation (Placement(transformation(extent={{-40,-98},{-20,-78}}))); - Modelica.Blocks.Sources.RealExpression pAir1(y=pAtm) "Pressure" + Modelica.Blocks.Sources.RealExpression pAir1(y=pAtm) "Air pressure" annotation (Placement(transformation(extent={{-100,-112},{-80,-88}}))); WetCoiEffectivenessNTU hexWetNTU( redeclare package Medium1 = Medium_W, @@ -100,7 +100,7 @@ model WetCoilEffectivenessNTU dp2_nominal=0, dp1_nominal=0, configuration=hexCon, - show_T=true) "Heat exchanger coil" + show_T=true) "Effectiveness-NTU coil model" annotation (Placement(transformation(extent={{-40,-4},{-20,16}}))); Sources.MassFlowSource_T souWat1( redeclare package Medium = Medium_W, @@ -120,7 +120,7 @@ model WetCoilEffectivenessNTU dp1_nominal=0, UA_nominal=UA_nominal, show_T=true, - nEle=50, + nEle=30, energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyStateInitial, tau1=0.1, tau2=0.1, @@ -198,27 +198,26 @@ equation "Simulate and plot"), Documentation(info="

-This example duplicates an example from Mitchell and Braun 2012, example SM-2-1 +This model duplicates an example from Mitchell and Braun 2012, example SM-2-1 (Mitchell and Braun 2012) to validate a single case for the - -Buildings.Fluid.HeatExchangers.WetEffectivenessNTU model. + +Buildings.Fluid.HeatExchangers.WetCoiEffectivenessNTU +model.

-

Validation

-

-The example is a steady-state analysis of a partially wet coil with the inlet -conditions as specified in the model setup. +The example is a steady-state analysis of a wet coil with constant air +and water inlet temperature and mass flow rate, and a varying air inlet +humidity as specified in the model setup. +The reference used for validation is the published experimental data. +A discretized wet coil model is also used for comparison.

-

The slight deviations we find are believed due to differences in the tolerance of the solver algorithms employed as well as differences in media property calculations for air and water.

-

References

-

Mitchell, John W., and James E. Braun. 2012. \"Supplementary Material Chapter 2: Heat Exchangers for Cooling Applications\". From 8fe90650b871dabe65c2313260c505234e290952 Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Thu, 11 Feb 2021 16:09:57 -0800 Subject: [PATCH 06/69] Add dry fraction --- Buildings/Fluid/HeatExchangers/WetCoilCounterFlow.mo | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/WetCoilCounterFlow.mo b/Buildings/Fluid/HeatExchangers/WetCoilCounterFlow.mo index 1adf4caf0dc..d4040f7b89d 100644 --- a/Buildings/Fluid/HeatExchangers/WetCoilCounterFlow.mo +++ b/Buildings/Fluid/HeatExchangers/WetCoilCounterFlow.mo @@ -28,6 +28,10 @@ model WetCoilCounterFlow Modelica.SIunits.MassFlowRate mWat_flow = sum(ele[i].vol2.mWat_flow for i in 1:nEle) "Water flow rate"; + Real fraDry(final unit="1") = Modelica.Math.BooleanVectors.countTrue( + {abs(ele[i].vol2.mWat_flow) Date: Thu, 11 Feb 2021 16:10:27 -0800 Subject: [PATCH 07/69] Update original example with 30 HX elements --- .../Fluid/HeatExchangers/Examples/WetCoilCounterFlowMassFlow.mo | 1 + .../Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Buildings/Fluid/HeatExchangers/Examples/WetCoilCounterFlowMassFlow.mo b/Buildings/Fluid/HeatExchangers/Examples/WetCoilCounterFlowMassFlow.mo index 4eeb96f5729..652e2a0d793 100644 --- a/Buildings/Fluid/HeatExchangers/Examples/WetCoilCounterFlowMassFlow.mo +++ b/Buildings/Fluid/HeatExchangers/Examples/WetCoilCounterFlowMassFlow.mo @@ -24,6 +24,7 @@ model WetCoilCounterFlowMassFlow T_a2_nominal, T_b2_nominal), show_T=true, + nEle=30, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial) annotation (Placement(transformation(extent={{80,20}, {100,40}}))); diff --git a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos index 9bd7e67691c..cc788ef0111 100644 --- a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos +++ b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos @@ -27,7 +27,7 @@ createPlot( createPlot( id=2, position={1255, 58, 1140, 1286}, - y={"hexWetNTU.dryWetCalcs.dryfra", "hexWetNTU.SHR", "dryFraHexDis"}, + y={"hexWetNTU.dryWetCalcs.dryfra", "hexDis.fraDry", "hexWetNTU.SHR"}, autoscale=true, autoerase=true, autoreplot=true, From be32ece48775c115380b7a10ed8ee06016a17091 Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Thu, 11 Feb 2021 16:33:20 -0800 Subject: [PATCH 08/69] Update experiment and mos --- .../Validation/WetCoilEffectivenessNTU.mo | 3 +- .../Examples/WetCoilEffectivenessNTU.mos | 8 ++- .../Validation/WetCoilEffectivenessNTU.mos | 10 +-- .../WetCoilEffectivenessNTU_FCU.mos | 68 ------------------- .../WetCoilEffectivenessNTU_FVM.mos | 19 ------ 5 files changed, 11 insertions(+), 97 deletions(-) delete mode 100644 Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FCU.mos delete mode 100644 Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FVM.mos diff --git a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo index 4495127ac14..c3957225b31 100644 --- a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo @@ -191,8 +191,7 @@ equation extent={{-200,-120},{200,120}})), experiment( StopTime=100, - Tolerance=1e-06, - __Dymola_Algorithm="Cvode"), + Tolerance=1e-06), __Dymola_Commands( file="Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos" "Simulate and plot"), diff --git a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mos b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mos index c550dc54984..138bdabe4ae 100644 --- a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mos +++ b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mos @@ -1,16 +1,18 @@ old_StoreProtectedVariables = Advanced.StoreProtectedVariables; Advanced.StoreProtectedVariables = true; simulateModel("Buildings.Fluid.HeatExchangers.Examples.WetCoilEffectivenessNTU", - tolerance=1e-6, stopTime=3600, method="Dassl", resultFile="WetCoilEffectivenessNTU"); + stopTime=3600, + method="cvode", + tolerance=1e-6, + resultFile="WetCoilEffectivenessNTU_Examples"); Advanced.StoreProtectedVariables = old_StoreProtectedVariables; createPlot( id=1, position={0, 0, 782, 636}, - y={"hex.Q2_flow", "hex.QLat2_flow", "resDis.y[1]", "resDis.y[2]"}, + y={"hex.Q2_flow", "hex.QLat2_flow"}, grid=true); createPlot( id=1, y={"hex.port_a1.m_flow", "hex.port_a2.m_flow"}, grid=true, subPlot=2); - diff --git a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos index cc788ef0111..ec76ed60a8f 100644 --- a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos +++ b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos @@ -1,15 +1,15 @@ old_StoreProtectedVariables = Advanced.StoreProtectedVariables; Advanced.StoreProtectedVariables = true; simulateModel("Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU", - method="cvode", - tolerance=1e-06, stopTime=100, - resultFile="WetCoilEffectivenessNTU"); + method="cvode", + tolerance=1e-6, + resultFile="WetCoilEffectivenessNTU_Validation"); Advanced.StoreProtectedVariables = old_StoreProtectedVariables; createPlot( id=1, position={59, 59, 1186, 1286}, - y={"hexWetNTU.Q1_flow", "hexWetNTU_IBPSA.Q1_flow", "hexDis.Q1_flow"}, + y={"hexWetNTU.Q1_flow", "hexDis.Q1_flow"}, autoscale=true, autoerase=true, autoreplot=true, @@ -18,7 +18,7 @@ createPlot( createPlot( id=1, subPlot=2, - y={"hexWetNTU.sta_b2.T", "hexWetNTU_IBPSA.sta_b2.T", "hexDis.sta_b2.T"}, + y={"hexWetNTU.sta_b2.T", "hexDis.sta_b2.T"}, autoscale=true, autoerase=true, autoreplot=true, diff --git a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FCU.mos b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FCU.mos deleted file mode 100644 index 6367dfac8bb..00000000000 --- a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FCU.mos +++ /dev/null @@ -1,68 +0,0 @@ -old_StoreProtectedVariables = Advanced.StoreProtectedVariables; -Advanced.StoreProtectedVariables = true; -simulateModel("Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU_FCU", - stopTime=50000, - method="cvode", - tolerance=1e-06, - resultFile="WetCoilEffectivenessNTU_FCU"); -Advanced.StoreProtectedVariables = old_StoreProtectedVariables; -createPlot( - id=1, - position={0, 0, 1054, 1126}, - y={"cooCoi7Param16.Q1_flow", "cooCoi7Param16_IBPSA.Q1_flow", "cooCoi7Param16_Dis.Q1_flow", "cooCoi7_IBPSA.Q1_flow", "cooData.y[4]"}, - autoscale = true, - autoerase = true, - autoreplot = true, - grid = true, - color = true); -createPlot( - id=1, - subPlot=2, - y={"cooCoi7Param16.QSen2_flow", "cooCoi7Param16_IBPSA.QSen2_flow", "cooCoi7Param16_Dis.QSen2_flow", "cooCoi7_IBPSA.QSen2_flow"}, - autoscale = true, - autoerase = true, - autoreplot = true, - grid = true, - color = true); -plotExpression( - apply( - -1*WetCoilEffectivenessNTU_FCU[end].cooData.y[3]), - false, - "-cooData.y[3]", - 1); -createPlot( - id=1, - subPlot=3, - y={"m1_7_flow_nominal", "cooCoi7_IBPSA.port_a1.m_flow", "m2_flow_nominal", "cooCoi7_IBPSA.port_a2.m_flow"}, - autoscale = true, - autoerase = true, - autoreplot = true, - grid = true, - color = true); -createPlot( - id=2, - position={1083, 1, 1054, 1128}, - y={"cooCoi16.Q1_flow", "cooCoi16_IBPSA.Q1_flow", "cooCoi16_Dis.Q1_flow", "cooData.y[2]"}, - autoscale = true, - autoerase = true, - autoreplot = true, - grid = true, - color = true); -createPlot( - id=2, - subPlot=2, - y={"m1_16_flow_nominal", "cooCoi16_IBPSA.port_a1.m_flow", "m2_flow_nominal", "cooCoi16_IBPSA.port_a2.m_flow"}, - autoscale = true, - autoerase = true, - autoreplot = true, - grid = true, - color = true); -createPlot( - id=3, - position={1511, 83, 920, 554}, - y={"dryFraHexDis", "cooCoi7Param16.dryWetCalcs.dryfra", "cooCoi16.dryWetCalcs.dryfra"}, - autoscale = true, - autoerase = true, - autoreplot = true, - grid = true, - color = true); diff --git a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FVM.mos b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FVM.mos deleted file mode 100644 index 27d0f7c91f5..00000000000 --- a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_FVM.mos +++ /dev/null @@ -1,19 +0,0 @@ -// Script generated by Dymola Wed Jul 8 10:37:06 2020 -old_StoreProtectedVariables = Advanced.StoreProtectedVariables; -Advanced.StoreProtectedVariables = true; -simulateModel("Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU_FVM", - method="dassl", tolerance=1e-06, stopTime=3600, resultFile="WetCoilEffectivenessNTU_FVM"); -Advanced.StoreProtectedVariables = old_StoreProtectedVariables; -createPlot( - id=1, - subPlot=1, - y={"hexDry.Q2_flow", "hexWetNtu.Q2_flow", "hexFVM.Q2_flow", "hexWetIBPSA.Q2_flow"}, - grid=true, - filename="WetCoilEffectivenessNTU_FVM.mat"); -createPlot( - id=1, - subPlot=2, - y={"dryFraHexDis","hexWetNtu.dryWetCalcs.w_FD"}, - grid=true, - filename="WetCoilEffectivenessNTU_FVM.mat"); - From f10afdd6d7be2982a862bef56e951ecc1a13078f Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Thu, 11 Feb 2021 16:37:26 -0800 Subject: [PATCH 09/69] Fix html --- Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo | 2 +- Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo index e05f4de84e9..87cd31b5fd0 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo @@ -84,7 +84,7 @@ equation

  • Jan 21, 2021, by Donghun Kim:
    First implementation of the fuzzy model. See issue 622 for more information.
  • ", info=" -

    This model implements the calculation for a 100% dry coil.

    +

    This model implements the calculation for a 100% dry coil.

    See Buildings.Fluid.HeatExchangers.DryCoilEffectivenessNTU for documentation.

    ")); end WetCoilDryRegime; diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo index 2fb8bdfc51c..1d1b2bf95f4 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo @@ -163,7 +163,7 @@ equation
  • Jan 21, 2021, by Donghun Kim:
    First implementation of the fuzzy model. See issue 622 for more information.
  • ", info=" -

    This model implements the calculation for a 100% wet coil.

    +

    This model implements the calculation for a 100% wet coil.

    The equations from Braun (1988) and Mitchell and Braun (2012a and b), which are essentially the extension of the ε-NTU approach to simultaneous sensible and latent heat transfer, are utilized.

    The mathematical equations are analogous to that of the sensible heat exchanger. The key change is that the heat transfer is deriven by an enthalpy difference not by an temperature difference. This change in the deriving potential results in redefining capacitances and heat transfer coefficients accordinlgy.

    The total heat transfer rate is expressed as

    From ea8100e677cc308ef3344fb764ca9e1f21e493fa Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Thu, 11 Feb 2021 16:42:48 -0800 Subject: [PATCH 10/69] Fix class name --- .../Examples/WetCoilEffectivenessNTU.mo | 15 +++++++-------- .../Validation/WetCoilEffectivenessNTU.mo | 12 ++++++------ ...ctivenessNTU.mo => WetCoilEffectivenessNTU.mo} | 4 ++-- Buildings/Fluid/HeatExchangers/package.order | 2 +- 4 files changed, 16 insertions(+), 17 deletions(-) rename Buildings/Fluid/HeatExchangers/{WetCoiEffectivenessNTU.mo => WetCoilEffectivenessNTU.mo} (99%) diff --git a/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mo index 0b4ab264669..671ca78e274 100644 --- a/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mo @@ -9,7 +9,7 @@ model WetCoilEffectivenessNTU sou_2(nPorts=1), sin_2(nPorts=1)); - WetCoiEffectivenessNTU hex( + Buildings.Fluid.HeatExchangers.WetCoilEffectivenessNTU hex( redeclare package Medium1 = Medium1, redeclare package Medium2 = Medium2, m1_flow_nominal=m1_flow_nominal, @@ -24,8 +24,7 @@ model WetCoilEffectivenessNTU T_a2_nominal, T_b2_nominal), show_T=true, - energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState) - "Heat exchanger" + energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState) "Heat exchanger" annotation (Placement(transformation(extent={{80,20},{100,40}}))); Sensors.RelativeHumidityTwoPort senRelHum( @@ -73,11 +72,11 @@ issue 622 for more information. ", info="

    This example is meant to create a comparison of - -Buildings.Fluid.HeatExchangers.WetCoiEffectivenessNTU + +Buildings.Fluid.HeatExchangers.WetCoilEffectivenessNTU (which is simulated here) versus -Buildings.Fluid.HeatExchangers.WetCoilCounterFlow +Buildings.Fluid.HeatExchangers.WetCoilCounterFlow over a similar example. It is intended to be compared with @@ -85,8 +84,8 @@ Buildings.Fluid.HeatExchangers.Examples.WetCoilCounterFlowMassFlow).

    The two models match approximately (considering that - -Buildings.Fluid.HeatExchangers.WetCoiEffectivenessNTU + +Buildings.Fluid.HeatExchangers.WetCoilEffectivenessNTU does not have dynamics) over the first half of the simulation but do not agree well over the second half which subjects the model to flow reversal. diff --git a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo index c3957225b31..b1368542fe4 100644 --- a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo @@ -91,7 +91,7 @@ model WetCoilEffectivenessNTU annotation (Placement(transformation(extent={{-40,-98},{-20,-78}}))); Modelica.Blocks.Sources.RealExpression pAir1(y=pAtm) "Air pressure" annotation (Placement(transformation(extent={{-100,-112},{-80,-88}}))); - WetCoiEffectivenessNTU hexWetNTU( + Buildings.Fluid.HeatExchangers.WetCoilEffectivenessNTU hexWetNTU( redeclare package Medium1 = Medium_W, redeclare package Medium2 = Medium_A, UA_nominal=UA_nominal, @@ -199,17 +199,17 @@ equation

    This model duplicates an example from Mitchell and Braun 2012, example SM-2-1 (Mitchell and Braun 2012) to validate a single case for the - -Buildings.Fluid.HeatExchangers.WetCoiEffectivenessNTU + +Buildings.Fluid.HeatExchangers.WetCoilEffectivenessNTU model.

    Validation

    -The example is a steady-state analysis of a wet coil with constant air -and water inlet temperature and mass flow rate, and a varying air inlet +The example is a steady-state analysis of a wet coil with constant air +and water inlet temperature and mass flow rate, and a varying air inlet humidity as specified in the model setup. The reference used for validation is the published experimental data. -A discretized wet coil model is also used for comparison. +A discretized wet coil model is also used for comparison.

    The slight deviations we find are believed due to differences in the tolerance diff --git a/Buildings/Fluid/HeatExchangers/WetCoiEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo similarity index 99% rename from Buildings/Fluid/HeatExchangers/WetCoiEffectivenessNTU.mo rename to Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo index d81c0ed6343..7bdbf4a8a99 100644 --- a/Buildings/Fluid/HeatExchangers/WetCoiEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo @@ -1,5 +1,5 @@ within Buildings.Fluid.HeatExchangers; -model WetCoiEffectivenessNTU +model WetCoilEffectivenessNTU "Heat exchanger with effectiveness - NTU relation and with moisture condensation" extends Buildings.Fluid.Interfaces.PartialFourPortInterface( redeclare replaceable package Medium2 = Buildings.Media.Air); @@ -506,4 +506,4 @@ equation "), __Dymola_Commands(file= "Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffNtuMassFlowFuzzy.mos")); -end WetCoiEffectivenessNTU; +end WetCoilEffectivenessNTU; diff --git a/Buildings/Fluid/HeatExchangers/package.order b/Buildings/Fluid/HeatExchangers/package.order index 05755256680..6ecb01ef70a 100644 --- a/Buildings/Fluid/HeatExchangers/package.order +++ b/Buildings/Fluid/HeatExchangers/package.order @@ -10,7 +10,7 @@ PrescribedOutlet SensibleCooler_T WetCoilCounterFlow WetCoilDiscretized -WetCoiEffectivenessNTU +WetCoilEffectivenessNTU ActiveBeams CoolingTowers DXCoils From 9d5300054cbbb4fd9db28db25fa12f6833ad7f3f Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Thu, 11 Feb 2021 16:46:36 -0800 Subject: [PATCH 11/69] Update mos and results --- ...rs_Examples_WetCoilCounterFlowMassFlow.txt | 12 +++++----- ...rs_Examples_WetCoilCounterFlowPControl.txt | 12 +++++----- ...ngers_Examples_WetCoilEffectivenessNTU.txt | 13 +++++++++++ ...ers_Validation_WetCoilEffectivenessNTU.txt | 23 +++++++++++++++++++ .../Validation/WetCoilEffectivenessNTU.mos | 2 +- ...ngers.Examples.WetCoilEffectivenessNTU.mos | 7 ++++++ ...ers.Validation.WetCoilEffectivenessNTU.mos | 12 ++++++++++ 7 files changed, 68 insertions(+), 13 deletions(-) create mode 100644 Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilEffectivenessNTU.txt create mode 100644 Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt create mode 100644 Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Examples.WetCoilEffectivenessNTU.mos create mode 100644 Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilCounterFlowMassFlow.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilCounterFlowMassFlow.txt index 8756b693e9b..53e81d1d5a3 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilCounterFlowMassFlow.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilCounterFlowMassFlow.txt @@ -1,13 +1,13 @@ -last-generated=2019-08-15 +last-generated=2021-02-11 statistics-simulation= { "linear": "0", "nonlinear": "0", - "number of continuous time states": "18", + "number of continuous time states": "122", "numerical Jacobians": "0" } -hex.QLat2_flow=[0e+00, -2.0986884765625e+03, -2.098995361328125e+03, -2.09899560546875e+03, -2.098995361328125e+03, -2.098995361328125e+03, -2.098995361328125e+03, -2.098995361328125e+03, -2.098995361328125e+03, -2.098995361328125e+03, -2.098995361328125e+03, -1.97084423828125e+03, -1.825814331054688e+03, -1.664005859375e+03, -1.4829150390625e+03, -1.279582763671875e+03, -1.050468994140625e+03, -7.912107543945312e+02, -4.959508361816406e+02, -1.815044097900391e+02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -2.005756616592602e+00, -1.835180664062487e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -8.479750752449036e-01, -2.874659061431885e+00, -3.850511789321899e+00, -4.272049427032471e+00, -4.383476257324219e+00, -4.323328495025635e+00, -4.168140411376953e+00, -3.963367938995361e+00, -3.737682342529297e+00, -3.507412195205688e+00, -4.554695606231689e+00, -5.319596290588379e+00, -5.644732475280762e+00, -5.723199367523193e+00, -5.660752296447754e+00, -5.517632961273193e+00, -5.329239368438721e+00, -5.116263866424561e+00, -4.891851425170898e+00, -4.664390563964844e+00, -5.085465431213379e+00, -5.822821140289307e+00, -6.148534774780273e+00, -6.246139049530029e+00] -hex.Q2_flow=[0e+00, -3.35724072265625e+03, -3.35776806640625e+03, -3.3577685546875e+03, -3.357768310546875e+03, -3.357768310546875e+03, -3.357768310546875e+03, -3.357768310546875e+03, -3.357768310546875e+03, -3.357768310546875e+03, -3.357768310546875e+03, -3.168929443359375e+03, -2.95691552734375e+03, -2.7232236328125e+03, -2.46500927734375e+03, -2.178970703125e+03, -1.8612109375e+03, -1.506968017578125e+03, -1.109796752929688e+03, -6.705416259765625e+02, -3.106672973632812e+02, -2.653861999511719e+02, -2.344584197998047e+02, -2.091910705566406e+02, -1.885671081542969e+02, -1.717531433105469e+02, -1.580615997314453e+02, -1.469261627197265e+02, -1.378809509277343e+02, -1.305425109863281e+02, -1.245958404541016e+02, -1.197823257446289e+02, -1.158906402587891e+02, -1.127478637695312e+02, -1.102123718261719e+02, -1.081687622070312e+02, -1.065231857299805e+02, -1.051992874145508e+02, -1.041350326538086e+02, -1.032801208496094e+02, -1.02593864440918e+02, -1.020433654785156e+02, -1.016021270751953e+02, -1.012488555908203e+02, -1.009661026000977e+02, -1.007395858764648e+02, -1.005583114624023e+02, -1.004132385253906e+02, -1.002971115112305e+02, -1.002042846679688e+02, -1.00129997253418e+02, -9.628464508056641e+01, -9.185540008544922e+01, -8.459843444824219e+01, -7.109683227539055e+01, -4.790125274658208e+01, -6.07230186462404e+01, -9.319252014160156e+01, -1.063787994384766e+02, -1.117153625488281e+02, -1.137839889526367e+02, -1.072048416137695e+02, -1.029885635375977e+02, -9.891802978515625e+01, -9.474623870849609e+01, -9.014743804931641e+01, -8.463392639160156e+01, -7.740571594238281e+01, -6.6995849609375e+01, -5.004901885986328e+01, -3.208780288696289e+01, -2.829523277282715e+01, -2.501420021057129e+01, -2.276480865478516e+01, -2.1202392578125e+01, -2.008987426757812e+01, -1.927111625671387e+01, -1.936482429504395e+01, -2.010286331176758e+01, -2.035625267028809e+01, -2.034379196166992e+01, -2.014639282226562e+01, -1.982208633422852e+01, -1.941048812866211e+01, -1.894001579284668e+01, -1.843130683898926e+01, -1.789902877807617e+01, -1.826605796813965e+01, -1.835028076171875e+01, -1.82096004486084e+01, -1.791963958740234e+01, -1.752897071838379e+01, -1.707181739807129e+01, -1.657237243652344e+01, -1.604782676696777e+01, -1.551060009002686e+01, -1.496734428405762e+01, -1.493306541442871e+01, -1.500292301177979e+01, -1.487347602844238e+01, -1.462802505493164e+01] time=[0e+00, 3.6e+03] -hex.port_b2.m_flow=[-1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.120000034570694e-01, -8.399999886751175e-02, -5.60000017285347e-02, -2.800000086426717e-02, 4.255373436036178e-16, 2.800000086426753e-02, 5.60000017285347e-02, 8.399999886751175e-02, 1.120000034570694e-01, 1.400000005960464e-01, 1.260000020265579e-01, 1.120000034570694e-01, 9.799999743700027e-02, 8.399999886751175e-02, 7.000000029802322e-02, 5.60000017285347e-02, 4.199999943375587e-02, 2.800000086426735e-02, 1.400000043213367e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -0e+00] -hex.port_a2.m_flow=[0e+00, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.120196580886841e-01, 8.401474356651306e-02, 5.600982904434204e-02, 2.800508216023427e-02, 8.734673995655225e-07, -2.799555845558661e-02, -5.598987266421318e-02, -8.398351073265076e-02, -1.119800731539726e-01, -1.39975443482399e-01, -1.260110586881638e-01, -1.120098307728767e-01, -9.800859540700912e-02, -8.400736749172211e-02, -7.000613957643509e-02, -5.600491538643837e-02, -4.200368374586105e-02, -2.800245769321918e-02, -1.402722019702196e-02, -4.358233240964182e-07, 0e+00, 0e+00, -1.43245414445034e-13, 0e+00, 0e+00, 0e+00, 2.86490828890068e-13, 0e+00, 0e+00, -1.43245414445034e-13, 2.86490828890068e-13, 0e+00, 0e+00, 0e+00, -1.43245414445034e-13, 0e+00, 0e+00, 0e+00, -1.43245414445034e-13, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +hex.Q2_flow=[0e+00, -3.110276611328125e+03, -3.58151513671875e+03, -3.61039599609375e+03, -3.61384130859375e+03, -3.61414501953125e+03, -3.614170654296875e+03, -3.61417333984375e+03, -3.61417431640625e+03, -3.614174560546875e+03, -3.614174560546875e+03, -3.385810791015625e+03, -3.153666259765625e+03, -2.900748046875e+03, -2.621957763671875e+03, -2.313746826171875e+03, -1.972105102539062e+03, -1.592129516601562e+03, -1.169521728515625e+03, -7.009871826171875e+02, -3.116614074707031e+02, -2.781609497070312e+02, -2.459864349365234e+02, -2.192055816650391e+02, -1.973345336914062e+02, -1.794876251220703e+02, -1.649358825683594e+02, -1.53082290649414e+02, -1.434377136230468e+02, -1.356002197265625e+02, -1.292404937744141e+02, -1.240881500244141e+02, -1.199218215942383e+02, -1.165603103637695e+02, -1.138550338745117e+02, -1.116838150024414e+02, -1.099468460083008e+02, -1.085623779296875e+02, -1.074634780883789e+02, -1.065951995849609e+02, -1.059123992919922e+02, -1.053780746459961e+02, -1.049619903564453e+02, -1.046394958496094e+02, -1.043906326293945e+02, -1.041992797851562e+02, -1.040525741577148e+02, -1.03940299987793e+02, -1.038544692993164e+02, -1.037888412475586e+02, -1.037386093139648e+02, -1.023245544433594e+02, -9.930433654785156e+01, -9.452988433837891e+01, -8.655982971191398e+01, -6.604895019531257e+01, -8.561934661865241e+01, -9.146358489990234e+01, -9.256145477294922e+01, -1.016159896850586e+02, -1.106873016357422e+02, -1.086308898925781e+02, -1.054670257568359e+02, -1.023225173950195e+02, -9.912492370605469e+01, -9.567884063720703e+01, -9.170217132568359e+01, -8.66962890625e+01, -7.955205535888672e+01, -6.640378570556641e+01, -4.904168701171875e+01, -5.117843246459961e+01, -5.297861862182617e+01, -5.453164672851562e+01, -5.58683967590332e+01, -5.701535797119141e+01, -5.805288696289062e+01, -5.898267364501953e+01, -5.979486465454102e+01, -6.053921890258789e+01, -6.11611442565918e+01, -6.172134017944336e+01, -6.219583129882812e+01, -6.256732177734375e+01, -6.29022331237793e+01, -6.315346145629883e+01, -6.331136322021484e+01, -6.343533706665039e+01, -6.348294830322266e+01, -6.34527702331543e+01, -6.338367462158203e+01, -6.326083755493164e+01, -6.307263565063477e+01, -6.283753967285156e+01, -6.258300399780273e+01, -6.227473831176758e+01, -6.191384124755859e+01, -6.156047821044922e+01, -6.117024230957031e+01, -6.074472045898438e+01, -6.030487060546875e+01] +hex.QLat2_flow=[0e+00, -1.770729370117188e+03, -2.23048828125e+03, -2.255543701171875e+03, -2.258554443359375e+03, -2.25882080078125e+03, -2.25884326171875e+03, -2.258845703125e+03, -2.258846435546875e+03, -2.2588466796875e+03, -2.258846923828125e+03, -2.10141015625e+03, -1.942261108398438e+03, -1.76729443359375e+03, -1.572004150390625e+03, -1.353193969726562e+03, -1.107199951171875e+03, -8.295072021484375e+02, -5.210032958984375e+02, -2.117844390869141e+02, -2.040449905395508e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -1.390436887741089e+00, -1.132792854309092e+01, -2.745977401733402e+01, -3.441253900527845e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -1.048616021871567e-01, -2.927575707435608e-01, -4.984182417392731e-01, -8.193886280059814e-01, -1.105189919471741e+00, -1.459927558898926e+00, -1.832384824752808e+00, -2.164078712463379e+00, -2.572776317596436e+00, -2.9644455909729e+00, -3.311381578445435e+00, -3.71753716468811e+00, -4.104832172393799e+00, -4.449301242828369e+00, -4.821104526519775e+00, -5.196287631988525e+00, -5.529552459716797e+00, -5.849367618560791e+00, -6.209599494934082e+00, -6.527639389038086e+00, -6.805487155914307e+00, -7.127359867095947e+00, -7.42711353302002e+00, -7.689456462860107e+00, -7.944731712341309e+00] +hex.port_a2.m_flow=[0e+00, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.121477708220482e-01, 8.411082625389099e-02, 5.607384815812111e-02, 2.803885564208013e-02, 6.551937985755592e-06, -2.79632508754732e-02, -5.592650175094604e-02, -8.388975262641907e-02, -1.118530035018921e-01, -1.398162543773651e-01, -1.260830163955688e-01, -1.120737865567207e-01, -9.806456416845322e-02, -8.40553417801857e-02, -7.004611939191818e-02, -5.603689327836037e-02, -4.202767089009285e-02, -2.801833488047123e-02, -1.401256117969751e-02, -3.578618816391099e-06, 0e+00, 0e+00, 0e+00, 0e+00, 2.86490828890068e-13, 0e+00, 2.86490828890068e-13, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +hex.port_b2.m_flow=[-1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.120000034570694e-01, -8.399999886751175e-02, -5.60000017285347e-02, -2.800000086426717e-02, 4.255494006912755e-16, 2.800000086426753e-02, 5.60000017285347e-02, 8.399999886751175e-02, 1.120000034570694e-01, 1.400000005960464e-01, 1.260000020265579e-01, 1.120000034570694e-01, 9.799999743700027e-02, 8.399999886751175e-02, 7.000000029802322e-02, 5.60000017285347e-02, 4.199999943375587e-02, 2.800000086426735e-02, 1.400000043213367e-02, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00] diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilCounterFlowPControl.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilCounterFlowPControl.txt index 2b999be8b15..a0b746a27b9 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilCounterFlowPControl.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilCounterFlowPControl.txt @@ -1,4 +1,4 @@ -last-generated=2019-08-15 +last-generated=2021-02-11 statistics-initialization= { "nonlinear": "1", @@ -11,11 +11,11 @@ statistics-simulation= "number of continuous time states": "21", "numerical Jacobians": "0" } -hex.Q1_flow=[0e+00, 2.75704052734375e+03, 4.371005859375e+03, 4.677375e+03, 4.7174775390625e+03, 4.722662109375e+03, 4.72329736328125e+03, 4.7233720703125e+03, 4.72338134765625e+03, 4.6608818359375e+03, 4.5526396484375e+03, 4.44387939453125e+03, 4.3345947265625e+03, 4.22479052734375e+03, 4.114474609375e+03, 4.003642333984375e+03, 3.89230224609375e+03, 3.25621826171875e+03, 1.538723022460938e+03, 1.581404418945312e+03, 1.509588745117188e+03, 1.4076337890625e+03, 1.347940551757812e+03, 1.303876708984375e+03, 1.269434326171875e+03, 1.242593505859375e+03, 1.221019775390625e+03, 1.203020751953125e+03, 1.187399536132812e+03, 1.173252685546875e+03, 1.1598779296875e+03, 1.146697387695312e+03, 1.13321728515625e+03, 1.118972534179688e+03, 1.136582763671875e+03, 1.315557373046875e+03, 1.480904052734375e+03, 1.4316630859375e+03, 1.320226440429688e+03, 1.201593505859375e+03, 1.089307495117188e+03, 9.765219116210938e+02, 8.63369140625e+02, 7.528099365234375e+02, 6.526831665039062e+02, 5.573162231445312e+02, 4.817641296386719e+02, 4.253013305664062e+02, 3.693289184570312e+02, 3.133591918945312e+02, 2.5739013671875e+02, 2.014207305908203e+02, 1.454513702392578e+02, 8.948200988769531e+01, 3.351264572143519e+01, -2.245671463012731e+01, -7.842607879638707e+01, -1.343954467773438e+02, -1.903648071289062e+02, -2.463341674804688e+02, -3.023035278320312e+02, -3.582728881835938e+02, -4.142422485351562e+02, -4.702116088867188e+02, -5.222802124023438e+02, -5.182739868164062e+02, -5.18235595703125e+02, -5.182348022460938e+02, -5.182348022460938e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02] -hex.QLat2_flow=[0e+00, -1.601435302734375e+03, -2.71292431640625e+03, -2.933536865234375e+03, -2.9627333984375e+03, -2.96652734375e+03, -2.966994384765625e+03, -2.9670498046875e+03, -2.967056640625e+03, -2.929595947265625e+03, -2.85983447265625e+03, -2.789140625e+03, -2.717630126953125e+03, -2.6453076171875e+03, -2.572180908203125e+03, -2.49824853515625e+03, -2.423517578125e+03, -2.034744140625e+03, -7.645452880859375e+02, -7.779283447265625e+02, -7.315797119140625e+02, -6.561759643554688e+02, -6.114046630859375e+02, -5.786016235351562e+02, -5.528685913085938e+02, -5.327352294921875e+02, -5.164995727539062e+02, -5.029054260253906e+02, -4.910648193359374e+02, -4.803065490722656e+02, -4.701095886230469e+02, -4.600438232421875e+02, -4.497421569824219e+02, -4.388587951660156e+02, -4.478519592285156e+02, -5.72460205078125e+02, -7.019336547851562e+02, -6.691677856445312e+02, -5.86481689453125e+02, -4.99120849609375e+02, -4.1588232421875e+02, -3.321526184082031e+02, -2.478406219482422e+02, -1.675713348388672e+02, -9.693004608154297e+01, -3.401499938964844e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -hex.Q2_flow=[0e+00, -2.711677734375e+03, -4.32728759765625e+03, -4.6704111328125e+03, -4.7165322265625e+03, -4.7225419921875e+03, -4.7232822265625e+03, -4.7233701171875e+03, -4.723380859375e+03, -4.665443359375e+03, -4.5573935546875e+03, -4.448595703125e+03, -4.3392724609375e+03, -4.2294296875e+03, -4.1190751953125e+03, -4.008205322265625e+03, -3.8968271484375e+03, -3.336771240234375e+03, -1.559021362304688e+03, -1.57912060546875e+03, -1.513955322265625e+03, -1.410639282226562e+03, -1.349769165039062e+03, -1.305242919921875e+03, -1.270441040039062e+03, -1.243330932617188e+03, -1.221569458007812e+03, -1.203438598632812e+03, -1.187725952148438e+03, -1.173517456054688e+03, -1.16010498046875e+03, -1.146905639648438e+03, -1.133423095703125e+03, -1.119191650390625e+03, -1.133146118164062e+03, -1.306363159179688e+03, -1.477995483398438e+03, -1.434303588867188e+03, -1.323831787109375e+03, -1.205814819335938e+03, -1.093282104492188e+03, -9.804701538085938e+02, -8.672904663085938e+02, -7.573262939453125e+02, -6.572124633789062e+02, -5.62905029296875e+02, -4.89117431640625e+02, -4.331760864257812e+02, -3.77206787109375e+02, -3.212373046875e+02, -2.652679748535156e+02, -2.092985992431641e+02, -1.533292388916016e+02, -9.735987091064453e+01, -4.139051055908168e+01, 1.457884979248082e+01, 7.054821014404332e+01, 1.265175704956055e+02, 1.824869384765625e+02, 2.38456298828125e+02, 2.944256591796875e+02, 3.5039501953125e+02, 4.063643798828125e+02, 4.62333740234375e+02, 5.165213012695312e+02, 5.18233642578125e+02, 5.18235595703125e+02, 5.1823486328125e+02, 5.182348022460938e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02] time=[0e+00, 3.6e+03] +hex.Q1_flow=[0e+00, 2.757049072265625e+03, 4.3709970703125e+03, 4.67737548828125e+03, 4.71747705078125e+03, 4.722654296875e+03, 4.72329541015625e+03, 4.72337158203125e+03, 4.72338037109375e+03, 4.6608818359375e+03, 4.5526396484375e+03, 4.44387939453125e+03, 4.3345947265625e+03, 4.22479052734375e+03, 4.114474609375e+03, 4.003642333984375e+03, 3.89230224609375e+03, 3.25621826171875e+03, 1.53875439453125e+03, 1.581388061523438e+03, 1.50960107421875e+03, 1.407634887695312e+03, 1.347941040039062e+03, 1.303877685546875e+03, 1.269434936523438e+03, 1.242593139648438e+03, 1.221021118164062e+03, 1.2030205078125e+03, 1.187399780273438e+03, 1.173253051757812e+03, 1.159877685546875e+03, 1.146697998046875e+03, 1.133216796875e+03, 1.118973510742188e+03, 1.136584228515625e+03, 1.315557983398438e+03, 1.480896362304688e+03, 1.431656860351562e+03, 1.320226318359375e+03, 1.201511474609375e+03, 1.08930615234375e+03, 9.765215454101562e+02, 8.6336962890625e+02, 7.52765380859375e+02, 6.5268408203125e+02, 5.57281494140625e+02, 4.817546081542969e+02, 4.253046264648438e+02, 3.693291931152344e+02, 3.133594665527344e+02, 2.573900451660156e+02, 2.014207305908203e+02, 1.454513702392578e+02, 8.948200988769531e+01, 3.351264572143519e+01, -2.245671463012731e+01, -7.842607879638707e+01, -1.343954467773438e+02, -1.903648071289062e+02, -2.463341674804688e+02, -3.023035278320312e+02, -3.582728881835938e+02, -4.142422485351562e+02, -4.702116088867188e+02, -5.222802124023438e+02, -5.182739868164062e+02, -5.18235595703125e+02, -5.182348022460938e+02, -5.182348022460938e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02] +hex.Q2_flow=[0e+00, -2.71168505859375e+03, -4.3272822265625e+03, -4.670412109375e+03, -4.71653076171875e+03, -4.72253271484375e+03, -4.7232802734375e+03, -4.72336962890625e+03, -4.7233798828125e+03, -4.665443359375e+03, -4.5573935546875e+03, -4.448595703125e+03, -4.3392724609375e+03, -4.2294296875e+03, -4.1190751953125e+03, -4.008205322265625e+03, -3.8968271484375e+03, -3.336771240234375e+03, -1.55897998046875e+03, -1.57910498046875e+03, -1.513967529296875e+03, -1.410640625e+03, -1.349769897460938e+03, -1.30524365234375e+03, -1.270441772460938e+03, -1.24333056640625e+03, -1.221570922851562e+03, -1.2034384765625e+03, -1.187725952148438e+03, -1.173517944335938e+03, -1.160104614257812e+03, -1.146906127929688e+03, -1.133422607421875e+03, -1.1191923828125e+03, -1.133147705078125e+03, -1.30636376953125e+03, -1.47798779296875e+03, -1.434297241210938e+03, -1.323831787109375e+03, -1.205845703125e+03, -1.093279663085938e+03, -9.804696655273438e+02, -8.67291015625e+02, -7.573155517578125e+02, -6.572130737304688e+02, -5.628729858398438e+02, -4.8911181640625e+02, -4.33176513671875e+02, -3.772066955566406e+02, -3.212373352050781e+02, -2.652679443359375e+02, -2.092985992431641e+02, -1.533292388916016e+02, -9.735987091064453e+01, -4.139051055908168e+01, 1.457884979248082e+01, 7.054821014404332e+01, 1.265175704956055e+02, 1.824869384765625e+02, 2.38456298828125e+02, 2.944256591796875e+02, 3.5039501953125e+02, 4.063643798828125e+02, 4.62333740234375e+02, 5.165213012695312e+02, 5.18233642578125e+02, 5.18235595703125e+02, 5.1823486328125e+02, 5.182348022460938e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02] +hex.QLat2_flow=[0e+00, -1.601441528320312e+03, -2.71292041015625e+03, -2.933536865234375e+03, -2.962733154296875e+03, -2.966521728515625e+03, -2.9669931640625e+03, -2.96704931640625e+03, -2.967055908203125e+03, -2.929595947265625e+03, -2.85983447265625e+03, -2.789140625e+03, -2.717630126953125e+03, -2.6453076171875e+03, -2.572180908203125e+03, -2.49824853515625e+03, -2.423517578125e+03, -2.034744140625e+03, -7.64484130859375e+02, -7.779137573242188e+02, -7.315879516601562e+02, -6.561768188476562e+02, -6.114049682617188e+02, -5.7860205078125e+02, -5.52869140625e+02, -5.327350463867188e+02, -5.165005493164062e+02, -5.029054260253906e+02, -4.910648193359374e+02, -4.803068542480469e+02, -4.701093139648438e+02, -4.600442810058594e+02, -4.497417297363281e+02, -4.388592529296875e+02, -4.478530883789062e+02, -5.72460693359375e+02, -7.019293212890625e+02, -6.6916357421875e+02, -5.86481689453125e+02, -4.990892639160156e+02, -4.158782653808594e+02, -3.321520385742188e+02, -2.478411712646484e+02, -1.675281982421875e+02, -9.692990875244141e+01, -3.397085952758789e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +hex.m1_flow=[1.000000014901161e-01, 4.499713331460953e-02, 8.75592827796936e-02, 9.819523245096207e-02, 9.976439923048019e-02, 9.997084736824036e-02, 9.999652206897736e-02, 9.999959170818329e-02, 9.999989718198776e-02, 9.999998658895493e-02, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 7.787376642227173e-02, 2.821885421872139e-02, 3.229114040732384e-02, 3.142013400793076e-02, 2.997683919966221e-02, 2.969341725111008e-02, 2.980508096516132e-02, 3.021165728569031e-02, 3.089253604412079e-02, 3.181065618991852e-02, 3.294619172811509e-02, 3.429338708519936e-02, 3.585577756166458e-02, 3.764564171433449e-02, 3.968346118927002e-02, 4.199850186705589e-02, 4.462975636124611e-02, 4.980791360139847e-02, 6.852226704359055e-02, 9.176640212535858e-02, 9.871965646743774e-02, 9.982803463935852e-02, 9.997829049825668e-02, 9.99973937869072e-02, 9.999967366456985e-02, 9.999998658895493e-02, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01] hex.m2_flow=[1.71464279294014e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01] -hex.m1_flow=[1.000000014901161e-01, 4.499713331460953e-02, 8.755931258201599e-02, 9.819523245096207e-02, 9.976446628570557e-02, 9.997116029262543e-02, 9.999649971723557e-02, 9.999953955411911e-02, 9.999993443489075e-02, 9.999999403953552e-02, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 7.787376642227173e-02, 2.821899019181728e-02, 3.229160606861115e-02, 3.14197726547718e-02, 2.997682429850101e-02, 2.969340980052948e-02, 2.980503626167774e-02, 3.021164610981941e-02, 3.089254908263683e-02, 3.181061521172523e-02, 3.294620290398598e-02, 3.429337590932847e-02, 3.585576638579369e-02, 3.764564916491508e-02, 3.968343511223793e-02, 4.199852049350739e-02, 4.462969303131104e-02, 4.98078241944313e-02, 6.852222234010696e-02, 9.176713973283768e-02, 9.872009605169296e-02, 9.982802718877792e-02, 9.997863322496414e-02, 9.999746084213257e-02, 9.999970346689224e-02, 9.999999403953552e-02, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01] -con.u_m=[2.931499938964844e+02, 2.958224792480469e+02, 2.924381713867188e+02, 2.912311096191406e+02, 2.910527648925781e+02, 2.910289916992188e+02, 2.910260314941406e+02, 2.910256652832031e+02, 2.910256042480469e+02, 2.911280212402344e+02, 2.913914489746094e+02, 2.9165625e+02, 2.919188842773438e+02, 2.921793518066406e+02, 2.924376525878906e+02, 2.926937561035156e+02, 2.929476928710938e+02, 2.935419921875e+02, 2.974464721679688e+02, 2.976298522949219e+02, 2.976971435546875e+02, 2.978981018066406e+02, 2.980192565917969e+02, 2.981035766601562e+02, 2.98168701171875e+02, 2.9821875e+02, 2.982581481933594e+02, 2.982902526855469e+02, 2.983174438476562e+02, 2.983414916992188e+02, 2.983637390136719e+02, 2.983852233886719e+02, 2.984068603515625e+02, 2.984295043945312e+02, 2.984250793457031e+02, 2.981495056152344e+02, 2.97809326171875e+02, 2.978304138183594e+02, 2.980099792480469e+02, 2.982133178710938e+02, 2.984141540527344e+02, 2.986123657226562e+02, 2.988089599609375e+02, 2.990046997070312e+02, 2.992059936523438e+02, 2.994113464355469e+02, 2.996726379394531e+02, 3.000566711425781e+02, 3.004470520019531e+02, 3.008374328613281e+02, 3.012278442382812e+02, 3.016182250976562e+02, 3.020086364746094e+02, 3.023990173339844e+02, 3.027894287109375e+02, 3.031798400878906e+02, 3.035702209472656e+02, 3.039606323242188e+02, 3.043510131835938e+02, 3.047414245605469e+02, 3.051318054199219e+02, 3.05522216796875e+02, 3.0591259765625e+02, 3.063030090332031e+02, 3.066911010742188e+02, 3.067642822265625e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02] con.u_s=[2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.975499877929688e+02, 2.966499938964844e+02, 2.9575e+02, 2.948500061035156e+02, 2.939500122070312e+02, 2.930499877929688e+02, 2.921499938964844e+02, 2.9125e+02, 2.903500061035156e+02, 2.894500122070312e+02, 2.885499877929688e+02, 2.876499938964844e+02, 2.8675e+02, 2.858500061035156e+02, 2.849500122070312e+02, 2.840499877929688e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02] +con.u_m=[2.931499938964844e+02, 2.958224792480469e+02, 2.924381408691406e+02, 2.912311096191406e+02, 2.910527648925781e+02, 2.910290222167969e+02, 2.910260314941406e+02, 2.910256652832031e+02, 2.91025634765625e+02, 2.911280212402344e+02, 2.913914489746094e+02, 2.9165625e+02, 2.919188842773438e+02, 2.921793518066406e+02, 2.924376525878906e+02, 2.926937561035156e+02, 2.929476928710938e+02, 2.935419921875e+02, 2.974464721679688e+02, 2.976298828125e+02, 2.976971130371094e+02, 2.978981018066406e+02, 2.980192565917969e+02, 2.981035766601562e+02, 2.98168701171875e+02, 2.9821875e+02, 2.982581481933594e+02, 2.982902526855469e+02, 2.983174438476562e+02, 2.983414916992188e+02, 2.983637390136719e+02, 2.983852233886719e+02, 2.984068603515625e+02, 2.984295043945312e+02, 2.984250793457031e+02, 2.981495056152344e+02, 2.978093566894531e+02, 2.978304138183594e+02, 2.980099792480469e+02, 2.982133178710938e+02, 2.984141845703125e+02, 2.986123657226562e+02, 2.988089599609375e+02, 2.990047302246094e+02, 2.992059936523438e+02, 2.994114685058594e+02, 2.996727294921875e+02, 3.000567321777344e+02, 3.004470520019531e+02, 3.008374328613281e+02, 3.012278442382812e+02, 3.016182250976562e+02, 3.020086364746094e+02, 3.023990173339844e+02, 3.027894287109375e+02, 3.031798400878906e+02, 3.035702209472656e+02, 3.039606323242188e+02, 3.043510131835938e+02, 3.047414245605469e+02, 3.051318054199219e+02, 3.05522216796875e+02, 3.0591259765625e+02, 3.063030090332031e+02, 3.066911010742188e+02, 3.067642822265625e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02] diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilEffectivenessNTU.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilEffectivenessNTU.txt new file mode 100644 index 00000000000..9e93304c4f0 --- /dev/null +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilEffectivenessNTU.txt @@ -0,0 +1,13 @@ +last-generated=2021-02-11 +statistics-simulation= +{ + "linear": " ", + "nonlinear": "1, 1", + "number of continuous time states": "2", + "numerical Jacobians": "0" +} +time=[0e+00, 3.6e+03] +hex.Q2_flow=[-4.022505615234375e+03, -4.0076162109375e+03, -3.99414208984375e+03, -3.981961181640625e+03, -3.970961181640625e+03, -3.961038818359375e+03, -3.952092041015625e+03, -3.944025390625e+03, -3.936761962890625e+03, -3.93021728515625e+03, -3.924324462890625e+03, -3.728418701171875e+03, -3.509232177734375e+03, -3.262787353515625e+03, -2.9841943359375e+03, -2.6673583984375e+03, -2.304554443359375e+03, -1.885688842773438e+03, -1.396859619140625e+03, -7.950651245117188e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.038280792236328e+02, -1.036799240112305e+02, -1.015619049072266e+02, -9.358493041992185e+01, -2.55761919005809e-12, -1.020483016967774e+02, -1.033460006713867e+02, -1.036785202026367e+02, -1.03827018737793e+02, -1.039108505249023e+02, -1.038740539550781e+02, -1.03827018737793e+02, -1.03764762878418e+02, -1.036785202026367e+02, -1.035513381958008e+02, -1.033460006713867e+02, -1.029638900756836e+02, -1.020483016967773e+02, -9.817852783203125e+01, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00] +hex.QLat2_flow=[-2.544043701171875e+03, -2.534263916015625e+03, -2.525406494140625e+03, -2.51739306640625e+03, -2.51015185546875e+03, -2.5036162109375e+03, -2.497719970703125e+03, -2.4924013671875e+03, -2.487610107421875e+03, -2.483291259765625e+03, -2.4794013671875e+03, -2.34935205078125e+03, -2.202218994140625e+03, -2.034814086914062e+03, -1.843166137695312e+03, -1.622259521484375e+03, -1.365657470703125e+03, -1.064861450195312e+03, -7.08005126953125e+02, -2.370467681884766e+02, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -2.549400037920748e-13, -8.407790785948637e-45, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00] +hex.port_a1.m_flow=[1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 9.009999781847e-02, 8.020000159740448e-02, 7.029999792575836e-02, 6.040000170469283e-02, 5.050000175833702e-02, 4.06000018119812e-02, 3.070000000298023e-02, 2.080000005662441e-02, 1.090000011026859e-02, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03] +hex.port_a2.m_flow=[1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.120000034570694e-01, 8.399999886751175e-02, 5.60000017285347e-02, 2.800000086426717e-02, -7.140166331002833e-15, -2.800000086426753e-02, -5.60000017285347e-02, -8.399999886751175e-02, -1.120000034570694e-01, -1.400000005960464e-01, -1.260000020265579e-01, -1.120000034570694e-01, -9.799999743700027e-02, -8.399999886751175e-02, -7.000000029802322e-02, -5.60000017285347e-02, -4.199999943375587e-02, -2.800000086426735e-02, -1.400000043213367e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt new file mode 100644 index 00000000000..00f1e20b42e --- /dev/null +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt @@ -0,0 +1,23 @@ +last-generated=2021-02-11 +statistics-initialization= +{ + "nonlinear": "120", + "numerical Jacobians": "0" +} +statistics-simulation= +{ + "linear": " ", + "nonlinear": "1, 1, 1, 1", + "number of continuous time states": "126", + "numerical Jacobians": "0" +} +time=[0e+00, 1e+02] +hexWetNTU.Q1_flow=[4.37056796875e+04, 4.370878515625e+04, 4.3711890625e+04, 4.37149921875e+04, 4.371809765625e+04, 4.372119921875e+04, 4.37243046875e+04, 4.372740625e+04, 4.37305078125e+04, 4.3733609375e+04, 4.37367109375e+04, 4.373980859375e+04, 4.374291015625e+04, 4.374601171875e+04, 4.3749109375e+04, 4.375220703125e+04, 4.375530859375e+04, 4.375840625e+04, 4.376150390625e+04, 4.37646015625e+04, 4.376769921875e+04, 4.377079296875e+04, 4.3773890625e+04, 4.3776859375e+04, 4.3778203125e+04, 4.377459375e+04, 4.376528515625e+04, 4.37565546875e+04, 4.376233203125e+04, 4.38018359375e+04, 4.3896015625e+04, 4.406403125e+04, 4.432055078125e+04, 4.46741640625e+04, 4.512680859375e+04, 4.567404296875e+04, 4.630587109375e+04, 4.700792578125e+04, 4.776289453125e+04, 4.855203515625e+04, 4.93567265625e+04, 5.0159953125e+04, 5.09475234375e+04, 5.170898828125e+04, 5.243811328125e+04, 5.313291015625e+04, 5.379522265625e+04, 5.442989453125e+04, 5.504365234375e+04, 5.56437265625e+04, 5.623644921875e+04, 5.682620703125e+04, 5.7415171875e+04, 5.800399609375e+04, 5.85927578125e+04, 5.918146875000001e+04, 5.977012109375001e+04, 6.035871484374999e+04, 6.094724999999999e+04, 6.15357265625e+04, 6.2124140625e+04, 6.271249609375e+04, 6.330078515625e+04, 6.388901171875e+04, 6.4477171875e+04, 6.506526953125e+04, 6.5653296875e+04, 6.62412578125e+04, 6.68291484375e+04, 6.741696875e+04, 6.800471875e+04, 6.85923984375e+04, 6.918e+04, 6.976753125e+04, 7.0354984375e+04, 7.09423671875e+04, 7.1529671875e+04, 7.21168984375e+04, 7.2704046875e+04, 7.3291109375e+04, 7.387809375e+04, 7.4465e+04, 7.50518125e+04, 7.5638546875e+04, 7.62251953125e+04, 7.68117578125e+04, 7.7398234375e+04, 7.7984625e+04, 7.85709296875e+04, 7.9157140625e+04, 7.97432578125e+04, 8.03292890625e+04, 8.091521875e+04, 8.15010625e+04, 8.20868046875e+04, 8.2672453125e+04, 8.3258e+04, 8.3843453125e+04, 8.44288046875e+04, 8.50140546875e+04, 8.5599203125e+04] +hexDis.Q1_flow=[4.4666953125e+04, 4.466725390625e+04, 4.466858203125e+04, 4.467100390625e+04, 4.46739765625e+04, 4.467706640625e+04, 4.4680171875e+04, 4.468328515625e+04, 4.46863984375e+04, 4.468951171875e+04, 4.469262109375e+04, 4.4695734375e+04, 4.469884765625e+04, 4.470195703125e+04, 4.470506640625e+04, 4.47081796875e+04, 4.47112890625e+04, 4.47143984375e+04, 4.471750390625e+04, 4.472061328125e+04, 4.472372265625e+04, 4.4726828125e+04, 4.47299375e+04, 4.473962109375e+04, 4.478994921875e+04, 4.49309453125e+04, 4.51363671875e+04, 4.53930703125e+04, 4.56890703125e+04, 4.601998828125e+04, 4.63766875e+04, 4.675676953125e+04, 4.715906640625e+04, 4.7578296875e+04, 4.801227734375e+04, 4.8460671875e+04, 4.89236953125e+04, 4.93978671875e+04, 4.988003125e+04, 5.036958984375e+04, 5.08743359375e+04, 5.138170703125e+04, 5.18975625e+04, 5.24225546875e+04, 5.2948265625e+04, 5.348762109375e+04, 5.402362890625e+04, 5.457392578125e+04, 5.512123828125e+04, 5.56794296875e+04, 5.623846875e+04, 5.67993984375e+04, 5.73712109375e+04, 5.79363828125e+04, 5.851594921875e+04, 5.909400390625001e+04, 5.966661328125001e+04, 6.023606249999999e+04, 6.080408984374999e+04, 6.13713125e+04, 6.1937921875e+04, 6.250390625e+04, 6.306925390625e+04, 6.363396484375e+04, 6.419801953125e+04, 6.476143359375e+04, 6.5324203125e+04, 6.5886328125e+04, 6.64477890625e+04, 6.7008609375e+04, 6.75687734375e+04, 6.8128296875e+04, 6.8687171875e+04, 6.92453828125e+04, 6.9802921875e+04, 7.03598125e+04, 7.0916046875e+04, 7.1471625e+04, 7.20265546875e+04, 7.25808359375e+04, 7.3134453125e+04, 7.3687421875e+04, 7.42397421875e+04, 7.47913984375e+04, 7.53424140625e+04, 7.5892734375e+04, 7.64423671875e+04, 7.69913359375e+04, 7.75396484375e+04, 7.8087296875e+04, 7.86342734375e+04, 7.918059375e+04, 7.972625e+04, 8.027125e+04, 8.0815578125e+04, 8.135925e+04, 8.190225e+04, 8.24446171875e+04, 8.29863046875e+04, 8.352728125e+04, 8.40672421875e+04] +hexWetNTU.sta_b2.T=[2.834467163085938e+02, 2.83447509765625e+02, 2.834483032226562e+02, 2.834490966796875e+02, 2.834498901367188e+02, 2.8345068359375e+02, 2.834514770507812e+02, 2.834522399902344e+02, 2.834530334472656e+02, 2.834538269042969e+02, 2.834546203613281e+02, 2.834554138183594e+02, 2.834562072753906e+02, 2.834570007324219e+02, 2.834577941894531e+02, 2.834585876464844e+02, 2.834593811035156e+02, 2.834601745605469e+02, 2.834609680175781e+02, 2.834617614746094e+02, 2.834625549316406e+02, 2.834633483886719e+02, 2.834641418457031e+02, 2.834649658203125e+02, 2.834664001464844e+02, 2.834696960449219e+02, 2.834751281738281e+02, 2.834803466796875e+02, 2.834862976074219e+02, 2.835041198730469e+02, 2.835307922363281e+02, 2.835674438476562e+02, 2.836146240234375e+02, 2.836721801757812e+02, 2.837392883300781e+02, 2.838145751953125e+02, 2.838963012695312e+02, 2.839824829101562e+02, 2.840709533691406e+02, 2.8415966796875e+02, 2.842467346191406e+02, 2.8433056640625e+02, 2.844099731445312e+02, 2.844843139648438e+02, 2.845532836914062e+02, 2.846171875e+02, 2.846765747070312e+02, 2.847322692871094e+02, 2.847853088378906e+02, 2.848366088867188e+02, 2.848869934082031e+02, 2.849369506835938e+02, 2.849867553710938e+02, 2.850364685058594e+02, 2.850861206054688e+02, 2.851356811523438e+02, 2.851851806640625e+02, 2.85234619140625e+02, 2.852839660644531e+02, 2.85333251953125e+02, 2.853824768066406e+02, 2.854316101074219e+02, 2.854806823730469e+02, 2.855296936035156e+02, 2.855786437988281e+02, 2.856275024414062e+02, 2.856763000488281e+02, 2.857250366210938e+02, 2.85773681640625e+02, 2.858222961425781e+02, 2.858708190917969e+02, 2.859192810058594e+02, 2.859676818847656e+02, 2.860159912109375e+02, 2.860642700195312e+02, 2.861124572753906e+02, 2.861605834960938e+02, 2.862086486816406e+02, 2.862566528320312e+02, 2.863045654296875e+02, 2.863524475097656e+02, 2.864002685546875e+02, 2.86447998046875e+02, 2.864956665039062e+02, 2.865432739257812e+02, 2.865908508300781e+02, 2.866383361816406e+02, 2.866857604980469e+02, 2.867331237792969e+02, 2.867804260253906e+02, 2.868276672363281e+02, 2.868748474121094e+02, 2.869219665527344e+02, 2.869690246582031e+02, 2.870160217285156e+02, 2.870629577636719e+02, 2.871098327636719e+02, 2.871566467285156e+02, 2.872033996582031e+02, 2.872500915527344e+02, 2.872967529296875e+02] +hexDis.sta_b2.T=[2.83086669921875e+02, 2.83086669921875e+02, 2.83086669921875e+02, 2.830868530273438e+02, 2.830875244140625e+02, 2.830883178710938e+02, 2.830891418457031e+02, 2.830899963378906e+02, 2.830908203125e+02, 2.830916442871094e+02, 2.830924682617188e+02, 2.830933227539062e+02, 2.830941467285156e+02, 2.83094970703125e+02, 2.830957946777344e+02, 2.830966186523438e+02, 2.830974731445312e+02, 2.830982971191406e+02, 2.8309912109375e+02, 2.830999450683594e+02, 2.831007995605469e+02, 2.831016235351562e+02, 2.831024475097656e+02, 2.831050109863281e+02, 2.831155700683594e+02, 2.831455078125e+02, 2.831873474121094e+02, 2.832371826171875e+02, 2.832922668457031e+02, 2.833505859375e+02, 2.834109802246094e+02, 2.834725952148438e+02, 2.835348205566406e+02, 2.835973510742188e+02, 2.836598510742188e+02, 2.8372216796875e+02, 2.837841796875e+02, 2.838457946777344e+02, 2.839069213867188e+02, 2.83967529296875e+02, 2.840276184082031e+02, 2.84087158203125e+02, 2.841461181640625e+02, 2.842045288085938e+02, 2.842623596191406e+02, 2.843196716308594e+02, 2.843764038085938e+02, 2.844326171875e+02, 2.8448828125e+02, 2.845434875488281e+02, 2.8459814453125e+02, 2.8465234375e+02, 2.847060546875e+02, 2.8475927734375e+02, 2.848120727539062e+02, 2.848644104003906e+02, 2.849163818359375e+02, 2.849678955078125e+02, 2.8501904296875e+02, 2.850700073242188e+02, 2.851209411621094e+02, 2.85171875e+02, 2.852228088378906e+02, 2.852737731933594e+02, 2.853246765136719e+02, 2.853756103515625e+02, 2.854265441894531e+02, 2.854774475097656e+02, 2.855283508300781e+02, 2.855792541503906e+02, 2.856301574707031e+02, 2.856810302734375e+02, 2.8573193359375e+02, 2.857828063964844e+02, 2.858336486816406e+02, 2.85884521484375e+02, 2.859353637695312e+02, 2.859862060546875e+02, 2.860370483398438e+02, 2.860878601074219e+02, 2.86138671875e+02, 2.861894836425781e+02, 2.862402954101562e+02, 2.862911071777344e+02, 2.863418884277344e+02, 2.863926696777344e+02, 2.864434204101562e+02, 2.864941711425781e+02, 2.86544921875e+02, 2.865956420898438e+02, 2.866463928222656e+02, 2.866970825195312e+02, 2.86747802734375e+02, 2.867984924316406e+02, 2.868491821289062e+02, 2.868998718261719e+02, 2.869505310058594e+02, 2.870011901855469e+02, 2.870518493652344e+02, 2.871024780273438e+02, 2.871531066894531e+02] +hexWetNTU.dryWetCalcs.dryfra=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999998807907104e-01, 9.999626874923706e-01, 9.993447065353394e-01, 9.962406158447266e-01, 9.876253604888916e-01, 9.704166054725647e-01, 9.423255920410155e-01, 9.022666215896608e-01, 8.50419819355011e-01, 7.880649566650391e-01, 7.172929048538208e-01, 6.406838893890381e-01, 5.610149502754211e-01, 4.810257852077484e-01, 4.032467603683472e-01, 3.298781216144562e-01, 2.627071738243103e-01, 2.030545026063919e-01, 1.517457067966461e-01, 1.091100871562958e-01, 7.500826567411423e-02, 4.888885468244553e-02, 2.987033128738403e-02, 1.684080995619297e-02, 8.567105047404766e-03, 3.804829670116305e-03, 1.403008820489049e-03, 3.965560172218829e-04, 7.509798888349906e-05, 7.463251677108929e-06, 2.377579164658528e-07, 7.583338956784758e-10, 6.849351086437661e-15, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +hexDis.fraDry=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 8.999999761581421e-01, 8.00000011920929e-01, 7.333333492279053e-01, 6.666666865348816e-01, 6.000000238418579e-01, 5.666666626930237e-01, 5.333333611488342e-01, 4.666666686534882e-01, 4.333333373069763e-01, 4.000000059604645e-01, 3.666666746139526e-01, 3.666666746139526e-01, 3.333333432674408e-01, 3.00000011920929e-01, 2.666666805744171e-01, 2.666666805744171e-01, 2.333333343267441e-01, 2.000000029802322e-01, 2.000000029802322e-01, 1.666666716337204e-01, 1.666666716337204e-01, 1.333333402872086e-01, 1.333333402872086e-01, 1.000000014901161e-01, 1.000000014901161e-01, 6.666667014360428e-02, 6.666667014360428e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +hexWetNTU.SHR=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.996239542961121e-01, 9.977563619613647e-01, 9.941201210021973e-01, 9.882391095161438e-01, 9.798130989074707e-01, 9.687609076499939e-01, 9.552227854728699e-01, 9.395307898521423e-01, 9.221569299697876e-01, 9.036521315574646e-01, 8.845856785774231e-01, 8.654928207397461e-01, 8.468344807624817e-01, 8.289710879325867e-01, 8.12149703502655e-01, 7.965038418769836e-01, 7.820627689361572e-01, 7.687678933143616e-01, 7.564942240715027e-01, 7.450746297836304e-01, 7.34325647354126e-01, 7.240735292434692e-01, 7.141772508621216e-01, 7.045431733131409e-01, 6.951236724853516e-01, 6.85900866985321e-01, 6.768673062324524e-01, 6.680172085762023e-01, 6.593452095985411e-01, 6.508459448814393e-01, 6.425145268440248e-01, 6.34346067905426e-01, 6.263357996940613e-01, 6.184794306755066e-01, 6.107724905014038e-01, 6.032108664512634e-01, 5.957905650138855e-01, 5.885077714920044e-01, 5.813586711883545e-01, 5.74339747428894e-01, 5.674475431442261e-01, 5.606786608695984e-01, 5.540299415588379e-01, 5.474982261657715e-01, 5.410805344581604e-01, 5.347739458084106e-01, 5.285756587982178e-01, 5.224829316139221e-01, 5.164932012557983e-01, 5.106038451194763e-01, 5.048125386238098e-01, 4.991167485713959e-01, 4.935142695903778e-01, 4.880028665065765e-01, 4.825803637504578e-01, 4.772446751594543e-01, 4.719937443733215e-01, 4.668256640434265e-01, 4.617384970188141e-01, 4.567303657531738e-01, 4.517995417118073e-01, 4.469442665576935e-01, 4.42162811756134e-01, 4.374535977840424e-01, 4.328150153160095e-01, 4.282455146312714e-01, 4.237436056137085e-01, 4.193077981472015e-01, 4.149367213249207e-01, 4.10629004240036e-01, 4.063832759857178e-01, 4.021982550621033e-01, 3.980726599693298e-01] +hexWetNTU.dryWetCalcs.w_FW=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.121166799810294e-15, 1.221358445491205e-07, 3.733820631168783e-05, 6.552886334247887e-04, 3.759396495297551e-03, 1.237465068697929e-02, 2.9583390802145e-02, 5.767439305782331e-02, 9.7733363509178e-02, 1.495801955461502e-01, 2.119350582361221e-01, 2.827070951461792e-01, 3.593161106109619e-01, 4.389850795269012e-01, 5.18974244594574e-01, 5.967532396316528e-01, 6.701219081878662e-01, 7.372928261756897e-01, 7.969455122947693e-01, 8.482542634010315e-01, 8.908898830413818e-01, 9.249917268753052e-01, 9.511111378669739e-01, 9.70129668712616e-01, 9.831591844558716e-01, 9.914329051971436e-01, 9.961951971054077e-01, 9.985969662666321e-01, 9.996034502983093e-01, 9.99924898147583e-01, 9.999925494194031e-01, 9.999997615814209e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] +hexWetNTU.dryWetCalcs.w_FD=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999998807907104e-01, 9.999626874923706e-01, 9.993447065353394e-01, 9.962406158447266e-01, 9.876253604888916e-01, 9.704166054725647e-01, 9.423255920410155e-01, 9.022666215896608e-01, 8.50419819355011e-01, 7.880649566650391e-01, 7.172929048538208e-01, 6.406838893890381e-01, 5.610149502754211e-01, 4.810257852077484e-01, 4.032467603683472e-01, 3.298781216144562e-01, 2.627071738243103e-01, 2.030545026063919e-01, 1.517457067966461e-01, 1.091100871562958e-01, 7.500826567411423e-02, 4.888885468244553e-02, 2.987033128738403e-02, 1.684080995619297e-02, 8.567105047404766e-03, 3.804829670116305e-03, 1.403008820489049e-03, 3.965560172218829e-04, 7.509798888349906e-05, 7.463251677108929e-06, 2.377579164658528e-07, 7.583338956784758e-10, 6.849351086437661e-15, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos index ec76ed60a8f..8feae63b7e2 100644 --- a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos +++ b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos @@ -36,7 +36,7 @@ createPlot( createPlot( id=2, subPlot=2, - y={"hexWetNTU.dryWetCalcs.w_PW", "hexWetNTU.dryWetCalcs.w_FW","hexWetNTU.dryWetCalcs.w_FD"}, + y={"hexWetNTU.dryWetCalcs.w_FW","hexWetNTU.dryWetCalcs.w_FD"}, autoscale=true, autoerase=true, autoreplot=true, diff --git a/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Examples.WetCoilEffectivenessNTU.mos b/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Examples.WetCoilEffectivenessNTU.mos new file mode 100644 index 00000000000..304bb5faf26 --- /dev/null +++ b/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Examples.WetCoilEffectivenessNTU.mos @@ -0,0 +1,7 @@ +compareVars := + { + "hex.Q2_flow", + "hex.QLat2_flow", + "hex.port_a1.m_flow", + "hex.port_a2.m_flow" + }; diff --git a/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos b/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos new file mode 100644 index 00000000000..988ffc3f5fa --- /dev/null +++ b/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos @@ -0,0 +1,12 @@ +compareVars := + { + "hexWetNTU.Q1_flow", + "hexDis.Q1_flow", + "hexWetNTU.sta_b2.T", + "hexDis.sta_b2.T", + "hexWetNTU.dryWetCalcs.dryfra", + "hexDis.fraDry", + "hexWetNTU.SHR", + "hexWetNTU.dryWetCalcs.w_FW", + "hexWetNTU.dryWetCalcs.w_FD" + }; From e520b867d4c799995345301536957609436d0ff8 Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Fri, 12 Feb 2021 10:34:32 -0800 Subject: [PATCH 12/69] Rename example, update doc --- ....mo => WetCoilEffectivenessNTUMassFlow.mo} | 22 ++-- .../HeatExchangers/Examples/package.order | 2 +- .../Validation/WetCoilEffectivenessNTU.mo | 29 ++--- .../HeatExchangers/WetCoilEffectivenessNTU.mo | 103 ++++++++++++++---- ...ngers_Examples_WetCoilEffectivenessNTU.txt | 13 --- ...ers_Validation_WetCoilEffectivenessNTU.txt | 23 ---- ...os => WetCoilEffectivenessNTUMassFlow.mos} | 4 +- .../Validation/WetCoilEffectivenessNTU.mos | 4 +- ...ngers.Examples.WetCoilEffectivenessNTU.mos | 7 -- 9 files changed, 114 insertions(+), 93 deletions(-) rename Buildings/Fluid/HeatExchangers/Examples/{WetCoilEffectivenessNTU.mo => WetCoilEffectivenessNTUMassFlow.mo} (88%) delete mode 100644 Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilEffectivenessNTU.txt delete mode 100644 Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt rename Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/{WetCoilEffectivenessNTU.mos => WetCoilEffectivenessNTUMassFlow.mos} (86%) delete mode 100644 Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Examples.WetCoilEffectivenessNTU.mos diff --git a/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mo similarity index 88% rename from Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mo rename to Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mo index 671ca78e274..7ae998e1af6 100644 --- a/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mo @@ -1,5 +1,5 @@ within Buildings.Fluid.HeatExchangers.Examples; -model WetCoilEffectivenessNTU +model WetCoilEffectivenessNTUMassFlow "Model that tests the wet coil effectiveness-NTU model with variable mass flow rates" extends Modelica.Icons.Example; extends @@ -56,7 +56,8 @@ equation smooth=Smooth.None)); annotation ( experiment(Tolerance=1E-6, StopTime=3600), - __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mos" + __Dymola_Commands( + file="modelica://Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mos" "Simulate and plot"), Diagram(coordinateSystem(preserveAspectRatio=true, extent={{-100, -100},{200,200}})), @@ -71,16 +72,15 @@ issue 622 for more information. ", info="

    -This example is meant to create a comparison of - -Buildings.Fluid.HeatExchangers.WetCoilEffectivenessNTU -(which is simulated here) versus +This example is similar to + +Buildings.Fluid.HeatExchangers.Examples.WetCoilCounterFlowMassFlow +except that the coil model Buildings.Fluid.HeatExchangers.WetCoilCounterFlow -over a similar example. -It is intended to be compared with - -Buildings.Fluid.HeatExchangers.Examples.WetCoilCounterFlowMassFlow). +is replaced here by + +Buildings.Fluid.HeatExchangers.WetCoilEffectivenessNTU.

    The two models match approximately (considering that @@ -91,4 +91,4 @@ do not agree well over the second half which subjects the model to flow reversal.

    ")); -end WetCoilEffectivenessNTU; +end WetCoilEffectivenessNTUMassFlow; diff --git a/Buildings/Fluid/HeatExchangers/Examples/package.order b/Buildings/Fluid/HeatExchangers/Examples/package.order index d84259cc84f..2ad9a3f6d95 100644 --- a/Buildings/Fluid/HeatExchangers/Examples/package.order +++ b/Buildings/Fluid/HeatExchangers/Examples/package.order @@ -14,5 +14,5 @@ WetCoilCounterFlowMassFlow WetCoilCounterFlowPControl WetCoilDiscretizedMassFlow WetCoilDiscretizedPControl -WetCoilEffectivenessNTU +WetCoilEffectivenessNTUMassFlow BaseClasses diff --git a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo index b1368542fe4..08038aa46b7 100644 --- a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo @@ -76,7 +76,7 @@ model WetCoilEffectivenessNTU annotation (Placement(transformation(extent={{140,-52},{120,-28}}))); Buildings.Utilities.Psychrometrics.TWetBul_TDryBulXi wetBulIn(redeclare package Medium = Medium_A) "Computation of wet bulb temperature" - annotation (Placement(transformation(extent={{120,-18},{140,2}}))); + annotation (Placement(transformation(extent={{120,-20},{140,0}}))); Sensors.MassFractionTwoPort senMasFraIn(redeclare package Medium = Medium_A, m_flow_nominal=m2_flow_nominal) "Water mass fraction of entering air" annotation (Placement(transformation(extent={{110,-90},{90,-70}}))); @@ -88,7 +88,7 @@ model WetCoilEffectivenessNTU annotation (Placement(transformation(extent={{-70,-30},{-90,-50}}))); Buildings.Utilities.Psychrometrics.TWetBul_TDryBulXi wetBulOut(redeclare package Medium = Medium_A) "Computation of wet bulb temperature" - annotation (Placement(transformation(extent={{-40,-98},{-20,-78}}))); + annotation (Placement(transformation(extent={{-40,-100},{-20,-80}}))); Modelica.Blocks.Sources.RealExpression pAir1(y=pAtm) "Air pressure" annotation (Placement(transformation(extent={{-100,-112},{-80,-88}}))); Buildings.Fluid.HeatExchangers.WetCoilEffectivenessNTU hexWetNTU( @@ -144,26 +144,29 @@ model WetCoilEffectivenessNTU annotation (Placement(transformation(extent={{140,30},{120,50}}))); equation connect(pAir.y, wetBulIn.p) annotation (Line(points={{119,-40},{110,-40},{110, - -16},{119,-16}}, color={0,0,127})); - connect(pAir1.y, wetBulOut.p) annotation (Line(points={{-79,-100},{-44,-100},{ - -44,-96},{-41,-96}},color={0,0,127})); + -18},{119,-18}}, color={0,0,127})); + connect(pAir1.y, wetBulOut.p) annotation (Line(points={{-79,-100},{-44,-100}, + {-44,-98},{-41,-98}}, + color={0,0,127})); connect(senMasFraOut.port_b, sinAir.ports[1]) annotation (Line(points={{-130,-40},{-156,-40},{-156,-38},{-160,-38}}, color={0,127,255})); connect(TDryBulOut.port_b, senMasFraOut.port_a) annotation (Line(points={{-90,-40},{-110,-40}}, color={0,127,255})); connect(TDryBulOut.T, wetBulOut.TDryBul) - annotation (Line(points={{-80,-51},{-80,-80},{-41,-80}}, color={0,0,127})); - connect(senMasFraOut.X, wetBulOut.Xi[1]) annotation (Line(points={{-120,-51},{ - -120,-88},{-41,-88}}, color={0,0,127})); + annotation (Line(points={{-80,-51},{-80,-82},{-41,-82}}, color={0,0,127})); + connect(senMasFraOut.X, wetBulOut.Xi[1]) annotation (Line(points={{-120,-51}, + {-120,-90},{-41,-90}}, color={0,0,127})); connect(souAir.ports[1], senMasFraIn.port_a) annotation (Line(points={{120,-80},{110,-80}}, color={0,127,255})); connect(senMasFraIn.port_b, TDryBulIn.port_a) annotation (Line(points={{90,-80},{70,-80}}, color={0,127,255})); connect(senMasFraIn.X, wetBulIn.Xi[1]) - annotation (Line(points={{100,-69},{100,-8},{119,-8}}, color={0,0,127})); + annotation (Line(points={{100,-69},{100,-10},{119,-10}}, + color={0,0,127})); connect(TDryBulIn.T, wetBulIn.TDryBul) - annotation (Line(points={{60,-69},{60,0},{119,0}}, color={0,0,127})); + annotation (Line(points={{60,-69},{60,-2},{119,-2}}, + color={0,0,127})); connect(TDryBulIn.port_b, RelHumIn.port_a) annotation (Line(points={{50,-80},{30,-80}}, color={0,127,255})); connect(souWat1.ports[1], hexWetNTU.port_a1) annotation (Line(points={{-160,12}, @@ -206,10 +209,10 @@ model.

    Validation

    The example is a steady-state analysis of a wet coil with constant air -and water inlet temperature and mass flow rate, and a varying air inlet -humidity as specified in the model setup. +and water inlet temperature and mass flow rate, and an increasing air inlet +humidity which triggers the transition from a fully-dry to a fully-wet regime. The reference used for validation is the published experimental data. -A discretized wet coil model is also used for comparison. +A discretized wet coil model is also simulated for comparison.

    The slight deviations we find are believed due to differences in the tolerance diff --git a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo index 7bdbf4a8a99..496583f91f4 100644 --- a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo @@ -477,28 +477,91 @@ equation horizontalAlignment=TextAlignment.Left, textString="Air Side")}), Documentation(info=" -


    This model describes a cooling coil that is capable of simulating fully-dry, partially-wet, and fully-wet regimes. The model is developed for counter flow heat exchangers but is also applicable for the cross-flow configuration (it is recommended to have over four tube rows for the cross-flow heat exchangers (Elmahdy and Mitalas, 1977 and Braun, 1988). The model can also be used for a heat exchanger, which acts as both heating coil (for some period of time) and cooling coil (for the others). However, it is not recommended to use this model for heating coil only or for cooling coil with no water condensation for computational efficiency.

    +

    +This model describes a cooling coil that is capable of simulating fully-dry, +partially-wet, and fully-wet regimes. +The model is developed for counter flow heat exchangers but is also applicable +for the cross-flow configuration, although in the latter case it is recommended +to have over four tube rows (Elmahdy and Mitalas, 1977 and Braun, 1988). +The model can also be used for a heat exchanger which acts as both heating coil +(for some period of time) and cooling coil (for the others). +However, it is not recommended to use this model for heating coil only or for +cooling coil with no water condensation for computational efficiency. +

    Main equations

    -

    The coil model consists of two-equation sets, one for the fully-dry mode and the other for the fully-wet mode. For the fully-dry mode, the ε-NTU approach (Elmahdy and Mitalas, 1977) is used. For the fully-wet mode, equations from Braun (1988) and Mitchell and Braun (2012a and b), which are essentially the extension of the ε-NTU approach to simultaneous sensible and latent heat transfer, are utilized. The equation sets are switched depending on the switching criteria described below that determines the right mode based on a coil surface temperature and dew-point temperature for the air at the inlet of the coil. The transition regime between the two modes, which represents the partially-wet and partially-dry coil, is approximated by employing a fuzzy modeling approach, so-called Takagi-Sugeno fuzzy modeling (Takagi and Sugeno, 1985), which provides a continuously differentiable coil model that can cover all fully-dry, partially-dry and wet, and fully-wet regimes.

    +

    +The coil model consists of two-equation sets, one for the fully-dry mode and +the other for the fully-wet mode. For the fully-dry mode, the ε-NTU +approach (Elmahdy and Mitalas, 1977) is used. +For the fully-wet mode, equations from Braun (1988) and Mitchell and Braun (2012a and b), +which are essentially the extension of the ε-NTU approach to simultaneous sensible +and latent heat transfer, are utilized. +The equation sets are switched depending on the switching criteria described below +that determines the right mode based on a coil surface temperature and dew-point +temperature for the air at the inlet of the coil. +The transition regime between the two modes, which represents the partially-wet and +partially-dry coil, is approximated by employing a fuzzy modeling approach, +so-called Takagi-Sugeno fuzzy modeling (Takagi and Sugeno, 1985), which provides a +continuously differentiable model that can cover all fully-dry, partially-wet, +and fully-wet regimes. +

    The switching rules are;

    -

    R1: If the coil surface temperature at the air inlet is lower than the dew-point temperature at inlet to the coil, then the cooling coil surface is fully-wet.

    -

    R2: If the surface temperature at the air outlet section is higher than the dew-point temperature of air at inlet, then the cooling coil surface is fully-dry.

    -

    R3: If any of the conditions in R1 or R2 is not satisfied, then the cooling coil is partially wet partially dry.

    -


    For more detailed descriptions of the fully-wet coil model and the fuzzy modeling approach, see Buildings.Fluid.HeatExchangers.BaseClasses.WetcalcsFuzzy_V3 and Buildings.Fluid.HeatExchangers.BaseClasses.DryWetCalcsFuzzy_V3.

    -

    Assumptions and limitations

    -

    This model contains the following assumptions and limitations:

    -

    Medium 2 must be air due to the use of various Psychrometric functions.

    -

    The model uses steady-state physics. That is, no dynamics associated with water and coil materials are considered.

    -

    The Lewis number, which relates the mass transfer coefficient to the heat transfer coefficient, is assumed to be 1.

    -

    The model is not suitable for a cross-flow heat exchanger of which the number of passes is less than four.

    -

    Validation

    -

    Validation results can be found in Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU, which compares with a discretized wet coil model (Buildings.Fluid.HeatExchangers.WetCoilDiscretized) for a textbook problem from Mitchell and Braun (2012b, Example SM2-1). In the problem, the absolute humidity of the air inlet increases while fixing the other boundary conditions of temperatures and flow rates of water and air, which allows investigating transition behaviors of the model from fully-dry to fully-wet modes.

    -

    References

    -

    Braun, James E. 1988. "Methodologies for the Design and Control of Central Cooling Plants". PhD Thesis. University of Wisconsin - Madison. Available online: https://minds.wisconsin.edu/handle/1793/46694

    -

    Mitchell, John W., and James E. Braun. 2012a. Principles of heating, ventilation, and air conditioning in buildings. Hoboken, N.J.: Wiley.

    -

    Mitchell, John W., and James E. Braun. 2012b. "Supplementary Material Chapter 2: Heat Exchangers for Cooling Applications". Excerpt from Principles of heating, ventilation, and air conditioning in buildings. Hoboken, N.J.: Wiley. Available online: http://bcs.wiley.com/he-bcs/Books?action=index&itemId=0470624574&bcsId=7185

    -

    Elmahdy, A.H. and Mitalas, G.P. 1977. "A Simple Model for Cooling and Dehumidifying Coils for Use In Calculating Energy Requirements for Buildings". ASHRAE Transactions. Vol.83. Part 2. pp. 103-117.

    -

    Takagi, T. and Sugeno, M., 1985. Fuzzy identification of systems and its applications to modeling and control. IEEE transactions on systems, man, and cybernetics, (1), pp.116-132.

    +
      +
    • R1: If the coil surface temperature at the air inlet is lower than the +dew-point temperature of air at inlet, then the cooling coil surface is fully-wet. +
    • +
    • +R2: If the coil surface temperature at the air outlet is higher than the +dew-point temperature of air at inlet, then the cooling coil surface is fully-dry. +
    • +
    • +R3: If any of the conditions in R1 or R2 is not satisfied, then the cooling coil +surface is partially wet. +
    • +
    +

    +For more detailed descriptions of the fully-wet coil model and the fuzzy modeling approach, +see + +Buildings.Fluid.HeatExchangers.BaseClasses.WetCoilWetRegime. +and + +Buildings.Fluid.HeatExchangers.BaseClasses.WetCoilDryWetRegime. +

    +

    Assumptions and limitations

    +

    This model contains the following assumptions and limitations:

    +

    Medium 2 must be air due to the use of various psychrometric functions.

    +

    The model uses steady-state physics. That is, no dynamics associated +with water and coil materials are considered.

    +

    The Lewis number, which relates the mass transfer coefficient to the heat transfer +coefficient, is assumed to be 1.

    +

    The model is not suitable for a cross-flow heat exchanger of which the number +of passes is less than four.

    +

    Validation

    +

    Validation results can be found in + +Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU. +

    References

    +

    Braun, James E. 1988. +"Methodologies for the Design and Control of +Central Cooling Plants". +PhD Thesis. University of Wisconsin - Madison. +Available online: https://minds.wisconsin.edu/handle/1793/46694

    +

    Mitchell, John W., and James E. Braun. 2012a. +Principles of heating, ventilation, and air conditioning in buildings. +Hoboken, N.J.: Wiley.

    +

    Mitchell, John W., and James E. Braun. 2012b. +"Supplementary Material Chapter 2: Heat Exchangers for Cooling Applications". +Excerpt from Principles of heating, ventilation, and air conditioning in buildings. +Hoboken, N.J.: Wiley. +Available online: http://bcs.wiley.com/he-bcs/Books?action=index&itemId=0470624574&bcsId=7185

    +

    Elmahdy, A.H. and Mitalas, G.P. 1977. +"A Simple Model for Cooling and Dehumidifying Coils for Use +In Calculating Energy Requirements for Buildings". +ASHRAE Transactions. Vol.83. Part 2. pp. 103-117.

    +

    Takagi, T. and Sugeno, M., 1985. +Fuzzy identification of systems and its applications to modeling and control. + IEEE transactions on systems, man, and cybernetics, (1), pp.116-132.

    ", revisions="
    • Jan 21, 2021, by Donghun Kim:
      First implementation of the fuzzy model. See issue 622 for more information.
    • diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilEffectivenessNTU.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilEffectivenessNTU.txt deleted file mode 100644 index 9e93304c4f0..00000000000 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilEffectivenessNTU.txt +++ /dev/null @@ -1,13 +0,0 @@ -last-generated=2021-02-11 -statistics-simulation= -{ - "linear": " ", - "nonlinear": "1, 1", - "number of continuous time states": "2", - "numerical Jacobians": "0" -} -time=[0e+00, 3.6e+03] -hex.Q2_flow=[-4.022505615234375e+03, -4.0076162109375e+03, -3.99414208984375e+03, -3.981961181640625e+03, -3.970961181640625e+03, -3.961038818359375e+03, -3.952092041015625e+03, -3.944025390625e+03, -3.936761962890625e+03, -3.93021728515625e+03, -3.924324462890625e+03, -3.728418701171875e+03, -3.509232177734375e+03, -3.262787353515625e+03, -2.9841943359375e+03, -2.6673583984375e+03, -2.304554443359375e+03, -1.885688842773438e+03, -1.396859619140625e+03, -7.950651245117188e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.038280792236328e+02, -1.036799240112305e+02, -1.015619049072266e+02, -9.358493041992185e+01, -2.55761919005809e-12, -1.020483016967774e+02, -1.033460006713867e+02, -1.036785202026367e+02, -1.03827018737793e+02, -1.039108505249023e+02, -1.038740539550781e+02, -1.03827018737793e+02, -1.03764762878418e+02, -1.036785202026367e+02, -1.035513381958008e+02, -1.033460006713867e+02, -1.029638900756836e+02, -1.020483016967773e+02, -9.817852783203125e+01, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00] -hex.QLat2_flow=[-2.544043701171875e+03, -2.534263916015625e+03, -2.525406494140625e+03, -2.51739306640625e+03, -2.51015185546875e+03, -2.5036162109375e+03, -2.497719970703125e+03, -2.4924013671875e+03, -2.487610107421875e+03, -2.483291259765625e+03, -2.4794013671875e+03, -2.34935205078125e+03, -2.202218994140625e+03, -2.034814086914062e+03, -1.843166137695312e+03, -1.622259521484375e+03, -1.365657470703125e+03, -1.064861450195312e+03, -7.08005126953125e+02, -2.370467681884766e+02, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -2.549400037920748e-13, -8.407790785948637e-45, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00] -hex.port_a1.m_flow=[1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 9.009999781847e-02, 8.020000159740448e-02, 7.029999792575836e-02, 6.040000170469283e-02, 5.050000175833702e-02, 4.06000018119812e-02, 3.070000000298023e-02, 2.080000005662441e-02, 1.090000011026859e-02, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03] -hex.port_a2.m_flow=[1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.120000034570694e-01, 8.399999886751175e-02, 5.60000017285347e-02, 2.800000086426717e-02, -7.140166331002833e-15, -2.800000086426753e-02, -5.60000017285347e-02, -8.399999886751175e-02, -1.120000034570694e-01, -1.400000005960464e-01, -1.260000020265579e-01, -1.120000034570694e-01, -9.799999743700027e-02, -8.399999886751175e-02, -7.000000029802322e-02, -5.60000017285347e-02, -4.199999943375587e-02, -2.800000086426735e-02, -1.400000043213367e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt deleted file mode 100644 index 00f1e20b42e..00000000000 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt +++ /dev/null @@ -1,23 +0,0 @@ -last-generated=2021-02-11 -statistics-initialization= -{ - "nonlinear": "120", - "numerical Jacobians": "0" -} -statistics-simulation= -{ - "linear": " ", - "nonlinear": "1, 1, 1, 1", - "number of continuous time states": "126", - "numerical Jacobians": "0" -} -time=[0e+00, 1e+02] -hexWetNTU.Q1_flow=[4.37056796875e+04, 4.370878515625e+04, 4.3711890625e+04, 4.37149921875e+04, 4.371809765625e+04, 4.372119921875e+04, 4.37243046875e+04, 4.372740625e+04, 4.37305078125e+04, 4.3733609375e+04, 4.37367109375e+04, 4.373980859375e+04, 4.374291015625e+04, 4.374601171875e+04, 4.3749109375e+04, 4.375220703125e+04, 4.375530859375e+04, 4.375840625e+04, 4.376150390625e+04, 4.37646015625e+04, 4.376769921875e+04, 4.377079296875e+04, 4.3773890625e+04, 4.3776859375e+04, 4.3778203125e+04, 4.377459375e+04, 4.376528515625e+04, 4.37565546875e+04, 4.376233203125e+04, 4.38018359375e+04, 4.3896015625e+04, 4.406403125e+04, 4.432055078125e+04, 4.46741640625e+04, 4.512680859375e+04, 4.567404296875e+04, 4.630587109375e+04, 4.700792578125e+04, 4.776289453125e+04, 4.855203515625e+04, 4.93567265625e+04, 5.0159953125e+04, 5.09475234375e+04, 5.170898828125e+04, 5.243811328125e+04, 5.313291015625e+04, 5.379522265625e+04, 5.442989453125e+04, 5.504365234375e+04, 5.56437265625e+04, 5.623644921875e+04, 5.682620703125e+04, 5.7415171875e+04, 5.800399609375e+04, 5.85927578125e+04, 5.918146875000001e+04, 5.977012109375001e+04, 6.035871484374999e+04, 6.094724999999999e+04, 6.15357265625e+04, 6.2124140625e+04, 6.271249609375e+04, 6.330078515625e+04, 6.388901171875e+04, 6.4477171875e+04, 6.506526953125e+04, 6.5653296875e+04, 6.62412578125e+04, 6.68291484375e+04, 6.741696875e+04, 6.800471875e+04, 6.85923984375e+04, 6.918e+04, 6.976753125e+04, 7.0354984375e+04, 7.09423671875e+04, 7.1529671875e+04, 7.21168984375e+04, 7.2704046875e+04, 7.3291109375e+04, 7.387809375e+04, 7.4465e+04, 7.50518125e+04, 7.5638546875e+04, 7.62251953125e+04, 7.68117578125e+04, 7.7398234375e+04, 7.7984625e+04, 7.85709296875e+04, 7.9157140625e+04, 7.97432578125e+04, 8.03292890625e+04, 8.091521875e+04, 8.15010625e+04, 8.20868046875e+04, 8.2672453125e+04, 8.3258e+04, 8.3843453125e+04, 8.44288046875e+04, 8.50140546875e+04, 8.5599203125e+04] -hexDis.Q1_flow=[4.4666953125e+04, 4.466725390625e+04, 4.466858203125e+04, 4.467100390625e+04, 4.46739765625e+04, 4.467706640625e+04, 4.4680171875e+04, 4.468328515625e+04, 4.46863984375e+04, 4.468951171875e+04, 4.469262109375e+04, 4.4695734375e+04, 4.469884765625e+04, 4.470195703125e+04, 4.470506640625e+04, 4.47081796875e+04, 4.47112890625e+04, 4.47143984375e+04, 4.471750390625e+04, 4.472061328125e+04, 4.472372265625e+04, 4.4726828125e+04, 4.47299375e+04, 4.473962109375e+04, 4.478994921875e+04, 4.49309453125e+04, 4.51363671875e+04, 4.53930703125e+04, 4.56890703125e+04, 4.601998828125e+04, 4.63766875e+04, 4.675676953125e+04, 4.715906640625e+04, 4.7578296875e+04, 4.801227734375e+04, 4.8460671875e+04, 4.89236953125e+04, 4.93978671875e+04, 4.988003125e+04, 5.036958984375e+04, 5.08743359375e+04, 5.138170703125e+04, 5.18975625e+04, 5.24225546875e+04, 5.2948265625e+04, 5.348762109375e+04, 5.402362890625e+04, 5.457392578125e+04, 5.512123828125e+04, 5.56794296875e+04, 5.623846875e+04, 5.67993984375e+04, 5.73712109375e+04, 5.79363828125e+04, 5.851594921875e+04, 5.909400390625001e+04, 5.966661328125001e+04, 6.023606249999999e+04, 6.080408984374999e+04, 6.13713125e+04, 6.1937921875e+04, 6.250390625e+04, 6.306925390625e+04, 6.363396484375e+04, 6.419801953125e+04, 6.476143359375e+04, 6.5324203125e+04, 6.5886328125e+04, 6.64477890625e+04, 6.7008609375e+04, 6.75687734375e+04, 6.8128296875e+04, 6.8687171875e+04, 6.92453828125e+04, 6.9802921875e+04, 7.03598125e+04, 7.0916046875e+04, 7.1471625e+04, 7.20265546875e+04, 7.25808359375e+04, 7.3134453125e+04, 7.3687421875e+04, 7.42397421875e+04, 7.47913984375e+04, 7.53424140625e+04, 7.5892734375e+04, 7.64423671875e+04, 7.69913359375e+04, 7.75396484375e+04, 7.8087296875e+04, 7.86342734375e+04, 7.918059375e+04, 7.972625e+04, 8.027125e+04, 8.0815578125e+04, 8.135925e+04, 8.190225e+04, 8.24446171875e+04, 8.29863046875e+04, 8.352728125e+04, 8.40672421875e+04] -hexWetNTU.sta_b2.T=[2.834467163085938e+02, 2.83447509765625e+02, 2.834483032226562e+02, 2.834490966796875e+02, 2.834498901367188e+02, 2.8345068359375e+02, 2.834514770507812e+02, 2.834522399902344e+02, 2.834530334472656e+02, 2.834538269042969e+02, 2.834546203613281e+02, 2.834554138183594e+02, 2.834562072753906e+02, 2.834570007324219e+02, 2.834577941894531e+02, 2.834585876464844e+02, 2.834593811035156e+02, 2.834601745605469e+02, 2.834609680175781e+02, 2.834617614746094e+02, 2.834625549316406e+02, 2.834633483886719e+02, 2.834641418457031e+02, 2.834649658203125e+02, 2.834664001464844e+02, 2.834696960449219e+02, 2.834751281738281e+02, 2.834803466796875e+02, 2.834862976074219e+02, 2.835041198730469e+02, 2.835307922363281e+02, 2.835674438476562e+02, 2.836146240234375e+02, 2.836721801757812e+02, 2.837392883300781e+02, 2.838145751953125e+02, 2.838963012695312e+02, 2.839824829101562e+02, 2.840709533691406e+02, 2.8415966796875e+02, 2.842467346191406e+02, 2.8433056640625e+02, 2.844099731445312e+02, 2.844843139648438e+02, 2.845532836914062e+02, 2.846171875e+02, 2.846765747070312e+02, 2.847322692871094e+02, 2.847853088378906e+02, 2.848366088867188e+02, 2.848869934082031e+02, 2.849369506835938e+02, 2.849867553710938e+02, 2.850364685058594e+02, 2.850861206054688e+02, 2.851356811523438e+02, 2.851851806640625e+02, 2.85234619140625e+02, 2.852839660644531e+02, 2.85333251953125e+02, 2.853824768066406e+02, 2.854316101074219e+02, 2.854806823730469e+02, 2.855296936035156e+02, 2.855786437988281e+02, 2.856275024414062e+02, 2.856763000488281e+02, 2.857250366210938e+02, 2.85773681640625e+02, 2.858222961425781e+02, 2.858708190917969e+02, 2.859192810058594e+02, 2.859676818847656e+02, 2.860159912109375e+02, 2.860642700195312e+02, 2.861124572753906e+02, 2.861605834960938e+02, 2.862086486816406e+02, 2.862566528320312e+02, 2.863045654296875e+02, 2.863524475097656e+02, 2.864002685546875e+02, 2.86447998046875e+02, 2.864956665039062e+02, 2.865432739257812e+02, 2.865908508300781e+02, 2.866383361816406e+02, 2.866857604980469e+02, 2.867331237792969e+02, 2.867804260253906e+02, 2.868276672363281e+02, 2.868748474121094e+02, 2.869219665527344e+02, 2.869690246582031e+02, 2.870160217285156e+02, 2.870629577636719e+02, 2.871098327636719e+02, 2.871566467285156e+02, 2.872033996582031e+02, 2.872500915527344e+02, 2.872967529296875e+02] -hexDis.sta_b2.T=[2.83086669921875e+02, 2.83086669921875e+02, 2.83086669921875e+02, 2.830868530273438e+02, 2.830875244140625e+02, 2.830883178710938e+02, 2.830891418457031e+02, 2.830899963378906e+02, 2.830908203125e+02, 2.830916442871094e+02, 2.830924682617188e+02, 2.830933227539062e+02, 2.830941467285156e+02, 2.83094970703125e+02, 2.830957946777344e+02, 2.830966186523438e+02, 2.830974731445312e+02, 2.830982971191406e+02, 2.8309912109375e+02, 2.830999450683594e+02, 2.831007995605469e+02, 2.831016235351562e+02, 2.831024475097656e+02, 2.831050109863281e+02, 2.831155700683594e+02, 2.831455078125e+02, 2.831873474121094e+02, 2.832371826171875e+02, 2.832922668457031e+02, 2.833505859375e+02, 2.834109802246094e+02, 2.834725952148438e+02, 2.835348205566406e+02, 2.835973510742188e+02, 2.836598510742188e+02, 2.8372216796875e+02, 2.837841796875e+02, 2.838457946777344e+02, 2.839069213867188e+02, 2.83967529296875e+02, 2.840276184082031e+02, 2.84087158203125e+02, 2.841461181640625e+02, 2.842045288085938e+02, 2.842623596191406e+02, 2.843196716308594e+02, 2.843764038085938e+02, 2.844326171875e+02, 2.8448828125e+02, 2.845434875488281e+02, 2.8459814453125e+02, 2.8465234375e+02, 2.847060546875e+02, 2.8475927734375e+02, 2.848120727539062e+02, 2.848644104003906e+02, 2.849163818359375e+02, 2.849678955078125e+02, 2.8501904296875e+02, 2.850700073242188e+02, 2.851209411621094e+02, 2.85171875e+02, 2.852228088378906e+02, 2.852737731933594e+02, 2.853246765136719e+02, 2.853756103515625e+02, 2.854265441894531e+02, 2.854774475097656e+02, 2.855283508300781e+02, 2.855792541503906e+02, 2.856301574707031e+02, 2.856810302734375e+02, 2.8573193359375e+02, 2.857828063964844e+02, 2.858336486816406e+02, 2.85884521484375e+02, 2.859353637695312e+02, 2.859862060546875e+02, 2.860370483398438e+02, 2.860878601074219e+02, 2.86138671875e+02, 2.861894836425781e+02, 2.862402954101562e+02, 2.862911071777344e+02, 2.863418884277344e+02, 2.863926696777344e+02, 2.864434204101562e+02, 2.864941711425781e+02, 2.86544921875e+02, 2.865956420898438e+02, 2.866463928222656e+02, 2.866970825195312e+02, 2.86747802734375e+02, 2.867984924316406e+02, 2.868491821289062e+02, 2.868998718261719e+02, 2.869505310058594e+02, 2.870011901855469e+02, 2.870518493652344e+02, 2.871024780273438e+02, 2.871531066894531e+02] -hexWetNTU.dryWetCalcs.dryfra=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999998807907104e-01, 9.999626874923706e-01, 9.993447065353394e-01, 9.962406158447266e-01, 9.876253604888916e-01, 9.704166054725647e-01, 9.423255920410155e-01, 9.022666215896608e-01, 8.50419819355011e-01, 7.880649566650391e-01, 7.172929048538208e-01, 6.406838893890381e-01, 5.610149502754211e-01, 4.810257852077484e-01, 4.032467603683472e-01, 3.298781216144562e-01, 2.627071738243103e-01, 2.030545026063919e-01, 1.517457067966461e-01, 1.091100871562958e-01, 7.500826567411423e-02, 4.888885468244553e-02, 2.987033128738403e-02, 1.684080995619297e-02, 8.567105047404766e-03, 3.804829670116305e-03, 1.403008820489049e-03, 3.965560172218829e-04, 7.509798888349906e-05, 7.463251677108929e-06, 2.377579164658528e-07, 7.583338956784758e-10, 6.849351086437661e-15, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -hexDis.fraDry=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 8.999999761581421e-01, 8.00000011920929e-01, 7.333333492279053e-01, 6.666666865348816e-01, 6.000000238418579e-01, 5.666666626930237e-01, 5.333333611488342e-01, 4.666666686534882e-01, 4.333333373069763e-01, 4.000000059604645e-01, 3.666666746139526e-01, 3.666666746139526e-01, 3.333333432674408e-01, 3.00000011920929e-01, 2.666666805744171e-01, 2.666666805744171e-01, 2.333333343267441e-01, 2.000000029802322e-01, 2.000000029802322e-01, 1.666666716337204e-01, 1.666666716337204e-01, 1.333333402872086e-01, 1.333333402872086e-01, 1.000000014901161e-01, 1.000000014901161e-01, 6.666667014360428e-02, 6.666667014360428e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -hexWetNTU.SHR=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.996239542961121e-01, 9.977563619613647e-01, 9.941201210021973e-01, 9.882391095161438e-01, 9.798130989074707e-01, 9.687609076499939e-01, 9.552227854728699e-01, 9.395307898521423e-01, 9.221569299697876e-01, 9.036521315574646e-01, 8.845856785774231e-01, 8.654928207397461e-01, 8.468344807624817e-01, 8.289710879325867e-01, 8.12149703502655e-01, 7.965038418769836e-01, 7.820627689361572e-01, 7.687678933143616e-01, 7.564942240715027e-01, 7.450746297836304e-01, 7.34325647354126e-01, 7.240735292434692e-01, 7.141772508621216e-01, 7.045431733131409e-01, 6.951236724853516e-01, 6.85900866985321e-01, 6.768673062324524e-01, 6.680172085762023e-01, 6.593452095985411e-01, 6.508459448814393e-01, 6.425145268440248e-01, 6.34346067905426e-01, 6.263357996940613e-01, 6.184794306755066e-01, 6.107724905014038e-01, 6.032108664512634e-01, 5.957905650138855e-01, 5.885077714920044e-01, 5.813586711883545e-01, 5.74339747428894e-01, 5.674475431442261e-01, 5.606786608695984e-01, 5.540299415588379e-01, 5.474982261657715e-01, 5.410805344581604e-01, 5.347739458084106e-01, 5.285756587982178e-01, 5.224829316139221e-01, 5.164932012557983e-01, 5.106038451194763e-01, 5.048125386238098e-01, 4.991167485713959e-01, 4.935142695903778e-01, 4.880028665065765e-01, 4.825803637504578e-01, 4.772446751594543e-01, 4.719937443733215e-01, 4.668256640434265e-01, 4.617384970188141e-01, 4.567303657531738e-01, 4.517995417118073e-01, 4.469442665576935e-01, 4.42162811756134e-01, 4.374535977840424e-01, 4.328150153160095e-01, 4.282455146312714e-01, 4.237436056137085e-01, 4.193077981472015e-01, 4.149367213249207e-01, 4.10629004240036e-01, 4.063832759857178e-01, 4.021982550621033e-01, 3.980726599693298e-01] -hexWetNTU.dryWetCalcs.w_FW=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.121166799810294e-15, 1.221358445491205e-07, 3.733820631168783e-05, 6.552886334247887e-04, 3.759396495297551e-03, 1.237465068697929e-02, 2.9583390802145e-02, 5.767439305782331e-02, 9.7733363509178e-02, 1.495801955461502e-01, 2.119350582361221e-01, 2.827070951461792e-01, 3.593161106109619e-01, 4.389850795269012e-01, 5.18974244594574e-01, 5.967532396316528e-01, 6.701219081878662e-01, 7.372928261756897e-01, 7.969455122947693e-01, 8.482542634010315e-01, 8.908898830413818e-01, 9.249917268753052e-01, 9.511111378669739e-01, 9.70129668712616e-01, 9.831591844558716e-01, 9.914329051971436e-01, 9.961951971054077e-01, 9.985969662666321e-01, 9.996034502983093e-01, 9.99924898147583e-01, 9.999925494194031e-01, 9.999997615814209e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] -hexWetNTU.dryWetCalcs.w_FD=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999998807907104e-01, 9.999626874923706e-01, 9.993447065353394e-01, 9.962406158447266e-01, 9.876253604888916e-01, 9.704166054725647e-01, 9.423255920410155e-01, 9.022666215896608e-01, 8.50419819355011e-01, 7.880649566650391e-01, 7.172929048538208e-01, 6.406838893890381e-01, 5.610149502754211e-01, 4.810257852077484e-01, 4.032467603683472e-01, 3.298781216144562e-01, 2.627071738243103e-01, 2.030545026063919e-01, 1.517457067966461e-01, 1.091100871562958e-01, 7.500826567411423e-02, 4.888885468244553e-02, 2.987033128738403e-02, 1.684080995619297e-02, 8.567105047404766e-03, 3.804829670116305e-03, 1.403008820489049e-03, 3.965560172218829e-04, 7.509798888349906e-05, 7.463251677108929e-06, 2.377579164658528e-07, 7.583338956784758e-10, 6.849351086437661e-15, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mos b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mos similarity index 86% rename from Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mos rename to Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mos index 138bdabe4ae..1d4136165d0 100644 --- a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTU.mos +++ b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mos @@ -1,10 +1,10 @@ old_StoreProtectedVariables = Advanced.StoreProtectedVariables; Advanced.StoreProtectedVariables = true; -simulateModel("Buildings.Fluid.HeatExchangers.Examples.WetCoilEffectivenessNTU", +simulateModel("Buildings.Fluid.HeatExchangers.Examples.WetCoilEffectivenessNTUMassFlow", stopTime=3600, method="cvode", tolerance=1e-6, - resultFile="WetCoilEffectivenessNTU_Examples"); + resultFile="WetCoilEffectivenessNTUMassFlow"); Advanced.StoreProtectedVariables = old_StoreProtectedVariables; createPlot( id=1, diff --git a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos index 8feae63b7e2..fa6e161b793 100644 --- a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos +++ b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos @@ -1,11 +1,9 @@ old_StoreProtectedVariables = Advanced.StoreProtectedVariables; -Advanced.StoreProtectedVariables = true; simulateModel("Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU", stopTime=100, method="cvode", tolerance=1e-6, - resultFile="WetCoilEffectivenessNTU_Validation"); -Advanced.StoreProtectedVariables = old_StoreProtectedVariables; + resultFile="WetCoilEffectivenessNTU"); createPlot( id=1, position={59, 59, 1186, 1286}, diff --git a/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Examples.WetCoilEffectivenessNTU.mos b/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Examples.WetCoilEffectivenessNTU.mos deleted file mode 100644 index 304bb5faf26..00000000000 --- a/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Examples.WetCoilEffectivenessNTU.mos +++ /dev/null @@ -1,7 +0,0 @@ -compareVars := - { - "hex.Q2_flow", - "hex.QLat2_flow", - "hex.port_a1.m_flow", - "hex.port_a2.m_flow" - }; From dde6b1210141657f7ac18e8e1b2c4c0260c3efd4 Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Fri, 12 Feb 2021 11:24:31 -0800 Subject: [PATCH 13/69] Fix typos and truncate lines at 80 characters --- .../BaseClasses/WetCoilDryRegime.mo | 39 +++++++------ .../BaseClasses/WetCoilWetRegime.mo | 57 ++++++++++++++----- .../HeatExchangers/WetCoilEffectivenessNTU.mo | 10 +++- 3 files changed, 72 insertions(+), 34 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo index 87cd31b5fd0..976402a1365 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo @@ -20,7 +20,6 @@ model WetCoilDryRegime "Fully dry coil model" "Mass flow rate of air"; input Modelica.SIunits.MassFlowRate mAirNonZer_flow(min=Modelica.Constants.eps) "Mass flow rate for air, bounded away from zero"; - input Modelica.SIunits.SpecificHeatCapacity cpAir "Specific heat capacity of moist air at constant pressure"; input Modelica.SIunits.Temperature TAirIn @@ -31,53 +30,57 @@ model WetCoilDryRegime "Fully dry coil model" input Modelica.SIunits.MassFlowRate mAir_flow_nominal; input Modelica.SIunits.MassFlowRate mWat_flow_nominal; parameter Real delta = 1E-3 "Small value used for smoothing"; - output Modelica.SIunits.HeatFlowRate QTot_flow "Heat transferred from water to air"; output Modelica.SIunits.Temperature TWatOut "Temperature of water at outlet"; output Modelica.SIunits.Temperature TAirOut "Temperature of air at the outlet"; - output Real eps(min=0, max=1, unit="1") "Effectiveness for heat exchanger"; Modelica.SIunits.ThermalConductance CWat_flow=mWat_flow*cpWat "Capacitance rate of water"; Modelica.SIunits.ThermalConductance CAir_flow=mAir_flow*cpAir "Capacitance rate of air"; - Modelica.SIunits.ThermalConductance CMin_flow_nominal=min(mAir_flow_nominal*cpAir,mWat_flow_nominal*cpWat) + Modelica.SIunits.ThermalConductance CMin_flow_nominal= + min(mAir_flow_nominal*cpAir,mWat_flow_nominal*cpWat) "Minimum capacity rate"; - Modelica.SIunits.ThermalConductance CMax_flow_nominal=max(mAir_flow_nominal*cpAir,mWat_flow_nominal*cpWat) + Modelica.SIunits.ThermalConductance CMax_flow_nominal= + max(mAir_flow_nominal*cpAir,mWat_flow_nominal*cpWat) "Maximum capacity rate"; - Modelica.SIunits.ThermalConductance CMin_flow=Buildings.Utilities.Math.Functions.smoothMin(x1=CAir_flow,x2=CWat_flow,deltaX=1E-3*(CMax_flow_nominal-CMin_flow_nominal)) + Modelica.SIunits.ThermalConductance CMin_flow= + Buildings.Utilities.Math.Functions.smoothMin( + x1=CAir_flow,x2=CWat_flow,deltaX=1E-3*(CMax_flow_nominal-CMin_flow_nominal)) "Minimum capacity rate"; - Modelica.SIunits.ThermalConductance UA "Overall heat transfer coefficient"; - output Modelica.SIunits.Temperature TSurAirOut "Surface Temperature at air outlet"; - equation - UA = 1/ (1 / UAAir + 1 / UAWat) - "UA is for the overall coil (i.e., both sides)"; + "UA is for the overall coil (i.e., both sides)"; - eps=epsilon_C(UA=UA, C1_flow=CWat_flow, C2_flow=CAir_flow, - flowRegime=Integer(cfg), CMin_flow_nominal= CMin_flow_nominal, CMax_flow_nominal=CMax_flow_nominal, delta= delta); + eps=epsilon_C( + UA=UA, + C1_flow=CWat_flow, + C2_flow=CAir_flow, + flowRegime=Integer(cfg), + CMin_flow_nominal= CMin_flow_nominal, + CMax_flow_nominal=CMax_flow_nominal, + delta= delta); - QTot_flow = eps*CMin_flow*(TAirIn-TWatIn); - TAirOut=TAirIn-QTot_flow/(mAirNonZer_flow*cpAir); - TWatOut=TWatIn+QTot_flow/(mWatNonZer_flow*cpWat); + QTot_flow = eps*CMin_flow*(TAirIn-TWatIn); + TAirOut=TAirIn-QTot_flow/(mAirNonZer_flow*cpAir); + TWatOut=TWatIn+QTot_flow/(mWatNonZer_flow*cpWat); - (TAirOut-TSurAirOut)*UAAir=(TSurAirOut-TWatIn)*UAWat; + (TAirOut-TSurAirOut)*UAAir=(TSurAirOut-TWatIn)*UAWat; annotation (Icon(coordinateSystem(preserveAspectRatio=false), graphics={ Rectangle( extent={{-100,100},{100,-100}}, lineColor={28,108,200}, fillColor={255,213,170}, - fillPattern=FillPattern.Solid)}), Diagram( + fillPattern=FillPattern.Solid)}), Diagram( coordinateSystem(preserveAspectRatio=false)), Documentation(revisions="
        diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo index 1d1b2bf95f4..9fd4aa50706 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo @@ -1,5 +1,5 @@ within Buildings.Fluid.HeatExchangers.BaseClasses; -model WetCoilWetRegime "Fully Wet coil model using esilon_C.mo function" +model WetCoilWetRegime "Fully wet coil model using esilon_C.mo function" // - water input Modelica.SIunits.ThermalConductance UAWat "UA for water side"; @@ -164,22 +164,51 @@ equation
      ", info="

      This model implements the calculation for a 100% wet coil.

      -

      The equations from Braun (1988) and Mitchell and Braun (2012a and b), which are essentially the extension of the ε-NTU approach to simultaneous sensible and latent heat transfer, are utilized.

      -

      The mathematical equations are analogous to that of the sensible heat exchanger. The key change is that the heat transfer is deriven by an enthalpy difference not by an temperature difference. This change in the deriving potential results in redefining capacitances and heat transfer coefficients accordinlgy.

      +

      The equations from Braun (1988) and Mitchell and Braun (2012a and b), +which are essentially the extension of the ε-NTU approach to +simultaneous sensible and latent heat transfer, are utilized.

      +

      The mathematical equations are analogous to that of the sensible heat exchanger. +The key change is that the heat transfer is driven by an enthalpy difference +not by an temperature difference. +This change in the driving potential results in redefining capacitances and +heat transfer coefficients accordinlgy.

      The total heat transfer rate is expressed as

      -

      Qtot=ε* C*min (hair,in-hsat(Twat,in)),

      -

      where ε*=f(Cr*,NTU*) and f is the same epsilon-NTU relationships (depending on the heat exchanger configuration) for the sensible heat exchanger.

      -

      hair,in and hsat(Twat,in) are the specific enthalpies of the incoming moist air and saturated moist air at the water inlet temperature.

      -

      The capacitances of water and air streams are defined as

      -

      C*air=mair and C*wat=mwatcp,wat/csat,

      -

      where csat is an specific heat capacity, which indicates the sensitivity of the enthalpy of the staturated moist air w.r.t. the temperature, and is defined here as csat=(hsat(Twat,out)-hsat(Twat,in)) /(Twat,out-Twat,in).

      -

      The capacitance ratio and minimum capacitance are naturally defined as

      -

      Cr*=min(C*air,C*wat)/max(C*air,C*wat) and C*min=min(C*air,C*wat).

      +

      Qtot=ε* C*min +(hair,in-hsat(Twat,in)),

      +

      where ε*=f(Cr*,NTU*) and f is the same epsilon-NTU relationships +(depending on the heat exchanger configuration) for the sensible heat exchanger.

      +

      hair,in and hsat(Twat,in) are the specific enthalpies +of the incoming moist air and saturated moist air at the water inlet temperature.

      +

      The capacitances of water and air streams are defined as

      +

      C*air=mair and +C*wat=mwatcp,wat/csat,

      +

      where csat is an specific heat capacity, which indicates the sensitivity +of the enthalpy of the staturated moist air w.r.t. the temperature, and is defined +here as csat=(hsat(Twat,out)-hsat(Twat,in)) +/(Twat,out-Twat,in).

      +

      The capacitance ratio and minimum capacitance are naturally defined as

      +

      Cr*=min(C*air,C*wat)/max(C*air,C*wat) +and C*min=min(C*air,C*wat).


      The number of transfer unit for the wet-coil is defined as NTU*=UA*/C*min, where

      UA*=1/(1/(UAair/cp,air)+1/(UAwat/csat).

      References

      -

      Braun, James E. 1988. "Methodologies for the Design and Control of Central Cooling Plants". PhD Thesis. University of Wisconsin - Madison. Available online: https://minds.wisconsin.edu/handle/1793/46694

      -

      Mitchell, John W., and James E. Braun. 2012a. Principles of heating, ventilation, and air conditioning in buildings. Hoboken, N.J.: Wiley.

      -

      Mitchell, John W., and James E. Braun. 2012b. "Supplementary Material Chapter 2: Heat Exchangers for Cooling Applications". Excerpt from Principles of heating, ventilation, and air conditioning in buildings. Hoboken, N.J.: Wiley. Available online: http://bcs.wiley.com/he-bcs/Books?action=index&itemId=0470624574&bcsId=7185

      +

      Braun, James E. 1988. +"Methodologies for the Design and Control of Central Cooling Plants". +PhD Thesis. University of Wisconsin - Madison. +Available + +online. +

      +

      Mitchell, John W., and James E. Braun. 2012a. +Principles of heating, ventilation, and air conditioning in buildings. +Hoboken, N.J.: Wiley.

      +

      Mitchell, John W., and James E. Braun. 2012b. +"Supplementary Material Chapter 2: Heat Exchangers for Cooling Applications". +Excerpt from Principles of heating, ventilation, and air conditioning in buildings. +Hoboken, N.J.: Wiley. +Available + +online. +

      ")); end WetCoilWetRegime; diff --git a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo index 496583f91f4..4a34204bb04 100644 --- a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo @@ -546,7 +546,10 @@ Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU. "Methodologies for the Design and Control of Central Cooling Plants". PhD Thesis. University of Wisconsin - Madison. -Available online: https://minds.wisconsin.edu/handle/1793/46694

      +Available + +online. +

      Mitchell, John W., and James E. Braun. 2012a. Principles of heating, ventilation, and air conditioning in buildings. Hoboken, N.J.: Wiley.

      @@ -554,7 +557,10 @@ Hoboken, N.J.: Wiley.

      "Supplementary Material Chapter 2: Heat Exchangers for Cooling Applications". Excerpt from Principles of heating, ventilation, and air conditioning in buildings. Hoboken, N.J.: Wiley. -Available online: http://bcs.wiley.com/he-bcs/Books?action=index&itemId=0470624574&bcsId=7185

      +Available + +online. +

      Elmahdy, A.H. and Mitalas, G.P. 1977. "A Simple Model for Cooling and Dehumidifying Coils for Use In Calculating Energy Requirements for Buildings". From 335a38613bdb71113d27f8a47e6c9e8808f822ba Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Fri, 12 Feb 2021 11:38:36 -0800 Subject: [PATCH 14/69] Update mos and results --- ...amples_WetCoilEffectivenessNTUMassFlow.txt | 13 ++++++++++++ ...ers_Validation_WetCoilEffectivenessNTU.txt | 20 +++++++++++++++++++ ...amples.WetCoilEffectivenessNTUMassFlow.mos | 7 +++++++ 3 files changed, 40 insertions(+) create mode 100644 Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilEffectivenessNTUMassFlow.txt create mode 100644 Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt create mode 100644 Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Examples.WetCoilEffectivenessNTUMassFlow.mos diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilEffectivenessNTUMassFlow.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilEffectivenessNTUMassFlow.txt new file mode 100644 index 00000000000..bbe05622631 --- /dev/null +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilEffectivenessNTUMassFlow.txt @@ -0,0 +1,13 @@ +last-generated=2021-02-12 +statistics-simulation= +{ + "linear": " ", + "nonlinear": "1, 1", + "number of continuous time states": "2", + "numerical Jacobians": "0" +} +time=[0e+00, 3.6e+03] +hex.Q2_flow=[-4.022505615234375e+03, -4.0076162109375e+03, -3.99414208984375e+03, -3.981961181640625e+03, -3.970961181640625e+03, -3.961038818359375e+03, -3.952092041015625e+03, -3.944025390625e+03, -3.936761962890625e+03, -3.93021728515625e+03, -3.924324462890625e+03, -3.728418701171875e+03, -3.509232177734375e+03, -3.262787353515625e+03, -2.9841943359375e+03, -2.6673583984375e+03, -2.304554443359375e+03, -1.885688842773438e+03, -1.396859619140625e+03, -7.950651245117188e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.038280792236328e+02, -1.036799240112305e+02, -1.015619049072266e+02, -9.358493041992185e+01, -2.55761919005809e-12, -1.020483016967774e+02, -1.033460006713867e+02, -1.036785202026367e+02, -1.03827018737793e+02, -1.039108505249023e+02, -1.038740539550781e+02, -1.03827018737793e+02, -1.03764762878418e+02, -1.036785202026367e+02, -1.035513381958008e+02, -1.033460006713867e+02, -1.029638900756836e+02, -1.020483016967773e+02, -9.817852783203125e+01, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00] +hex.QLat2_flow=[-2.544043701171875e+03, -2.534263916015625e+03, -2.525406494140625e+03, -2.51739306640625e+03, -2.51015185546875e+03, -2.5036162109375e+03, -2.497719970703125e+03, -2.4924013671875e+03, -2.487610107421875e+03, -2.483291259765625e+03, -2.4794013671875e+03, -2.34935205078125e+03, -2.202218994140625e+03, -2.034814086914062e+03, -1.843166137695312e+03, -1.622259521484375e+03, -1.365657470703125e+03, -1.064861450195312e+03, -7.08005126953125e+02, -2.370467681884766e+02, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -2.549400037920748e-13, -8.407790785948637e-45, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00] +hex.port_a1.m_flow=[1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 9.009999781847e-02, 8.020000159740448e-02, 7.029999792575836e-02, 6.040000170469283e-02, 5.050000175833702e-02, 4.06000018119812e-02, 3.070000000298023e-02, 2.080000005662441e-02, 1.090000011026859e-02, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03] +hex.port_a2.m_flow=[1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.120000034570694e-01, 8.399999886751175e-02, 5.60000017285347e-02, 2.800000086426717e-02, -7.140166331002833e-15, -2.800000086426753e-02, -5.60000017285347e-02, -8.399999886751175e-02, -1.120000034570694e-01, -1.400000005960464e-01, -1.260000020265579e-01, -1.120000034570694e-01, -9.799999743700027e-02, -8.399999886751175e-02, -7.000000029802322e-02, -5.60000017285347e-02, -4.199999943375587e-02, -2.800000086426735e-02, -1.400000043213367e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt new file mode 100644 index 00000000000..f39ef0c5e47 --- /dev/null +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt @@ -0,0 +1,20 @@ +last-generated=2021-02-12 +statistics-initialization= +{ + "nonlinear": "120", + "numerical Jacobians": "0" +} +statistics-simulation= +{ + "linear": " ", + "nonlinear": "1, 1, 1, 1", + "number of continuous time states": "126", + "numerical Jacobians": "0" +} +time=[0e+00, 1e+02] +hexWetNTU.Q1_flow=[4.37056796875e+04, 4.370878515625e+04, 4.3711890625e+04, 4.37149921875e+04, 4.371809765625e+04, 4.372119921875e+04, 4.37243046875e+04, 4.372740625e+04, 4.37305078125e+04, 4.3733609375e+04, 4.37367109375e+04, 4.373980859375e+04, 4.374291015625e+04, 4.374601171875e+04, 4.3749109375e+04, 4.375220703125e+04, 4.375530859375e+04, 4.375840625e+04, 4.376150390625e+04, 4.37646015625e+04, 4.376769921875e+04, 4.377079296875e+04, 4.3773890625e+04, 4.3776859375e+04, 4.3778203125e+04, 4.377459375e+04, 4.376528515625e+04, 4.37565546875e+04, 4.376233203125e+04, 4.38018359375e+04, 4.3896015625e+04, 4.406403125e+04, 4.432055078125e+04, 4.46741640625e+04, 4.512680859375e+04, 4.567404296875e+04, 4.630587109375e+04, 4.700792578125e+04, 4.776289453125e+04, 4.855203515625e+04, 4.93567265625e+04, 5.0159953125e+04, 5.09475234375e+04, 5.170898828125e+04, 5.243811328125e+04, 5.313291015625e+04, 5.379522265625e+04, 5.442989453125e+04, 5.504365234375e+04, 5.56437265625e+04, 5.623644921875e+04, 5.682620703125e+04, 5.7415171875e+04, 5.800399609375e+04, 5.85927578125e+04, 5.918146875000001e+04, 5.977012109375001e+04, 6.035871484374999e+04, 6.094724999999999e+04, 6.15357265625e+04, 6.2124140625e+04, 6.271249609375e+04, 6.330078515625e+04, 6.388901171875e+04, 6.4477171875e+04, 6.506526953125e+04, 6.5653296875e+04, 6.62412578125e+04, 6.68291484375e+04, 6.741696875e+04, 6.800471875e+04, 6.85923984375e+04, 6.918e+04, 6.976753125e+04, 7.0354984375e+04, 7.09423671875e+04, 7.1529671875e+04, 7.21168984375e+04, 7.2704046875e+04, 7.3291109375e+04, 7.387809375e+04, 7.4465e+04, 7.50518125e+04, 7.5638546875e+04, 7.62251953125e+04, 7.68117578125e+04, 7.7398234375e+04, 7.7984625e+04, 7.85709296875e+04, 7.9157140625e+04, 7.97432578125e+04, 8.03292890625e+04, 8.091521875e+04, 8.15010625e+04, 8.20868046875e+04, 8.2672453125e+04, 8.3258e+04, 8.3843453125e+04, 8.44288046875e+04, 8.50140546875e+04, 8.5599203125e+04] +hexDis.Q1_flow=[4.4666953125e+04, 4.466725390625e+04, 4.466858203125e+04, 4.467100390625e+04, 4.46739765625e+04, 4.467706640625e+04, 4.4680171875e+04, 4.468328515625e+04, 4.46863984375e+04, 4.468951171875e+04, 4.469262109375e+04, 4.4695734375e+04, 4.469884765625e+04, 4.470195703125e+04, 4.470506640625e+04, 4.47081796875e+04, 4.47112890625e+04, 4.47143984375e+04, 4.471750390625e+04, 4.472061328125e+04, 4.472372265625e+04, 4.4726828125e+04, 4.47299375e+04, 4.473962109375e+04, 4.478994921875e+04, 4.49309453125e+04, 4.51363671875e+04, 4.53930703125e+04, 4.56890703125e+04, 4.601998828125e+04, 4.63766875e+04, 4.675676953125e+04, 4.715906640625e+04, 4.7578296875e+04, 4.801227734375e+04, 4.8460671875e+04, 4.89236953125e+04, 4.93978671875e+04, 4.988003125e+04, 5.036958984375e+04, 5.08743359375e+04, 5.138170703125e+04, 5.18975625e+04, 5.24225546875e+04, 5.2948265625e+04, 5.348762109375e+04, 5.402362890625e+04, 5.457392578125e+04, 5.512123828125e+04, 5.56794296875e+04, 5.623846875e+04, 5.67993984375e+04, 5.73712109375e+04, 5.79363828125e+04, 5.851594921875e+04, 5.909400390625001e+04, 5.966661328125001e+04, 6.023606249999999e+04, 6.080408984374999e+04, 6.13713125e+04, 6.1937921875e+04, 6.250390625e+04, 6.306925390625e+04, 6.363396484375e+04, 6.419801953125e+04, 6.476143359375e+04, 6.5324203125e+04, 6.5886328125e+04, 6.64477890625e+04, 6.7008609375e+04, 6.75687734375e+04, 6.8128296875e+04, 6.8687171875e+04, 6.92453828125e+04, 6.9802921875e+04, 7.03598125e+04, 7.0916046875e+04, 7.1471625e+04, 7.20265546875e+04, 7.25808359375e+04, 7.3134453125e+04, 7.3687421875e+04, 7.42397421875e+04, 7.47913984375e+04, 7.53424140625e+04, 7.5892734375e+04, 7.64423671875e+04, 7.69913359375e+04, 7.75396484375e+04, 7.8087296875e+04, 7.86342734375e+04, 7.918059375e+04, 7.972625e+04, 8.027125e+04, 8.0815578125e+04, 8.135925e+04, 8.190225e+04, 8.24446171875e+04, 8.29863046875e+04, 8.352728125e+04, 8.40672421875e+04] +hexWetNTU.sta_b2.T=[2.834467163085938e+02, 2.83447509765625e+02, 2.834483032226562e+02, 2.834490966796875e+02, 2.834498901367188e+02, 2.8345068359375e+02, 2.834514770507812e+02, 2.834522399902344e+02, 2.834530334472656e+02, 2.834538269042969e+02, 2.834546203613281e+02, 2.834554138183594e+02, 2.834562072753906e+02, 2.834570007324219e+02, 2.834577941894531e+02, 2.834585876464844e+02, 2.834593811035156e+02, 2.834601745605469e+02, 2.834609680175781e+02, 2.834617614746094e+02, 2.834625549316406e+02, 2.834633483886719e+02, 2.834641418457031e+02, 2.834649658203125e+02, 2.834664001464844e+02, 2.834696960449219e+02, 2.834751281738281e+02, 2.834803466796875e+02, 2.834862976074219e+02, 2.835041198730469e+02, 2.835307922363281e+02, 2.835674438476562e+02, 2.836146240234375e+02, 2.836721801757812e+02, 2.837392883300781e+02, 2.838145751953125e+02, 2.838963012695312e+02, 2.839824829101562e+02, 2.840709533691406e+02, 2.8415966796875e+02, 2.842467346191406e+02, 2.8433056640625e+02, 2.844099731445312e+02, 2.844843139648438e+02, 2.845532836914062e+02, 2.846171875e+02, 2.846765747070312e+02, 2.847322692871094e+02, 2.847853088378906e+02, 2.848366088867188e+02, 2.848869934082031e+02, 2.849369506835938e+02, 2.849867553710938e+02, 2.850364685058594e+02, 2.850861206054688e+02, 2.851356811523438e+02, 2.851851806640625e+02, 2.85234619140625e+02, 2.852839660644531e+02, 2.85333251953125e+02, 2.853824768066406e+02, 2.854316101074219e+02, 2.854806823730469e+02, 2.855296936035156e+02, 2.855786437988281e+02, 2.856275024414062e+02, 2.856763000488281e+02, 2.857250366210938e+02, 2.85773681640625e+02, 2.858222961425781e+02, 2.858708190917969e+02, 2.859192810058594e+02, 2.859676818847656e+02, 2.860159912109375e+02, 2.860642700195312e+02, 2.861124572753906e+02, 2.861605834960938e+02, 2.862086486816406e+02, 2.862566528320312e+02, 2.863045654296875e+02, 2.863524475097656e+02, 2.864002685546875e+02, 2.86447998046875e+02, 2.864956665039062e+02, 2.865432739257812e+02, 2.865908508300781e+02, 2.866383361816406e+02, 2.866857604980469e+02, 2.867331237792969e+02, 2.867804260253906e+02, 2.868276672363281e+02, 2.868748474121094e+02, 2.869219665527344e+02, 2.869690246582031e+02, 2.870160217285156e+02, 2.870629577636719e+02, 2.871098327636719e+02, 2.871566467285156e+02, 2.872033996582031e+02, 2.872500915527344e+02, 2.872967529296875e+02] +hexDis.sta_b2.T=[2.83086669921875e+02, 2.83086669921875e+02, 2.83086669921875e+02, 2.830868530273438e+02, 2.830875244140625e+02, 2.830883178710938e+02, 2.830891418457031e+02, 2.830899963378906e+02, 2.830908203125e+02, 2.830916442871094e+02, 2.830924682617188e+02, 2.830933227539062e+02, 2.830941467285156e+02, 2.83094970703125e+02, 2.830957946777344e+02, 2.830966186523438e+02, 2.830974731445312e+02, 2.830982971191406e+02, 2.8309912109375e+02, 2.830999450683594e+02, 2.831007995605469e+02, 2.831016235351562e+02, 2.831024475097656e+02, 2.831050109863281e+02, 2.831155700683594e+02, 2.831455078125e+02, 2.831873474121094e+02, 2.832371826171875e+02, 2.832922668457031e+02, 2.833505859375e+02, 2.834109802246094e+02, 2.834725952148438e+02, 2.835348205566406e+02, 2.835973510742188e+02, 2.836598510742188e+02, 2.8372216796875e+02, 2.837841796875e+02, 2.838457946777344e+02, 2.839069213867188e+02, 2.83967529296875e+02, 2.840276184082031e+02, 2.84087158203125e+02, 2.841461181640625e+02, 2.842045288085938e+02, 2.842623596191406e+02, 2.843196716308594e+02, 2.843764038085938e+02, 2.844326171875e+02, 2.8448828125e+02, 2.845434875488281e+02, 2.8459814453125e+02, 2.8465234375e+02, 2.847060546875e+02, 2.8475927734375e+02, 2.848120727539062e+02, 2.848644104003906e+02, 2.849163818359375e+02, 2.849678955078125e+02, 2.8501904296875e+02, 2.850700073242188e+02, 2.851209411621094e+02, 2.85171875e+02, 2.852228088378906e+02, 2.852737731933594e+02, 2.853246765136719e+02, 2.853756103515625e+02, 2.854265441894531e+02, 2.854774475097656e+02, 2.855283508300781e+02, 2.855792541503906e+02, 2.856301574707031e+02, 2.856810302734375e+02, 2.8573193359375e+02, 2.857828063964844e+02, 2.858336486816406e+02, 2.85884521484375e+02, 2.859353637695312e+02, 2.859862060546875e+02, 2.860370483398438e+02, 2.860878601074219e+02, 2.86138671875e+02, 2.861894836425781e+02, 2.862402954101562e+02, 2.862911071777344e+02, 2.863418884277344e+02, 2.863926696777344e+02, 2.864434204101562e+02, 2.864941711425781e+02, 2.86544921875e+02, 2.865956420898438e+02, 2.866463928222656e+02, 2.866970825195312e+02, 2.86747802734375e+02, 2.867984924316406e+02, 2.868491821289062e+02, 2.868998718261719e+02, 2.869505310058594e+02, 2.870011901855469e+02, 2.870518493652344e+02, 2.871024780273438e+02, 2.871531066894531e+02] +hexDis.fraDry=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 8.999999761581421e-01, 8.00000011920929e-01, 7.333333492279053e-01, 6.666666865348816e-01, 6.000000238418579e-01, 5.666666626930237e-01, 5.333333611488342e-01, 4.666666686534882e-01, 4.333333373069763e-01, 4.000000059604645e-01, 3.666666746139526e-01, 3.666666746139526e-01, 3.333333432674408e-01, 3.00000011920929e-01, 2.666666805744171e-01, 2.666666805744171e-01, 2.333333343267441e-01, 2.000000029802322e-01, 2.000000029802322e-01, 1.666666716337204e-01, 1.666666716337204e-01, 1.333333402872086e-01, 1.333333402872086e-01, 1.000000014901161e-01, 1.000000014901161e-01, 6.666667014360428e-02, 6.666667014360428e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +hexWetNTU.SHR=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.996239542961121e-01, 9.977563619613647e-01, 9.941201210021973e-01, 9.882391095161438e-01, 9.798130989074707e-01, 9.687609076499939e-01, 9.552227854728699e-01, 9.395307898521423e-01, 9.221569299697876e-01, 9.036521315574646e-01, 8.845856785774231e-01, 8.654928207397461e-01, 8.468344807624817e-01, 8.289710879325867e-01, 8.12149703502655e-01, 7.965038418769836e-01, 7.820627689361572e-01, 7.687678933143616e-01, 7.564942240715027e-01, 7.450746297836304e-01, 7.34325647354126e-01, 7.240735292434692e-01, 7.141772508621216e-01, 7.045431733131409e-01, 6.951236724853516e-01, 6.85900866985321e-01, 6.768673062324524e-01, 6.680172085762023e-01, 6.593452095985411e-01, 6.508459448814393e-01, 6.425145268440248e-01, 6.34346067905426e-01, 6.263357996940613e-01, 6.184794306755066e-01, 6.107724905014038e-01, 6.032108664512634e-01, 5.957905650138855e-01, 5.885077714920044e-01, 5.813586711883545e-01, 5.74339747428894e-01, 5.674475431442261e-01, 5.606786608695984e-01, 5.540299415588379e-01, 5.474982261657715e-01, 5.410805344581604e-01, 5.347739458084106e-01, 5.285756587982178e-01, 5.224829316139221e-01, 5.164932012557983e-01, 5.106038451194763e-01, 5.048125386238098e-01, 4.991167485713959e-01, 4.935142695903778e-01, 4.880028665065765e-01, 4.825803637504578e-01, 4.772446751594543e-01, 4.719937443733215e-01, 4.668256640434265e-01, 4.617384970188141e-01, 4.567303657531738e-01, 4.517995417118073e-01, 4.469442665576935e-01, 4.42162811756134e-01, 4.374535977840424e-01, 4.328150153160095e-01, 4.282455146312714e-01, 4.237436056137085e-01, 4.193077981472015e-01, 4.149367213249207e-01, 4.10629004240036e-01, 4.063832759857178e-01, 4.021982550621033e-01, 3.980726599693298e-01] diff --git a/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Examples.WetCoilEffectivenessNTUMassFlow.mos b/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Examples.WetCoilEffectivenessNTUMassFlow.mos new file mode 100644 index 00000000000..304bb5faf26 --- /dev/null +++ b/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Examples.WetCoilEffectivenessNTUMassFlow.mos @@ -0,0 +1,7 @@ +compareVars := + { + "hex.Q2_flow", + "hex.QLat2_flow", + "hex.port_a1.m_flow", + "hex.port_a2.m_flow" + }; From b45c94844d189c0d2102011cb7731f6d0b2cafcb Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Fri, 12 Feb 2021 12:22:18 -0800 Subject: [PATCH 15/69] Clean validation --- .../WetCoilEffectivenessNTUMassFlow.mo | 11 +++++---- .../Validation/WetCoilEffectivenessNTU.mo | 24 ++----------------- .../HeatExchangers/WetCoilEffectivenessNTU.mo | 8 +++++-- 3 files changed, 14 insertions(+), 29 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mo b/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mo index 7ae998e1af6..1a3b1c01de0 100644 --- a/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mo +++ b/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mo @@ -19,12 +19,13 @@ model WetCoilEffectivenessNTUMassFlow allowFlowReversal2=true, dp1_nominal(displayUnit="Pa") = 3000, UA_nominal=Q_flow_nominal/Buildings.Fluid.HeatExchangers.BaseClasses.lmtd( - T_a1_nominal, - T_b1_nominal, - T_a2_nominal, - T_b2_nominal), + T_a1_nominal, + T_b1_nominal, + T_a2_nominal, + T_b2_nominal), show_T=true, - energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState) "Heat exchanger" + energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState) + "Heat exchanger" annotation (Placement(transformation(extent={{80,20},{100,40}}))); Sensors.RelativeHumidityTwoPort senRelHum( diff --git a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo index 08038aa46b7..b7cb74c6d27 100644 --- a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo @@ -8,41 +8,21 @@ model WetCoilEffectivenessNTU constant Modelica.SIunits.AbsolutePressure pAtm = 101325 "Atmospheric pressure"; - parameter Modelica.SIunits.Temperature T_a1_nominal= Modelica.SIunits.Conversions.from_degF(42) "Inlet water temperature"; parameter Modelica.SIunits.Temperature T_a2_nominal= Modelica.SIunits.Conversions.from_degF(80) "Inlet air temperature"; - parameter Modelica.SIunits.ThermalConductance UA_nominal = 4748 "Total thermal conductance at nominal flow, from textbook"; - - parameter Real X_w2_nominal_0s(min=0,max=1) = 0.0035383 - "Inlet air humidity ratio at 0s real time (100% dry)"; - parameter Real X_w2_nominal_100s(min=0,max=1) = 0.0177 - "Inlet air humidity ratio at 100s real time (0% dry)"; - parameter Real X_w2_nominal_75s(min=0,max=1) = 0.0141 - "Inlet air humidity ratio at 75s real time (0% dry)"; - parameter Real X_w2_nominal_35s(min=0,max=1) = 0.0085 - "Inlet air humidity ratio at 35s real time (~40% dry)"; - parameter Modelica.SIunits.HeatFlowRate Q_flow_nominal_0s = 44234 - "Reference heat flow rate at 0s real time (100% dry)"; - parameter Modelica.SIunits.HeatFlowRate Q_flow_nominal_100s = 85625 - "Reference heat flow rate at 100s real time (0% dry)"; - parameter Modelica.SIunits.HeatFlowRate Q_flow_nominal_75s = 71368 - "Reference heat flow rate at 75s real time (0% dry)"; - parameter Modelica.SIunits.HeatFlowRate Q_flow_nominal_35s = 46348 - "Reference heat flow rate at 35s real time (~40% dry)"; - parameter Modelica.SIunits.MassFlowRate m1_flow_nominal = 3.78 "Nominal mass flow rate of water"; parameter Modelica.SIunits.MassFlowRate m2_flow_nominal = 2.646 "Nominal mass flow rate of air"; - parameter Types.HeatExchangerConfiguration hexCon=Types.HeatExchangerConfiguration.CrossFlowStream1MixedStream2Unmixed + parameter Types.HeatExchangerConfiguration hexCon= + Types.HeatExchangerConfiguration.CrossFlowStream1MixedStream2Unmixed "Heat exchanger configuration"; - Buildings.Fluid.Sources.Boundary_pT sinAir( redeclare package Medium = Medium_A, use_p_in=false, diff --git a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo index 4a34204bb04..6de8b72fb15 100644 --- a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo @@ -163,10 +163,14 @@ protected Medium2.temperature(state_a2_inflow)) "Temperature at port a2" annotation (Placement(transformation(extent={{-98,-8},{-84,4}}))); - Modelica.Blocks.Sources.RealExpression m_flow_a1Exp(final y=Buildings.Utilities.Math.Functions.regNonZeroPower(x=port_a1.m_flow,n=1,delta=delta*m1_flow_nominal)) + Modelica.Blocks.Sources.RealExpression m_flow_a1Exp( + final y=Buildings.Utilities.Math.Functions.regNonZeroPower( + x=port_a1.m_flow,n=1,delta=delta*m1_flow_nominal)) "Absolute value of mass flow rate on water side" annotation (Placement(transformation(extent={{-98,30},{-84,42}}))); - Modelica.Blocks.Sources.RealExpression m_flow_a2Exp(final y=Buildings.Utilities.Math.Functions.regNonZeroPower(x=port_a2.m_flow,n=1,delta=delta*m2_flow_nominal)) + Modelica.Blocks.Sources.RealExpression m_flow_a2Exp( + final y=Buildings.Utilities.Math.Functions.regNonZeroPower( + x=port_a2.m_flow,n=1,delta=delta*m2_flow_nominal)) "Absolute value of mass flow rate on air side" annotation (Placement(transformation(extent={{-98,-36},{-84,-24}}))); final parameter Integer nWat= From 060bc05d3e1400670681156f8ce9eef1657f382a Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Fri, 12 Feb 2021 15:27:45 -0800 Subject: [PATCH 16/69] Rename variable dryFra --- .../BaseClasses/WetCoilDryRegime.mo | 4 +++- .../BaseClasses/WetCoilDryWetRegime.mo | 11 ++++++---- .../HeatExchangers/WetCoilCounterFlow.mo | 2 +- .../HeatExchangers/WetCoilEffectivenessNTU.mo | 11 +++++----- ...ers_Validation_WetCoilEffectivenessNTU.txt | 20 ------------------- .../Validation/WetCoilEffectivenessNTU.mos | 2 +- ...ers.Validation.WetCoilEffectivenessNTU.mos | 12 ----------- 7 files changed, 18 insertions(+), 44 deletions(-) delete mode 100644 Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt delete mode 100644 Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo index 976402a1365..2ebbc06cd19 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo @@ -84,7 +84,9 @@ equation coordinateSystem(preserveAspectRatio=false)), Documentation(revisions="

        -
      • Jan 21, 2021, by Donghun Kim:
        First implementation of the fuzzy model. See issue 622 for more information.
      • +
      • Jan 21, 2021, by Donghun Kim:
        First implementation of the fuzzy model. +See issue 622 +for more information.
      ", info="

      This model implements the calculation for a 100% dry coil.

      diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo index d4e694ddd76..aa981ffca3f 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo @@ -181,13 +181,16 @@ protected Buildings.Utilities.Psychrometrics.TDewPoi_pW TDewIn(p_w=pWIn.p_w); //-- parameters for fuzzy logics - Real mu_FW(unit="1",min=0, max=1), mu_FD(unit="1",min=0, max=1) "membership functions for Fully-Wet and Fully-Dry conditions"; - Real w_FW(unit="1",min=0, max=1), w_FD(unit="1",min=0, max=1) "normailized weight functions for Fully-Wet and Fully-Dry conditions"; - Real dryfra(unit="1",min=0, max=1) "dry fraction of cooling coil, e.g., 0.3 means condensation occurs at the 30% heat exchanger length from the air inlet"; + Real mu_FW(final unit="1", min=0, max=1), mu_FD(unit="1",min=0, max=1) + "membership functions for Fully-Wet and Fully-Dry conditions"; + Real w_FW(final unit="1", min=0, max=1), w_FD(unit="1",min=0, max=1) + "normailized weight functions for Fully-Wet and Fully-Dry conditions"; + Real dryFra(final unit="1", min=0, max=1) + "dry fraction, e.g., 0.3 means condensation occurs at 30% HX length from air inlet"; equation - TAirInDewPoi = TDewIn.T; + TAirInDewPoi=TDewIn.T; mu_FW= Buildings.Utilities.Math.Functions.spliceFunction( pos=0,neg=1,x=fullywet.TSurAirIn-TAirInDewPoi,deltax=max(abs(fullydry.TSurAirOut- fullywet.TSurAirIn),1e-3)); diff --git a/Buildings/Fluid/HeatExchangers/WetCoilCounterFlow.mo b/Buildings/Fluid/HeatExchangers/WetCoilCounterFlow.mo index d4040f7b89d..3ebff30e077 100644 --- a/Buildings/Fluid/HeatExchangers/WetCoilCounterFlow.mo +++ b/Buildings/Fluid/HeatExchangers/WetCoilCounterFlow.mo @@ -28,7 +28,7 @@ model WetCoilCounterFlow Modelica.SIunits.MassFlowRate mWat_flow = sum(ele[i].vol2.mWat_flow for i in 1:nEle) "Water flow rate"; - Real fraDry(final unit="1") = Modelica.Math.BooleanVectors.countTrue( + Real dryFra(final unit="1") = Modelica.Math.BooleanVectors.countTrue( {abs(ele[i].vol2.mWat_flow)= delta then 1 else (1/delta * m1_flow/m1_flow_nominal)^2; - Real fac2 = Buildings.Utilities.Math.Functions.smoothMin((1/delta * m2_flow/m2_flow_nominal)^2,1,delta1); - //Real fac2 = if abs(m2_flow)/m2_flow_nominal >= delta then 1 else (1/delta * m2_flow/m2_flow_nominal)^2; + Real fac1 = Buildings.Utilities.Math.Functions.smoothMin( + (1/delta * m1_flow/m1_flow_nominal)^2,1,delta1); + Real fac2 = Buildings.Utilities.Math.Functions.smoothMin( + (1/delta * m2_flow/m2_flow_nominal)^2,1,delta1); Real Qfac = fac1*fac2; Buildings.Fluid.HeatExchangers.HeaterCooler_u heaCoo( @@ -104,7 +104,8 @@ protected final cfg=flowRegime, final mWat_flow_nominal=m1_flow_nominal, final mAir_flow_nominal=m2_flow_nominal, - Qfac=Qfac) "Dry/wet calculations block" + Qfac=Qfac) + "Dry/wet calculations block" annotation (Placement(transformation(extent={{-20,-40},{60,40}}))); Modelica.Blocks.Sources.RealExpression cp_a1Exp( final y = if allowFlowReversal1 diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt deleted file mode 100644 index f39ef0c5e47..00000000000 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt +++ /dev/null @@ -1,20 +0,0 @@ -last-generated=2021-02-12 -statistics-initialization= -{ - "nonlinear": "120", - "numerical Jacobians": "0" -} -statistics-simulation= -{ - "linear": " ", - "nonlinear": "1, 1, 1, 1", - "number of continuous time states": "126", - "numerical Jacobians": "0" -} -time=[0e+00, 1e+02] -hexWetNTU.Q1_flow=[4.37056796875e+04, 4.370878515625e+04, 4.3711890625e+04, 4.37149921875e+04, 4.371809765625e+04, 4.372119921875e+04, 4.37243046875e+04, 4.372740625e+04, 4.37305078125e+04, 4.3733609375e+04, 4.37367109375e+04, 4.373980859375e+04, 4.374291015625e+04, 4.374601171875e+04, 4.3749109375e+04, 4.375220703125e+04, 4.375530859375e+04, 4.375840625e+04, 4.376150390625e+04, 4.37646015625e+04, 4.376769921875e+04, 4.377079296875e+04, 4.3773890625e+04, 4.3776859375e+04, 4.3778203125e+04, 4.377459375e+04, 4.376528515625e+04, 4.37565546875e+04, 4.376233203125e+04, 4.38018359375e+04, 4.3896015625e+04, 4.406403125e+04, 4.432055078125e+04, 4.46741640625e+04, 4.512680859375e+04, 4.567404296875e+04, 4.630587109375e+04, 4.700792578125e+04, 4.776289453125e+04, 4.855203515625e+04, 4.93567265625e+04, 5.0159953125e+04, 5.09475234375e+04, 5.170898828125e+04, 5.243811328125e+04, 5.313291015625e+04, 5.379522265625e+04, 5.442989453125e+04, 5.504365234375e+04, 5.56437265625e+04, 5.623644921875e+04, 5.682620703125e+04, 5.7415171875e+04, 5.800399609375e+04, 5.85927578125e+04, 5.918146875000001e+04, 5.977012109375001e+04, 6.035871484374999e+04, 6.094724999999999e+04, 6.15357265625e+04, 6.2124140625e+04, 6.271249609375e+04, 6.330078515625e+04, 6.388901171875e+04, 6.4477171875e+04, 6.506526953125e+04, 6.5653296875e+04, 6.62412578125e+04, 6.68291484375e+04, 6.741696875e+04, 6.800471875e+04, 6.85923984375e+04, 6.918e+04, 6.976753125e+04, 7.0354984375e+04, 7.09423671875e+04, 7.1529671875e+04, 7.21168984375e+04, 7.2704046875e+04, 7.3291109375e+04, 7.387809375e+04, 7.4465e+04, 7.50518125e+04, 7.5638546875e+04, 7.62251953125e+04, 7.68117578125e+04, 7.7398234375e+04, 7.7984625e+04, 7.85709296875e+04, 7.9157140625e+04, 7.97432578125e+04, 8.03292890625e+04, 8.091521875e+04, 8.15010625e+04, 8.20868046875e+04, 8.2672453125e+04, 8.3258e+04, 8.3843453125e+04, 8.44288046875e+04, 8.50140546875e+04, 8.5599203125e+04] -hexDis.Q1_flow=[4.4666953125e+04, 4.466725390625e+04, 4.466858203125e+04, 4.467100390625e+04, 4.46739765625e+04, 4.467706640625e+04, 4.4680171875e+04, 4.468328515625e+04, 4.46863984375e+04, 4.468951171875e+04, 4.469262109375e+04, 4.4695734375e+04, 4.469884765625e+04, 4.470195703125e+04, 4.470506640625e+04, 4.47081796875e+04, 4.47112890625e+04, 4.47143984375e+04, 4.471750390625e+04, 4.472061328125e+04, 4.472372265625e+04, 4.4726828125e+04, 4.47299375e+04, 4.473962109375e+04, 4.478994921875e+04, 4.49309453125e+04, 4.51363671875e+04, 4.53930703125e+04, 4.56890703125e+04, 4.601998828125e+04, 4.63766875e+04, 4.675676953125e+04, 4.715906640625e+04, 4.7578296875e+04, 4.801227734375e+04, 4.8460671875e+04, 4.89236953125e+04, 4.93978671875e+04, 4.988003125e+04, 5.036958984375e+04, 5.08743359375e+04, 5.138170703125e+04, 5.18975625e+04, 5.24225546875e+04, 5.2948265625e+04, 5.348762109375e+04, 5.402362890625e+04, 5.457392578125e+04, 5.512123828125e+04, 5.56794296875e+04, 5.623846875e+04, 5.67993984375e+04, 5.73712109375e+04, 5.79363828125e+04, 5.851594921875e+04, 5.909400390625001e+04, 5.966661328125001e+04, 6.023606249999999e+04, 6.080408984374999e+04, 6.13713125e+04, 6.1937921875e+04, 6.250390625e+04, 6.306925390625e+04, 6.363396484375e+04, 6.419801953125e+04, 6.476143359375e+04, 6.5324203125e+04, 6.5886328125e+04, 6.64477890625e+04, 6.7008609375e+04, 6.75687734375e+04, 6.8128296875e+04, 6.8687171875e+04, 6.92453828125e+04, 6.9802921875e+04, 7.03598125e+04, 7.0916046875e+04, 7.1471625e+04, 7.20265546875e+04, 7.25808359375e+04, 7.3134453125e+04, 7.3687421875e+04, 7.42397421875e+04, 7.47913984375e+04, 7.53424140625e+04, 7.5892734375e+04, 7.64423671875e+04, 7.69913359375e+04, 7.75396484375e+04, 7.8087296875e+04, 7.86342734375e+04, 7.918059375e+04, 7.972625e+04, 8.027125e+04, 8.0815578125e+04, 8.135925e+04, 8.190225e+04, 8.24446171875e+04, 8.29863046875e+04, 8.352728125e+04, 8.40672421875e+04] -hexWetNTU.sta_b2.T=[2.834467163085938e+02, 2.83447509765625e+02, 2.834483032226562e+02, 2.834490966796875e+02, 2.834498901367188e+02, 2.8345068359375e+02, 2.834514770507812e+02, 2.834522399902344e+02, 2.834530334472656e+02, 2.834538269042969e+02, 2.834546203613281e+02, 2.834554138183594e+02, 2.834562072753906e+02, 2.834570007324219e+02, 2.834577941894531e+02, 2.834585876464844e+02, 2.834593811035156e+02, 2.834601745605469e+02, 2.834609680175781e+02, 2.834617614746094e+02, 2.834625549316406e+02, 2.834633483886719e+02, 2.834641418457031e+02, 2.834649658203125e+02, 2.834664001464844e+02, 2.834696960449219e+02, 2.834751281738281e+02, 2.834803466796875e+02, 2.834862976074219e+02, 2.835041198730469e+02, 2.835307922363281e+02, 2.835674438476562e+02, 2.836146240234375e+02, 2.836721801757812e+02, 2.837392883300781e+02, 2.838145751953125e+02, 2.838963012695312e+02, 2.839824829101562e+02, 2.840709533691406e+02, 2.8415966796875e+02, 2.842467346191406e+02, 2.8433056640625e+02, 2.844099731445312e+02, 2.844843139648438e+02, 2.845532836914062e+02, 2.846171875e+02, 2.846765747070312e+02, 2.847322692871094e+02, 2.847853088378906e+02, 2.848366088867188e+02, 2.848869934082031e+02, 2.849369506835938e+02, 2.849867553710938e+02, 2.850364685058594e+02, 2.850861206054688e+02, 2.851356811523438e+02, 2.851851806640625e+02, 2.85234619140625e+02, 2.852839660644531e+02, 2.85333251953125e+02, 2.853824768066406e+02, 2.854316101074219e+02, 2.854806823730469e+02, 2.855296936035156e+02, 2.855786437988281e+02, 2.856275024414062e+02, 2.856763000488281e+02, 2.857250366210938e+02, 2.85773681640625e+02, 2.858222961425781e+02, 2.858708190917969e+02, 2.859192810058594e+02, 2.859676818847656e+02, 2.860159912109375e+02, 2.860642700195312e+02, 2.861124572753906e+02, 2.861605834960938e+02, 2.862086486816406e+02, 2.862566528320312e+02, 2.863045654296875e+02, 2.863524475097656e+02, 2.864002685546875e+02, 2.86447998046875e+02, 2.864956665039062e+02, 2.865432739257812e+02, 2.865908508300781e+02, 2.866383361816406e+02, 2.866857604980469e+02, 2.867331237792969e+02, 2.867804260253906e+02, 2.868276672363281e+02, 2.868748474121094e+02, 2.869219665527344e+02, 2.869690246582031e+02, 2.870160217285156e+02, 2.870629577636719e+02, 2.871098327636719e+02, 2.871566467285156e+02, 2.872033996582031e+02, 2.872500915527344e+02, 2.872967529296875e+02] -hexDis.sta_b2.T=[2.83086669921875e+02, 2.83086669921875e+02, 2.83086669921875e+02, 2.830868530273438e+02, 2.830875244140625e+02, 2.830883178710938e+02, 2.830891418457031e+02, 2.830899963378906e+02, 2.830908203125e+02, 2.830916442871094e+02, 2.830924682617188e+02, 2.830933227539062e+02, 2.830941467285156e+02, 2.83094970703125e+02, 2.830957946777344e+02, 2.830966186523438e+02, 2.830974731445312e+02, 2.830982971191406e+02, 2.8309912109375e+02, 2.830999450683594e+02, 2.831007995605469e+02, 2.831016235351562e+02, 2.831024475097656e+02, 2.831050109863281e+02, 2.831155700683594e+02, 2.831455078125e+02, 2.831873474121094e+02, 2.832371826171875e+02, 2.832922668457031e+02, 2.833505859375e+02, 2.834109802246094e+02, 2.834725952148438e+02, 2.835348205566406e+02, 2.835973510742188e+02, 2.836598510742188e+02, 2.8372216796875e+02, 2.837841796875e+02, 2.838457946777344e+02, 2.839069213867188e+02, 2.83967529296875e+02, 2.840276184082031e+02, 2.84087158203125e+02, 2.841461181640625e+02, 2.842045288085938e+02, 2.842623596191406e+02, 2.843196716308594e+02, 2.843764038085938e+02, 2.844326171875e+02, 2.8448828125e+02, 2.845434875488281e+02, 2.8459814453125e+02, 2.8465234375e+02, 2.847060546875e+02, 2.8475927734375e+02, 2.848120727539062e+02, 2.848644104003906e+02, 2.849163818359375e+02, 2.849678955078125e+02, 2.8501904296875e+02, 2.850700073242188e+02, 2.851209411621094e+02, 2.85171875e+02, 2.852228088378906e+02, 2.852737731933594e+02, 2.853246765136719e+02, 2.853756103515625e+02, 2.854265441894531e+02, 2.854774475097656e+02, 2.855283508300781e+02, 2.855792541503906e+02, 2.856301574707031e+02, 2.856810302734375e+02, 2.8573193359375e+02, 2.857828063964844e+02, 2.858336486816406e+02, 2.85884521484375e+02, 2.859353637695312e+02, 2.859862060546875e+02, 2.860370483398438e+02, 2.860878601074219e+02, 2.86138671875e+02, 2.861894836425781e+02, 2.862402954101562e+02, 2.862911071777344e+02, 2.863418884277344e+02, 2.863926696777344e+02, 2.864434204101562e+02, 2.864941711425781e+02, 2.86544921875e+02, 2.865956420898438e+02, 2.866463928222656e+02, 2.866970825195312e+02, 2.86747802734375e+02, 2.867984924316406e+02, 2.868491821289062e+02, 2.868998718261719e+02, 2.869505310058594e+02, 2.870011901855469e+02, 2.870518493652344e+02, 2.871024780273438e+02, 2.871531066894531e+02] -hexDis.fraDry=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 8.999999761581421e-01, 8.00000011920929e-01, 7.333333492279053e-01, 6.666666865348816e-01, 6.000000238418579e-01, 5.666666626930237e-01, 5.333333611488342e-01, 4.666666686534882e-01, 4.333333373069763e-01, 4.000000059604645e-01, 3.666666746139526e-01, 3.666666746139526e-01, 3.333333432674408e-01, 3.00000011920929e-01, 2.666666805744171e-01, 2.666666805744171e-01, 2.333333343267441e-01, 2.000000029802322e-01, 2.000000029802322e-01, 1.666666716337204e-01, 1.666666716337204e-01, 1.333333402872086e-01, 1.333333402872086e-01, 1.000000014901161e-01, 1.000000014901161e-01, 6.666667014360428e-02, 6.666667014360428e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -hexWetNTU.SHR=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.996239542961121e-01, 9.977563619613647e-01, 9.941201210021973e-01, 9.882391095161438e-01, 9.798130989074707e-01, 9.687609076499939e-01, 9.552227854728699e-01, 9.395307898521423e-01, 9.221569299697876e-01, 9.036521315574646e-01, 8.845856785774231e-01, 8.654928207397461e-01, 8.468344807624817e-01, 8.289710879325867e-01, 8.12149703502655e-01, 7.965038418769836e-01, 7.820627689361572e-01, 7.687678933143616e-01, 7.564942240715027e-01, 7.450746297836304e-01, 7.34325647354126e-01, 7.240735292434692e-01, 7.141772508621216e-01, 7.045431733131409e-01, 6.951236724853516e-01, 6.85900866985321e-01, 6.768673062324524e-01, 6.680172085762023e-01, 6.593452095985411e-01, 6.508459448814393e-01, 6.425145268440248e-01, 6.34346067905426e-01, 6.263357996940613e-01, 6.184794306755066e-01, 6.107724905014038e-01, 6.032108664512634e-01, 5.957905650138855e-01, 5.885077714920044e-01, 5.813586711883545e-01, 5.74339747428894e-01, 5.674475431442261e-01, 5.606786608695984e-01, 5.540299415588379e-01, 5.474982261657715e-01, 5.410805344581604e-01, 5.347739458084106e-01, 5.285756587982178e-01, 5.224829316139221e-01, 5.164932012557983e-01, 5.106038451194763e-01, 5.048125386238098e-01, 4.991167485713959e-01, 4.935142695903778e-01, 4.880028665065765e-01, 4.825803637504578e-01, 4.772446751594543e-01, 4.719937443733215e-01, 4.668256640434265e-01, 4.617384970188141e-01, 4.567303657531738e-01, 4.517995417118073e-01, 4.469442665576935e-01, 4.42162811756134e-01, 4.374535977840424e-01, 4.328150153160095e-01, 4.282455146312714e-01, 4.237436056137085e-01, 4.193077981472015e-01, 4.149367213249207e-01, 4.10629004240036e-01, 4.063832759857178e-01, 4.021982550621033e-01, 3.980726599693298e-01] diff --git a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos index fa6e161b793..641500d3772 100644 --- a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos +++ b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos @@ -25,7 +25,7 @@ createPlot( createPlot( id=2, position={1255, 58, 1140, 1286}, - y={"hexWetNTU.dryWetCalcs.dryfra", "hexDis.fraDry", "hexWetNTU.SHR"}, + y={"hexWetNTU.dryWetCalcs.dryFra", "hexDis.dryFra", "hexWetNTU.SHR"}, autoscale=true, autoerase=true, autoreplot=true, diff --git a/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos b/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos deleted file mode 100644 index 988ffc3f5fa..00000000000 --- a/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos +++ /dev/null @@ -1,12 +0,0 @@ -compareVars := - { - "hexWetNTU.Q1_flow", - "hexDis.Q1_flow", - "hexWetNTU.sta_b2.T", - "hexDis.sta_b2.T", - "hexWetNTU.dryWetCalcs.dryfra", - "hexDis.fraDry", - "hexWetNTU.SHR", - "hexWetNTU.dryWetCalcs.w_FW", - "hexWetNTU.dryWetCalcs.w_FD" - }; From b0d346047dd7dffac91834f3c75bdb8a38e7dfdd Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Fri, 12 Feb 2021 15:38:53 -0800 Subject: [PATCH 17/69] Update mos and results --- .../BaseClasses/WetCoilDryWetRegime.mo | 2 +- .../HeatExchangers/WetCoilCounterFlow.mo | 1 + ...ers_Validation_WetCoilEffectivenessNTU.txt | 23 +++++++++++++++++++ .../Validation/WetCoilEffectivenessNTU.mos | 2 ++ ...ers.Validation.WetCoilEffectivenessNTU.mos | 12 ++++++++++ 5 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt create mode 100644 Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo index aa981ffca3f..93265cc6c58 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo @@ -202,7 +202,7 @@ equation QTot_flow= -(w_FW*fullywet.QTot_flow+w_FD*fullydry.QTot_flow)*Qfac; QSen_flow= -(w_FW*fullywet.QSen_flow+w_FD*fullydry.QTot_flow)*Qfac; - dryfra= w_FD; + dryFra= w_FD; QLat_flow=QTot_flow-QSen_flow; mCon_flow=QLat_flow/Buildings.Utilities.Psychrometrics.Constants.h_fg*Qfac; diff --git a/Buildings/Fluid/HeatExchangers/WetCoilCounterFlow.mo b/Buildings/Fluid/HeatExchangers/WetCoilCounterFlow.mo index 3ebff30e077..5c67e7f7b47 100644 --- a/Buildings/Fluid/HeatExchangers/WetCoilCounterFlow.mo +++ b/Buildings/Fluid/HeatExchangers/WetCoilCounterFlow.mo @@ -28,6 +28,7 @@ model WetCoilCounterFlow Modelica.SIunits.MassFlowRate mWat_flow = sum(ele[i].vol2.mWat_flow for i in 1:nEle) "Water flow rate"; +protected Real dryFra(final unit="1") = Modelica.Math.BooleanVectors.countTrue( {abs(ele[i].vol2.mWat_flow) Date: Fri, 12 Feb 2021 16:17:15 -0800 Subject: [PATCH 18/69] Configure model in steady-state for validation --- .../Validation/WetCoilEffectivenessNTU.mo | 2 +- ...ers_Validation_WetCoilEffectivenessNTU.txt | 27 ++++++++----------- 2 files changed, 12 insertions(+), 17 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo index b7cb74c6d27..56eb54d08c3 100644 --- a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo @@ -101,7 +101,7 @@ model WetCoilEffectivenessNTU UA_nominal=UA_nominal, show_T=true, nEle=30, - energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyStateInitial, + energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, tau1=0.1, tau2=0.1, tau_m=0.1) diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt index 8b7515c1ecf..a5a6f7ac377 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt @@ -1,23 +1,18 @@ last-generated=2021-02-12 -statistics-initialization= -{ - "nonlinear": "120", - "numerical Jacobians": "0" -} statistics-simulation= { "linear": " ", - "nonlinear": "1, 1, 1, 1", - "number of continuous time states": "126", + "nonlinear": "1, 1, 120, 1, 1", + "number of continuous time states": "6", "numerical Jacobians": "0" } time=[0e+00, 1e+02] -hexWetNTU.Q1_flow=[4.37056796875e+04, 4.370878515625e+04, 4.3711890625e+04, 4.37149921875e+04, 4.371809765625e+04, 4.372119921875e+04, 4.37243046875e+04, 4.372740625e+04, 4.37305078125e+04, 4.3733609375e+04, 4.37367109375e+04, 4.373980859375e+04, 4.374291015625e+04, 4.374601171875e+04, 4.3749109375e+04, 4.375220703125e+04, 4.375530859375e+04, 4.375840625e+04, 4.376150390625e+04, 4.37646015625e+04, 4.376769921875e+04, 4.377079296875e+04, 4.3773890625e+04, 4.3776859375e+04, 4.3778203125e+04, 4.377459375e+04, 4.376528515625e+04, 4.37565546875e+04, 4.376233203125e+04, 4.38018359375e+04, 4.3896015625e+04, 4.406403125e+04, 4.432055078125e+04, 4.46741640625e+04, 4.512680859375e+04, 4.567404296875e+04, 4.630587109375e+04, 4.700792578125e+04, 4.776289453125e+04, 4.855203515625e+04, 4.93567265625e+04, 5.0159953125e+04, 5.09475234375e+04, 5.170898828125e+04, 5.243811328125e+04, 5.313291015625e+04, 5.379522265625e+04, 5.442989453125e+04, 5.504365234375e+04, 5.56437265625e+04, 5.623644921875e+04, 5.682620703125e+04, 5.7415171875e+04, 5.800399609375e+04, 5.85927578125e+04, 5.918146875000001e+04, 5.977012109375001e+04, 6.035871484374999e+04, 6.094724999999999e+04, 6.15357265625e+04, 6.2124140625e+04, 6.271249609375e+04, 6.330078515625e+04, 6.388901171875e+04, 6.4477171875e+04, 6.506526953125e+04, 6.5653296875e+04, 6.62412578125e+04, 6.68291484375e+04, 6.741696875e+04, 6.800471875e+04, 6.85923984375e+04, 6.918e+04, 6.976753125e+04, 7.0354984375e+04, 7.09423671875e+04, 7.1529671875e+04, 7.21168984375e+04, 7.2704046875e+04, 7.3291109375e+04, 7.387809375e+04, 7.4465e+04, 7.50518125e+04, 7.5638546875e+04, 7.62251953125e+04, 7.68117578125e+04, 7.7398234375e+04, 7.7984625e+04, 7.85709296875e+04, 7.9157140625e+04, 7.97432578125e+04, 8.03292890625e+04, 8.091521875e+04, 8.15010625e+04, 8.20868046875e+04, 8.2672453125e+04, 8.3258e+04, 8.3843453125e+04, 8.44288046875e+04, 8.50140546875e+04, 8.5599203125e+04] -hexDis.Q1_flow=[4.4666953125e+04, 4.466725390625e+04, 4.466858203125e+04, 4.467100390625e+04, 4.46739765625e+04, 4.467706640625e+04, 4.4680171875e+04, 4.468328515625e+04, 4.46863984375e+04, 4.468951171875e+04, 4.469262109375e+04, 4.4695734375e+04, 4.469884765625e+04, 4.470195703125e+04, 4.470506640625e+04, 4.47081796875e+04, 4.47112890625e+04, 4.47143984375e+04, 4.471750390625e+04, 4.472061328125e+04, 4.472372265625e+04, 4.4726828125e+04, 4.47299375e+04, 4.473962109375e+04, 4.478994921875e+04, 4.49309453125e+04, 4.51363671875e+04, 4.53930703125e+04, 4.56890703125e+04, 4.601998828125e+04, 4.63766875e+04, 4.675676953125e+04, 4.715906640625e+04, 4.7578296875e+04, 4.801227734375e+04, 4.8460671875e+04, 4.89236953125e+04, 4.93978671875e+04, 4.988003125e+04, 5.036958984375e+04, 5.08743359375e+04, 5.138170703125e+04, 5.18975625e+04, 5.24225546875e+04, 5.2948265625e+04, 5.348762109375e+04, 5.402362890625e+04, 5.457392578125e+04, 5.512123828125e+04, 5.56794296875e+04, 5.623846875e+04, 5.67993984375e+04, 5.73712109375e+04, 5.79363828125e+04, 5.851594921875e+04, 5.909400390625001e+04, 5.966661328125001e+04, 6.023606249999999e+04, 6.080408984374999e+04, 6.13713125e+04, 6.1937921875e+04, 6.250390625e+04, 6.306925390625e+04, 6.363396484375e+04, 6.419801953125e+04, 6.476143359375e+04, 6.5324203125e+04, 6.5886328125e+04, 6.64477890625e+04, 6.7008609375e+04, 6.75687734375e+04, 6.8128296875e+04, 6.8687171875e+04, 6.92453828125e+04, 6.9802921875e+04, 7.03598125e+04, 7.0916046875e+04, 7.1471625e+04, 7.20265546875e+04, 7.25808359375e+04, 7.3134453125e+04, 7.3687421875e+04, 7.42397421875e+04, 7.47913984375e+04, 7.53424140625e+04, 7.5892734375e+04, 7.64423671875e+04, 7.69913359375e+04, 7.75396484375e+04, 7.8087296875e+04, 7.86342734375e+04, 7.918059375e+04, 7.972625e+04, 8.027125e+04, 8.0815578125e+04, 8.135925e+04, 8.190225e+04, 8.24446171875e+04, 8.29863046875e+04, 8.352728125e+04, 8.40672421875e+04] -hexWetNTU.sta_b2.T=[2.834467163085938e+02, 2.83447509765625e+02, 2.834483032226562e+02, 2.834490966796875e+02, 2.834498901367188e+02, 2.8345068359375e+02, 2.834514770507812e+02, 2.834522399902344e+02, 2.834530334472656e+02, 2.834538269042969e+02, 2.834546203613281e+02, 2.834554138183594e+02, 2.834562072753906e+02, 2.834570007324219e+02, 2.834577941894531e+02, 2.834585876464844e+02, 2.834593811035156e+02, 2.834601745605469e+02, 2.834609680175781e+02, 2.834617614746094e+02, 2.834625549316406e+02, 2.834633483886719e+02, 2.834641418457031e+02, 2.834649658203125e+02, 2.834664001464844e+02, 2.834696960449219e+02, 2.834751281738281e+02, 2.834803466796875e+02, 2.834862976074219e+02, 2.835041198730469e+02, 2.835307922363281e+02, 2.835674438476562e+02, 2.836146240234375e+02, 2.836721801757812e+02, 2.837392883300781e+02, 2.838145751953125e+02, 2.838963012695312e+02, 2.839824829101562e+02, 2.840709533691406e+02, 2.8415966796875e+02, 2.842467346191406e+02, 2.8433056640625e+02, 2.844099731445312e+02, 2.844843139648438e+02, 2.845532836914062e+02, 2.846171875e+02, 2.846765747070312e+02, 2.847322692871094e+02, 2.847853088378906e+02, 2.848366088867188e+02, 2.848869934082031e+02, 2.849369506835938e+02, 2.849867553710938e+02, 2.850364685058594e+02, 2.850861206054688e+02, 2.851356811523438e+02, 2.851851806640625e+02, 2.85234619140625e+02, 2.852839660644531e+02, 2.85333251953125e+02, 2.853824768066406e+02, 2.854316101074219e+02, 2.854806823730469e+02, 2.855296936035156e+02, 2.855786437988281e+02, 2.856275024414062e+02, 2.856763000488281e+02, 2.857250366210938e+02, 2.85773681640625e+02, 2.858222961425781e+02, 2.858708190917969e+02, 2.859192810058594e+02, 2.859676818847656e+02, 2.860159912109375e+02, 2.860642700195312e+02, 2.861124572753906e+02, 2.861605834960938e+02, 2.862086486816406e+02, 2.862566528320312e+02, 2.863045654296875e+02, 2.863524475097656e+02, 2.864002685546875e+02, 2.86447998046875e+02, 2.864956665039062e+02, 2.865432739257812e+02, 2.865908508300781e+02, 2.866383361816406e+02, 2.866857604980469e+02, 2.867331237792969e+02, 2.867804260253906e+02, 2.868276672363281e+02, 2.868748474121094e+02, 2.869219665527344e+02, 2.869690246582031e+02, 2.870160217285156e+02, 2.870629577636719e+02, 2.871098327636719e+02, 2.871566467285156e+02, 2.872033996582031e+02, 2.872500915527344e+02, 2.872967529296875e+02] -hexDis.sta_b2.T=[2.83086669921875e+02, 2.83086669921875e+02, 2.83086669921875e+02, 2.830868530273438e+02, 2.830875244140625e+02, 2.830883178710938e+02, 2.830891418457031e+02, 2.830899963378906e+02, 2.830908203125e+02, 2.830916442871094e+02, 2.830924682617188e+02, 2.830933227539062e+02, 2.830941467285156e+02, 2.83094970703125e+02, 2.830957946777344e+02, 2.830966186523438e+02, 2.830974731445312e+02, 2.830982971191406e+02, 2.8309912109375e+02, 2.830999450683594e+02, 2.831007995605469e+02, 2.831016235351562e+02, 2.831024475097656e+02, 2.831050109863281e+02, 2.831155700683594e+02, 2.831455078125e+02, 2.831873474121094e+02, 2.832371826171875e+02, 2.832922668457031e+02, 2.833505859375e+02, 2.834109802246094e+02, 2.834725952148438e+02, 2.835348205566406e+02, 2.835973510742188e+02, 2.836598510742188e+02, 2.8372216796875e+02, 2.837841796875e+02, 2.838457946777344e+02, 2.839069213867188e+02, 2.83967529296875e+02, 2.840276184082031e+02, 2.84087158203125e+02, 2.841461181640625e+02, 2.842045288085938e+02, 2.842623596191406e+02, 2.843196716308594e+02, 2.843764038085938e+02, 2.844326171875e+02, 2.8448828125e+02, 2.845434875488281e+02, 2.8459814453125e+02, 2.8465234375e+02, 2.847060546875e+02, 2.8475927734375e+02, 2.848120727539062e+02, 2.848644104003906e+02, 2.849163818359375e+02, 2.849678955078125e+02, 2.8501904296875e+02, 2.850700073242188e+02, 2.851209411621094e+02, 2.85171875e+02, 2.852228088378906e+02, 2.852737731933594e+02, 2.853246765136719e+02, 2.853756103515625e+02, 2.854265441894531e+02, 2.854774475097656e+02, 2.855283508300781e+02, 2.855792541503906e+02, 2.856301574707031e+02, 2.856810302734375e+02, 2.8573193359375e+02, 2.857828063964844e+02, 2.858336486816406e+02, 2.85884521484375e+02, 2.859353637695312e+02, 2.859862060546875e+02, 2.860370483398438e+02, 2.860878601074219e+02, 2.86138671875e+02, 2.861894836425781e+02, 2.862402954101562e+02, 2.862911071777344e+02, 2.863418884277344e+02, 2.863926696777344e+02, 2.864434204101562e+02, 2.864941711425781e+02, 2.86544921875e+02, 2.865956420898438e+02, 2.866463928222656e+02, 2.866970825195312e+02, 2.86747802734375e+02, 2.867984924316406e+02, 2.868491821289062e+02, 2.868998718261719e+02, 2.869505310058594e+02, 2.870011901855469e+02, 2.870518493652344e+02, 2.871024780273438e+02, 2.871531066894531e+02] -hexWetNTU.dryWetCalcs.dryFra=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999998807907104e-01, 9.999626874923706e-01, 9.993447065353394e-01, 9.962406158447266e-01, 9.876253604888916e-01, 9.704166054725647e-01, 9.423255920410155e-01, 9.022666215896608e-01, 8.50419819355011e-01, 7.880649566650391e-01, 7.172929048538208e-01, 6.406838893890381e-01, 5.610149502754211e-01, 4.810257852077484e-01, 4.032467603683472e-01, 3.298781216144562e-01, 2.627071738243103e-01, 2.030545026063919e-01, 1.517457067966461e-01, 1.091100871562958e-01, 7.500826567411423e-02, 4.888885468244553e-02, 2.987033128738403e-02, 1.684080995619297e-02, 8.567105047404766e-03, 3.804829670116305e-03, 1.403008820489049e-03, 3.965560172218829e-04, 7.509798888349906e-05, 7.463251677108929e-06, 2.377579164658528e-07, 7.583338956784758e-10, 6.849351086437661e-15, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -hexDis.dryFra=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 8.999999761581421e-01, 8.00000011920929e-01, 7.333333492279053e-01, 6.666666865348816e-01, 6.000000238418579e-01, 5.666666626930237e-01, 5.333333611488342e-01, 4.666666686534882e-01, 4.333333373069763e-01, 4.000000059604645e-01, 3.666666746139526e-01, 3.666666746139526e-01, 3.333333432674408e-01, 3.00000011920929e-01, 2.666666805744171e-01, 2.666666805744171e-01, 2.333333343267441e-01, 2.000000029802322e-01, 2.000000029802322e-01, 1.666666716337204e-01, 1.666666716337204e-01, 1.333333402872086e-01, 1.333333402872086e-01, 1.000000014901161e-01, 1.000000014901161e-01, 6.666667014360428e-02, 6.666667014360428e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -hexWetNTU.SHR=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.996239542961121e-01, 9.977563619613647e-01, 9.941201210021973e-01, 9.882391095161438e-01, 9.798130989074707e-01, 9.687609076499939e-01, 9.552227854728699e-01, 9.395307898521423e-01, 9.221569299697876e-01, 9.036521315574646e-01, 8.845856785774231e-01, 8.654928207397461e-01, 8.468344807624817e-01, 8.289710879325867e-01, 8.12149703502655e-01, 7.965038418769836e-01, 7.820627689361572e-01, 7.687678933143616e-01, 7.564942240715027e-01, 7.450746297836304e-01, 7.34325647354126e-01, 7.240735292434692e-01, 7.141772508621216e-01, 7.045431733131409e-01, 6.951236724853516e-01, 6.85900866985321e-01, 6.768673062324524e-01, 6.680172085762023e-01, 6.593452095985411e-01, 6.508459448814393e-01, 6.425145268440248e-01, 6.34346067905426e-01, 6.263357996940613e-01, 6.184794306755066e-01, 6.107724905014038e-01, 6.032108664512634e-01, 5.957905650138855e-01, 5.885077714920044e-01, 5.813586711883545e-01, 5.74339747428894e-01, 5.674475431442261e-01, 5.606786608695984e-01, 5.540299415588379e-01, 5.474982261657715e-01, 5.410805344581604e-01, 5.347739458084106e-01, 5.285756587982178e-01, 5.224829316139221e-01, 5.164932012557983e-01, 5.106038451194763e-01, 5.048125386238098e-01, 4.991167485713959e-01, 4.935142695903778e-01, 4.880028665065765e-01, 4.825803637504578e-01, 4.772446751594543e-01, 4.719937443733215e-01, 4.668256640434265e-01, 4.617384970188141e-01, 4.567303657531738e-01, 4.517995417118073e-01, 4.469442665576935e-01, 4.42162811756134e-01, 4.374535977840424e-01, 4.328150153160095e-01, 4.282455146312714e-01, 4.237436056137085e-01, 4.193077981472015e-01, 4.149367213249207e-01, 4.10629004240036e-01, 4.063832759857178e-01, 4.021982550621033e-01, 3.980726599693298e-01] -hexWetNTU.dryWetCalcs.w_FW=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.121166799810294e-15, 1.221358445491205e-07, 3.733820631168783e-05, 6.552886334247887e-04, 3.759396495297551e-03, 1.237465068697929e-02, 2.9583390802145e-02, 5.767439305782331e-02, 9.7733363509178e-02, 1.495801955461502e-01, 2.119350582361221e-01, 2.827070951461792e-01, 3.593161106109619e-01, 4.389850795269012e-01, 5.18974244594574e-01, 5.967532396316528e-01, 6.701219081878662e-01, 7.372928261756897e-01, 7.969455122947693e-01, 8.482542634010315e-01, 8.908898830413818e-01, 9.249917268753052e-01, 9.511111378669739e-01, 9.70129668712616e-01, 9.831591844558716e-01, 9.914329051971436e-01, 9.961951971054077e-01, 9.985969662666321e-01, 9.996034502983093e-01, 9.99924898147583e-01, 9.999925494194031e-01, 9.999997615814209e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] -hexWetNTU.dryWetCalcs.w_FD=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999998807907104e-01, 9.999626874923706e-01, 9.993447065353394e-01, 9.962406158447266e-01, 9.876253604888916e-01, 9.704166054725647e-01, 9.423255920410155e-01, 9.022666215896608e-01, 8.50419819355011e-01, 7.880649566650391e-01, 7.172929048538208e-01, 6.406838893890381e-01, 5.610149502754211e-01, 4.810257852077484e-01, 4.032467603683472e-01, 3.298781216144562e-01, 2.627071738243103e-01, 2.030545026063919e-01, 1.517457067966461e-01, 1.091100871562958e-01, 7.500826567411423e-02, 4.888885468244553e-02, 2.987033128738403e-02, 1.684080995619297e-02, 8.567105047404766e-03, 3.804829670116305e-03, 1.403008820489049e-03, 3.965560172218829e-04, 7.509798888349906e-05, 7.463251677108929e-06, 2.377579164658528e-07, 7.583338956784758e-10, 6.849351086437661e-15, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +hexWetNTU.Q1_flow=[4.37056796875e+04, 4.370878515625e+04, 4.3711890625e+04, 4.37149921875e+04, 4.371809765625e+04, 4.372119921875e+04, 4.37243046875e+04, 4.372740625e+04, 4.37305078125e+04, 4.3733609375e+04, 4.37367109375e+04, 4.373980859375e+04, 4.374291015625e+04, 4.374601171875e+04, 4.3749109375e+04, 4.375220703125e+04, 4.375530859375e+04, 4.375840625e+04, 4.376150390625e+04, 4.37646015625e+04, 4.376769921875e+04, 4.377079296875e+04, 4.3773890625e+04, 4.3776859375e+04, 4.3778203125e+04, 4.377459375e+04, 4.376528515625e+04, 4.37565546875e+04, 4.3762328125e+04, 4.380183203125e+04, 4.389601171875e+04, 4.406401953125e+04, 4.43205390625e+04, 4.467414453125e+04, 4.512678515625e+04, 4.5674015625e+04, 4.630583984375e+04, 4.700789453125e+04, 4.776285546875e+04, 4.855198828125e+04, 4.93566796875e+04, 5.01598984375e+04, 5.094746484375e+04, 5.1708921875e+04, 5.243804296875e+04, 5.313283984375e+04, 5.37951484375e+04, 5.44298203125e+04, 5.5043578125e+04, 5.564364453125e+04, 5.623636328125e+04, 5.68261171875e+04, 5.7415078125e+04, 5.80038984375e+04, 5.859265234375e+04, 5.918135546875001e+04, 5.977000000000001e+04, 6.035859374999999e+04, 6.094712890624999e+04, 6.15356015625e+04, 6.2124015625e+04, 6.27123671875e+04, 6.330065625e+04, 6.38888828125e+04, 6.447704296875e+04, 6.506513671875e+04, 6.56531640625e+04, 6.6241125e+04, 6.6829015625e+04, 6.74168359375e+04, 6.80045859375e+04, 6.8592265625e+04, 6.91798671875e+04, 6.97673984375e+04, 7.03548515625e+04, 7.0942234375e+04, 7.152953125e+04, 7.21167578125e+04, 7.27038984375e+04, 7.32909609375e+04, 7.38779453125e+04, 7.446484375e+04, 7.505165625e+04, 7.5638390625e+04, 7.62250390625e+04, 7.68116015625e+04, 7.7398078125e+04, 7.79844609375e+04, 7.85707578125e+04, 7.91569609375e+04, 7.9743078125e+04, 8.03291015625e+04, 8.09150234375e+04, 8.1500859375e+04, 8.208659375e+04, 8.26722421875e+04, 8.32577890625e+04, 8.3843234375e+04, 8.44285859375e+04, 8.50138359375e+04, 8.5598984375e+04] +hexDis.Q1_flow=[4.4666953125e+04, 4.467006640625e+04, 4.467318359375e+04, 4.4676296875e+04, 4.467941015625e+04, 4.46825234375e+04, 4.468563671875e+04, 4.468875e+04, 4.469186328125e+04, 4.46949765625e+04, 4.46980859375e+04, 4.470119921875e+04, 4.470430859375e+04, 4.470741796875e+04, 4.471053125e+04, 4.4713640625e+04, 4.471675e+04, 4.471985546875e+04, 4.472296484375e+04, 4.472607421875e+04, 4.47291796875e+04, 4.477980078125e+04, 4.490005078125e+04, 4.5074625e+04, 4.52928125e+04, 4.555167578125e+04, 4.583922265625e+04, 4.615662890625e+04, 4.64976953125e+04, 4.6859421875e+04, 4.723980859375e+04, 4.763695703125e+04, 4.804902734375e+04, 4.847423046875e+04, 4.891162890625e+04, 4.936323046875e+04, 4.9824015625e+04, 5.029236328125e+04, 5.077248046875e+04, 5.12602109375e+04, 5.17531171875e+04, 5.225769921875e+04, 5.276421484375e+04, 5.32818984375e+04, 5.3800875e+04, 5.432996484375e+04, 5.48590625e+04, 5.5399140625e+04, 5.59385859375e+04, 5.6486734375e+04, 5.703676953125e+04, 5.75901015625e+04, 5.8150359375e+04, 5.87099765625e+04, 5.92767734375e+04, 5.984625781250001e+04, 6.041510156250001e+04, 6.098330468749999e+04, 6.155086718749999e+04, 6.211778515625e+04, 6.26840625e+04, 6.324969140625e+04, 6.381467578125e+04, 6.437901171875e+04, 6.494269921875e+04, 6.550573828125e+04, 6.60681328125e+04, 6.6629875e+04, 6.71909609375e+04, 6.77513984375e+04, 6.83111796875e+04, 6.88703125e+04, 6.94287890625e+04, 6.9986609375e+04, 7.0543765625e+04, 7.11002734375e+04, 7.1656125e+04, 7.22113125e+04, 7.276584375e+04, 7.33197109375e+04, 7.3872921875e+04, 7.442546875e+04, 7.49773515625e+04, 7.5528578125e+04, 7.60791328125e+04, 7.66290234375e+04, 7.717825e+04, 7.77268125e+04, 7.8274703125e+04, 7.88219296875e+04, 7.93684921875e+04, 7.9914375e+04, 8.045959375e+04, 8.10041484375e+04, 8.15480234375e+04, 8.2091234375e+04, 8.2633765625e+04, 8.31756328125e+04, 8.37168203125e+04, 8.42573359375e+04, 8.4797171875e+04] +hexWetNTU.sta_b2.T=[2.834467163085938e+02, 2.83447509765625e+02, 2.834483032226562e+02, 2.834490966796875e+02, 2.834498901367188e+02, 2.8345068359375e+02, 2.834514770507812e+02, 2.834522399902344e+02, 2.834530334472656e+02, 2.834538269042969e+02, 2.834546203613281e+02, 2.834554138183594e+02, 2.834562072753906e+02, 2.834570007324219e+02, 2.834577941894531e+02, 2.834585876464844e+02, 2.834593811035156e+02, 2.834601745605469e+02, 2.834609680175781e+02, 2.834617614746094e+02, 2.834625549316406e+02, 2.834633483886719e+02, 2.834641418457031e+02, 2.834649658203125e+02, 2.834664001464844e+02, 2.834696960449219e+02, 2.834751281738281e+02, 2.834803466796875e+02, 2.834862976074219e+02, 2.83504150390625e+02, 2.835307922363281e+02, 2.835674438476562e+02, 2.836146545410156e+02, 2.836721801757812e+02, 2.837392883300781e+02, 2.838145751953125e+02, 2.838963317871094e+02, 2.839824829101562e+02, 2.840709533691406e+02, 2.8415966796875e+02, 2.842467346191406e+02, 2.8433056640625e+02, 2.844099731445312e+02, 2.844843139648438e+02, 2.845533142089844e+02, 2.846171875e+02, 2.846765747070312e+02, 2.847322998046875e+02, 2.847853088378906e+02, 2.848366394042969e+02, 2.848869934082031e+02, 2.849369506835938e+02, 2.849867553710938e+02, 2.850364685058594e+02, 2.850861206054688e+02, 2.851357116699219e+02, 2.851852111816406e+02, 2.85234619140625e+02, 2.852839965820312e+02, 2.853332824707031e+02, 2.853824768066406e+02, 2.85431640625e+02, 2.85480712890625e+02, 2.855297241210938e+02, 2.855786437988281e+02, 2.856275329589844e+02, 2.856763305664062e+02, 2.857250671386719e+02, 2.857737121582031e+02, 2.858223266601562e+02, 2.85870849609375e+02, 2.859193115234375e+02, 2.859676818847656e+02, 2.860160217285156e+02, 2.860642700195312e+02, 2.861124877929688e+02, 2.861606140136719e+02, 2.862086791992188e+02, 2.862566528320312e+02, 2.863045959472656e+02, 2.863524780273438e+02, 2.864002685546875e+02, 2.864480285644531e+02, 2.864956970214844e+02, 2.865433044433594e+02, 2.865908508300781e+02, 2.866383666992188e+02, 2.86685791015625e+02, 2.86733154296875e+02, 2.867804565429688e+02, 2.868276977539062e+02, 2.868748779296875e+02, 2.869219970703125e+02, 2.869690551757812e+02, 2.870160522460938e+02, 2.8706298828125e+02, 2.8710986328125e+02, 2.871566772460938e+02, 2.872034301757812e+02, 2.872501525878906e+02, 2.872967834472656e+02] +hexDis.sta_b2.T=[2.83086669921875e+02, 2.830874938964844e+02, 2.830883178710938e+02, 2.830891723632812e+02, 2.830899963378906e+02, 2.830908203125e+02, 2.830916442871094e+02, 2.830924682617188e+02, 2.830933227539062e+02, 2.830941467285156e+02, 2.83094970703125e+02, 2.830957946777344e+02, 2.830966491699219e+02, 2.830974731445312e+02, 2.830982971191406e+02, 2.8309912109375e+02, 2.830999450683594e+02, 2.831007995605469e+02, 2.831016235351562e+02, 2.831024475097656e+02, 2.83103271484375e+02, 2.831187133789062e+02, 2.831521911621094e+02, 2.831964721679688e+02, 2.8324755859375e+02, 2.83303466796875e+02, 2.833618774414062e+02, 2.834222717285156e+02, 2.834837036132812e+02, 2.83545654296875e+02, 2.836078491210938e+02, 2.836700134277344e+02, 2.837320251464844e+02, 2.837937316894531e+02, 2.838550720214844e+02, 2.839158325195312e+02, 2.839761657714844e+02, 2.840360717773438e+02, 2.840953063964844e+02, 2.841540222167969e+02, 2.842123413085938e+02, 2.842698364257812e+02, 2.843271179199219e+02, 2.84383544921875e+02, 2.844397583007812e+02, 2.844951171875e+02, 2.845504150390625e+02, 2.846047058105469e+02, 2.846589660644531e+02, 2.8471240234375e+02, 2.847655944824219e+02, 2.848183898925781e+02, 2.848704833984375e+02, 2.849225769042969e+02, 2.84973876953125e+02, 2.850248413085938e+02, 2.850758056640625e+02, 2.851267700195312e+02, 2.85177734375e+02, 2.852286987304688e+02, 2.852796325683594e+02, 2.853305969238281e+02, 2.853815307617188e+02, 2.854324645996094e+02, 2.854833679199219e+02, 2.855343017578125e+02, 2.85585205078125e+02, 2.856361083984375e+02, 2.8568701171875e+02, 2.857378845214844e+02, 2.857887878417969e+02, 2.858396606445312e+02, 2.858905334472656e+02, 2.859413757324219e+02, 2.859922485351562e+02, 2.860430908203125e+02, 2.860939025878906e+02, 2.861447448730469e+02, 2.86195556640625e+02, 2.862463684082031e+02, 2.862971801757812e+02, 2.863479614257812e+02, 2.863987426757812e+02, 2.864495239257812e+02, 2.865003051757812e+02, 2.865510559082031e+02, 2.86601806640625e+02, 2.866525268554688e+02, 2.867032470703125e+02, 2.867539672851562e+02, 2.868046875e+02, 2.868553771972656e+02, 2.869060668945312e+02, 2.869567260742188e+02, 2.870073852539062e+02, 2.870580444335938e+02, 2.871086730957031e+02, 2.871593017578125e+02, 2.872099304199219e+02, 2.872605285644531e+02, 2.873111267089844e+02] +hexWetNTU.dryWetCalcs.dryFra=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999998807907104e-01, 9.999626874923706e-01, 9.993447065353394e-01, 9.962406158447266e-01, 9.876253604888916e-01, 9.704166054725647e-01, 9.423255324363707e-01, 9.02266561985016e-01, 8.504196405410767e-01, 7.880647778511047e-01, 7.172926664352417e-01, 6.406835913658142e-01, 5.610146522521973e-01, 4.810254573822021e-01, 4.032464325428009e-01, 3.298777639865875e-01, 2.627068161964417e-01, 2.030541598796844e-01, 1.51745393872261e-01, 1.091097965836525e-01, 7.500801235437393e-02, 4.888864979147911e-02, 2.98701748251915e-02, 1.684069633483887e-02, 8.567033335566521e-03, 3.804787993431091e-03, 1.402988564223051e-03, 3.965478681493551e-04, 7.509576971642673e-05, 7.462910161848413e-06, 2.377392860353211e-07, 7.582208194634177e-10, 6.849346004239977e-15, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +hexDis.dryFra=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 8.999999761581421e-01, 8.333333134651184e-01, 7.666666507720947e-01, 6.99999988079071e-01, 6.666666865348816e-01, 6.333333253860474e-01, 5.666666626930237e-01, 5.333333611488342e-01, 5e-01, 4.666666686534882e-01, 4.333333373069763e-01, 4.000000059604645e-01, 3.666666746139526e-01, 3.666666746139526e-01, 3.333333432674408e-01, 3.00000011920929e-01, 2.666666805744171e-01, 2.666666805744171e-01, 2.333333343267441e-01, 2.333333343267441e-01, 2.000000029802322e-01, 1.666666716337204e-01, 1.666666716337204e-01, 1.333333402872086e-01, 1.333333402872086e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 6.666667014360428e-02, 6.666667014360428e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +hexWetNTU.SHR=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.996239542961121e-01, 9.977564215660095e-01, 9.941202402114868e-01, 9.882392287254333e-01, 9.79813277721405e-01, 9.687610864639282e-01, 9.552229642868042e-01, 9.395310282707214e-01, 9.221572279930115e-01, 9.036524891853333e-01, 8.845860362052917e-01, 8.654931783676147e-01, 8.468348979949951e-01, 8.289715051651001e-01, 8.121501207351685e-01, 7.965043187141418e-01, 7.820631861686707e-01, 7.68768310546875e-01, 7.564946413040161e-01, 7.450750470161438e-01, 7.343261241912842e-01, 7.240740060806274e-01, 7.141777276992798e-01, 7.045435905456543e-01, 6.95124089717865e-01, 6.859012842178345e-01, 6.768677234649658e-01, 6.680176854133605e-01, 6.593456268310546e-01, 6.508464217185975e-01, 6.42515003681183e-01, 6.343464851379395e-01, 6.263362169265747e-01, 6.184797883033752e-01, 6.107728481292725e-01, 6.032112240791321e-01, 5.957909226417542e-01, 5.885080695152283e-01, 5.813589692115784e-01, 5.743400454521179e-01, 5.6744784116745e-01, 5.606789588928223e-01, 5.54030179977417e-01, 5.474984645843506e-01, 5.410807728767395e-01, 5.347741842269897e-01, 5.285758376121521e-01, 5.224831104278564e-01, 5.164933800697327e-01, 5.106040835380554e-01, 5.048127174377441e-01, 4.991169273853302e-01, 4.935144484043121e-01, 4.880030453205109e-01, 4.825805127620697e-01, 4.772448241710663e-01, 4.719938933849335e-01, 4.668257832527161e-01, 4.617385864257812e-01, 4.567304849624634e-01, 4.517996609210968e-01, 4.469443559646606e-01, 4.421629011631012e-01, 4.374536871910095e-01, 4.328150749206543e-01, 4.282455742359161e-01, 4.237436652183533e-01, 4.193078577518463e-01, 4.149367809295654e-01, 4.106290340423584e-01, 4.063833057880402e-01, 4.021982550621033e-01, 3.980726599693298e-01] +hexWetNTU.dryWetCalcs.w_FW=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.121166799810294e-15, 1.221359866576677e-07, 3.733825360541232e-05, 6.552894483320415e-04, 3.759400453418493e-03, 1.237466372549534e-02, 2.958342060446739e-02, 5.767444893717778e-02, 9.773346036672576e-02, 1.49580329656601e-01, 2.119352370500565e-01, 2.827073335647583e-01, 3.593163788318634e-01, 4.389853477478027e-01, 5.189745426177979e-01, 5.967535972595215e-01, 6.701222658157349e-01, 7.372931838035583e-01, 7.969458699226379e-01, 8.482546210289001e-01, 8.908901810646057e-01, 9.249919652938843e-01, 9.51111376285553e-01, 9.701298475265503e-01, 9.831593036651611e-01, 9.914329648017883e-01, 9.961951971054077e-01, 9.985970258712769e-01, 9.996034502983093e-01, 9.99924898147583e-01, 9.999925494194031e-01, 9.999997615814209e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] +hexWetNTU.dryWetCalcs.w_FD=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999998807907104e-01, 9.999626874923706e-01, 9.993447065353394e-01, 9.962406158447266e-01, 9.876253604888916e-01, 9.704166054725647e-01, 9.423255324363707e-01, 9.02266561985016e-01, 8.504196405410767e-01, 7.880647778511047e-01, 7.172926664352417e-01, 6.406835913658142e-01, 5.610146522521973e-01, 4.810254573822021e-01, 4.032464325428009e-01, 3.298777639865875e-01, 2.627068161964417e-01, 2.030541598796844e-01, 1.51745393872261e-01, 1.091097965836525e-01, 7.500801235437393e-02, 4.888864979147911e-02, 2.98701748251915e-02, 1.684069633483887e-02, 8.567033335566521e-03, 3.804787993431091e-03, 1.402988564223051e-03, 3.965478681493551e-04, 7.509576971642673e-05, 7.462910161848413e-06, 2.377392860353211e-07, 7.582208194634177e-10, 6.849346004239977e-15, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] From c4e613d88e2098fb83397c346303b35288ae1574 Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Fri, 12 Feb 2021 16:44:40 -0800 Subject: [PATCH 19/69] Add RH in validation, plus small fixes --- .../BaseClasses/WetCoilDryRegime.mo | 12 ++- .../BaseClasses/WetCoilDryWetRegime.mo | 2 +- .../BaseClasses/WetCoilWetRegime.mo | 7 +- .../Validation/WetCoilEffectivenessNTU.mo | 92 ++++++++++++------- ...ers_Validation_WetCoilEffectivenessNTU.txt | 16 ++-- .../Validation/WetCoilEffectivenessNTU.mos | 9 ++ ...ers.Validation.WetCoilEffectivenessNTU.mos | 2 + 7 files changed, 91 insertions(+), 49 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo index 2ebbc06cd19..04ac21a8506 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo @@ -1,5 +1,6 @@ within Buildings.Fluid.HeatExchangers.BaseClasses; -model WetCoilDryRegime "Fully dry coil model" +model WetCoilDryRegime + "Fully dry coil model" // - water input Modelica.SIunits.ThermalConductance UAWat @@ -89,7 +90,12 @@ See issue 6 for more information.
    ", info=" -

    This model implements the calculation for a 100% dry coil.

    -

    See Buildings.Fluid.HeatExchangers.DryCoilEffectivenessNTU for documentation.

    +

    This model implements the calculation for a 100% dry coil.

    +

    +See + +Buildings.Fluid.HeatExchangers.DryCoilEffectivenessNTU +for documentation. +

    ")); end WetCoilDryRegime; diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo index 93265cc6c58..dd3cb63f18d 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo @@ -1,6 +1,6 @@ within Buildings.Fluid.HeatExchangers.BaseClasses; model WetCoilDryWetRegime - "This model represents the switching algorithm of the TK-fuzzy model for cooling coil applicaiton" + "Model implementing the switching algorithm of the TK-fuzzy model for cooling coil application" input Real Qfac; replaceable package Medium2 = Modelica.Media.Interfaces.PartialMedium "Medium 2 in the component" diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo index 9fd4aa50706..aeec90e58c3 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo @@ -1,9 +1,10 @@ within Buildings.Fluid.HeatExchangers.BaseClasses; -model WetCoilWetRegime "Fully wet coil model using esilon_C.mo function" +model WetCoilWetRegime + "Fully wet coil model using esilon_C.mo function" + // - water input Modelica.SIunits.ThermalConductance UAWat "UA for water side"; - input Modelica.SIunits.MassFlowRate mWat_flow "Mass flow rate for water"; input Modelica.SIunits.MassFlowRate mWatNonZer_flow @@ -12,9 +13,7 @@ model WetCoilWetRegime "Fully wet coil model using esilon_C.mo function" "Specific heat capacity of water"; input Modelica.SIunits.Temperature TWatIn "Water temperature at inlet"; - input Modelica.SIunits.MassFlowRate mWat_flow_nominal; - // -- air input Modelica.SIunits.Pressure pAir "Pressure on air-side of coil"; diff --git a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo index 56eb54d08c3..99f3310c137 100644 --- a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo @@ -28,7 +28,7 @@ model WetCoilEffectivenessNTU use_p_in=false, nPorts=2) "Air sink" - annotation (Placement(transformation(extent={{-180,-50},{-160,-30}}))); + annotation (Placement(transformation(extent={{-180,40},{-160,60}}))); Sources.MassFlowSource_T souAir( redeclare package Medium = Medium_A, m_flow=m2_flow_nominal, @@ -48,7 +48,7 @@ model WetCoilEffectivenessNTU annotation (Placement(transformation(extent={{190,-90},{170,-70}}))); Sensors.RelativeHumidityTwoPort RelHumIn(redeclare package Medium = Medium_A, m_flow_nominal=m2_flow_nominal) "Inlet relative humidity" - annotation (Placement(transformation(extent={{30,-90},{10,-70}}))); + annotation (Placement(transformation(extent={{40,-90},{20,-70}}))); Sensors.TemperatureTwoPort TDryBulIn(redeclare package Medium = Medium_A, m_flow_nominal=m2_flow_nominal) "Inlet dry bulb temperature" annotation (Placement(transformation(extent={{70,-90},{50,-70}}))); @@ -62,15 +62,15 @@ model WetCoilEffectivenessNTU annotation (Placement(transformation(extent={{110,-90},{90,-70}}))); Sensors.MassFractionTwoPort senMasFraOut(redeclare package Medium = Medium_A, m_flow_nominal=m2_flow_nominal) "Water mass fraction of leaving air" - annotation (Placement(transformation(extent={{-110,-30},{-130,-50}}))); + annotation (Placement(transformation(extent={{-110,10},{-130,-10}}))); Sensors.TemperatureTwoPort TDryBulOut(redeclare package Medium = Medium_A, m_flow_nominal=m2_flow_nominal) "Dry bulb temperature of leaving air" - annotation (Placement(transformation(extent={{-70,-30},{-90,-50}}))); + annotation (Placement(transformation(extent={{-50,10},{-70,-10}}))); Buildings.Utilities.Psychrometrics.TWetBul_TDryBulXi wetBulOut(redeclare package Medium = Medium_A) "Computation of wet bulb temperature" - annotation (Placement(transformation(extent={{-40,-100},{-20,-80}}))); + annotation (Placement(transformation(extent={{-40,-60},{-20,-40}}))); Modelica.Blocks.Sources.RealExpression pAir1(y=pAtm) "Air pressure" - annotation (Placement(transformation(extent={{-100,-112},{-80,-88}}))); + annotation (Placement(transformation(extent={{-100,-92},{-80,-68}}))); Buildings.Fluid.HeatExchangers.WetCoilEffectivenessNTU hexWetNTU( redeclare package Medium1 = Medium_W, redeclare package Medium2 = Medium_A, @@ -81,14 +81,14 @@ model WetCoilEffectivenessNTU dp1_nominal=0, configuration=hexCon, show_T=true) "Effectiveness-NTU coil model" - annotation (Placement(transformation(extent={{-40,-4},{-20,16}}))); + annotation (Placement(transformation(extent={{-30,-4},{-10,16}}))); Sources.MassFlowSource_T souWat1( redeclare package Medium = Medium_W, m_flow=m1_flow_nominal, T=T_a1_nominal, nPorts=1) "Source for water" - annotation (Placement(transformation(extent={{-180,2},{-160,22}}))); + annotation (Placement(transformation(extent={{-180,10},{-160,30}}))); WetCoilCounterFlow hexDis( redeclare package Medium1 = Medium_W, redeclare package Medium2 = Medium_A, @@ -106,14 +106,14 @@ model WetCoilEffectivenessNTU tau2=0.1, tau_m=0.1) "Discretized coil model" - annotation (Placement(transformation(extent={{-40,36},{-20,56}}))); + annotation (Placement(transformation(extent={{-30,56},{-10,76}}))); Sources.MassFlowSource_T souWat2( redeclare package Medium = Medium_W, m_flow=m1_flow_nominal, T=T_a1_nominal, nPorts=1) "Source for water" - annotation (Placement(transformation(extent={{-180,42},{-160,62}}))); + annotation (Placement(transformation(extent={{-180,70},{-160,90}}))); Sources.MassFlowSource_T souAir2( redeclare package Medium = Medium_A, m_flow=m2_flow_nominal, @@ -122,21 +122,30 @@ model WetCoilEffectivenessNTU nPorts=1) "Air source" annotation (Placement(transformation(extent={{140,30},{120,50}}))); + Sensors.MassFractionTwoPort senMasFraOut1(redeclare package Medium = Medium_A, + m_flow_nominal=m2_flow_nominal) "Water mass fraction of leaving air" + annotation (Placement(transformation(extent={{-110,50},{-130,70}}))); + Sensors.TemperatureTwoPort TDryBulOut1(redeclare package Medium = Medium_A, + m_flow_nominal=m2_flow_nominal) "Dry bulb temperature of leaving air" + annotation (Placement(transformation(extent={{-50,50},{-70,70}}))); + Sensors.RelativeHumidityTwoPort RelHumOut_eps(redeclare package Medium = + Medium_A, m_flow_nominal=m2_flow_nominal) "Outlet relative humidity" + annotation (Placement(transformation(extent={{-80,-10},{-100,10}}))); + Sensors.RelativeHumidityTwoPort RelHumOut_dis(redeclare package Medium = + Medium_A, m_flow_nominal=m2_flow_nominal) "Outlet relative humidity" + annotation (Placement(transformation(extent={{-80,50},{-100,70}}))); equation connect(pAir.y, wetBulIn.p) annotation (Line(points={{119,-40},{110,-40},{110, -18},{119,-18}}, color={0,0,127})); - connect(pAir1.y, wetBulOut.p) annotation (Line(points={{-79,-100},{-44,-100}, - {-44,-98},{-41,-98}}, - color={0,0,127})); + connect(pAir1.y, wetBulOut.p) annotation (Line(points={{-79,-80},{-60,-80},{ + -60,-58},{-41,-58}},color={0,0,127})); connect(senMasFraOut.port_b, sinAir.ports[1]) - annotation (Line(points={{-130,-40},{-156,-40},{-156,-38},{-160,-38}}, + annotation (Line(points={{-130,0},{-140,0},{-140,48},{-160,48},{-160,52}}, color={0,127,255})); - connect(TDryBulOut.port_b, senMasFraOut.port_a) - annotation (Line(points={{-90,-40},{-110,-40}}, color={0,127,255})); connect(TDryBulOut.T, wetBulOut.TDryBul) - annotation (Line(points={{-80,-51},{-80,-82},{-41,-82}}, color={0,0,127})); - connect(senMasFraOut.X, wetBulOut.Xi[1]) annotation (Line(points={{-120,-51}, - {-120,-90},{-41,-90}}, color={0,0,127})); + annotation (Line(points={{-60,-11},{-60,-42},{-41,-42}}, color={0,0,127})); + connect(senMasFraOut.X, wetBulOut.Xi[1]) annotation (Line(points={{-120,-11}, + {-120,-50},{-41,-50}}, color={0,0,127})); connect(souAir.ports[1], senMasFraIn.port_a) annotation (Line(points={{120,-80},{110,-80}}, color={0,127,255})); connect(senMasFraIn.port_b, TDryBulIn.port_a) @@ -148,28 +157,39 @@ equation annotation (Line(points={{60,-69},{60,-2},{119,-2}}, color={0,0,127})); connect(TDryBulIn.port_b, RelHumIn.port_a) - annotation (Line(points={{50,-80},{30,-80}}, color={0,127,255})); - connect(souWat1.ports[1], hexWetNTU.port_a1) annotation (Line(points={{-160,12}, - {-40,12}}, color={0,127,255})); - connect(hexWetNTU.port_b1, sinWat.ports[1]) annotation (Line(points={{-20,12}, + annotation (Line(points={{50,-80},{40,-80}}, color={0,127,255})); + connect(souWat1.ports[1], hexWetNTU.port_a1) annotation (Line(points={{-160,20}, + {-40,20},{-40,12},{-30,12}}, color={0,127,255})); + connect(hexWetNTU.port_b1, sinWat.ports[1]) annotation (Line(points={{-10,12}, {40,12},{40,18},{60,18},{60,22}}, color={0,127,255})); connect(X_w2.y[1], souAir.Xi_in[1]) annotation (Line(points={{169,-80},{160,-80}, {160,-84},{142,-84}}, color={0,0,127})); connect(souWat2.ports[1], hexDis.port_a1) - annotation (Line(points={{-160,52},{-40,52}}, color={0,127,255})); - connect(sinAir.ports[2], hexDis.port_b2) annotation (Line(points={{-160,-42},{ - -140,-42},{-140,40},{-40,40}}, color={0,127,255})); - connect(hexDis.port_b1, sinWat.ports[2]) annotation (Line(points={{-20,52},{40, - 52},{40,20},{60,20},{60,18}}, color={0,127,255})); + annotation (Line(points={{-160,80},{-40,80},{-40,72},{-30,72}}, + color={0,127,255})); + connect(hexDis.port_b1, sinWat.ports[2]) annotation (Line(points={{-10,72},{ + 40,72},{40,20},{60,20},{60,18}}, color={0,127,255})); connect(X_w2.y[1], souAir2.Xi_in[1]) annotation (Line(points={{169,-80},{160,-80}, {160,36},{142,36}}, color={0,0,127})); - connect(souAir2.ports[1], hexDis.port_a2) annotation (Line(points={{120,40},{-20, - 40}}, color={0,127,255})); - connect(hexWetNTU.port_b2, TDryBulOut.port_a) annotation (Line(points={{-40,0}, - {-60,0},{-60,-40},{-70,-40}}, color={0,127,255})); - connect(hexWetNTU.port_a2, RelHumIn.port_b) annotation (Line(points={{-20,0},{ - 0,0},{0,-80},{10,-80}}, color={0,127,255})); + connect(souAir2.ports[1], hexDis.port_a2) annotation (Line(points={{120,40},{ + 50,40},{50,60},{-10,60}}, color={0,127,255})); + connect(hexWetNTU.port_b2, TDryBulOut.port_a) annotation (Line(points={{-30,0}, + {-50,0}}, color={0,127,255})); + connect(hexWetNTU.port_a2, RelHumIn.port_b) annotation (Line(points={{-10,0}, + {0,0},{0,-80},{20,-80}},color={0,127,255})); + connect(hexDis.port_b2, TDryBulOut1.port_a) + annotation (Line(points={{-30,60},{-50,60}}, color={0,127,255})); + connect(senMasFraOut1.port_b, sinAir.ports[2]) annotation (Line(points={{-130, + 60},{-140,60},{-140,52},{-160,52},{-160,48}}, color={0,127,255})); + connect(TDryBulOut.port_b, RelHumOut_eps.port_a) annotation (Line(points={{ + -70,0},{-76,0},{-76,0},{-80,0}}, color={0,127,255})); + connect(RelHumOut_eps.port_b, senMasFraOut.port_a) + annotation (Line(points={{-100,0},{-110,0}}, color={0,127,255})); + connect(TDryBulOut1.port_b, RelHumOut_dis.port_a) + annotation (Line(points={{-70,60},{-80,60}}, color={0,127,255})); + connect(RelHumOut_dis.port_b, senMasFraOut1.port_a) + annotation (Line(points={{-100,60},{-110,60}}, color={0,127,255})); annotation (Diagram(coordinateSystem(preserveAspectRatio=true, extent={{-200,-120},{200,120}})), experiment( @@ -195,6 +215,10 @@ The reference used for validation is the published experimental data. A discretized wet coil model is also simulated for comparison.

    +Note that the outlet air relative humidity may slightly exceed 100% when using +the epsilon-NTU model. +

    +

    The slight deviations we find are believed due to differences in the tolerance of the solver algorithms employed as well as differences in media property calculations for air and water. diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt index a5a6f7ac377..26862788b18 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt @@ -3,16 +3,18 @@ statistics-simulation= { "linear": " ", "nonlinear": "1, 1, 120, 1, 1", - "number of continuous time states": "6", + "number of continuous time states": "10", "numerical Jacobians": "0" } time=[0e+00, 1e+02] -hexWetNTU.Q1_flow=[4.37056796875e+04, 4.370878515625e+04, 4.3711890625e+04, 4.37149921875e+04, 4.371809765625e+04, 4.372119921875e+04, 4.37243046875e+04, 4.372740625e+04, 4.37305078125e+04, 4.3733609375e+04, 4.37367109375e+04, 4.373980859375e+04, 4.374291015625e+04, 4.374601171875e+04, 4.3749109375e+04, 4.375220703125e+04, 4.375530859375e+04, 4.375840625e+04, 4.376150390625e+04, 4.37646015625e+04, 4.376769921875e+04, 4.377079296875e+04, 4.3773890625e+04, 4.3776859375e+04, 4.3778203125e+04, 4.377459375e+04, 4.376528515625e+04, 4.37565546875e+04, 4.3762328125e+04, 4.380183203125e+04, 4.389601171875e+04, 4.406401953125e+04, 4.43205390625e+04, 4.467414453125e+04, 4.512678515625e+04, 4.5674015625e+04, 4.630583984375e+04, 4.700789453125e+04, 4.776285546875e+04, 4.855198828125e+04, 4.93566796875e+04, 5.01598984375e+04, 5.094746484375e+04, 5.1708921875e+04, 5.243804296875e+04, 5.313283984375e+04, 5.37951484375e+04, 5.44298203125e+04, 5.5043578125e+04, 5.564364453125e+04, 5.623636328125e+04, 5.68261171875e+04, 5.7415078125e+04, 5.80038984375e+04, 5.859265234375e+04, 5.918135546875001e+04, 5.977000000000001e+04, 6.035859374999999e+04, 6.094712890624999e+04, 6.15356015625e+04, 6.2124015625e+04, 6.27123671875e+04, 6.330065625e+04, 6.38888828125e+04, 6.447704296875e+04, 6.506513671875e+04, 6.56531640625e+04, 6.6241125e+04, 6.6829015625e+04, 6.74168359375e+04, 6.80045859375e+04, 6.8592265625e+04, 6.91798671875e+04, 6.97673984375e+04, 7.03548515625e+04, 7.0942234375e+04, 7.152953125e+04, 7.21167578125e+04, 7.27038984375e+04, 7.32909609375e+04, 7.38779453125e+04, 7.446484375e+04, 7.505165625e+04, 7.5638390625e+04, 7.62250390625e+04, 7.68116015625e+04, 7.7398078125e+04, 7.79844609375e+04, 7.85707578125e+04, 7.91569609375e+04, 7.9743078125e+04, 8.03291015625e+04, 8.09150234375e+04, 8.1500859375e+04, 8.208659375e+04, 8.26722421875e+04, 8.32577890625e+04, 8.3843234375e+04, 8.44285859375e+04, 8.50138359375e+04, 8.5598984375e+04] +hexWetNTU.Q1_flow=[4.37056796875e+04, 4.370878515625e+04, 4.3711890625e+04, 4.37149921875e+04, 4.371809765625e+04, 4.372119921875e+04, 4.37243046875e+04, 4.372740625e+04, 4.37305078125e+04, 4.3733609375e+04, 4.37367109375e+04, 4.373980859375e+04, 4.374291015625e+04, 4.374601171875e+04, 4.3749109375e+04, 4.375220703125e+04, 4.375530859375e+04, 4.375840625e+04, 4.376150390625e+04, 4.37646015625e+04, 4.376769921875e+04, 4.377079296875e+04, 4.3773890625e+04, 4.3776859375e+04, 4.3778203125e+04, 4.377459375e+04, 4.376528515625e+04, 4.37565546875e+04, 4.376233203125e+04, 4.38018359375e+04, 4.3896015625e+04, 4.406403125e+04, 4.432055078125e+04, 4.46741640625e+04, 4.512680859375e+04, 4.5674046875e+04, 4.6305875e+04, 4.70079296875e+04, 4.77628984375e+04, 4.85520390625e+04, 4.9356734375e+04, 5.01599609375e+04, 5.094753125e+04, 5.170899609375e+04, 5.243812109375e+04, 5.313291796875e+04, 5.379523046875e+04, 5.442990625e+04, 5.50436640625e+04, 5.5643734375e+04, 5.623645703125e+04, 5.682621484375e+04, 5.741518359375e+04, 5.800400390625e+04, 5.859276953125e+04, 5.918147656250001e+04, 5.977012890625001e+04, 6.035872656249999e+04, 6.094726171874999e+04, 6.153573828125e+04, 6.212415234375e+04, 6.27125078125e+04, 6.3300796875e+04, 6.38890234375e+04, 6.447718359375e+04, 6.506528125e+04, 6.56533046875e+04, 6.6241265625e+04, 6.682915625e+04, 6.74169765625e+04, 6.80047265625e+04, 6.85923984375e+04, 6.91800078125e+04, 6.976753125e+04, 7.0354984375e+04, 7.09423671875e+04, 7.15296640625e+04, 7.2116890625e+04, 7.270403125e+04, 7.329109375e+04, 7.3878078125e+04, 7.44649765625e+04, 7.50517890625e+04, 7.56385234375e+04, 7.6225171875e+04, 7.68117265625e+04, 7.7398203125e+04, 7.79845859375e+04, 7.85708828125e+04, 7.91570859375e+04, 7.9743203125e+04, 8.03292265625e+04, 8.091515625e+04, 8.15009921875e+04, 8.2086734375e+04, 8.2672375e+04, 8.32579296875e+04, 8.3843375e+04, 8.44287265625e+04, 8.50139765625e+04, 8.55991328125e+04] hexDis.Q1_flow=[4.4666953125e+04, 4.467006640625e+04, 4.467318359375e+04, 4.4676296875e+04, 4.467941015625e+04, 4.46825234375e+04, 4.468563671875e+04, 4.468875e+04, 4.469186328125e+04, 4.46949765625e+04, 4.46980859375e+04, 4.470119921875e+04, 4.470430859375e+04, 4.470741796875e+04, 4.471053125e+04, 4.4713640625e+04, 4.471675e+04, 4.471985546875e+04, 4.472296484375e+04, 4.472607421875e+04, 4.47291796875e+04, 4.477980078125e+04, 4.490005078125e+04, 4.5074625e+04, 4.52928125e+04, 4.555167578125e+04, 4.583922265625e+04, 4.615662890625e+04, 4.64976953125e+04, 4.6859421875e+04, 4.723980859375e+04, 4.763695703125e+04, 4.804902734375e+04, 4.847423046875e+04, 4.891162890625e+04, 4.936323046875e+04, 4.9824015625e+04, 5.029236328125e+04, 5.077248046875e+04, 5.12602109375e+04, 5.17531171875e+04, 5.225769921875e+04, 5.276421484375e+04, 5.32818984375e+04, 5.3800875e+04, 5.432996484375e+04, 5.48590625e+04, 5.5399140625e+04, 5.59385859375e+04, 5.6486734375e+04, 5.703676953125e+04, 5.75901015625e+04, 5.8150359375e+04, 5.87099765625e+04, 5.92767734375e+04, 5.984625781250001e+04, 6.041510156250001e+04, 6.098330468749999e+04, 6.155086718749999e+04, 6.211778515625e+04, 6.26840625e+04, 6.324969140625e+04, 6.381467578125e+04, 6.437901171875e+04, 6.494269921875e+04, 6.550573828125e+04, 6.60681328125e+04, 6.6629875e+04, 6.71909609375e+04, 6.77513984375e+04, 6.83111796875e+04, 6.88703125e+04, 6.94287890625e+04, 6.9986609375e+04, 7.0543765625e+04, 7.11002734375e+04, 7.1656125e+04, 7.22113125e+04, 7.276584375e+04, 7.33197109375e+04, 7.3872921875e+04, 7.442546875e+04, 7.49773515625e+04, 7.5528578125e+04, 7.60791328125e+04, 7.66290234375e+04, 7.717825e+04, 7.77268125e+04, 7.8274703125e+04, 7.88219296875e+04, 7.93684921875e+04, 7.9914375e+04, 8.045959375e+04, 8.10041484375e+04, 8.15480234375e+04, 8.2091234375e+04, 8.2633765625e+04, 8.31756328125e+04, 8.37168203125e+04, 8.42573359375e+04, 8.4797171875e+04] -hexWetNTU.sta_b2.T=[2.834467163085938e+02, 2.83447509765625e+02, 2.834483032226562e+02, 2.834490966796875e+02, 2.834498901367188e+02, 2.8345068359375e+02, 2.834514770507812e+02, 2.834522399902344e+02, 2.834530334472656e+02, 2.834538269042969e+02, 2.834546203613281e+02, 2.834554138183594e+02, 2.834562072753906e+02, 2.834570007324219e+02, 2.834577941894531e+02, 2.834585876464844e+02, 2.834593811035156e+02, 2.834601745605469e+02, 2.834609680175781e+02, 2.834617614746094e+02, 2.834625549316406e+02, 2.834633483886719e+02, 2.834641418457031e+02, 2.834649658203125e+02, 2.834664001464844e+02, 2.834696960449219e+02, 2.834751281738281e+02, 2.834803466796875e+02, 2.834862976074219e+02, 2.83504150390625e+02, 2.835307922363281e+02, 2.835674438476562e+02, 2.836146545410156e+02, 2.836721801757812e+02, 2.837392883300781e+02, 2.838145751953125e+02, 2.838963317871094e+02, 2.839824829101562e+02, 2.840709533691406e+02, 2.8415966796875e+02, 2.842467346191406e+02, 2.8433056640625e+02, 2.844099731445312e+02, 2.844843139648438e+02, 2.845533142089844e+02, 2.846171875e+02, 2.846765747070312e+02, 2.847322998046875e+02, 2.847853088378906e+02, 2.848366394042969e+02, 2.848869934082031e+02, 2.849369506835938e+02, 2.849867553710938e+02, 2.850364685058594e+02, 2.850861206054688e+02, 2.851357116699219e+02, 2.851852111816406e+02, 2.85234619140625e+02, 2.852839965820312e+02, 2.853332824707031e+02, 2.853824768066406e+02, 2.85431640625e+02, 2.85480712890625e+02, 2.855297241210938e+02, 2.855786437988281e+02, 2.856275329589844e+02, 2.856763305664062e+02, 2.857250671386719e+02, 2.857737121582031e+02, 2.858223266601562e+02, 2.85870849609375e+02, 2.859193115234375e+02, 2.859676818847656e+02, 2.860160217285156e+02, 2.860642700195312e+02, 2.861124877929688e+02, 2.861606140136719e+02, 2.862086791992188e+02, 2.862566528320312e+02, 2.863045959472656e+02, 2.863524780273438e+02, 2.864002685546875e+02, 2.864480285644531e+02, 2.864956970214844e+02, 2.865433044433594e+02, 2.865908508300781e+02, 2.866383666992188e+02, 2.86685791015625e+02, 2.86733154296875e+02, 2.867804565429688e+02, 2.868276977539062e+02, 2.868748779296875e+02, 2.869219970703125e+02, 2.869690551757812e+02, 2.870160522460938e+02, 2.8706298828125e+02, 2.8710986328125e+02, 2.871566772460938e+02, 2.872034301757812e+02, 2.872501525878906e+02, 2.872967834472656e+02] +hexWetNTU.sta_b2.T=[2.834467163085938e+02, 2.83447509765625e+02, 2.834483032226562e+02, 2.834490966796875e+02, 2.834498901367188e+02, 2.8345068359375e+02, 2.834514770507812e+02, 2.834522399902344e+02, 2.834530334472656e+02, 2.834538269042969e+02, 2.834546203613281e+02, 2.834554138183594e+02, 2.834562072753906e+02, 2.834570007324219e+02, 2.834577941894531e+02, 2.834585876464844e+02, 2.834593811035156e+02, 2.834601745605469e+02, 2.834609680175781e+02, 2.834617614746094e+02, 2.834625549316406e+02, 2.834633483886719e+02, 2.834641418457031e+02, 2.834649658203125e+02, 2.834664001464844e+02, 2.834696960449219e+02, 2.834751281738281e+02, 2.834803466796875e+02, 2.834862976074219e+02, 2.835041198730469e+02, 2.835307922363281e+02, 2.835674438476562e+02, 2.836146240234375e+02, 2.836721801757812e+02, 2.837392883300781e+02, 2.838145751953125e+02, 2.838963012695312e+02, 2.839824829101562e+02, 2.840709533691406e+02, 2.8415966796875e+02, 2.842467346191406e+02, 2.8433056640625e+02, 2.844099731445312e+02, 2.844842834472656e+02, 2.845532836914062e+02, 2.846171875e+02, 2.846765747070312e+02, 2.847322692871094e+02, 2.847853088378906e+02, 2.848366088867188e+02, 2.848869934082031e+02, 2.849369506835938e+02, 2.849867553710938e+02, 2.850364685058594e+02, 2.850860900878906e+02, 2.851356811523438e+02, 2.851851806640625e+02, 2.85234619140625e+02, 2.852839660644531e+02, 2.85333251953125e+02, 2.853824768066406e+02, 2.854316101074219e+02, 2.854806823730469e+02, 2.855296936035156e+02, 2.855786437988281e+02, 2.856275024414062e+02, 2.856763000488281e+02, 2.857250366210938e+02, 2.85773681640625e+02, 2.858222961425781e+02, 2.858708190917969e+02, 2.859192810058594e+02, 2.859676818847656e+02, 2.860159912109375e+02, 2.860642700195312e+02, 2.861124572753906e+02, 2.861605834960938e+02, 2.862086486816406e+02, 2.862566528320312e+02, 2.863045959472656e+02, 2.863524475097656e+02, 2.864002685546875e+02, 2.86447998046875e+02, 2.864956665039062e+02, 2.865433044433594e+02, 2.865908508300781e+02, 2.866383361816406e+02, 2.866857604980469e+02, 2.867331237792969e+02, 2.867804260253906e+02, 2.868276672363281e+02, 2.868748474121094e+02, 2.869219665527344e+02, 2.869690246582031e+02, 2.870160217285156e+02, 2.870629577636719e+02, 2.871098327636719e+02, 2.871566467285156e+02, 2.872034301757812e+02, 2.872501220703125e+02, 2.872967529296875e+02] hexDis.sta_b2.T=[2.83086669921875e+02, 2.830874938964844e+02, 2.830883178710938e+02, 2.830891723632812e+02, 2.830899963378906e+02, 2.830908203125e+02, 2.830916442871094e+02, 2.830924682617188e+02, 2.830933227539062e+02, 2.830941467285156e+02, 2.83094970703125e+02, 2.830957946777344e+02, 2.830966491699219e+02, 2.830974731445312e+02, 2.830982971191406e+02, 2.8309912109375e+02, 2.830999450683594e+02, 2.831007995605469e+02, 2.831016235351562e+02, 2.831024475097656e+02, 2.83103271484375e+02, 2.831187133789062e+02, 2.831521911621094e+02, 2.831964721679688e+02, 2.8324755859375e+02, 2.83303466796875e+02, 2.833618774414062e+02, 2.834222717285156e+02, 2.834837036132812e+02, 2.83545654296875e+02, 2.836078491210938e+02, 2.836700134277344e+02, 2.837320251464844e+02, 2.837937316894531e+02, 2.838550720214844e+02, 2.839158325195312e+02, 2.839761657714844e+02, 2.840360717773438e+02, 2.840953063964844e+02, 2.841540222167969e+02, 2.842123413085938e+02, 2.842698364257812e+02, 2.843271179199219e+02, 2.84383544921875e+02, 2.844397583007812e+02, 2.844951171875e+02, 2.845504150390625e+02, 2.846047058105469e+02, 2.846589660644531e+02, 2.8471240234375e+02, 2.847655944824219e+02, 2.848183898925781e+02, 2.848704833984375e+02, 2.849225769042969e+02, 2.84973876953125e+02, 2.850248413085938e+02, 2.850758056640625e+02, 2.851267700195312e+02, 2.85177734375e+02, 2.852286987304688e+02, 2.852796325683594e+02, 2.853305969238281e+02, 2.853815307617188e+02, 2.854324645996094e+02, 2.854833679199219e+02, 2.855343017578125e+02, 2.85585205078125e+02, 2.856361083984375e+02, 2.8568701171875e+02, 2.857378845214844e+02, 2.857887878417969e+02, 2.858396606445312e+02, 2.858905334472656e+02, 2.859413757324219e+02, 2.859922485351562e+02, 2.860430908203125e+02, 2.860939025878906e+02, 2.861447448730469e+02, 2.86195556640625e+02, 2.862463684082031e+02, 2.862971801757812e+02, 2.863479614257812e+02, 2.863987426757812e+02, 2.864495239257812e+02, 2.865003051757812e+02, 2.865510559082031e+02, 2.86601806640625e+02, 2.866525268554688e+02, 2.867032470703125e+02, 2.867539672851562e+02, 2.868046875e+02, 2.868553771972656e+02, 2.869060668945312e+02, 2.869567260742188e+02, 2.870073852539062e+02, 2.870580444335938e+02, 2.871086730957031e+02, 2.871593017578125e+02, 2.872099304199219e+02, 2.872605285644531e+02, 2.873111267089844e+02] -hexWetNTU.dryWetCalcs.dryFra=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999998807907104e-01, 9.999626874923706e-01, 9.993447065353394e-01, 9.962406158447266e-01, 9.876253604888916e-01, 9.704166054725647e-01, 9.423255324363707e-01, 9.02266561985016e-01, 8.504196405410767e-01, 7.880647778511047e-01, 7.172926664352417e-01, 6.406835913658142e-01, 5.610146522521973e-01, 4.810254573822021e-01, 4.032464325428009e-01, 3.298777639865875e-01, 2.627068161964417e-01, 2.030541598796844e-01, 1.51745393872261e-01, 1.091097965836525e-01, 7.500801235437393e-02, 4.888864979147911e-02, 2.98701748251915e-02, 1.684069633483887e-02, 8.567033335566521e-03, 3.804787993431091e-03, 1.402988564223051e-03, 3.965478681493551e-04, 7.509576971642673e-05, 7.462910161848413e-06, 2.377392860353211e-07, 7.582208194634177e-10, 6.849346004239977e-15, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +RelHumOut_eps.phi=[5e-01, 4.807458817958832e-01, 4.851866662502289e-01, 4.983434081077576e-01, 5.147038102149963e-01, 5.322390198707581e-01, 5.502036809921265e-01, 5.683231353759766e-01, 5.864958763122559e-01, 6.046844720840454e-01, 6.228765249252319e-01, 6.410662531852722e-01, 6.592522263526917e-01, 6.774336099624634e-01, 6.956099271774292e-01, 7.137811779975891e-01, 7.319474220275879e-01, 7.501087188720703e-01, 7.682651281356812e-01, 7.864165306091309e-01, 8.045628070831299e-01, 8.22704017162323e-01, 8.40840220451355e-01, 8.589707016944885e-01, 8.770843744277954e-01, 8.951377868652344e-01, 9.130790233612061e-01, 9.309306740760803e-01, 9.487404823303224e-01, 9.655286073684691e-01, 9.806634187698364e-01, 9.936394095420837e-01, 1.003999948501587e+00, 1.011433005332947e+00, 1.01582407951355e+00, 1.017245292663574e+00, 1.015960574150085e+00, 1.012381672859192e+00, 1.007035732269287e+00, 1.000486373901367e+00, 9.933390021324158e-01, 9.861120581626892e-01, 9.792985916137695e-01, 9.732573628425598e-01, 9.682464003562927e-01, 9.643759727478027e-01, 9.616511464118958e-01, 9.599738717079163e-01, 9.591524004936218e-01, 9.58992600440979e-01, 9.592487812042236e-01, 9.597574472427368e-01, 9.603806138038635e-01, 9.610464572906494e-01, 9.617268443107605e-01, 9.624078869819641e-01, 9.630863070487976e-01, 9.637607336044312e-01, 9.644306898117065e-01, 9.650958776473999e-01, 9.65756356716156e-01, 9.664121270179749e-01, 9.670632481575012e-01, 9.677097201347351e-01, 9.683516621589661e-01, 9.689890146255493e-01, 9.696217179298401e-01, 9.702499508857727e-01, 9.708738327026367e-01, 9.714931845664978e-01, 9.721080660820007e-01, 9.727186560630798e-01, 9.733249545097351e-01, 9.739269018173218e-01, 9.745244979858398e-01, 9.751179814338684e-01, 9.757074117660522e-01, 9.762927293777466e-01, 9.768738746643066e-01, 9.774508476257324e-01, 9.780237078666687e-01, 9.785924553871155e-01, 9.79157030582428e-01, 9.79717493057251e-01, 9.802738428115845e-01, 9.808260798454285e-01, 9.813742637634277e-01, 9.819191694259644e-01, 9.824602007865906e-01, 9.829972982406616e-01, 9.835306406021118e-01, 9.840601086616516e-01, 9.845858216285706e-01, 9.851077198982239e-01, 9.856258630752563e-01, 9.861403107643127e-01, 9.866510629653931e-01, 9.871581196784973e-01, 9.87661600112915e-01, 9.88161563873291e-01, 9.886580109596252e-01] +RelHumOut_dis.phi=[5e-01, 4.879871308803558e-01, 4.953725337982178e-01, 5.098927021026611e-01, 5.270346999168396e-01, 5.451372861862183e-01, 5.63590407371521e-01, 5.821690559387207e-01, 6.0079026222229e-01, 6.194232702255249e-01, 6.380579471588135e-01, 6.566895842552185e-01, 6.753170490264893e-01, 6.939396262168884e-01, 7.125568985939026e-01, 7.31168806552887e-01, 7.497755289077759e-01, 7.683771252632141e-01, 7.869734764099121e-01, 8.055646419525146e-01, 8.24126124382019e-01, 8.41975212097168e-01, 8.573434352874756e-01, 8.700541853904724e-01, 8.805397152900696e-01, 8.892693519592285e-01, 8.966516256332397e-01, 9.029713273048401e-01, 9.084591865539551e-01, 9.132800698280334e-01, 9.175565242767334e-01, 9.213860034942627e-01, 9.248403906822205e-01, 9.279791116714478e-01, 9.308440685272217e-01, 9.334763288497925e-01, 9.359102845191956e-01, 9.381670355796814e-01, 9.402610659599304e-01, 9.422263503074646e-01, 9.440659284591675e-01, 9.457938671112061e-01, 9.474299550056458e-01, 9.489694833755493e-01, 9.504368305206299e-01, 9.518241882324219e-01, 9.531521201133728e-01, 9.544141292572021e-01, 9.556226134300232e-01, 9.567819833755493e-01, 9.578878879547119e-01, 9.589594006538391e-01, 9.599815011024475e-01, 9.609702229499817e-01, 9.619269371032715e-01, 9.628446698188782e-01, 9.637401700019836e-01, 9.64623749256134e-01, 9.655007719993591e-01, 9.663733243942261e-01, 9.672417044639587e-01, 9.681061506271362e-01, 9.68966543674469e-01, 9.698230028152466e-01, 9.706755876541138e-01, 9.715242385864258e-01, 9.723688960075378e-01, 9.732097387313843e-01, 9.740468263626099e-01, 9.74880039691925e-01, 9.757093787193298e-01, 9.765349626541138e-01, 9.773569107055664e-01, 9.781751036643982e-01, 9.789894819259644e-01, 9.79800283908844e-01, 9.806076288223267e-01, 9.81411337852478e-01, 9.822114706039429e-01, 9.830079674720764e-01, 9.838008880615234e-01, 9.845901727676392e-01, 9.853759407997131e-01, 9.861580729484558e-01, 9.86936628818512e-01, 9.877116084098816e-01, 9.884831309318542e-01, 9.892516732215881e-01, 9.900168180465698e-01, 9.907785654067993e-01, 9.915369749069214e-01, 9.92292046546936e-01, 9.930437803268433e-01, 9.937922358512878e-01, 9.94537353515625e-01, 9.952792525291443e-01, 9.960178732872009e-01, 9.967532753944397e-01, 9.974854588508606e-01, 9.982146620750427e-01, 9.98940646648407e-01] +hexWetNTU.dryWetCalcs.dryFra=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999998807907104e-01, 9.999626874923706e-01, 9.993447065353394e-01, 9.962406158447266e-01, 9.876253604888916e-01, 9.704166054725647e-01, 9.423255920410155e-01, 9.022666215896608e-01, 8.50419819355011e-01, 7.880649566650391e-01, 7.172929048538208e-01, 6.406838893890381e-01, 5.610149502754211e-01, 4.810258150100708e-01, 4.032467901706696e-01, 3.298781514167786e-01, 2.627072036266327e-01, 2.030545324087143e-01, 1.517457515001297e-01, 1.091101244091988e-01, 7.500828802585602e-02, 4.888887703418732e-02, 2.987034991383553e-02, 1.684082299470901e-02, 8.567113429307938e-03, 3.804834792390466e-03, 1.403011381626129e-03, 3.965569485444576e-04, 7.509823626605794e-05, 7.463286692654947e-06, 2.377598633529487e-07, 7.583455530202343e-10, 6.849351933470608e-15, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] hexDis.dryFra=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 8.999999761581421e-01, 8.333333134651184e-01, 7.666666507720947e-01, 6.99999988079071e-01, 6.666666865348816e-01, 6.333333253860474e-01, 5.666666626930237e-01, 5.333333611488342e-01, 5e-01, 4.666666686534882e-01, 4.333333373069763e-01, 4.000000059604645e-01, 3.666666746139526e-01, 3.666666746139526e-01, 3.333333432674408e-01, 3.00000011920929e-01, 2.666666805744171e-01, 2.666666805744171e-01, 2.333333343267441e-01, 2.333333343267441e-01, 2.000000029802322e-01, 1.666666716337204e-01, 1.666666716337204e-01, 1.333333402872086e-01, 1.333333402872086e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 6.666667014360428e-02, 6.666667014360428e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -hexWetNTU.SHR=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.996239542961121e-01, 9.977564215660095e-01, 9.941202402114868e-01, 9.882392287254333e-01, 9.79813277721405e-01, 9.687610864639282e-01, 9.552229642868042e-01, 9.395310282707214e-01, 9.221572279930115e-01, 9.036524891853333e-01, 8.845860362052917e-01, 8.654931783676147e-01, 8.468348979949951e-01, 8.289715051651001e-01, 8.121501207351685e-01, 7.965043187141418e-01, 7.820631861686707e-01, 7.68768310546875e-01, 7.564946413040161e-01, 7.450750470161438e-01, 7.343261241912842e-01, 7.240740060806274e-01, 7.141777276992798e-01, 7.045435905456543e-01, 6.95124089717865e-01, 6.859012842178345e-01, 6.768677234649658e-01, 6.680176854133605e-01, 6.593456268310546e-01, 6.508464217185975e-01, 6.42515003681183e-01, 6.343464851379395e-01, 6.263362169265747e-01, 6.184797883033752e-01, 6.107728481292725e-01, 6.032112240791321e-01, 5.957909226417542e-01, 5.885080695152283e-01, 5.813589692115784e-01, 5.743400454521179e-01, 5.6744784116745e-01, 5.606789588928223e-01, 5.54030179977417e-01, 5.474984645843506e-01, 5.410807728767395e-01, 5.347741842269897e-01, 5.285758376121521e-01, 5.224831104278564e-01, 5.164933800697327e-01, 5.106040835380554e-01, 5.048127174377441e-01, 4.991169273853302e-01, 4.935144484043121e-01, 4.880030453205109e-01, 4.825805127620697e-01, 4.772448241710663e-01, 4.719938933849335e-01, 4.668257832527161e-01, 4.617385864257812e-01, 4.567304849624634e-01, 4.517996609210968e-01, 4.469443559646606e-01, 4.421629011631012e-01, 4.374536871910095e-01, 4.328150749206543e-01, 4.282455742359161e-01, 4.237436652183533e-01, 4.193078577518463e-01, 4.149367809295654e-01, 4.106290340423584e-01, 4.063833057880402e-01, 4.021982550621033e-01, 3.980726599693298e-01] -hexWetNTU.dryWetCalcs.w_FW=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.121166799810294e-15, 1.221359866576677e-07, 3.733825360541232e-05, 6.552894483320415e-04, 3.759400453418493e-03, 1.237466372549534e-02, 2.958342060446739e-02, 5.767444893717778e-02, 9.773346036672576e-02, 1.49580329656601e-01, 2.119352370500565e-01, 2.827073335647583e-01, 3.593163788318634e-01, 4.389853477478027e-01, 5.189745426177979e-01, 5.967535972595215e-01, 6.701222658157349e-01, 7.372931838035583e-01, 7.969458699226379e-01, 8.482546210289001e-01, 8.908901810646057e-01, 9.249919652938843e-01, 9.51111376285553e-01, 9.701298475265503e-01, 9.831593036651611e-01, 9.914329648017883e-01, 9.961951971054077e-01, 9.985970258712769e-01, 9.996034502983093e-01, 9.99924898147583e-01, 9.999925494194031e-01, 9.999997615814209e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] -hexWetNTU.dryWetCalcs.w_FD=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999998807907104e-01, 9.999626874923706e-01, 9.993447065353394e-01, 9.962406158447266e-01, 9.876253604888916e-01, 9.704166054725647e-01, 9.423255324363707e-01, 9.02266561985016e-01, 8.504196405410767e-01, 7.880647778511047e-01, 7.172926664352417e-01, 6.406835913658142e-01, 5.610146522521973e-01, 4.810254573822021e-01, 4.032464325428009e-01, 3.298777639865875e-01, 2.627068161964417e-01, 2.030541598796844e-01, 1.51745393872261e-01, 1.091097965836525e-01, 7.500801235437393e-02, 4.888864979147911e-02, 2.98701748251915e-02, 1.684069633483887e-02, 8.567033335566521e-03, 3.804787993431091e-03, 1.402988564223051e-03, 3.965478681493551e-04, 7.509576971642673e-05, 7.462910161848413e-06, 2.377392860353211e-07, 7.582208194634177e-10, 6.849346004239977e-15, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +hexWetNTU.SHR=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.996239542961121e-01, 9.977563619613647e-01, 9.941201210021973e-01, 9.882391095161438e-01, 9.798130989074707e-01, 9.687608480453491e-01, 9.552227258682251e-01, 9.395307898521423e-01, 9.221569299697876e-01, 9.036521315574646e-01, 8.845856189727783e-01, 8.654927611351013e-01, 8.468344807624817e-01, 8.289710283279419e-01, 8.12149703502655e-01, 7.965038418769836e-01, 7.820627093315125e-01, 7.687678337097168e-01, 7.564941644668579e-01, 7.450745701789856e-01, 7.34325647354126e-01, 7.240734696388245e-01, 7.141772508621216e-01, 7.045431137084961e-01, 6.951236128807068e-01, 6.859008073806763e-01, 6.768672466278076e-01, 6.680171489715575e-01, 6.593451499938964e-01, 6.508459448814393e-01, 6.425145268440248e-01, 6.343460083007812e-01, 6.263357996940613e-01, 6.184793710708618e-01, 6.10772430896759e-01, 6.032108068466187e-01, 5.957905650138855e-01, 5.885077118873596e-01, 5.813586711883545e-01, 5.74339747428894e-01, 5.674474835395813e-01, 5.606786608695984e-01, 5.540299415588379e-01, 5.474982261657715e-01, 5.410805344581604e-01, 5.347739458084106e-01, 5.285756587982178e-01, 5.224829316139221e-01, 5.164932012557983e-01, 5.106039047241211e-01, 5.048125386238098e-01, 4.991167783737183e-01, 4.935142993927002e-01, 4.880028963088989e-01, 4.825803935527802e-01, 4.772446751594543e-01, 4.719937741756439e-01, 4.668256938457489e-01, 4.617384970188141e-01, 4.567303955554962e-01, 4.517995715141296e-01, 4.469442963600159e-01, 4.421628415584564e-01, 4.374536275863647e-01, 4.328150451183319e-01, 4.282455444335938e-01, 4.237436056137085e-01, 4.193078279495239e-01, 4.14936751127243e-01, 4.10629004240036e-01, 4.063832759857178e-01, 4.021982550621033e-01, 3.980726599693298e-01] +hexWetNTU.dryWetCalcs.w_FW=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.121166799810294e-15, 1.221358445491205e-07, 3.733820631168783e-05, 6.552886916324496e-04, 3.759396495297551e-03, 1.237465068697929e-02, 2.9583390802145e-02, 5.767438933253301e-02, 9.7733363509178e-02, 1.495801955461502e-01, 2.119350433349609e-01, 2.827070951461792e-01, 3.593160808086395e-01, 4.389850497245789e-01, 5.189741849899292e-01, 5.967531800270081e-01, 6.701218485832214e-01, 7.372927665710449e-01, 7.969454526901245e-01, 8.482542634010315e-01, 8.908898830413818e-01, 9.249917268753052e-01, 9.511111378669739e-01, 9.70129668712616e-01, 9.831591844558716e-01, 9.914329051971436e-01, 9.961951375007629e-01, 9.985969662666321e-01, 9.996034502983093e-01, 9.99924898147583e-01, 9.999925494194031e-01, 9.999997615814209e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] +hexWetNTU.dryWetCalcs.w_FD=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999998807907104e-01, 9.999626874923706e-01, 9.993447065353394e-01, 9.962406158447266e-01, 9.876253604888916e-01, 9.704166054725647e-01, 9.423255920410155e-01, 9.022666215896608e-01, 8.50419819355011e-01, 7.880649566650391e-01, 7.172929048538208e-01, 6.406838893890381e-01, 5.610149502754211e-01, 4.810258150100708e-01, 4.032467901706696e-01, 3.298781514167786e-01, 2.627072036266327e-01, 2.030545324087143e-01, 1.517457515001297e-01, 1.091101244091988e-01, 7.500828802585602e-02, 4.888887703418732e-02, 2.987034991383553e-02, 1.684082299470901e-02, 8.567113429307938e-03, 3.804834792390466e-03, 1.403011381626129e-03, 3.965569485444576e-04, 7.509823626605794e-05, 7.463286692654947e-06, 2.377598633529487e-07, 7.583455530202343e-10, 6.849351933470608e-15, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos index 708a209fae4..ede1498652d 100644 --- a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos +++ b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos @@ -24,6 +24,15 @@ createPlot( autoreplot=true, grid=true, color=true); +createPlot( + id=1, + subPlot=3, + y={"RelHumOut_eps.phi", "RelHumOut_dis.phi"}, + autoscale=true, + autoerase=true, + autoreplot=true, + grid=true, + color=true); createPlot( id=2, position={1255, 58, 1140, 1286}, diff --git a/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos b/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos index d9c23a6cf3e..bb90355721d 100644 --- a/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos +++ b/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos @@ -4,6 +4,8 @@ compareVars := "hexDis.Q1_flow", "hexWetNTU.sta_b2.T", "hexDis.sta_b2.T", + "RelHumOut_eps.phi", + "RelHumOut_dis.phi", "hexWetNTU.dryWetCalcs.dryFra", "hexDis.dryFra", "hexWetNTU.SHR", From a0b9d71af7836d5d53caaed1158d24f938c12587 Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Fri, 12 Feb 2021 16:49:11 -0800 Subject: [PATCH 20/69] Replace
    with
    --- .../BaseClasses/WetCoilDryRegime.mo | 8 +- .../BaseClasses/WetCoilDryWetRegime.mo | 2 +- .../BaseClasses/WetCoilWetRegime.mo | 52 +++++------ .../HeatExchangers/WetCoilEffectivenessNTU.mo | 88 +++++++++---------- 4 files changed, 75 insertions(+), 75 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo index 04ac21a8506..4ed0ac856b9 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo @@ -85,17 +85,17 @@ equation coordinateSystem(preserveAspectRatio=false)), Documentation(revisions="

      -
    • Jan 21, 2021, by Donghun Kim:
      First implementation of the fuzzy model. -See issue 622 +
    • Jan 21, 2021, by Donghun Kim:
      First implementation of the fuzzy model. +See issue 622 for more information.
    ", info="

    This model implements the calculation for a 100% dry coil.

    -See +See Buildings.Fluid.HeatExchangers.DryCoilEffectivenessNTU -for documentation. +for documentation.

    ")); end WetCoilDryRegime; diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo index dd3cb63f18d..8228cbf45fc 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo @@ -379,7 +379,7 @@ connections; there are too many connections to show graphically here")}), Documentation(revisions="
      -
    • Jan 21, 2021, by Donghun Kim:
      First implementation of the fuzzy model. See issue 622 for more information.
    • +
    • Jan 21, 2021, by Donghun Kim:
      First implementation of the fuzzy model. See issue 622 for more information.
    ", info="

    The switching criteria for (counter-flow) cooling coil modes are as follows.

    diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo index aeec90e58c3..e46fa593330 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo @@ -159,53 +159,53 @@ equation fillColor={170,213,255}, fillPattern=FillPattern.Solid)}), Documentation(revisions="
      -
    • Jan 21, 2021, by Donghun Kim:
      First implementation of the fuzzy model. See issue 622 for more information.
    • +
    • Jan 21, 2021, by Donghun Kim:
      First implementation of the fuzzy model. See issue 622 for more information.
    ", info="

    This model implements the calculation for a 100% wet coil.

    -

    The equations from Braun (1988) and Mitchell and Braun (2012a and b), -which are essentially the extension of the ε-NTU approach to +

    The equations from Braun (1988) and Mitchell and Braun (2012a and b), +which are essentially the extension of the ε-NTU approach to simultaneous sensible and latent heat transfer, are utilized.

    -

    The mathematical equations are analogous to that of the sensible heat exchanger. -The key change is that the heat transfer is driven by an enthalpy difference -not by an temperature difference. -This change in the driving potential results in redefining capacitances and +

    The mathematical equations are analogous to that of the sensible heat exchanger. +The key change is that the heat transfer is driven by an enthalpy difference +not by an temperature difference. +This change in the driving potential results in redefining capacitances and heat transfer coefficients accordinlgy.

    The total heat transfer rate is expressed as

    Qtot=ε* C*min (hair,in-hsat(Twat,in)),

    -

    where ε*=f(Cr*,NTU*) and f is the same epsilon-NTU relationships +

    where ε*=f(Cr*,NTU*) and f is the same epsilon-NTU relationships (depending on the heat exchanger configuration) for the sensible heat exchanger.

    -

    hair,in and hsat(Twat,in) are the specific enthalpies +

    hair,in and hsat(Twat,in) are the specific enthalpies of the incoming moist air and saturated moist air at the water inlet temperature.

    The capacitances of water and air streams are defined as

    -

    C*air=mair and +

    C*air=mair and C*wat=mwatcp,wat/csat,

    -

    where csat is an specific heat capacity, which indicates the sensitivity -of the enthalpy of the staturated moist air w.r.t. the temperature, and is defined -here as csat=(hsat(Twat,out)-hsat(Twat,in)) +

    where csat is an specific heat capacity, which indicates the sensitivity +of the enthalpy of the staturated moist air w.r.t. the temperature, and is defined +here as csat=(hsat(Twat,out)-hsat(Twat,in)) /(Twat,out-Twat,in).

    The capacitance ratio and minimum capacitance are naturally defined as

    -

    Cr*=min(C*air,C*wat)/max(C*air,C*wat) +

    Cr*=min(C*air,C*wat)/max(C*air,C*wat) and C*min=min(C*air,C*wat).

    -


    The number of transfer unit for the wet-coil is defined as NTU*=UA*/C*min, where

    +


    The number of transfer unit for the wet-coil is defined as NTU*=UA*/C*min, where

    UA*=1/(1/(UAair/cp,air)+1/(UAwat/csat).

    References

    -

    Braun, James E. 1988. -"Methodologies for the Design and Control of Central Cooling Plants". -PhD Thesis. University of Wisconsin - Madison. -Available +

    Braun, James E. 1988. +"Methodologies for the Design and Control of Central Cooling Plants". +PhD Thesis. University of Wisconsin - Madison. +Available online.

    -

    Mitchell, John W., and James E. Braun. 2012a. -Principles of heating, ventilation, and air conditioning in buildings. +

    Mitchell, John W., and James E. Braun. 2012a. +Principles of heating, ventilation, and air conditioning in buildings. Hoboken, N.J.: Wiley.

    -

    Mitchell, John W., and James E. Braun. 2012b. -"Supplementary Material Chapter 2: Heat Exchangers for Cooling Applications". -Excerpt from Principles of heating, ventilation, and air conditioning in buildings. -Hoboken, N.J.: Wiley. -Available +

    Mitchell, John W., and James E. Braun. 2012b. +"Supplementary Material Chapter 2: Heat Exchangers for Cooling Applications". +Excerpt from Principles of heating, ventilation, and air conditioning in buildings. +Hoboken, N.J.: Wiley. +Available online.

    diff --git a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo index 2e27878bb5e..dcaafe4ff2b 100644 --- a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo @@ -483,36 +483,36 @@ equation textString="Air Side")}), Documentation(info="

    -This model describes a cooling coil that is capable of simulating fully-dry, -partially-wet, and fully-wet regimes. +This model describes a cooling coil that is capable of simulating fully-dry, +partially-wet, and fully-wet regimes. The model is developed for counter flow heat exchangers but is also applicable -for the cross-flow configuration, although in the latter case it is recommended -to have over four tube rows (Elmahdy and Mitalas, 1977 and Braun, 1988). +for the cross-flow configuration, although in the latter case it is recommended +to have over four tube rows (Elmahdy and Mitalas, 1977 and Braun, 1988). The model can also be used for a heat exchanger which acts as both heating coil -(for some period of time) and cooling coil (for the others). -However, it is not recommended to use this model for heating coil only or for -cooling coil with no water condensation for computational efficiency. +(for some period of time) and cooling coil (for the others). +However, it is not recommended to use this model for heating coil only or for +cooling coil with no water condensation for computational efficiency.

    Main equations

    -The coil model consists of two-equation sets, one for the fully-dry mode and -the other for the fully-wet mode. For the fully-dry mode, the ε-NTU -approach (Elmahdy and Mitalas, 1977) is used. +The coil model consists of two-equation sets, one for the fully-dry mode and +the other for the fully-wet mode. For the fully-dry mode, the ε-NTU +approach (Elmahdy and Mitalas, 1977) is used. For the fully-wet mode, equations from Braun (1988) and Mitchell and Braun (2012a and b), -which are essentially the extension of the ε-NTU approach to simultaneous sensible -and latent heat transfer, are utilized. -The equation sets are switched depending on the switching criteria described below -that determines the right mode based on a coil surface temperature and dew-point -temperature for the air at the inlet of the coil. -The transition regime between the two modes, which represents the partially-wet and -partially-dry coil, is approximated by employing a fuzzy modeling approach, -so-called Takagi-Sugeno fuzzy modeling (Takagi and Sugeno, 1985), which provides a -continuously differentiable model that can cover all fully-dry, partially-wet, -and fully-wet regimes. +which are essentially the extension of the ε-NTU approach to simultaneous sensible +and latent heat transfer, are utilized. +The equation sets are switched depending on the switching criteria described below +that determines the right mode based on a coil surface temperature and dew-point +temperature for the air at the inlet of the coil. +The transition regime between the two modes, which represents the partially-wet and +partially-dry coil, is approximated by employing a fuzzy modeling approach, +so-called Takagi-Sugeno fuzzy modeling (Takagi and Sugeno, 1985), which provides a +continuously differentiable model that can cover all fully-dry, partially-wet, +and fully-wet regimes.

    The switching rules are;

      -
    • R1: If the coil surface temperature at the air inlet is lower than the +
    • R1: If the coil surface temperature at the air inlet is lower than the dew-point temperature of air at inlet, then the cooling coil surface is fully-wet.
    • @@ -520,12 +520,12 @@ R2: If the coil surface temperature at the air outlet is higher than the dew-point temperature of air at inlet, then the cooling coil surface is fully-dry.
    • -R3: If any of the conditions in R1 or R2 is not satisfied, then the cooling coil +R3: If any of the conditions in R1 or R2 is not satisfied, then the cooling coil surface is partially wet.

    -For more detailed descriptions of the fully-wet coil model and the fuzzy modeling approach, +For more detailed descriptions of the fully-wet coil model and the fuzzy modeling approach, see Buildings.Fluid.HeatExchangers.BaseClasses.WetCoilWetRegime. @@ -536,46 +536,46 @@ Buildings.Fluid.HeatExchangers.BaseClasses.WetCoilDryWetRegime.

    Assumptions and limitations

    This model contains the following assumptions and limitations:

    Medium 2 must be air due to the use of various psychrometric functions.

    -

    The model uses steady-state physics. That is, no dynamics associated +

    The model uses steady-state physics. That is, no dynamics associated with water and coil materials are considered.

    -

    The Lewis number, which relates the mass transfer coefficient to the heat transfer +

    The Lewis number, which relates the mass transfer coefficient to the heat transfer coefficient, is assumed to be 1.

    -

    The model is not suitable for a cross-flow heat exchanger of which the number +

    The model is not suitable for a cross-flow heat exchanger of which the number of passes is less than four.

    Validation

    -

    Validation results can be found in +

    Validation results can be found in Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.

    References

    -

    Braun, James E. 1988. -"Methodologies for the Design and Control of -Central Cooling Plants". -PhD Thesis. University of Wisconsin - Madison. -Available +

    Braun, James E. 1988. +"Methodologies for the Design and Control of +Central Cooling Plants". +PhD Thesis. University of Wisconsin - Madison. +Available online.

    -

    Mitchell, John W., and James E. Braun. 2012a. -Principles of heating, ventilation, and air conditioning in buildings. +

    Mitchell, John W., and James E. Braun. 2012a. +Principles of heating, ventilation, and air conditioning in buildings. Hoboken, N.J.: Wiley.

    -

    Mitchell, John W., and James E. Braun. 2012b. -"Supplementary Material Chapter 2: Heat Exchangers for Cooling Applications". -Excerpt from Principles of heating, ventilation, and air conditioning in buildings. -Hoboken, N.J.: Wiley. -Available +

    Mitchell, John W., and James E. Braun. 2012b. +"Supplementary Material Chapter 2: Heat Exchangers for Cooling Applications". +Excerpt from Principles of heating, ventilation, and air conditioning in buildings. +Hoboken, N.J.: Wiley. +Available online.

    -

    Elmahdy, A.H. and Mitalas, G.P. 1977. -"A Simple Model for Cooling and Dehumidifying Coils for Use -In Calculating Energy Requirements for Buildings". +

    Elmahdy, A.H. and Mitalas, G.P. 1977. +"A Simple Model for Cooling and Dehumidifying Coils for Use +In Calculating Energy Requirements for Buildings". ASHRAE Transactions. Vol.83. Part 2. pp. 103-117.

    -

    Takagi, T. and Sugeno, M., 1985. +

    Takagi, T. and Sugeno, M., 1985. Fuzzy identification of systems and its applications to modeling and control.  IEEE transactions on systems, man, and cybernetics, (1), pp.116-132.

    ", revisions="
      -
    • Jan 21, 2021, by Donghun Kim:
      First implementation of the fuzzy model. See issue 622 for more information.
    • +
    • Jan 21, 2021, by Donghun Kim:
      First implementation of the fuzzy model. See issue 622 for more information.
    "), __Dymola_Commands(file= From acdb8278bce08caea360c56ae1837da9a05f9f11 Mon Sep 17 00:00:00 2001 From: dkim1077 Date: Sun, 14 Feb 2021 12:15:42 -0800 Subject: [PATCH 21/69] Added a WetCoil model using rated condition --- .../BaseClasses/WetCoilUARated.mo | 122 ++++ .../BaseClasses/WetCoilWetRegime.mo | 11 +- .../HeatExchangers/BaseClasses/package.order | 1 + .../WetCoilEffectivenessNTU_WithRated.mo | 263 ++++++++ .../HeatExchangers/Validation/package.order | 1 + .../WetCoilEffectivenessNTUWithRated.mo | 610 ++++++++++++++++++ Buildings/Fluid/HeatExchangers/package.order | 1 + 7 files changed, 1005 insertions(+), 4 deletions(-) create mode 100644 Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo create mode 100644 Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_WithRated.mo create mode 100644 Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTUWithRated.mo diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo new file mode 100644 index 00000000000..a51f1416d23 --- /dev/null +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo @@ -0,0 +1,122 @@ +within Buildings.Fluid.HeatExchangers.BaseClasses; +model WetCoilUARated + "This model calculates overall heat transfer coefficient, i.e., UA-value, from a rated condition for a cooling coil. + Specify a rated condition either in fully-dry or fully-wet coil regime. Avoid that on partially-wet regime." + replaceable package MediumA=Buildings.Media.Air; + replaceable package MediumW=Buildings.Media.Water; + + parameter Modelica.SIunits.Temperature TAirIn=Modelica.SIunits.Conversions.from_degF(80) + " air inlet temperature at a rated condition"; + parameter Modelica.SIunits.Temperature TAirOut=273.15+13.5805 " air outlet temperature at a rated condition"; + parameter Modelica.SIunits.MassFraction wAirIn=0.0173 "absolute humidity of inlet air at a rated condition"; + + parameter Modelica.SIunits.Temperature TWatIn=Modelica.SIunits.Conversions.from_degF(42) " water inlet temperature at a rated condition"; + parameter Modelica.SIunits.Temperature TWatOut=273.15+11.0678 + " water outlet temperature at a rated condition"; + + parameter Modelica.SIunits.MassFlowRate mAir_flow=2.646 "air mass flow rate at a rated condition"; + parameter Modelica.SIunits.MassFlowRate mWat_flow=3.78 + "water mass flow rate at a rated condition"; + parameter Modelica.SIunits.ThermalConductance UA(fixed=false, min=0,start=1/(1/10+1/20)) + "UA is for the overall coil (i.e., both sides)"; +protected + constant Modelica.SIunits.SpecificEnthalpy hfg = Buildings.Utilities.Psychrometrics.Constants.h_fg; + parameter Modelica.SIunits.MassFraction wAirOut(fixed=false) "absolute humidity of outgoing air at a rated condition [to be calculated]"; + parameter Modelica.SIunits.SpecificEnthalpy hAirIn(fixed=false) "enthalpy of incoming moist air at a rated condition [to be calculated]"; + parameter Modelica.SIunits.SpecificEnthalpy hAirOut(fixed=false) "enthalpy of outgoing moist air at a rated condition [to be calculated]"; + + // calculates all thermodynamic properties based on inputs + parameter MediumA.ThermodynamicState staAir=MediumA.setState_phX(p=MediumA.p_default,h=MediumA.h_default,X=MediumA.X_default[1:MediumA.nXi]); + parameter MediumW.ThermodynamicState staWat=MediumW.setState_phX(p=MediumW.p_default,h=MediumW.h_default,X=MediumW.X_default[1:MediumW.nXi]); + + parameter Modelica.SIunits.SpecificHeatCapacity cpAir=MediumA.specificHeatCapacityCp(staAir); + parameter Modelica.SIunits.SpecificHeatCapacity cpw=MediumW.specificHeatCapacityCp(staWat); + parameter Modelica.SIunits.SpecificHeatCapacity cpEff(fixed=false, min= 0) + "Effective specific heat: change in saturated moist air enthalpy with respect to + temperature along the saturation line between inlet and outlet water temperatures"; + + constant Modelica.SIunits.SpecificEnthalpy hunit=1; + constant Modelica.SIunits.Temperature Tunit=1; + constant Modelica.SIunits.SpecificHeatCapacity cpunit=1; + + Modelica.SIunits.AbsolutePressure pSatTWatIn = Buildings.Utilities.Psychrometrics.Functions.saturationPressure(TWatIn) + "saturation pressure of water at the water inlet temperature"; + Modelica.SIunits.MassFraction wSatTWatIn = Buildings.Utilities.Psychrometrics.Functions.X_pSatpphi(pSat=pSatTWatIn, p=MediumA.p_default, phi=1) + "absolute humidity of the moist air at the water inlet temperature"; + Modelica.SIunits.SpecificEnthalpy hSatTWatIn = Buildings.Media.Air.specificEnthalpy_pTX(p=MediumA.p_default, T=TWatIn, X={wSatTWatIn,1-wSatTWatIn}) + "enthalpy of saturated moist air at the water inlet temperature"; + + Modelica.SIunits.AbsolutePressure pSatTWatOut = Buildings.Utilities.Psychrometrics.Functions.saturationPressure(TWatOut) + "saturation pressure of water at the water oulet temperature"; + Modelica.SIunits.MassFraction wSatTWatOut = Buildings.Utilities.Psychrometrics.Functions.X_pSatpphi(pSat=pSatTWatOut, p=MediumA.p_default, phi=1) + "absolute humidity of the moist air at the water oulet temperature"; + Modelica.SIunits.SpecificEnthalpy hSatTWatOut = Buildings.Media.Air.specificEnthalpy_pTX(p=MediumA.p_default, T=TWatOut, X={wSatTWatOut,1-wSatTWatOut}) + "enthalpy of saturated moist air at the water oulet temperature"; + + parameter Modelica.SIunits.SpecificEnthalpy LMED(fixed=false) "log mean enthalpy difference"; + + parameter Modelica.SIunits.MassFlowRate UASta(fixed=false, min=0) "overall heat transfer coefficient for enthalpy difference"; + parameter Modelica.SIunits.HeatFlowRate QTot_flow(fixed=false) + "Total heat flow from air to water stream"; + + parameter Real r_nominal( + min=0, + max=1) = 2/3 + "Ratio between air-side and water-side convective heat transfer (hA-value) at nominal condition"; + + parameter Modelica.SIunits.ThermalConductance UAAir(min=0,start=10,fixed=false) + "Air side convective heat transfer coefficient, including fin resistance"; + parameter Modelica.SIunits.ThermalConductance UAWat(min=0,start=20,fixed=false) + "Water side convective heat transfer coefficient"; + + parameter Boolean IsFulDry(fixed=false); + parameter Boolean IsFulWet(fixed=false); + parameter Boolean IsParWet(fixed=false); + +initial equation + + assert( TAirOutTWatIn and TWatIn=wAirIn); + IsFulWet=(wSatTWatOut<=wAirIn); + IsParWet= (not IsFulDry) and (not IsFulWet); + + assert(not IsParWet, "partially dry nominal condition is not allowed at this moment. Specify either fully-dry or fully-wet nominal condition"); + +if IsFulDry then + LMED=Buildings.Fluid.HeatExchangers.BaseClasses.lmtd(TAirIn, + TAirOut, + TWatIn, + TWatOut)/Tunit*hunit; // The value of LMED calculated from this equation is used as that of LMTD. + QTot_flow=LMED*UASta; // The value of UASta calculated from this equation is used as that of UA. + cpEff= Modelica.Constants.inf*cpunit; // cpEff is not used for fully-dry + UA= UASta*cpunit; + UAWat=UAAir/r_nominal; + UA = 1/ (1/UAAir + 1/ UAWat); +else //fully wet + // calculation of overall UAsta based on log mean enthalpy difference + LMED=Buildings.Fluid.HeatExchangers.BaseClasses.lmtd(hAirIn/hunit*Tunit, + hAirOut/hunit*Tunit, + hSatTWatIn/hunit*Tunit, + hSatTWatOut/hunit*Tunit)/Tunit*hunit; + QTot_flow=LMED*UASta; + cpEff= (hSatTWatOut-hSatTWatIn)/(TWatOut-TWatIn); + + UASta = (UAAir/cpAir)/(1 + (cpEff*UAAir)/(cpAir*UAWat)); + UAWat=UAAir/r_nominal; + UA = 1/ (1/UAAir + 1/ UAWat); +end if; + annotation (Icon(coordinateSystem(preserveAspectRatio=false), graphics={ + Rectangle( + extent={{100,-98},{-100,100}}, + lineColor={0,0,0}, + fillColor={255,255,255}, + fillPattern=FillPattern.Solid)}), Diagram( + coordinateSystem(preserveAspectRatio=false))); +end WetCoilUARated; diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo index e46fa593330..fafccd1c746 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo @@ -59,7 +59,7 @@ model WetCoilWetRegime "Temperature at the air outlet"; Modelica.SIunits.SpecificEnthalpy hAirOut "Specific enthalpy of moist air at the air outlet"; - Buildings.Utilities.Psychrometrics.hSat_pTSat hSatWatOutM(p=pAir,TSat=TWatOutHat) + Buildings.Utilities.Psychrometrics.hSat_pTSat hSatWatOutM(p=pAir,TSat=TWatOutEst) "model to calculate saturated specific enthalpy of air at water outlet tempreature"; Modelica.SIunits.SpecificEnthalpy hSatWatOut "saturated specific enthalpy of air at water outlet tempreature"; @@ -105,16 +105,19 @@ model WetCoilWetRegime "analogus to CMax_flow_nominal, only for a regularization"; Modelica.SIunits.MassFlowRate deltaCStaMin=delta*min(mAir_flow_nominal,mWat_flow_nominal*cpEff0/cpWat0) "min of product of mass flow rates and specific heats, analogous to Cmin"; - Modelica.SIunits.Temperature TWatOutHat(start=273.15+10) + Modelica.SIunits.Temperature TWatOutEst "state_estimation of Temperature of water at outlet"; +initial equation + TWatOutEst=0.5*(TWatIn+ TAirIn); //273.15+10; + equation hAirIn=Buildings.Media.Air.specificEnthalpy_pTX(p=pAir,T=TAirIn,X={wAirIn,1-wAirIn}); hSatWatIn=hSatWatInM.hSat; dhSatdTWatIn=(hSatWatIn_dT_M.hSat-hSatWatInM.hSat)/dTWat; // dTWat is a parameter hSatWatOut= hSatWatOutM.hSat; - NonZerDelWatTem=Buildings.Utilities.Math.Functions.regNonZeroPower(x=TWatOutHat-TWatIn,n=1,delta=0.1); + NonZerDelWatTem=Buildings.Utilities.Math.Functions.regNonZeroPower(x=TWatOutEst-TWatIn,n=1,delta=0.1); cpEff = Buildings.Utilities.Math.Functions.smoothMax( (hSatWatOut - hSatWatIn)/NonZerDelWatTem, dhSatdTWatIn, @@ -150,7 +153,7 @@ equation QSen_flow= Buildings.Utilities.Math.Functions.smoothMin(mAir_flow*cpAir*(TAirIn-TAirOut),QTot_flow,delta*mWatNonZer_flow*cpWat0*5); // the last term is only for regularization with DTWater=5oC (TAirIn-TSurAirIn)*UAAir=(TSurAirIn-TWatOut)*UAWat; - der(TWatOutHat)=-1/tau*TWatOutHat+1/tau*TWatOut; + der(TWatOutEst)=-1/tau*TWatOutEst+1/tau*TWatOut; annotation (Icon(graphics={ Rectangle( diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/package.order b/Buildings/Fluid/HeatExchangers/BaseClasses/package.order index e75a25575b2..5afec83242e 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/package.order +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/package.order @@ -23,6 +23,7 @@ RayleighNumber WetCoilDryRegime WetCoilDryWetRegime WetCoilWetRegime +WetCoilUARated determineWaterIndex dynamicViscosityWater epsilon_C diff --git a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_WithRated.mo b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_WithRated.mo new file mode 100644 index 00000000000..99592257f4e --- /dev/null +++ b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_WithRated.mo @@ -0,0 +1,263 @@ +within Buildings.Fluid.HeatExchangers.Validation; +model WetCoilEffectivenessNTU_WithRated + "Model that validates the wet coil effectiveness-NTU model with Rated condition" + extends Modelica.Icons.Example; + + package Medium_W = Buildings.Media.Water; + package Medium_A = Buildings.Media.Air; + + + constant Modelica.SIunits.AbsolutePressure pAtm = 101325 + "Atmospheric pressure"; + parameter Modelica.SIunits.Temperature T_a1_nominal= + Modelica.SIunits.Conversions.from_degF(42) + "Inlet water temperature"; + parameter Modelica.SIunits.Temperature T_b1_nominal= + 273.15+11.0678 + "Outlet water temperature"; + + parameter Modelica.SIunits.Temperature T_a2_nominal= + Modelica.SIunits.Conversions.from_degF(80) + "Inlet air temperature"; + + parameter Modelica.SIunits.Temperature T_b2_nominal= + 273.15+13.5805 + "Outlet air temperature"; + + parameter Real X_a2_nominal_wet(min=0,max=1) = 0.0173 + "Inlet air humidity ratio: mass of water per mass of moist air"; + + parameter Modelica.SIunits.ThermalConductance UA_nominal = 4748 + "Total thermal conductance at nominal flow, from textbook"; + parameter Modelica.SIunits.MassFlowRate m1_flow_nominal = 3.78 + "Nominal mass flow rate of water"; + parameter Modelica.SIunits.MassFlowRate m2_flow_nominal = 2.646 + "Nominal mass flow rate of air"; + parameter Types.HeatExchangerConfiguration hexCon= + Types.HeatExchangerConfiguration.CrossFlowStream1MixedStream2Unmixed + "Heat exchanger configuration"; + Buildings.Fluid.Sources.Boundary_pT sinAir( + redeclare package Medium = Medium_A, + use_p_in=false, + nPorts=2) + "Air sink" + annotation (Placement(transformation(extent={{-180,40},{-160,60}}))); + Sources.MassFlowSource_T souAir( + redeclare package Medium = Medium_A, + m_flow=m2_flow_nominal, + T=T_a2_nominal, + use_Xi_in=true, + nPorts=1) + "Air source" + annotation (Placement(transformation(extent={{140,-90},{120,-70}}))); + Buildings.Fluid.Sources.Boundary_pT sinWat( + redeclare package Medium = Medium_W, + nPorts=2) + "Sink for water" + annotation (Placement(transformation(extent={{80,10},{60,30}}))); + Modelica.Blocks.Sources.CombiTimeTable X_w2( + table=[0,0.0035383; 1,0.01765], + timeScale=100) "Water mass fraction of entering air" + annotation (Placement(transformation(extent={{190,-90},{170,-70}}))); + Sensors.RelativeHumidityTwoPort RelHumIn(redeclare package Medium = Medium_A, + m_flow_nominal=m2_flow_nominal) "Inlet relative humidity" + annotation (Placement(transformation(extent={{40,-90},{20,-70}}))); + Sensors.TemperatureTwoPort TDryBulIn(redeclare package Medium = Medium_A, + m_flow_nominal=m2_flow_nominal) "Inlet dry bulb temperature" + annotation (Placement(transformation(extent={{70,-90},{50,-70}}))); + Modelica.Blocks.Sources.RealExpression pAir(y=pAtm) "Air pressure" + annotation (Placement(transformation(extent={{140,-52},{120,-28}}))); + Buildings.Utilities.Psychrometrics.TWetBul_TDryBulXi wetBulIn(redeclare + package Medium = Medium_A) "Computation of wet bulb temperature" + annotation (Placement(transformation(extent={{120,-20},{140,0}}))); + Sensors.MassFractionTwoPort senMasFraIn(redeclare package Medium = Medium_A, + m_flow_nominal=m2_flow_nominal) "Water mass fraction of entering air" + annotation (Placement(transformation(extent={{110,-90},{90,-70}}))); + Sensors.MassFractionTwoPort senMasFraOut(redeclare package Medium = Medium_A, + m_flow_nominal=m2_flow_nominal) "Water mass fraction of leaving air" + annotation (Placement(transformation(extent={{-110,10},{-130,-10}}))); + Sensors.TemperatureTwoPort TDryBulOut(redeclare package Medium = Medium_A, + m_flow_nominal=m2_flow_nominal) "Dry bulb temperature of leaving air" + annotation (Placement(transformation(extent={{-50,10},{-70,-10}}))); + Buildings.Utilities.Psychrometrics.TWetBul_TDryBulXi wetBulOut(redeclare + package Medium = Medium_A) "Computation of wet bulb temperature" + annotation (Placement(transformation(extent={{-40,-60},{-20,-40}}))); + Modelica.Blocks.Sources.RealExpression pAir1(y=pAtm) "Air pressure" + annotation (Placement(transformation(extent={{-100,-92},{-80,-68}}))); + WetCoilEffectivenessNTUWithRated hexWetNTU( + redeclare package Medium1 = Medium_W, + redeclare package Medium2 = Medium_A, + T_a2_nominal=T_a2_nominal, + T_b2_nominal=T_b2_nominal, + X_a2_nominal= X_a2_nominal_wet, + T_a1_nominal=T_a1_nominal, + T_b1_nominal=T_b1_nominal, + m1_flow_nominal=m1_flow_nominal, + m2_flow_nominal=m2_flow_nominal, + dp2_nominal=0, + dp1_nominal=0, + configuration=hexCon, + show_T=true) "Effectiveness-NTU coil model" + annotation (Placement(transformation(extent={{-28,-4},{-8,16}}))); + Sources.MassFlowSource_T souWat1( + redeclare package Medium = Medium_W, + m_flow=m1_flow_nominal, + T=T_a1_nominal, + nPorts=1) + "Source for water" + annotation (Placement(transformation(extent={{-180,10},{-160,30}}))); + WetCoilCounterFlow hexDis( + redeclare package Medium1 = Medium_W, + redeclare package Medium2 = Medium_A, + m1_flow_nominal=m1_flow_nominal, + m2_flow_nominal=m2_flow_nominal, + dp2_nominal=0, + allowFlowReversal1=true, + allowFlowReversal2=true, + dp1_nominal=0, + UA_nominal=UA_nominal, + show_T=true, + nEle=30, + energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, + tau1=0.1, + tau2=0.1, + tau_m=0.1) + "Discretized coil model" + annotation (Placement(transformation(extent={{-30,56},{-10,76}}))); + Sources.MassFlowSource_T souWat2( + redeclare package Medium = Medium_W, + m_flow=m1_flow_nominal, + T=T_a1_nominal, + nPorts=1) + "Source for water" + annotation (Placement(transformation(extent={{-180,70},{-160,90}}))); + Sources.MassFlowSource_T souAir2( + redeclare package Medium = Medium_A, + m_flow=m2_flow_nominal, + T=T_a2_nominal, + use_Xi_in=true, + nPorts=1) + "Air source" + annotation (Placement(transformation(extent={{140,30},{120,50}}))); + Sensors.MassFractionTwoPort senMasFraOut1(redeclare package Medium = Medium_A, + m_flow_nominal=m2_flow_nominal) "Water mass fraction of leaving air" + annotation (Placement(transformation(extent={{-110,50},{-130,70}}))); + Sensors.TemperatureTwoPort TDryBulOut1(redeclare package Medium = Medium_A, + m_flow_nominal=m2_flow_nominal) "Dry bulb temperature of leaving air" + annotation (Placement(transformation(extent={{-50,50},{-70,70}}))); + Sensors.RelativeHumidityTwoPort RelHumOut_eps(redeclare package Medium = + Medium_A, m_flow_nominal=m2_flow_nominal) "Outlet relative humidity" + annotation (Placement(transformation(extent={{-80,-10},{-100,10}}))); + Sensors.RelativeHumidityTwoPort RelHumOut_dis(redeclare package Medium = + Medium_A, m_flow_nominal=m2_flow_nominal) "Outlet relative humidity" + annotation (Placement(transformation(extent={{-80,50},{-100,70}}))); +equation + connect(pAir.y, wetBulIn.p) annotation (Line(points={{119,-40},{110,-40},{110, + -18},{119,-18}}, color={0,0,127})); + connect(pAir1.y, wetBulOut.p) annotation (Line(points={{-79,-80},{-60,-80},{ + -60,-58},{-41,-58}},color={0,0,127})); + connect(senMasFraOut.port_b, sinAir.ports[1]) + annotation (Line(points={{-130,0},{-140,0},{-140,48},{-160,48},{-160,52}}, + color={0,127,255})); + connect(TDryBulOut.T, wetBulOut.TDryBul) + annotation (Line(points={{-60,-11},{-60,-42},{-41,-42}}, color={0,0,127})); + connect(senMasFraOut.X, wetBulOut.Xi[1]) annotation (Line(points={{-120,-11}, + {-120,-50},{-41,-50}}, color={0,0,127})); + connect(souAir.ports[1], senMasFraIn.port_a) + annotation (Line(points={{120,-80},{110,-80}}, color={0,127,255})); + connect(senMasFraIn.port_b, TDryBulIn.port_a) + annotation (Line(points={{90,-80},{70,-80}}, color={0,127,255})); + connect(senMasFraIn.X, wetBulIn.Xi[1]) + annotation (Line(points={{100,-69},{100,-10},{119,-10}}, + color={0,0,127})); + connect(TDryBulIn.T, wetBulIn.TDryBul) + annotation (Line(points={{60,-69},{60,-2},{119,-2}}, + color={0,0,127})); + connect(TDryBulIn.port_b, RelHumIn.port_a) + annotation (Line(points={{50,-80},{40,-80}}, color={0,127,255})); + connect(souWat1.ports[1], hexWetNTU.port_a1) annotation (Line(points={{-160,20}, + {-40,20},{-40,12},{-28,12}}, color={0,127,255})); + connect(hexWetNTU.port_b1, sinWat.ports[1]) annotation (Line(points={{-8,12},{ + 40,12},{40,18},{60,18},{60,22}}, + color={0,127,255})); + connect(X_w2.y[1], souAir.Xi_in[1]) annotation (Line(points={{169,-80},{160,-80}, + {160,-84},{142,-84}}, color={0,0,127})); + connect(souWat2.ports[1], hexDis.port_a1) + annotation (Line(points={{-160,80},{-40,80},{-40,72},{-30,72}}, + color={0,127,255})); + connect(hexDis.port_b1, sinWat.ports[2]) annotation (Line(points={{-10,72},{ + 40,72},{40,20},{60,20},{60,18}}, color={0,127,255})); + connect(X_w2.y[1], souAir2.Xi_in[1]) annotation (Line(points={{169,-80},{160,-80}, + {160,36},{142,36}}, color={0,0,127})); + connect(souAir2.ports[1], hexDis.port_a2) annotation (Line(points={{120,40},{ + 50,40},{50,60},{-10,60}}, color={0,127,255})); + connect(hexWetNTU.port_b2, TDryBulOut.port_a) annotation (Line(points={{-28,0}, + {-50,0}}, color={0,127,255})); + connect(hexWetNTU.port_a2, RelHumIn.port_b) annotation (Line(points={{-8,0},{0, + 0},{0,-80},{20,-80}}, color={0,127,255})); + connect(hexDis.port_b2, TDryBulOut1.port_a) + annotation (Line(points={{-30,60},{-50,60}}, color={0,127,255})); + connect(senMasFraOut1.port_b, sinAir.ports[2]) annotation (Line(points={{-130, + 60},{-140,60},{-140,52},{-160,52},{-160,48}}, color={0,127,255})); + connect(TDryBulOut.port_b, RelHumOut_eps.port_a) annotation (Line(points={{ + -70,0},{-76,0},{-76,0},{-80,0}}, color={0,127,255})); + connect(RelHumOut_eps.port_b, senMasFraOut.port_a) + annotation (Line(points={{-100,0},{-110,0}}, color={0,127,255})); + connect(TDryBulOut1.port_b, RelHumOut_dis.port_a) + annotation (Line(points={{-70,60},{-80,60}}, color={0,127,255})); + connect(RelHumOut_dis.port_b, senMasFraOut1.port_a) + annotation (Line(points={{-100,60},{-110,60}}, color={0,127,255})); + annotation (Diagram(coordinateSystem(preserveAspectRatio=true, + extent={{-200,-120},{200,120}})), + experiment( + StopTime=100, + Tolerance=1e-06), + Documentation(info=" +

    +This model duplicates an example from Mitchell and Braun 2012, example SM-2-1 +(Mitchell and Braun 2012) to validate a single case for the + +Buildings.Fluid.HeatExchangers.WetCoilEffectivenessNTU +model. +

    +

    Validation

    +

    +The example is a steady-state analysis of a wet coil with constant air +and water inlet temperature and mass flow rate, and an increasing air inlet +humidity which triggers the transition from a fully-dry to a fully-wet regime. +The reference used for validation is the published experimental data. +A discretized wet coil model is also simulated for comparison. +

    +

    +Note that the outlet air relative humidity may slightly exceed 100% when using +the epsilon-NTU model. +

    +

    +The slight deviations we find are believed due to differences in the tolerance +of the solver algorithms employed as well as differences in media property +calculations for air and water. +

    +

    References

    +

    +Mitchell, John W., and James E. Braun. 2012. +\"Supplementary Material Chapter 2: Heat Exchangers for Cooling Applications\". +Excerpt from Principles of heating, ventilation, and air conditioning in buildings. +Hoboken, N.J.: Wiley. Available online: + +http://bcs.wiley.com/he-bcs/Books?action=index&itemId=0470624574&bcsId=7185 +

    +", revisions=" +
      +
    • +April 19, 2017, by Michael Wetter:
      +Revised model to avoid mixing textual equations and connect statements. +
    • +
    • +March 17, 2017, by Michael O'Keefe:
      +First implementation. See + +issue 622 for more information. +
    • +
    +")); +end WetCoilEffectivenessNTU_WithRated; diff --git a/Buildings/Fluid/HeatExchangers/Validation/package.order b/Buildings/Fluid/HeatExchangers/Validation/package.order index 821b1c52bd1..9597d6a2dc8 100644 --- a/Buildings/Fluid/HeatExchangers/Validation/package.order +++ b/Buildings/Fluid/HeatExchangers/Validation/package.order @@ -7,3 +7,4 @@ PrescribedOutlet_dynamic WetCoilDiscretizedInitialization WetCoilDiscretizedInitializationPerfectGases WetCoilEffectivenessNTU +WetCoilEffectivenessNTU_WithRated \ No newline at end of file diff --git a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTUWithRated.mo b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTUWithRated.mo new file mode 100644 index 00000000000..32cbcc22b11 --- /dev/null +++ b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTUWithRated.mo @@ -0,0 +1,610 @@ +within Buildings.Fluid.HeatExchangers; +model WetCoilEffectivenessNTUWithRated + "Heat exchanger with effectiveness - NTU relation and with moisture condensation. + This model is the same as Buildings.Fluid.HeatExchangers.WetCoilEffectivenessNTU. + However, cooling coil performance data a rated condition rather than the overall heat transfer coefficient, i.e., UA_nominal, can be specified." + extends Buildings.Fluid.Interfaces.PartialFourPortInterface( + redeclare replaceable package Medium2 = Buildings.Media.Air); + extends Buildings.Fluid.Interfaces.FourPortFlowResistanceParameters( + final computeFlowResistance1=true, + final computeFlowResistance2=true); + + import con = Buildings.Fluid.Types.HeatExchangerConfiguration; + import flo = Buildings.Fluid.Types.HeatExchangerFlowRegime; + + parameter Modelica.SIunits.Temperature T_a1_nominal + " water inlet temperature at a rated condition" + annotation (Dialog(group="Nominal condition")); + parameter Modelica.SIunits.Temperature T_b1_nominal + " water outlet temperature at a rated condition" + annotation (Dialog(group="Nominal condition")); + parameter Modelica.SIunits.Temperature T_a2_nominal + " air inlet temperature at a rated condition" + annotation (Dialog(group="Nominal condition")); + parameter Modelica.SIunits.Temperature T_b2_nominal + " air outlet temperature at a rated condition" + annotation (Dialog(group="Nominal condition")); + parameter Modelica.SIunits.MassFraction X_a2_nominal + "absolute humidity of inlet air at a rated condition" + annotation (Dialog(group="Nominal condition")); + + Buildings.Fluid.HeatExchangers.BaseClasses.WetCoilUARated UAFroRated( + TAirIn=T_a2_nominal, + TAirOut=T_b2_nominal, + wAirIn=X_a2_nominal, + TWatIn=T_a1_nominal, + TWatOut=T_b1_nominal, + mAir_flow=m2_flow_nominal, + mWat_flow=m1_flow_nominal); + + parameter Real r_nominal=2/3 + "Ratio between air-side and water-side convective heat transfer coefficient" + annotation (Dialog(group="Nominal condition")); + parameter Boolean waterSideFlowDependent=true + "Set to false to make water-side hA independent of mass flow rate" + annotation (Dialog(tab="Heat transfer")); + parameter Boolean airSideFlowDependent=true + "Set to false to make air-side hA independent of mass flow rate" + annotation (Dialog(tab="Heat transfer")); + parameter Boolean waterSideTemperatureDependent=false + "Set to false to make water-side hA independent of temperature" + annotation (Dialog(tab="Heat transfer")); + parameter Boolean airSideTemperatureDependent=false + "Set to false to make air-side hA independent of temperature" + annotation (Dialog(tab="Heat transfer")); + parameter Buildings.Fluid.Types.HeatExchangerConfiguration configuration= + con.CounterFlow + "Heat exchanger configuration"; + // Dynamics + parameter Modelica.Fluid.Types.Dynamics energyDynamics= + Modelica.Fluid.Types.Dynamics.SteadyState + "Type of energy balance: dynamic (3 initialization options) or steady state" + annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); + parameter Modelica.Fluid.Types.Dynamics massDynamics=energyDynamics + "Type of mass balance: dynamic (3 initialization options) or steady state" + annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); + + Modelica.SIunits.HeatFlowRate Q1_flow = -dryWetCalcs.QTot_flow + "Heat input into water stream (positive if air is cooled)"; + Modelica.SIunits.HeatFlowRate Q2_flow = dryWetCalcs.QTot_flow + "Total heat input into air stream (negative if air is cooled)"; + Modelica.SIunits.HeatFlowRate QSen2_flow = dryWetCalcs.QSen_flow + "Sensible heat input into air stream (negative if air is cooled)"; + Modelica.SIunits.HeatFlowRate QLat2_flow= + Buildings.Utilities.Psychrometrics.Constants.h_fg * mWat_flow + "Latent heat input into air (negative if air is dehumidified)"; + Real SHR( + min=0, + max=1, + unit="1") = QSen2_flow / + noEvent(if (Q2_flow > 1E-6 or Q2_flow < -1E-6) then Q2_flow else 1) + "Sensible to total heat ratio"; + Modelica.SIunits.MassFlowRate mWat_flow = dryWetCalcs.mCon_flow + "Water flow rate of condensate removed from the air stream"; + +protected + Real delta=1E-2 + "a parameter for normailization"; + Real delta1=1E-1 + "a parameter for normailization"; + Real fac1 = Buildings.Utilities.Math.Functions.smoothMin( + (1/delta * m1_flow/m1_flow_nominal)^2,1,delta1); + Real fac2 = Buildings.Utilities.Math.Functions.smoothMin( + (1/delta * m2_flow/m2_flow_nominal)^2,1,delta1); + Real Qfac = fac1*fac2; + + Buildings.Fluid.HeatExchangers.HeaterCooler_u heaCoo( + redeclare final package Medium = Medium1, + final dp_nominal = dp1_nominal, + final m_flow_nominal = m1_flow_nominal, + final energyDynamics = energyDynamics, + final massDynamics = massDynamics, + final Q_flow_nominal=-1) + "Heat exchange with water stream" + annotation (Placement(transformation(extent={{60,50},{80,70}}))); + + Buildings.Fluid.Humidifiers.Humidifier_u heaCooHum_u( + redeclare final package Medium = Medium2, + mWat_flow_nominal = 1, + dp_nominal = dp2_nominal, + m_flow_nominal = m2_flow_nominal, + energyDynamics = energyDynamics, + massDynamics = massDynamics) + "Heat and moisture exchange with air stream" + annotation (Placement(transformation(extent={{-60,-70},{-80,-50}}))); + Buildings.Fluid.HeatExchangers.BaseClasses.HADryCoil hA( + final UA_nominal = UA_nominal, + final m_flow_nominal_a = m2_flow_nominal, + final m_flow_nominal_w = m1_flow_nominal, + final waterSideTemperatureDependent = waterSideTemperatureDependent, + final waterSideFlowDependent = waterSideFlowDependent, + final airSideTemperatureDependent = airSideTemperatureDependent, + final airSideFlowDependent = airSideFlowDependent, + r_nominal = r_nominal) + "Model for convective heat transfer coefficient" + annotation (Placement(transformation(extent={{-68,-13},{-50,9}}))); + BaseClasses.WetCoilDryWetRegime dryWetCalcs( + redeclare final package Medium2 = Medium2, + final cfg=flowRegime, + final mWat_flow_nominal=m1_flow_nominal, + final mAir_flow_nominal=m2_flow_nominal, + Qfac=Qfac) + "Dry/wet calculations block" + annotation (Placement(transformation(extent={{-20,-40},{60,40}}))); + Modelica.Blocks.Sources.RealExpression cp_a1Exp( + final y = if allowFlowReversal1 + then + fra_a1 * Medium1.specificHeatCapacityCp(state_a1_inflow) + + fra_b1 * Medium1.specificHeatCapacityCp(state_b1_inflow) + else + Medium1.specificHeatCapacityCp(state_a1_inflow)) + "Expression for cp of air" + annotation (Placement(transformation(extent={{-44,18},{-30,30}}))); + Modelica.Blocks.Sources.RealExpression XWat_a2Exp( + final y = if allowFlowReversal2 + then + fra_a2 * state_a2_inflow.X[nWat] + fra_b2 * state_b2_inflow.X[nWat] + else + state_a2_inflow.X[nWat]) + "Expression for XWat" + annotation (Placement(transformation(extent={{-44,-2},{-30,10}}))); + Modelica.Blocks.Sources.RealExpression p_a2Exp( + final y = port_a2.p) + "Pressure at port a2" + annotation (Placement(transformation(extent={{-44,-10},{-30,2}}))); + Modelica.Blocks.Sources.RealExpression h_a2Exp( + final y = if allowFlowReversal2 + then + fra_a2 * Medium2.specificEnthalpy(state_a2_inflow) + + fra_b2 * Medium2.specificEnthalpy(state_b2_inflow) + else + Medium2.specificEnthalpy(state_a2_inflow)) + "Specific enthalpy at port a2" + annotation (Placement(transformation(extent={{-44,-18},{-30,-6}}))); + Modelica.Blocks.Sources.RealExpression cp_a2Exp( + final y = if allowFlowReversal2 + then + fra_a2 * Medium2.specificHeatCapacityCp(state_a2_inflow) + + fra_b2 * Medium2.specificHeatCapacityCp(state_b2_inflow) + else + Medium2.specificHeatCapacityCp(state_a2_inflow)) + "Specific heat capacity at port a2" + annotation (Placement(transformation(extent={{-44,-30},{-30,-18}}))); + Modelica.Blocks.Sources.RealExpression TIn_a1Exp( + final y = if allowFlowReversal1 + then + fra_a1 * Medium1.temperature(state_a1_inflow) + + fra_b1 * Medium1.temperature(state_b1_inflow) + else + Medium1.temperature(state_a1_inflow)) + "Temperature at port a1" + annotation (Placement(transformation(extent={{-98,16},{-84,28}}))); + Modelica.Blocks.Sources.RealExpression TIn_a2Exp( + final y = if allowFlowReversal2 + then + fra_a2 * Medium2.temperature(state_a2_inflow) + + fra_b2 * Medium2.temperature(state_b2_inflow) + else + Medium2.temperature(state_a2_inflow)) + "Temperature at port a2" + annotation (Placement(transformation(extent={{-98,-8},{-84,4}}))); + Modelica.Blocks.Sources.RealExpression m_flow_a1Exp( + final y=Buildings.Utilities.Math.Functions.regNonZeroPower( + x=port_a1.m_flow,n=1,delta=delta*m1_flow_nominal)) + "Absolute value of mass flow rate on water side" + annotation (Placement(transformation(extent={{-98,30},{-84,42}}))); + Modelica.Blocks.Sources.RealExpression m_flow_a2Exp( + final y=Buildings.Utilities.Math.Functions.regNonZeroPower( + x=port_a2.m_flow,n=1,delta=delta*m2_flow_nominal)) + "Absolute value of mass flow rate on air side" + annotation (Placement(transformation(extent={{-98,-36},{-84,-24}}))); + final parameter Integer nWat= + Buildings.Fluid.HeatExchangers.BaseClasses.determineWaterIndex( + Medium2.substanceNames) + "Index of water"; + parameter flo flowRegime_nominal(fixed=false) + "Heat exchanger flow regime at nominal flow rates"; + flo flowRegime(fixed=false, start=flowRegime_nominal) + "Heat exchanger flow regime"; + + Buildings.HeatTransfer.Sources.PrescribedHeatFlow preHea + "Prescribed heat flow" + annotation (Placement(transformation(extent={{20,-90},{0,-70}}))); + Real fra_a1(min=0, max=1) + "Fraction of incoming state taken from port a2 + (used to avoid excessive calls to regStep)"; + Real fra_b1(min=0, max=1) + "Fraction of incoming state taken from port b2 + (used to avoid excessive calls to regStep)"; + Real fra_a2(min=0, max=1) + "Fraction of incoming state taken from port a2 + (used to avoid excessive calls to regStep)"; + Real fra_b2(min=0, max=1) + "Fraction of incoming state taken from port b2 + (used to avoid excessive calls to regStep)"; + + Modelica.SIunits.ThermalConductance C1_flow = abs(m1_flow)* + ( if allowFlowReversal1 then + fra_a1 * Medium1.specificHeatCapacityCp(state_a1_inflow) + + fra_b1 * Medium1.specificHeatCapacityCp(state_b1_inflow) else + Medium1.specificHeatCapacityCp(state_a1_inflow)) + "Heat capacity flow rate medium 1"; + Modelica.SIunits.ThermalConductance C2_flow = abs(m2_flow)* + ( if allowFlowReversal2 then + fra_a2 * Medium2.specificHeatCapacityCp(state_a2_inflow) + + fra_b2 * Medium2.specificHeatCapacityCp(state_b2_inflow) else + Medium2.specificHeatCapacityCp(state_a2_inflow)) + "Heat capacity flow rate medium 2"; + parameter Modelica.SIunits.SpecificHeatCapacity cp1_nominal(fixed=false) + "Specific heat capacity of medium 1 at nominal condition"; + parameter Modelica.SIunits.SpecificHeatCapacity cp2_nominal(fixed=false) + "Specific heat capacity of medium 2 at nominal condition"; + parameter Modelica.SIunits.ThermalConductance C1_flow_nominal(fixed=false) + "Nominal capacity flow rate of Medium 1"; + parameter Modelica.SIunits.ThermalConductance C2_flow_nominal(fixed=false) + "Nominal capacity flow rate of Medium 2"; + final parameter Medium1.ThermodynamicState sta1_default = Medium1.setState_phX( + h=Medium1.h_default, + p=Medium1.p_default, + X=Medium1.X_default[1:Medium1.nXi]) "Default state for medium 1"; + final parameter Medium2.ThermodynamicState sta2_default = Medium2.setState_phX( + h=Medium2.h_default, + p=Medium2.p_default, + X=Medium2.X_default[1:Medium2.nXi]) "Default state for medium 2"; + parameter Modelica.SIunits.ThermalConductance UA_nominal(min=0, fixed= false) + "Thermal conductance at nominal flow, used to compute heat capacity"; + +initial equation + UA_nominal=UAFroRated.UA; + cp1_nominal = Medium1.specificHeatCapacityCp(sta1_default); + cp2_nominal = Medium2.specificHeatCapacityCp(sta2_default); + C1_flow_nominal = m1_flow_nominal*cp1_nominal; + C2_flow_nominal = m2_flow_nominal*cp2_nominal; + if (configuration == con.CrossFlowStream1MixedStream2Unmixed) then + flowRegime_nominal = if (C1_flow_nominal < C2_flow_nominal) + then + flo.CrossFlowCMinMixedCMaxUnmixed + else + flo.CrossFlowCMinUnmixedCMaxMixed; + elseif (configuration == con.CrossFlowStream1UnmixedStream2Mixed) then + flowRegime_nominal = if (C1_flow_nominal < C2_flow_nominal) + then + flo.CrossFlowCMinUnmixedCMaxMixed + else + flo.CrossFlowCMinMixedCMaxUnmixed; + elseif (configuration == con.ParallelFlow) then + flowRegime_nominal = flo.ParallelFlow; + elseif (configuration == con.CounterFlow) then + flowRegime_nominal = flo.CounterFlow; + elseif (configuration == con.CrossFlowUnmixed) then + flowRegime_nominal = flo.CrossFlowUnmixed; + else + // Invalid flow regime. Assign a value to flowRegime_nominal, and stop with an assert + flowRegime_nominal = flo.CrossFlowUnmixed; + assert(configuration >= con.ParallelFlow and + configuration <= con.CrossFlowStream1UnmixedStream2Mixed, + "Invalid heat exchanger configuration."); + end if; + +equation + if allowFlowReversal1 then + fra_a1 = Modelica.Fluid.Utilities.regStep( + m1_flow, + 1, + 0, + m1_flow_small); + fra_b1 = 1-fra_a1; + else + fra_a1 = 1; + fra_b1 = 0; + end if; + if allowFlowReversal2 then + fra_a2 = Modelica.Fluid.Utilities.regStep( + m2_flow, + 1, + 0, + m2_flow_small); + fra_b2 = 1-fra_a2; + else + fra_a2 = 1; + fra_b2 = 0; + end if; + // Assign the flow regime for the given heat exchanger configuration and + // mass flow rates + if (configuration == con.ParallelFlow) then + flowRegime = if (C1_flow*C2_flow >= 0) + then + flo.ParallelFlow + else + flo.CounterFlow; + elseif (configuration == con.CounterFlow) then + flowRegime = if (C1_flow*C2_flow >= 0) + then + flo.CounterFlow + else + flo.ParallelFlow; + elseif (configuration == con.CrossFlowUnmixed) then + flowRegime = flo.CrossFlowUnmixed; + elseif (configuration == con.CrossFlowStream1MixedStream2Unmixed) then + flowRegime = if (C1_flow < C2_flow) + then + flo.CrossFlowCMinMixedCMaxUnmixed + else + flo.CrossFlowCMinUnmixedCMaxMixed; + else + // have ( configuration == con.CrossFlowStream1UnmixedStream2Mixed) + flowRegime = if (C1_flow < C2_flow) + then + flo.CrossFlowCMinUnmixedCMaxMixed + else + flo.CrossFlowCMinMixedCMaxUnmixed; + end if; + + connect(heaCoo.port_b, port_b1) annotation (Line(points={{80,60},{80,60},{100,60}},color={0,127,255}, + thickness=1)); + connect(heaCooHum_u.port_b, port_b2) annotation (Line( + points={{-80,-60},{-90,-60},{-100,-60}}, + color={0,127,255}, + thickness=1)); + connect(hA.hA_1, dryWetCalcs.UAWat) annotation (Line(points={{-49.1,5.7},{-46, + 5.7},{-46,36.6667},{-22.8571,36.6667}}, color={0,0,127})); + connect(hA.hA_2, dryWetCalcs.UAAir) annotation (Line(points={{-49.1,-9.7},{ + -46,-9.7},{-46,-36},{-46,-36.6667},{-22.8571,-36.6667}}, + color={0,0,127})); + connect(cp_a1Exp.y, dryWetCalcs.cpWat) annotation (Line(points={{-29.3,24},{ + -22.8571,24},{-22.8571,23.3333}}, + color={0,0,127})); + connect(XWat_a2Exp.y, dryWetCalcs.wAirIn) annotation (Line(points={{-29.3,4}, + {-22.8571,4},{-22.8571,3.33333}}, color={0,0,127})); + connect(p_a2Exp.y, dryWetCalcs.pAir) annotation (Line(points={{-29.3,-4},{ + -22.8571,-4},{-22.8571,-3.33333}}, + color={0,0,127})); + connect(h_a2Exp.y, dryWetCalcs.hAirIn) annotation (Line(points={{-29.3,-12},{ + -22,-12},{-22,-10},{-22.8571,-10}}, + color={0,0,127})); + connect(cp_a2Exp.y, dryWetCalcs.cpAir) annotation (Line(points={{-29.3,-24},{ + -22.8571,-24},{-22.8571,-23.3333}}, + color={0,0,127})); + connect(TIn_a1Exp.y, hA.T_1) annotation (Line(points={{-83.3,22},{-80,22},{-80, + 1.3},{-68.9,1.3}}, color={0,0,127})); + connect(TIn_a1Exp.y, dryWetCalcs.TWatIn) annotation (Line(points={{-83.3,22}, + {-50,22},{-50,16.6667},{-22.8571,16.6667}}, color={0,0,127})); + connect(TIn_a2Exp.y, hA.T_2) annotation (Line(points={{-83.3,-2},{-76,-2},{-76, + -5.3},{-68.9,-5.3}}, color={0,0,127})); + connect(TIn_a2Exp.y, dryWetCalcs.TAirIn) annotation (Line(points={{-83.3,-2}, + {-76,-2},{-76,-16.6667},{-22.8571,-16.6667}}, color={0,0,127})); + connect(m_flow_a1Exp.y, hA.m1_flow) annotation (Line(points={{-83.3,36},{-76,36}, + {-76,5.7},{-68.9,5.7}}, color={0,0,127})); + connect(m_flow_a1Exp.y, dryWetCalcs.mWat_flow) annotation (Line(points={{-83.3, + 36},{-50,36},{-50,30},{-22.8571,30}}, color={0,0,127})); + connect(port_a1, heaCoo.port_a) annotation (Line( + points={{-100,60},{-20,60},{60,60}}, + color={0,127,255}, + thickness=1)); + connect(m_flow_a2Exp.y, hA.m2_flow) annotation (Line(points={{-83.3,-30},{-80, + -30},{-80,-9.7},{-68.9,-9.7}}, + color={0,0,127})); + connect(m_flow_a2Exp.y, dryWetCalcs.mAir_flow) annotation (Line(points={{-83.3, + -30},{-22.8571,-30}}, color={0,0,127})); + connect(port_a2, heaCooHum_u.port_a) annotation (Line( + points={{100,-60},{20,-60},{-60,-60}}, + color={0,127,255}, + thickness=1)); + connect(preHea.port, heaCooHum_u.heatPort) annotation (Line(points={{0,-80},{-40, + -80},{-40,-66},{-60,-66}}, color={191,0,0})); + connect(dryWetCalcs.QTot_flow, heaCoo.u) annotation (Line(points={{62.8571, + -6.66667},{80,-6.66667},{80,44},{40,44},{40,66},{58,66}}, + color={0,0,127})); + connect(dryWetCalcs.mCon_flow, heaCooHum_u.u) annotation (Line(points={{62.8571, + -33.3333},{70,-33.3333},{70,-54},{-59,-54}}, color={0,0,127})); + connect(preHea.Q_flow, dryWetCalcs.QTot_flow) annotation (Line(points={{20,-80}, + {44,-80},{80,-80},{80,-6.66667},{62.8571,-6.66667}}, + color={0,0,127})); + annotation ( + defaultComponentName="hexWetNtu", + Icon(graphics={ + Rectangle( + extent={{-70,80},{70,-80}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={95,95,95}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{36,80},{40,-80}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,0,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-40,80},{-36,-80}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,0,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-2,80},{2,-80}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,0,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-100,-55},{101,-65}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,127,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-98,65},{103,55}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,0,255}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-70,80},{70,-80}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={95,95,95}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-100,-55},{101,-65}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,127,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-98,65},{103,55}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,0,255}, + fillPattern=FillPattern.Solid), + Polygon( + points={{46,-62},{44,-72},{50,-76},{58,-72},{56,-62},{50,-50},{46,-62}}, + lineColor={0,0,255}, + fillColor={0,0,255}, + fillPattern=FillPattern.Solid, + smooth=Smooth.Bezier), + Polygon( + points={{24,-52},{22,-62},{28,-66},{36,-62},{34,-52},{28,-40},{24,-52}}, + lineColor={0,0,255}, + fillColor={0,0,255}, + fillPattern=FillPattern.Solid, + smooth=Smooth.Bezier), + Polygon( + points={{0,-48},{-2,-58},{4,-62},{12,-58},{10,-48},{4,-36},{0,-48}}, + lineColor={0,0,255}, + fillColor={0,0,255}, + fillPattern=FillPattern.Solid, + smooth=Smooth.Bezier), + Polygon( + points={{-18,-64},{-20,-74},{-14,-78},{-6,-74},{-8,-64},{-14,-52},{ + -18,-64}}, + lineColor={0,0,255}, + fillColor={0,0,255}, + fillPattern=FillPattern.Solid, + smooth=Smooth.Bezier), + Polygon( + points={{-40,-50},{-42,-60},{-36,-64},{-28,-60},{-30,-50},{-36,-38},{ + -40,-50}}, + lineColor={0,0,255}, + fillColor={0,0,255}, + fillPattern=FillPattern.Solid, + smooth=Smooth.Bezier), + Polygon( + points={{-58,-62},{-60,-72},{-54,-76},{-46,-72},{-48,-62},{-54,-50},{ + -58,-62}}, + lineColor={0,0,255}, + fillColor={0,0,255}, + fillPattern=FillPattern.Solid, + smooth=Smooth.Bezier)}), + Diagram(graphics={Text( + extent={{44,84},{86,76}}, + lineColor={28,108,200}, + textString="Water Side", + textStyle={TextStyle.Italic}, + horizontalAlignment=TextAlignment.Left), + Text( + extent={{-42,-80},{0,-88}}, + lineColor={28,108,200}, + textStyle={TextStyle.Italic}, + horizontalAlignment=TextAlignment.Left, + textString="Air Side")}), + Documentation(info=" +

    +This model describes a cooling coil that is capable of simulating fully-dry, +partially-wet, and fully-wet regimes. +The model is developed for counter flow heat exchangers but is also applicable +for the cross-flow configuration, although in the latter case it is recommended +to have over four tube rows (Elmahdy and Mitalas, 1977 and Braun, 1988). +The model can also be used for a heat exchanger which acts as both heating coil +(for some period of time) and cooling coil (for the others). +However, it is not recommended to use this model for heating coil only or for +cooling coil with no water condensation for computational efficiency. +

    +

    Main equations

    +

    +The coil model consists of two-equation sets, one for the fully-dry mode and +the other for the fully-wet mode. For the fully-dry mode, the ε-NTU +approach (Elmahdy and Mitalas, 1977) is used. +For the fully-wet mode, equations from Braun (1988) and Mitchell and Braun (2012a and b), +which are essentially the extension of the ε-NTU approach to simultaneous sensible +and latent heat transfer, are utilized. +The equation sets are switched depending on the switching criteria described below +that determines the right mode based on a coil surface temperature and dew-point +temperature for the air at the inlet of the coil. +The transition regime between the two modes, which represents the partially-wet and +partially-dry coil, is approximated by employing a fuzzy modeling approach, +so-called Takagi-Sugeno fuzzy modeling (Takagi and Sugeno, 1985), which provides a +continuously differentiable model that can cover all fully-dry, partially-wet, +and fully-wet regimes. +

    +

    The switching rules are;

    +
      +
    • R1: If the coil surface temperature at the air inlet is lower than the +dew-point temperature of air at inlet, then the cooling coil surface is fully-wet. +
    • +
    • +R2: If the coil surface temperature at the air outlet is higher than the +dew-point temperature of air at inlet, then the cooling coil surface is fully-dry. +
    • +
    • +R3: If any of the conditions in R1 or R2 is not satisfied, then the cooling coil +surface is partially wet. +
    • +
    +

    +For more detailed descriptions of the fully-wet coil model and the fuzzy modeling approach, +see + +Buildings.Fluid.HeatExchangers.BaseClasses.WetCoilWetRegime. +and + +Buildings.Fluid.HeatExchangers.BaseClasses.WetCoilDryWetRegime. +

    +

    Assumptions and limitations

    +

    This model contains the following assumptions and limitations:

    +

    Medium 2 must be air due to the use of various psychrometric functions.

    +

    The model uses steady-state physics. That is, no dynamics associated +with water and coil materials are considered.

    +

    The Lewis number, which relates the mass transfer coefficient to the heat transfer +coefficient, is assumed to be 1.

    +

    The model is not suitable for a cross-flow heat exchanger of which the number +of passes is less than four.

    +

    Validation

    +

    Validation results can be found in + +Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU. +

    References

    +

    Braun, James E. 1988. +"Methodologies for the Design and Control of +Central Cooling Plants". +PhD Thesis. University of Wisconsin - Madison. +Available + +online. +

    +

    Mitchell, John W., and James E. Braun. 2012a. +Principles of heating, ventilation, and air conditioning in buildings. +Hoboken, N.J.: Wiley.

    +

    Mitchell, John W., and James E. Braun. 2012b. +"Supplementary Material Chapter 2: Heat Exchangers for Cooling Applications". +Excerpt from Principles of heating, ventilation, and air conditioning in buildings. +Hoboken, N.J.: Wiley. +Available + +online. +

    +

    Elmahdy, A.H. and Mitalas, G.P. 1977. +"A Simple Model for Cooling and Dehumidifying Coils for Use +In Calculating Energy Requirements for Buildings". +ASHRAE Transactions. Vol.83. Part 2. pp. 103-117.

    +

    Takagi, T. and Sugeno, M., 1985. +Fuzzy identification of systems and its applications to modeling and control. + IEEE transactions on systems, man, and cybernetics, (1), pp.116-132.

    +", revisions=" +
      +
    • Jan 21, 2021, by Donghun Kim:
      First implementation of the fuzzy model. See issue 622 for more information.
    • +
    +"), + __Dymola_Commands(file= + "Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffNtuMassFlowFuzzy.mos")); +end WetCoilEffectivenessNTUWithRated; diff --git a/Buildings/Fluid/HeatExchangers/package.order b/Buildings/Fluid/HeatExchangers/package.order index 6ecb01ef70a..2c613a0c5a9 100644 --- a/Buildings/Fluid/HeatExchangers/package.order +++ b/Buildings/Fluid/HeatExchangers/package.order @@ -11,6 +11,7 @@ SensibleCooler_T WetCoilCounterFlow WetCoilDiscretized WetCoilEffectivenessNTU +WetCoilEffectivenessNTUWithRated ActiveBeams CoolingTowers DXCoils From ee6f87f161151c4d7733c78f8ef996ce1a0d3063 Mon Sep 17 00:00:00 2001 From: kim1077 Date: Tue, 16 Feb 2021 12:35:16 -0800 Subject: [PATCH 22/69] update of some descriptions --- .../BaseClasses/WetCoilDryWetRegime.mo | 34 ++++++++++------ .../BaseClasses/WetCoilWetRegime.mo | 39 +++++++++---------- .../HeatExchangers/WetCoilEffectivenessNTU.mo | 29 +++++++------- 3 files changed, 56 insertions(+), 46 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo index 8228cbf45fc..d0a77859373 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo @@ -141,7 +141,7 @@ model WetCoilDryWetRegime TAirIn=TAirIn, final cfg=cfg, mAir_flow_nominal=mAir_flow_nominal, - mWat_flow_nominal=mWat_flow_nominal); + mWat_flow_nominal=mWat_flow_nominal) "Fully-dry coil model"; Buildings.Fluid.HeatExchangers.BaseClasses.WetCoilWetRegime fullywet( UAWat=UAWat, @@ -158,7 +158,7 @@ model WetCoilDryWetRegime mAir_flow_nominal=mAir_flow_nominal, mWat_flow_nominal=mWat_flow_nominal, pAir=pAir, - wAirIn=wAirIn); + wAirIn=wAirIn) "Fully-wet coil model"; protected Modelica.SIunits.MassFlowRate mAirNonZer_flow(min=Modelica.Constants.eps)= @@ -182,11 +182,11 @@ protected //-- parameters for fuzzy logics Real mu_FW(final unit="1", min=0, max=1), mu_FD(unit="1",min=0, max=1) - "membership functions for Fully-Wet and Fully-Dry conditions"; + "Membership functions for Fully-Wet and Fully-Dry conditions"; Real w_FW(final unit="1", min=0, max=1), w_FD(unit="1",min=0, max=1) - "normailized weight functions for Fully-Wet and Fully-Dry conditions"; + "Normailized weight functions for Fully-Wet and Fully-Dry conditions"; Real dryFra(final unit="1", min=0, max=1) - "dry fraction, e.g., 0.3 means condensation occurs at 30% HX length from air inlet"; + "Dry fraction, e.g., 0.3 means condensation occurs at 30% HX length from air inlet"; equation @@ -379,17 +379,27 @@ connections; there are too many connections to show graphically here")}), Documentation(revisions="
      -
    • Jan 21, 2021, by Donghun Kim:
      First implementation of the fuzzy model. See issue 622 for more information.
    • +
    • Jan 21, 2021, by Donghun Kim:
      First implementation of the fuzzy model. +See issue 622 for more information.
    ", info="

    The switching criteria for (counter-flow) cooling coil modes are as follows.

    -

    R1: If the coil surface temperature at the air inlet is lower than the dew-point temperature at the inlet to the coil, then the cooling coil surface is fully-wet.

    -

    R2: If the surface temperature at the air outlet section is higher than the dew-point temperature of the air at the inlet, then the cooling coil surface is fully-dry.

    -

    At each point of a simulation time step, the fuzzy-modeling approach determines the weights for R1 and R2 respectively (namely μFW and μFD) from the dew-point and coil surface temperatures.

    -

    It calculates total and sensible heat transfer rates according to the weights as follows.

    +

    R1: If the coil surface temperature at the air inlet is lower than the dew-point +temperature at the inlet to the coil, then the cooling coil surface is fully-wet.

    +

    R2: If the surface temperature at the air outlet section is higher than +the dew-point temperature of the air at the inlet, then the cooling coil surface is fully-dry.

    +

    At each point of a simulation time step, the fuzzy-modeling approach determines +the weights for R1 and R2 respectively (namely μFW and μFD) +from the dew-point and coil surface temperatures.

    +

    It calculates total and sensible heat transfer rates according to the weights as follows.

    QtotFD Qtot,FDFW Qtot,FW

    QsenFD Qsen,FDFW Qsen,FW

    -

    The fuzzy-modeling ensures μFW + μFD = 1, μFW >=0, μFD >=0, which means the fuzzy model outcomes of Qsen and Qtot are always convex combinations of heat transfer rates for fully-dry and fully-wet modes and therefore are always bounded by them.

    -

    The modeling approach also results in n-th order differentiable model depending on the selection of the underlying membership functions. This cooling coil model is once continuously differentiable even at the transition (or mode-switching) points.

    +

    The fuzzy-modeling ensures μFW + μFD = 1, +μFW >=0, μFD >=0, which means the fuzzy +model outcomes of Qsen and Qtot are always convex combinations of heat transfer +rates for fully-dry and fully-wet modes and therefore are always bounded by them.

    +

    The modeling approach also results in n-th order differentiable model +depending on the selection of the underlying membership functions. This cooling +coil model is once continuously differentiable even at the transition (or mode-switching) points.

    ")); end WetCoilDryWetRegime; diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo index fafccd1c746..94d49682cf5 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo @@ -36,16 +36,16 @@ model WetCoilWetRegime Modelica.SIunits.SpecificEnthalpy hAirIn "Specific enthalpy of air at inlet conditions"; Buildings.Utilities.Psychrometrics.hSat_pTSat hSatWatInM(p=pAir,TSat=TWatIn) - "model to calculate saturated specific enthalpy of air at water inlet tempreature"; + "Model to calculate saturated specific enthalpy of air at water inlet temperature"; Modelica.SIunits.SpecificEnthalpy hSatWatIn - "saturated specific enthalpy of air at water inlet tempreature"; + "Saturated specific enthalpy of air at water inlet temperature"; Buildings.Utilities.Psychrometrics.hSat_pTSat hSatWatIn_dT_M(p=pAir,TSat=TWatIn+dTWat) - "model to calculate derivative of saturated specific enthalpy of air at water inlet temperature"; + "Model to calculate derivative of saturated specific enthalpy of air at water inlet temperature"; Modelica.SIunits.SpecificHeatCapacity dhSatdTWatIn - "deriviative of saturated moist air enthalpy at water inlet temperature"; + "Deriviative of saturated moist air enthalpy at water inlet temperature"; Real NonZerDelWatTem - " regularization water temperature difference betwee inlet and outlet"; + "Regularization water temperature difference betwee inlet and outlet"; output Modelica.SIunits.HeatFlowRate QTot_flow "Total heat flow from water to air stream"; @@ -60,31 +60,29 @@ model WetCoilWetRegime Modelica.SIunits.SpecificEnthalpy hAirOut "Specific enthalpy of moist air at the air outlet"; Buildings.Utilities.Psychrometrics.hSat_pTSat hSatWatOutM(p=pAir,TSat=TWatOutEst) - "model to calculate saturated specific enthalpy of air at water outlet tempreature"; + "Model to calculate saturated specific enthalpy of air at water outlet temperature"; Modelica.SIunits.SpecificEnthalpy hSatWatOut - "saturated specific enthalpy of air at water outlet tempreature"; + "Saturated specific enthalpy of air at water outlet temperature"; Modelica.SIunits.Temperature TSurEff "Effective surface temperature of the coil to split sensible and latent heat from total heat transfer rate"; Modelica.SIunits.SpecificEnthalpy hSatSurEff - "enthalpy of saturated moist air at the effective surface temperature"; + "Enthalpy of saturated moist air at the effective surface temperature"; Buildings.Utilities.Psychrometrics.hSat_pTSat hSatSurEffM(p=pAir,TSat=TSurEff); Buildings.Utilities.Psychrometrics.hSat_pTSat hSatSurEffMinM(p=pAir,TSat=273.15+1); Modelica.SIunits.SpecificHeatCapacity cpEff - "Effective specific heat: change in enthalpy with respect to - temperature along the saturation line at the local water - temperature"; - constant Real cpEff0=2050 "for scaling"; - constant Real cpWat0=4200 "for scaling"; + "Effective specific heat: change in enthalpy with respect to temperature along the saturation line at the local water temperature"; + constant Real cpEff0=2050 "Used for scaling"; + constant Real cpWat0=4200 "Used for scaling"; parameter Real delta = 1E-3 "Small value used for smoothing"; constant Modelica.SIunits.SpecificHeatCapacity cpDum=1 - " dummy cp to eliminate the warning message of the unit mismatch when using the eps-NTU model for the wet coil"; + "Dummy cp to eliminate the warning message of the unit mismatch when using the eps-NTU model for the wet coil"; constant Modelica.SIunits.TemperatureDifference dTWat=0.1; parameter Real tau=6*60 - "time constant for the state estimation: introduced to avoid the algebraic loop of the wet coil equations"; + "Time constant for the state estimation: introduced to avoid the algebraic loop of the wet coil equations"; Modelica.SIunits.MassFlowRate UASta "Overall mass transfer coefficient for dry coil"; @@ -96,17 +94,16 @@ model WetCoilWetRegime "Effectiveness for heat exchanger (e*)"; Modelica.SIunits.MassFlowRate CStaMin - "min of product of mass flow rates and specific - heats; analogous to Cmin"; + "Min of product of mass flow rates and specific heats; analogous to Cmin"; Modelica.SIunits.MassFlowRate CStaMin_flow_nominal= min(mAir_flow_nominal,mWat_flow_nominal*cpEff0/cpWat0) - "analogus to CMin_flow_nominal, only for a regularization"; + "Analogus to CMin_flow_nominal, only for a regularization"; Modelica.SIunits.MassFlowRate CStaMax_flow_nominal= max(mAir_flow_nominal,mWat_flow_nominal*cpEff0/cpWat0) - "analogus to CMax_flow_nominal, only for a regularization"; + "Analogus to CMax_flow_nominal, only for a regularization"; Modelica.SIunits.MassFlowRate deltaCStaMin=delta*min(mAir_flow_nominal,mWat_flow_nominal*cpEff0/cpWat0) - "min of product of mass flow rates and specific heats, analogous to Cmin"; + "Min of product of mass flow rates and specific heats, analogous to Cmin"; Modelica.SIunits.Temperature TWatOutEst - "state_estimation of Temperature of water at outlet"; + "State_estimation of Temperature of water at outlet"; initial equation TWatOutEst=0.5*(TWatIn+ TAirIn); //273.15+10; diff --git a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo index dcaafe4ff2b..0170c016e7d 100644 --- a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo @@ -16,18 +16,7 @@ model WetCoilEffectivenessNTU parameter Real r_nominal=2/3 "Ratio between air-side and water-side convective heat transfer coefficient" annotation (Dialog(group="Nominal condition")); - parameter Boolean waterSideFlowDependent=true - "Set to false to make water-side hA independent of mass flow rate" - annotation (Dialog(tab="Heat transfer")); - parameter Boolean airSideFlowDependent=true - "Set to false to make air-side hA independent of mass flow rate" - annotation (Dialog(tab="Heat transfer")); - parameter Boolean waterSideTemperatureDependent=false - "Set to false to make water-side hA independent of temperature" - annotation (Dialog(tab="Heat transfer")); - parameter Boolean airSideTemperatureDependent=false - "Set to false to make air-side hA independent of temperature" - annotation (Dialog(tab="Heat transfer")); + parameter Buildings.Fluid.Types.HeatExchangerConfiguration configuration= con.CounterFlow "Heat exchanger configuration"; @@ -59,6 +48,19 @@ model WetCoilEffectivenessNTU "Water flow rate of condensate removed from the air stream"; protected + parameter Boolean waterSideFlowDependent=true + "Set to false to make water-side hA independent of mass flow rate" + annotation (Dialog(tab="Heat transfer")); + parameter Boolean airSideFlowDependent=true + "Set to false to make air-side hA independent of mass flow rate" + annotation (Dialog(tab="Heat transfer")); + parameter Boolean waterSideTemperatureDependent=false + "Set to false to make water-side hA independent of temperature" + annotation (Dialog(tab="Heat transfer")); + parameter Boolean airSideTemperatureDependent=false + "Set to false to make air-side hA independent of temperature" + annotation (Dialog(tab="Heat transfer")); + Real delta=1E-2 "a parameter for normailization"; Real delta1=1E-1 @@ -575,7 +577,8 @@ Fuzzy identification of systems and its applications to modeling and control.  IEEE transactions on systems, man, and cybernetics, (1), pp.116-132.

    ", revisions="
      -
    • Jan 21, 2021, by Donghun Kim:
      First implementation of the fuzzy model. See issue 622 for more information.
    • +
    • Jan 21, 2021, by Donghun Kim:
      First implementation of the fuzzy model. +See issue 622 for more information.
    "), __Dymola_Commands(file= From d529098b60db3853b18f5dd3be952bd1c636054f Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Wed, 17 Feb 2021 11:13:42 -0800 Subject: [PATCH 23/69] Refactor with use_UA_nominal --- .../BaseClasses/WetCoilUARated.mo | 219 ++++--- .../Validation/WetCoilEffectivenessNTU.mo | 142 ++-- .../WetCoilEffectivenessNTU_WithRated.mo | 263 -------- .../HeatExchangers/Validation/package.order | 1 - .../HeatExchangers/WetCoilEffectivenessNTU.mo | 58 +- .../WetCoilEffectivenessNTUWithRated.mo | 610 ------------------ Buildings/Fluid/HeatExchangers/package.order | 1 - 7 files changed, 281 insertions(+), 1013 deletions(-) delete mode 100644 Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_WithRated.mo delete mode 100644 Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTUWithRated.mo diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo index a51f1416d23..0f686a7503f 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo @@ -5,32 +5,48 @@ model WetCoilUARated replaceable package MediumA=Buildings.Media.Air; replaceable package MediumW=Buildings.Media.Water; - parameter Modelica.SIunits.Temperature TAirIn=Modelica.SIunits.Conversions.from_degF(80) - " air inlet temperature at a rated condition"; - parameter Modelica.SIunits.Temperature TAirOut=273.15+13.5805 " air outlet temperature at a rated condition"; - parameter Modelica.SIunits.MassFraction wAirIn=0.0173 "absolute humidity of inlet air at a rated condition"; - - parameter Modelica.SIunits.Temperature TWatIn=Modelica.SIunits.Conversions.from_degF(42) " water inlet temperature at a rated condition"; - parameter Modelica.SIunits.Temperature TWatOut=273.15+11.0678 - " water outlet temperature at a rated condition"; - - parameter Modelica.SIunits.MassFlowRate mAir_flow=2.646 "air mass flow rate at a rated condition"; - parameter Modelica.SIunits.MassFlowRate mWat_flow=3.78 - "water mass flow rate at a rated condition"; - parameter Modelica.SIunits.ThermalConductance UA(fixed=false, min=0,start=1/(1/10+1/20)) + parameter Boolean use_UA_nominal = false + "Set to true to specify UA_nominal, or to false to use nominal conditions" + annotation (Evaluate=true, + Dialog(group="Nominal thermal performance")); + parameter Modelica.SIunits.Temperature TAirIn + "Air inlet temperature at a rated condition"; + parameter Modelica.SIunits.Temperature TAirOut + "Air outlet temperature at a rated condition"; + parameter Modelica.SIunits.MassFraction wAirIn + "Absolute humidity of inlet air at a rated condition"; + parameter Modelica.SIunits.Temperature TWatIn + "Water inlet temperature at a rated condition"; + parameter Modelica.SIunits.Temperature TWatOut + "Water outlet temperature at a rated condition"; + parameter Modelica.SIunits.MassFlowRate mAir_flow + "Air mass flow rate at a rated condition"; + parameter Modelica.SIunits.MassFlowRate mWat_flow + "Water mass flow rate at a rated condition"; + parameter Modelica.SIunits.ThermalConductance UA "UA is for the overall coil (i.e., both sides)"; + parameter Real r_nominal(min=0, max=1) + "Ratio between air-side and water-side convective heat transfer at nominal condition"; protected - constant Modelica.SIunits.SpecificEnthalpy hfg = Buildings.Utilities.Psychrometrics.Constants.h_fg; - parameter Modelica.SIunits.MassFraction wAirOut(fixed=false) "absolute humidity of outgoing air at a rated condition [to be calculated]"; - parameter Modelica.SIunits.SpecificEnthalpy hAirIn(fixed=false) "enthalpy of incoming moist air at a rated condition [to be calculated]"; - parameter Modelica.SIunits.SpecificEnthalpy hAirOut(fixed=false) "enthalpy of outgoing moist air at a rated condition [to be calculated]"; + constant Modelica.SIunits.SpecificEnthalpy hfg= + Buildings.Utilities.Psychrometrics.Constants.h_fg; + parameter Modelica.SIunits.MassFraction wAirOut(fixed=false) + "Absolute humidity of outgoing air at a rated condition"; + parameter Modelica.SIunits.SpecificEnthalpy hAirIn(fixed=false) + "Enthalpy of incoming moist air at a rated condition"; + parameter Modelica.SIunits.SpecificEnthalpy hAirOut(fixed=false) + "Enthalpy of outgoing moist air at a rated condition"; // calculates all thermodynamic properties based on inputs - parameter MediumA.ThermodynamicState staAir=MediumA.setState_phX(p=MediumA.p_default,h=MediumA.h_default,X=MediumA.X_default[1:MediumA.nXi]); - parameter MediumW.ThermodynamicState staWat=MediumW.setState_phX(p=MediumW.p_default,h=MediumW.h_default,X=MediumW.X_default[1:MediumW.nXi]); - - parameter Modelica.SIunits.SpecificHeatCapacity cpAir=MediumA.specificHeatCapacityCp(staAir); - parameter Modelica.SIunits.SpecificHeatCapacity cpw=MediumW.specificHeatCapacityCp(staWat); + parameter MediumA.ThermodynamicState staAir=MediumA.setState_phX( + p=MediumA.p_default,h=MediumA.h_default,X=MediumA.X_default[1:MediumA.nXi]); + parameter MediumW.ThermodynamicState staWat=MediumW.setState_phX( + p=MediumW.p_default,h=MediumW.h_default,X=MediumW.X_default[1:MediumW.nXi]); + + parameter Modelica.SIunits.SpecificHeatCapacity cpAir= + MediumA.specificHeatCapacityCp(staAir); + parameter Modelica.SIunits.SpecificHeatCapacity cpw= + MediumW.specificHeatCapacityCp(staWat); parameter Modelica.SIunits.SpecificHeatCapacity cpEff(fixed=false, min= 0) "Effective specific heat: change in saturated moist air enthalpy with respect to temperature along the saturation line between inlet and outlet water temperatures"; @@ -39,31 +55,38 @@ protected constant Modelica.SIunits.Temperature Tunit=1; constant Modelica.SIunits.SpecificHeatCapacity cpunit=1; - Modelica.SIunits.AbsolutePressure pSatTWatIn = Buildings.Utilities.Psychrometrics.Functions.saturationPressure(TWatIn) - "saturation pressure of water at the water inlet temperature"; - Modelica.SIunits.MassFraction wSatTWatIn = Buildings.Utilities.Psychrometrics.Functions.X_pSatpphi(pSat=pSatTWatIn, p=MediumA.p_default, phi=1) - "absolute humidity of the moist air at the water inlet temperature"; - Modelica.SIunits.SpecificEnthalpy hSatTWatIn = Buildings.Media.Air.specificEnthalpy_pTX(p=MediumA.p_default, T=TWatIn, X={wSatTWatIn,1-wSatTWatIn}) - "enthalpy of saturated moist air at the water inlet temperature"; - - Modelica.SIunits.AbsolutePressure pSatTWatOut = Buildings.Utilities.Psychrometrics.Functions.saturationPressure(TWatOut) - "saturation pressure of water at the water oulet temperature"; - Modelica.SIunits.MassFraction wSatTWatOut = Buildings.Utilities.Psychrometrics.Functions.X_pSatpphi(pSat=pSatTWatOut, p=MediumA.p_default, phi=1) - "absolute humidity of the moist air at the water oulet temperature"; - Modelica.SIunits.SpecificEnthalpy hSatTWatOut = Buildings.Media.Air.specificEnthalpy_pTX(p=MediumA.p_default, T=TWatOut, X={wSatTWatOut,1-wSatTWatOut}) - "enthalpy of saturated moist air at the water oulet temperature"; - - parameter Modelica.SIunits.SpecificEnthalpy LMED(fixed=false) "log mean enthalpy difference"; - - parameter Modelica.SIunits.MassFlowRate UASta(fixed=false, min=0) "overall heat transfer coefficient for enthalpy difference"; - parameter Modelica.SIunits.HeatFlowRate QTot_flow(fixed=false) + Modelica.SIunits.AbsolutePressure pSatTWatIn= + Buildings.Utilities.Psychrometrics.Functions.saturationPressure(TWatIn) + "Saturation pressure of water at the water inlet temperature"; + Modelica.SIunits.MassFraction wSatTWatIn= + Buildings.Utilities.Psychrometrics.Functions.X_pSatpphi( + pSat=pSatTWatIn, p=MediumA.p_default, phi=1) + "Absolute humidity of the moist air at the water inlet temperature"; + Modelica.SIunits.SpecificEnthalpy hSatTWatIn= + Buildings.Media.Air.specificEnthalpy_pTX( + p=MediumA.p_default, T=TWatIn, X={wSatTWatIn,1-wSatTWatIn}) + "Enthalpy of saturated moist air at the water inlet temperature"; + + Modelica.SIunits.AbsolutePressure pSatTWatOut= + Buildings.Utilities.Psychrometrics.Functions.saturationPressure(TWatOut) + "Saturation pressure of water at the water oulet temperature"; + Modelica.SIunits.MassFraction wSatTWatOut= + Buildings.Utilities.Psychrometrics.Functions.X_pSatpphi( + pSat=pSatTWatOut, p=MediumA.p_default, phi=1) + "Absolute humidity of the moist air at the water oulet temperature"; + Modelica.SIunits.SpecificEnthalpy hSatTWatOut= + Buildings.Media.Air.specificEnthalpy_pTX( + p=MediumA.p_default, T=TWatOut, X={wSatTWatOut,1-wSatTWatOut}) + "Enthalpy of saturated moist air at the water oulet temperature"; + + parameter Modelica.SIunits.SpecificEnthalpy LMED(fixed=false) + "Log mean enthalpy difference"; + + parameter Modelica.SIunits.MassFlowRate UASta(fixed=false, min=0) + "Overall heat transfer coefficient for enthalpy difference"; + parameter Modelica.SIunits.HeatFlowRate QTot_flow=mWat_flow*cpw*(TWatOut-TWatIn) "Total heat flow from air to water stream"; - parameter Real r_nominal( - min=0, - max=1) = 2/3 - "Ratio between air-side and water-side convective heat transfer (hA-value) at nominal condition"; - parameter Modelica.SIunits.ThermalConductance UAAir(min=0,start=10,fixed=false) "Air side convective heat transfer coefficient, including fin resistance"; parameter Modelica.SIunits.ThermalConductance UAWat(min=0,start=20,fixed=false) @@ -75,48 +98,72 @@ protected initial equation - assert( TAirOutTWatIn and TWatInTWatIn and TWatIn=wAirIn); + IsFulWet=(wSatTWatOut<=wAirIn); + IsParWet= (not IsFulDry) and (not IsFulWet); + + assert(not IsParWet, + "Partially dry nominal condition is not allowed at this moment. " + + "Specify either fully-dry or fully-wet nominal condition"); + + if IsFulDry then + LMED=Buildings.Fluid.HeatExchangers.BaseClasses.lmtd( + TAirIn, + TAirOut, + TWatIn, + TWatOut)/Tunit*hunit; // The value of LMED calculated from this equation is used as that of LMTD. + QTot_flow=LMED*UASta; // The value of UASta calculated from this equation is used as that of UA. + cpEff= Modelica.Constants.inf*cpunit; // cpEff is not used for fully-dry + UA= UASta*cpunit; + else //fully wet + // calculation of overall UAsta based on log mean enthalpy difference + LMED=Buildings.Fluid.HeatExchangers.BaseClasses.lmtd( + hAirIn/hunit*Tunit, + hAirOut/hunit*Tunit, + hSatTWatIn/hunit*Tunit, + hSatTWatOut/hunit*Tunit)/Tunit*hunit; + QTot_flow=LMED*UASta; + cpEff= (hSatTWatOut-hSatTWatIn)/(TWatOut-TWatIn); + UASta = (UAAir/cpAir)/(1 + (cpEff*UAAir)/(cpAir*UAWat)); + end if; + else + TAirIn=MediumA.T_default; + TAirOut=MediumA.T_default; + wAirIn=MediumA.X_default[1]; + wAirOut=MediumA.X_default[1]; + TWatIn=MediumA.T_default; + TWatOut=MediumA.T_default; + hAirIn=MediumA.h_default; + hAirOut=MediumA.h_default; + IsFulDry=false; + IsFulWet=false; + IsParWet=false; + LMED=hunit; + QTot_flow=LMED*UASta; + cpEff= Modelica.Constants.inf*cpunit; + end if; - QTot_flow = mAir_flow*(hAirIn-hAirOut);// calculates wAirOut or Qtot - - IsFulDry=(wSatTWatIn>=wAirIn); - IsFulWet=(wSatTWatOut<=wAirIn); - IsParWet= (not IsFulDry) and (not IsFulWet); - - assert(not IsParWet, "partially dry nominal condition is not allowed at this moment. Specify either fully-dry or fully-wet nominal condition"); - -if IsFulDry then - LMED=Buildings.Fluid.HeatExchangers.BaseClasses.lmtd(TAirIn, - TAirOut, - TWatIn, - TWatOut)/Tunit*hunit; // The value of LMED calculated from this equation is used as that of LMTD. - QTot_flow=LMED*UASta; // The value of UASta calculated from this equation is used as that of UA. - cpEff= Modelica.Constants.inf*cpunit; // cpEff is not used for fully-dry - UA= UASta*cpunit; UAWat=UAAir/r_nominal; UA = 1/ (1/UAAir + 1/ UAWat); -else //fully wet - // calculation of overall UAsta based on log mean enthalpy difference - LMED=Buildings.Fluid.HeatExchangers.BaseClasses.lmtd(hAirIn/hunit*Tunit, - hAirOut/hunit*Tunit, - hSatTWatIn/hunit*Tunit, - hSatTWatOut/hunit*Tunit)/Tunit*hunit; - QTot_flow=LMED*UASta; - cpEff= (hSatTWatOut-hSatTWatIn)/(TWatOut-TWatIn); - - UASta = (UAAir/cpAir)/(1 + (cpEff*UAAir)/(cpAir*UAWat)); - UAWat=UAAir/r_nominal; - UA = 1/ (1/UAAir + 1/ UAWat); -end if; - annotation (Icon(coordinateSystem(preserveAspectRatio=false), graphics={ - Rectangle( - extent={{100,-98},{-100,100}}, - lineColor={0,0,0}, - fillColor={255,255,255}, - fillPattern=FillPattern.Solid)}), Diagram( - coordinateSystem(preserveAspectRatio=false))); + + annotation (Icon(coordinateSystem(preserveAspectRatio=false), + graphics={ + Rectangle( + extent={{100,-98},{-100,100}}, + lineColor={0,0,0}, + fillColor={255,255,255}, + fillPattern=FillPattern.Solid)}), Diagram( + coordinateSystem(preserveAspectRatio=false))); end WetCoilUARated; diff --git a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo index 99f3310c137..ac2c3256c68 100644 --- a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo @@ -14,6 +14,14 @@ model WetCoilEffectivenessNTU parameter Modelica.SIunits.Temperature T_a2_nominal= Modelica.SIunits.Conversions.from_degF(80) "Inlet air temperature"; + parameter Modelica.SIunits.Temperature T_b1_nominal_wet= + 273.15+11.1 + "Outlet water temperature in fully wet conditions"; + parameter Modelica.SIunits.Temperature T_b2_nominal_wet= + 273.15+13.6 + "Outlet air temperature in fully wet conditions"; + parameter Real X_w_nominal_wet = 0.0173 + "Inlet water mass fraction in fully wet conditions"; parameter Modelica.SIunits.ThermalConductance UA_nominal = 4748 "Total thermal conductance at nominal flow, from textbook"; parameter Modelica.SIunits.MassFlowRate m1_flow_nominal = 3.78 @@ -26,9 +34,9 @@ model WetCoilEffectivenessNTU Buildings.Fluid.Sources.Boundary_pT sinAir( redeclare package Medium = Medium_A, use_p_in=false, - nPorts=2) + nPorts=3) "Air sink" - annotation (Placement(transformation(extent={{-180,40},{-160,60}}))); + annotation (Placement(transformation(extent={{-180,-72},{-160,-52}}))); Sources.MassFlowSource_T souAir( redeclare package Medium = Medium_A, m_flow=m2_flow_nominal, @@ -36,30 +44,30 @@ model WetCoilEffectivenessNTU use_Xi_in=true, nPorts=1) "Air source" - annotation (Placement(transformation(extent={{140,-90},{120,-70}}))); + annotation (Placement(transformation(extent={{140,-70},{120,-50}}))); Buildings.Fluid.Sources.Boundary_pT sinWat( redeclare package Medium = Medium_W, - nPorts=2) + nPorts=3) "Sink for water" - annotation (Placement(transformation(extent={{80,10},{60,30}}))); + annotation (Placement(transformation(extent={{50,10},{30,30}}))); Modelica.Blocks.Sources.CombiTimeTable X_w2( table=[0,0.0035383; 1,0.01765], timeScale=100) "Water mass fraction of entering air" annotation (Placement(transformation(extent={{190,-90},{170,-70}}))); Sensors.RelativeHumidityTwoPort RelHumIn(redeclare package Medium = Medium_A, m_flow_nominal=m2_flow_nominal) "Inlet relative humidity" - annotation (Placement(transformation(extent={{40,-90},{20,-70}}))); + annotation (Placement(transformation(extent={{40,-70},{20,-50}}))); Sensors.TemperatureTwoPort TDryBulIn(redeclare package Medium = Medium_A, m_flow_nominal=m2_flow_nominal) "Inlet dry bulb temperature" - annotation (Placement(transformation(extent={{70,-90},{50,-70}}))); + annotation (Placement(transformation(extent={{70,-70},{50,-50}}))); Modelica.Blocks.Sources.RealExpression pAir(y=pAtm) "Air pressure" - annotation (Placement(transformation(extent={{140,-52},{120,-28}}))); + annotation (Placement(transformation(extent={{140,-42},{120,-18}}))); Buildings.Utilities.Psychrometrics.TWetBul_TDryBulXi wetBulIn(redeclare package Medium = Medium_A) "Computation of wet bulb temperature" - annotation (Placement(transformation(extent={{120,-20},{140,0}}))); + annotation (Placement(transformation(extent={{120,-10},{140,10}}))); Sensors.MassFractionTwoPort senMasFraIn(redeclare package Medium = Medium_A, m_flow_nominal=m2_flow_nominal) "Water mass fraction of entering air" - annotation (Placement(transformation(extent={{110,-90},{90,-70}}))); + annotation (Placement(transformation(extent={{110,-70},{90,-50}}))); Sensors.MassFractionTwoPort senMasFraOut(redeclare package Medium = Medium_A, m_flow_nominal=m2_flow_nominal) "Water mass fraction of leaving air" annotation (Placement(transformation(extent={{-110,10},{-130,-10}}))); @@ -68,20 +76,21 @@ model WetCoilEffectivenessNTU annotation (Placement(transformation(extent={{-50,10},{-70,-10}}))); Buildings.Utilities.Psychrometrics.TWetBul_TDryBulXi wetBulOut(redeclare package Medium = Medium_A) "Computation of wet bulb temperature" - annotation (Placement(transformation(extent={{-40,-60},{-20,-40}}))); + annotation (Placement(transformation(extent={{-40,-90},{-20,-70}}))); Modelica.Blocks.Sources.RealExpression pAir1(y=pAtm) "Air pressure" - annotation (Placement(transformation(extent={{-100,-92},{-80,-68}}))); + annotation (Placement(transformation(extent={{-100,-112},{-80,-88}}))); Buildings.Fluid.HeatExchangers.WetCoilEffectivenessNTU hexWetNTU( redeclare package Medium1 = Medium_W, redeclare package Medium2 = Medium_A, + use_UA_nominal=true, UA_nominal=UA_nominal, m1_flow_nominal=m1_flow_nominal, m2_flow_nominal=m2_flow_nominal, dp2_nominal=0, dp1_nominal=0, configuration=hexCon, - show_T=true) "Effectiveness-NTU coil model" - annotation (Placement(transformation(extent={{-30,-4},{-10,16}}))); + show_T=true) "Effectiveness-NTU coil model (parameterized with nominal UA)" + annotation (Placement(transformation(extent={{-30,4},{-10,24}}))); Sources.MassFlowSource_T souWat1( redeclare package Medium = Medium_W, m_flow=m1_flow_nominal, @@ -107,12 +116,11 @@ model WetCoilEffectivenessNTU tau_m=0.1) "Discretized coil model" annotation (Placement(transformation(extent={{-30,56},{-10,76}}))); - Sources.MassFlowSource_T souWat2( + Sources.MassFlowSource_T souWat( redeclare package Medium = Medium_W, m_flow=m1_flow_nominal, T=T_a1_nominal, - nPorts=1) - "Source for water" + nPorts=1) "Source for water" annotation (Placement(transformation(extent={{-180,70},{-160,90}}))); Sources.MassFlowSource_T souAir2( redeclare package Medium = Medium_A, @@ -134,54 +142,84 @@ model WetCoilEffectivenessNTU Sensors.RelativeHumidityTwoPort RelHumOut_dis(redeclare package Medium = Medium_A, m_flow_nominal=m2_flow_nominal) "Outlet relative humidity" annotation (Placement(transformation(extent={{-80,50},{-100,70}}))); + Buildings.Fluid.HeatExchangers.WetCoilEffectivenessNTU hexWetNTU_TX( + redeclare package Medium1 = Medium_W, + redeclare package Medium2 = Medium_A, + T_a2_nominal=T_a2_nominal, + T_b2_nominal=T_b2_nominal_wet, + X_a2_nominal=X_w_nominal_wet, + T_a1_nominal=T_a1_nominal, + T_b1_nominal=T_b1_nominal_wet, + m1_flow_nominal=m1_flow_nominal, + m2_flow_nominal=m2_flow_nominal, + dp2_nominal=0, + dp1_nominal=0, + configuration=hexCon, + show_T=true) + "Effectiveness-NTU coil model (parameterized with nominal T and X)" + annotation (Placement(transformation(extent={{-30,-44},{-10,-24}}))); + Sources.MassFlowSource_T souAir1( + redeclare package Medium = Medium_A, + m_flow=m2_flow_nominal, + T=T_a2_nominal, + use_Xi_in=true, + nPorts=1) + "Air source" + annotation (Placement(transformation(extent={{140,-110},{120,-90}}))); + Sources.MassFlowSource_T souWat2( + redeclare package Medium = Medium_W, + m_flow=m1_flow_nominal, + T=T_a1_nominal, + nPorts=1) + "Source for water" + annotation (Placement(transformation(extent={{-180,-30},{-160,-10}}))); equation - connect(pAir.y, wetBulIn.p) annotation (Line(points={{119,-40},{110,-40},{110, - -18},{119,-18}}, color={0,0,127})); - connect(pAir1.y, wetBulOut.p) annotation (Line(points={{-79,-80},{-60,-80},{ - -60,-58},{-41,-58}},color={0,0,127})); + connect(pAir.y, wetBulIn.p) annotation (Line(points={{119,-30},{112,-30},{112, + -8},{119,-8}}, color={0,0,127})); + connect(pAir1.y, wetBulOut.p) annotation (Line(points={{-79,-100},{-50,-100}, + {-50,-88},{-41,-88}}, + color={0,0,127})); connect(senMasFraOut.port_b, sinAir.ports[1]) - annotation (Line(points={{-130,0},{-140,0},{-140,48},{-160,48},{-160,52}}, + annotation (Line(points={{-130,0},{-140,0},{-140,-59.3333},{-160,-59.3333}}, color={0,127,255})); connect(TDryBulOut.T, wetBulOut.TDryBul) - annotation (Line(points={{-60,-11},{-60,-42},{-41,-42}}, color={0,0,127})); + annotation (Line(points={{-60,-11},{-60,-72},{-41,-72}}, color={0,0,127})); connect(senMasFraOut.X, wetBulOut.Xi[1]) annotation (Line(points={{-120,-11}, - {-120,-50},{-41,-50}}, color={0,0,127})); + {-120,-80},{-41,-80}}, color={0,0,127})); connect(souAir.ports[1], senMasFraIn.port_a) - annotation (Line(points={{120,-80},{110,-80}}, color={0,127,255})); + annotation (Line(points={{120,-60},{110,-60}}, color={0,127,255})); connect(senMasFraIn.port_b, TDryBulIn.port_a) - annotation (Line(points={{90,-80},{70,-80}}, color={0,127,255})); + annotation (Line(points={{90,-60},{70,-60}}, color={0,127,255})); connect(senMasFraIn.X, wetBulIn.Xi[1]) - annotation (Line(points={{100,-69},{100,-10},{119,-10}}, - color={0,0,127})); + annotation (Line(points={{100,-49},{100,0},{119,0}}, color={0,0,127})); connect(TDryBulIn.T, wetBulIn.TDryBul) - annotation (Line(points={{60,-69},{60,-2},{119,-2}}, - color={0,0,127})); + annotation (Line(points={{60,-49},{60,8},{119,8}}, color={0,0,127})); connect(TDryBulIn.port_b, RelHumIn.port_a) - annotation (Line(points={{50,-80},{40,-80}}, color={0,127,255})); + annotation (Line(points={{50,-60},{40,-60}}, color={0,127,255})); connect(souWat1.ports[1], hexWetNTU.port_a1) annotation (Line(points={{-160,20}, - {-40,20},{-40,12},{-30,12}}, color={0,127,255})); - connect(hexWetNTU.port_b1, sinWat.ports[1]) annotation (Line(points={{-10,12}, - {40,12},{40,18},{60,18},{60,22}}, + {-30,20}}, color={0,127,255})); + connect(hexWetNTU.port_b1, sinWat.ports[1]) annotation (Line(points={{-10,20}, + {16,20},{16,22.6667},{30,22.6667}}, color={0,127,255})); connect(X_w2.y[1], souAir.Xi_in[1]) annotation (Line(points={{169,-80},{160,-80}, - {160,-84},{142,-84}}, color={0,0,127})); - connect(souWat2.ports[1], hexDis.port_a1) - annotation (Line(points={{-160,80},{-40,80},{-40,72},{-30,72}}, - color={0,127,255})); - connect(hexDis.port_b1, sinWat.ports[2]) annotation (Line(points={{-10,72},{ - 40,72},{40,20},{60,20},{60,18}}, color={0,127,255})); + {160,-64},{142,-64}}, color={0,0,127})); + connect(souWat.ports[1], hexDis.port_a1) annotation (Line(points={{-160,80},{-40, + 80},{-40,72},{-30,72}}, color={0,127,255})); + connect(hexDis.port_b1, sinWat.ports[2]) annotation (Line(points={{-10,72},{20, + 72},{20,20},{30,20}}, color={0,127,255})); connect(X_w2.y[1], souAir2.Xi_in[1]) annotation (Line(points={{169,-80},{160,-80}, {160,36},{142,36}}, color={0,0,127})); connect(souAir2.ports[1], hexDis.port_a2) annotation (Line(points={{120,40},{ - 50,40},{50,60},{-10,60}}, color={0,127,255})); - connect(hexWetNTU.port_b2, TDryBulOut.port_a) annotation (Line(points={{-30,0}, - {-50,0}}, color={0,127,255})); - connect(hexWetNTU.port_a2, RelHumIn.port_b) annotation (Line(points={{-10,0}, - {0,0},{0,-80},{20,-80}},color={0,127,255})); + 0,40},{0,60},{-10,60}}, color={0,127,255})); + connect(hexWetNTU.port_b2, TDryBulOut.port_a) annotation (Line(points={{-30,8}, + {-40,8},{-40,0},{-50,0}}, color={0,127,255})); + connect(hexWetNTU.port_a2, RelHumIn.port_b) annotation (Line(points={{-10,8}, + {10,8},{10,-60},{20,-60}}, + color={0,127,255})); connect(hexDis.port_b2, TDryBulOut1.port_a) annotation (Line(points={{-30,60},{-50,60}}, color={0,127,255})); - connect(senMasFraOut1.port_b, sinAir.ports[2]) annotation (Line(points={{-130, - 60},{-140,60},{-140,52},{-160,52},{-160,48}}, color={0,127,255})); + connect(senMasFraOut1.port_b, sinAir.ports[2]) annotation (Line(points={{-130,60}, + {-150,60},{-150,-62},{-160,-62}}, color={0,127,255})); connect(TDryBulOut.port_b, RelHumOut_eps.port_a) annotation (Line(points={{ -70,0},{-76,0},{-76,0},{-80,0}}, color={0,127,255})); connect(RelHumOut_eps.port_b, senMasFraOut.port_a) @@ -190,6 +228,16 @@ equation annotation (Line(points={{-70,60},{-80,60}}, color={0,127,255})); connect(RelHumOut_dis.port_b, senMasFraOut1.port_a) annotation (Line(points={{-100,60},{-110,60}}, color={0,127,255})); + connect(hexWetNTU_TX.port_b1, sinWat.ports[3]) annotation (Line(points={{-10,-28}, + {20,-28},{20,17.3333},{30,17.3333}}, color={0,127,255})); + connect(X_w2.y[1], souAir1.Xi_in[1]) annotation (Line(points={{169,-80},{160,-80}, + {160,-104},{142,-104}}, color={0,0,127})); + connect(souAir1.ports[1], hexWetNTU_TX.port_a2) annotation (Line(points={{120, + -100},{0,-100},{0,-40},{-10,-40}}, color={0,127,255})); + connect(sinAir.ports[3], hexWetNTU_TX.port_b2) annotation (Line(points={{-160, + -64.6667},{-130,-64.6667},{-130,-40},{-30,-40}}, color={0,127,255})); + connect(souWat2.ports[1], hexWetNTU_TX.port_a1) annotation (Line(points={{-160, + -20},{-40,-20},{-40,-28},{-30,-28}}, color={0,127,255})); annotation (Diagram(coordinateSystem(preserveAspectRatio=true, extent={{-200,-120},{200,120}})), experiment( diff --git a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_WithRated.mo b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_WithRated.mo deleted file mode 100644 index 99592257f4e..00000000000 --- a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU_WithRated.mo +++ /dev/null @@ -1,263 +0,0 @@ -within Buildings.Fluid.HeatExchangers.Validation; -model WetCoilEffectivenessNTU_WithRated - "Model that validates the wet coil effectiveness-NTU model with Rated condition" - extends Modelica.Icons.Example; - - package Medium_W = Buildings.Media.Water; - package Medium_A = Buildings.Media.Air; - - - constant Modelica.SIunits.AbsolutePressure pAtm = 101325 - "Atmospheric pressure"; - parameter Modelica.SIunits.Temperature T_a1_nominal= - Modelica.SIunits.Conversions.from_degF(42) - "Inlet water temperature"; - parameter Modelica.SIunits.Temperature T_b1_nominal= - 273.15+11.0678 - "Outlet water temperature"; - - parameter Modelica.SIunits.Temperature T_a2_nominal= - Modelica.SIunits.Conversions.from_degF(80) - "Inlet air temperature"; - - parameter Modelica.SIunits.Temperature T_b2_nominal= - 273.15+13.5805 - "Outlet air temperature"; - - parameter Real X_a2_nominal_wet(min=0,max=1) = 0.0173 - "Inlet air humidity ratio: mass of water per mass of moist air"; - - parameter Modelica.SIunits.ThermalConductance UA_nominal = 4748 - "Total thermal conductance at nominal flow, from textbook"; - parameter Modelica.SIunits.MassFlowRate m1_flow_nominal = 3.78 - "Nominal mass flow rate of water"; - parameter Modelica.SIunits.MassFlowRate m2_flow_nominal = 2.646 - "Nominal mass flow rate of air"; - parameter Types.HeatExchangerConfiguration hexCon= - Types.HeatExchangerConfiguration.CrossFlowStream1MixedStream2Unmixed - "Heat exchanger configuration"; - Buildings.Fluid.Sources.Boundary_pT sinAir( - redeclare package Medium = Medium_A, - use_p_in=false, - nPorts=2) - "Air sink" - annotation (Placement(transformation(extent={{-180,40},{-160,60}}))); - Sources.MassFlowSource_T souAir( - redeclare package Medium = Medium_A, - m_flow=m2_flow_nominal, - T=T_a2_nominal, - use_Xi_in=true, - nPorts=1) - "Air source" - annotation (Placement(transformation(extent={{140,-90},{120,-70}}))); - Buildings.Fluid.Sources.Boundary_pT sinWat( - redeclare package Medium = Medium_W, - nPorts=2) - "Sink for water" - annotation (Placement(transformation(extent={{80,10},{60,30}}))); - Modelica.Blocks.Sources.CombiTimeTable X_w2( - table=[0,0.0035383; 1,0.01765], - timeScale=100) "Water mass fraction of entering air" - annotation (Placement(transformation(extent={{190,-90},{170,-70}}))); - Sensors.RelativeHumidityTwoPort RelHumIn(redeclare package Medium = Medium_A, - m_flow_nominal=m2_flow_nominal) "Inlet relative humidity" - annotation (Placement(transformation(extent={{40,-90},{20,-70}}))); - Sensors.TemperatureTwoPort TDryBulIn(redeclare package Medium = Medium_A, - m_flow_nominal=m2_flow_nominal) "Inlet dry bulb temperature" - annotation (Placement(transformation(extent={{70,-90},{50,-70}}))); - Modelica.Blocks.Sources.RealExpression pAir(y=pAtm) "Air pressure" - annotation (Placement(transformation(extent={{140,-52},{120,-28}}))); - Buildings.Utilities.Psychrometrics.TWetBul_TDryBulXi wetBulIn(redeclare - package Medium = Medium_A) "Computation of wet bulb temperature" - annotation (Placement(transformation(extent={{120,-20},{140,0}}))); - Sensors.MassFractionTwoPort senMasFraIn(redeclare package Medium = Medium_A, - m_flow_nominal=m2_flow_nominal) "Water mass fraction of entering air" - annotation (Placement(transformation(extent={{110,-90},{90,-70}}))); - Sensors.MassFractionTwoPort senMasFraOut(redeclare package Medium = Medium_A, - m_flow_nominal=m2_flow_nominal) "Water mass fraction of leaving air" - annotation (Placement(transformation(extent={{-110,10},{-130,-10}}))); - Sensors.TemperatureTwoPort TDryBulOut(redeclare package Medium = Medium_A, - m_flow_nominal=m2_flow_nominal) "Dry bulb temperature of leaving air" - annotation (Placement(transformation(extent={{-50,10},{-70,-10}}))); - Buildings.Utilities.Psychrometrics.TWetBul_TDryBulXi wetBulOut(redeclare - package Medium = Medium_A) "Computation of wet bulb temperature" - annotation (Placement(transformation(extent={{-40,-60},{-20,-40}}))); - Modelica.Blocks.Sources.RealExpression pAir1(y=pAtm) "Air pressure" - annotation (Placement(transformation(extent={{-100,-92},{-80,-68}}))); - WetCoilEffectivenessNTUWithRated hexWetNTU( - redeclare package Medium1 = Medium_W, - redeclare package Medium2 = Medium_A, - T_a2_nominal=T_a2_nominal, - T_b2_nominal=T_b2_nominal, - X_a2_nominal= X_a2_nominal_wet, - T_a1_nominal=T_a1_nominal, - T_b1_nominal=T_b1_nominal, - m1_flow_nominal=m1_flow_nominal, - m2_flow_nominal=m2_flow_nominal, - dp2_nominal=0, - dp1_nominal=0, - configuration=hexCon, - show_T=true) "Effectiveness-NTU coil model" - annotation (Placement(transformation(extent={{-28,-4},{-8,16}}))); - Sources.MassFlowSource_T souWat1( - redeclare package Medium = Medium_W, - m_flow=m1_flow_nominal, - T=T_a1_nominal, - nPorts=1) - "Source for water" - annotation (Placement(transformation(extent={{-180,10},{-160,30}}))); - WetCoilCounterFlow hexDis( - redeclare package Medium1 = Medium_W, - redeclare package Medium2 = Medium_A, - m1_flow_nominal=m1_flow_nominal, - m2_flow_nominal=m2_flow_nominal, - dp2_nominal=0, - allowFlowReversal1=true, - allowFlowReversal2=true, - dp1_nominal=0, - UA_nominal=UA_nominal, - show_T=true, - nEle=30, - energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, - tau1=0.1, - tau2=0.1, - tau_m=0.1) - "Discretized coil model" - annotation (Placement(transformation(extent={{-30,56},{-10,76}}))); - Sources.MassFlowSource_T souWat2( - redeclare package Medium = Medium_W, - m_flow=m1_flow_nominal, - T=T_a1_nominal, - nPorts=1) - "Source for water" - annotation (Placement(transformation(extent={{-180,70},{-160,90}}))); - Sources.MassFlowSource_T souAir2( - redeclare package Medium = Medium_A, - m_flow=m2_flow_nominal, - T=T_a2_nominal, - use_Xi_in=true, - nPorts=1) - "Air source" - annotation (Placement(transformation(extent={{140,30},{120,50}}))); - Sensors.MassFractionTwoPort senMasFraOut1(redeclare package Medium = Medium_A, - m_flow_nominal=m2_flow_nominal) "Water mass fraction of leaving air" - annotation (Placement(transformation(extent={{-110,50},{-130,70}}))); - Sensors.TemperatureTwoPort TDryBulOut1(redeclare package Medium = Medium_A, - m_flow_nominal=m2_flow_nominal) "Dry bulb temperature of leaving air" - annotation (Placement(transformation(extent={{-50,50},{-70,70}}))); - Sensors.RelativeHumidityTwoPort RelHumOut_eps(redeclare package Medium = - Medium_A, m_flow_nominal=m2_flow_nominal) "Outlet relative humidity" - annotation (Placement(transformation(extent={{-80,-10},{-100,10}}))); - Sensors.RelativeHumidityTwoPort RelHumOut_dis(redeclare package Medium = - Medium_A, m_flow_nominal=m2_flow_nominal) "Outlet relative humidity" - annotation (Placement(transformation(extent={{-80,50},{-100,70}}))); -equation - connect(pAir.y, wetBulIn.p) annotation (Line(points={{119,-40},{110,-40},{110, - -18},{119,-18}}, color={0,0,127})); - connect(pAir1.y, wetBulOut.p) annotation (Line(points={{-79,-80},{-60,-80},{ - -60,-58},{-41,-58}},color={0,0,127})); - connect(senMasFraOut.port_b, sinAir.ports[1]) - annotation (Line(points={{-130,0},{-140,0},{-140,48},{-160,48},{-160,52}}, - color={0,127,255})); - connect(TDryBulOut.T, wetBulOut.TDryBul) - annotation (Line(points={{-60,-11},{-60,-42},{-41,-42}}, color={0,0,127})); - connect(senMasFraOut.X, wetBulOut.Xi[1]) annotation (Line(points={{-120,-11}, - {-120,-50},{-41,-50}}, color={0,0,127})); - connect(souAir.ports[1], senMasFraIn.port_a) - annotation (Line(points={{120,-80},{110,-80}}, color={0,127,255})); - connect(senMasFraIn.port_b, TDryBulIn.port_a) - annotation (Line(points={{90,-80},{70,-80}}, color={0,127,255})); - connect(senMasFraIn.X, wetBulIn.Xi[1]) - annotation (Line(points={{100,-69},{100,-10},{119,-10}}, - color={0,0,127})); - connect(TDryBulIn.T, wetBulIn.TDryBul) - annotation (Line(points={{60,-69},{60,-2},{119,-2}}, - color={0,0,127})); - connect(TDryBulIn.port_b, RelHumIn.port_a) - annotation (Line(points={{50,-80},{40,-80}}, color={0,127,255})); - connect(souWat1.ports[1], hexWetNTU.port_a1) annotation (Line(points={{-160,20}, - {-40,20},{-40,12},{-28,12}}, color={0,127,255})); - connect(hexWetNTU.port_b1, sinWat.ports[1]) annotation (Line(points={{-8,12},{ - 40,12},{40,18},{60,18},{60,22}}, - color={0,127,255})); - connect(X_w2.y[1], souAir.Xi_in[1]) annotation (Line(points={{169,-80},{160,-80}, - {160,-84},{142,-84}}, color={0,0,127})); - connect(souWat2.ports[1], hexDis.port_a1) - annotation (Line(points={{-160,80},{-40,80},{-40,72},{-30,72}}, - color={0,127,255})); - connect(hexDis.port_b1, sinWat.ports[2]) annotation (Line(points={{-10,72},{ - 40,72},{40,20},{60,20},{60,18}}, color={0,127,255})); - connect(X_w2.y[1], souAir2.Xi_in[1]) annotation (Line(points={{169,-80},{160,-80}, - {160,36},{142,36}}, color={0,0,127})); - connect(souAir2.ports[1], hexDis.port_a2) annotation (Line(points={{120,40},{ - 50,40},{50,60},{-10,60}}, color={0,127,255})); - connect(hexWetNTU.port_b2, TDryBulOut.port_a) annotation (Line(points={{-28,0}, - {-50,0}}, color={0,127,255})); - connect(hexWetNTU.port_a2, RelHumIn.port_b) annotation (Line(points={{-8,0},{0, - 0},{0,-80},{20,-80}}, color={0,127,255})); - connect(hexDis.port_b2, TDryBulOut1.port_a) - annotation (Line(points={{-30,60},{-50,60}}, color={0,127,255})); - connect(senMasFraOut1.port_b, sinAir.ports[2]) annotation (Line(points={{-130, - 60},{-140,60},{-140,52},{-160,52},{-160,48}}, color={0,127,255})); - connect(TDryBulOut.port_b, RelHumOut_eps.port_a) annotation (Line(points={{ - -70,0},{-76,0},{-76,0},{-80,0}}, color={0,127,255})); - connect(RelHumOut_eps.port_b, senMasFraOut.port_a) - annotation (Line(points={{-100,0},{-110,0}}, color={0,127,255})); - connect(TDryBulOut1.port_b, RelHumOut_dis.port_a) - annotation (Line(points={{-70,60},{-80,60}}, color={0,127,255})); - connect(RelHumOut_dis.port_b, senMasFraOut1.port_a) - annotation (Line(points={{-100,60},{-110,60}}, color={0,127,255})); - annotation (Diagram(coordinateSystem(preserveAspectRatio=true, - extent={{-200,-120},{200,120}})), - experiment( - StopTime=100, - Tolerance=1e-06), - Documentation(info=" -

    -This model duplicates an example from Mitchell and Braun 2012, example SM-2-1 -(Mitchell and Braun 2012) to validate a single case for the - -Buildings.Fluid.HeatExchangers.WetCoilEffectivenessNTU -model. -

    -

    Validation

    -

    -The example is a steady-state analysis of a wet coil with constant air -and water inlet temperature and mass flow rate, and an increasing air inlet -humidity which triggers the transition from a fully-dry to a fully-wet regime. -The reference used for validation is the published experimental data. -A discretized wet coil model is also simulated for comparison. -

    -

    -Note that the outlet air relative humidity may slightly exceed 100% when using -the epsilon-NTU model. -

    -

    -The slight deviations we find are believed due to differences in the tolerance -of the solver algorithms employed as well as differences in media property -calculations for air and water. -

    -

    References

    -

    -Mitchell, John W., and James E. Braun. 2012. -\"Supplementary Material Chapter 2: Heat Exchangers for Cooling Applications\". -Excerpt from Principles of heating, ventilation, and air conditioning in buildings. -Hoboken, N.J.: Wiley. Available online: - -http://bcs.wiley.com/he-bcs/Books?action=index&itemId=0470624574&bcsId=7185 -

    -", revisions=" -
      -
    • -April 19, 2017, by Michael Wetter:
      -Revised model to avoid mixing textual equations and connect statements. -
    • -
    • -March 17, 2017, by Michael O'Keefe:
      -First implementation. See - -issue 622 for more information. -
    • -
    -")); -end WetCoilEffectivenessNTU_WithRated; diff --git a/Buildings/Fluid/HeatExchangers/Validation/package.order b/Buildings/Fluid/HeatExchangers/Validation/package.order index 9597d6a2dc8..821b1c52bd1 100644 --- a/Buildings/Fluid/HeatExchangers/Validation/package.order +++ b/Buildings/Fluid/HeatExchangers/Validation/package.order @@ -7,4 +7,3 @@ PrescribedOutlet_dynamic WetCoilDiscretizedInitialization WetCoilDiscretizedInitializationPerfectGases WetCoilEffectivenessNTU -WetCoilEffectivenessNTU_WithRated \ No newline at end of file diff --git a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo index 0170c016e7d..51510bbd0c0 100644 --- a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo @@ -10,12 +10,47 @@ model WetCoilEffectivenessNTU import con = Buildings.Fluid.Types.HeatExchangerConfiguration; import flo = Buildings.Fluid.Types.HeatExchangerFlowRegime; - parameter Modelica.SIunits.ThermalConductance UA_nominal(min=0) + parameter Boolean use_UA_nominal = false + "Set to true to specify UA_nominal, or to false to use nominal conditions" + annotation (Evaluate=true, + Dialog(group="Nominal thermal performance")); + + parameter Modelica.SIunits.ThermalConductance UA_nominal( + fixed=use_UA_nominal, min=0, start=1/(1/10+1/20)) "Thermal conductance at nominal flow, used to compute heat capacity" - annotation(Dialog(tab="General", group="Nominal condition")); + annotation(Dialog( + group="Nominal thermal performance", + enable=use_UA_nominal)); + + parameter Modelica.SIunits.Temperature T_a1_nominal(fixed=not use_UA_nominal) + "Water inlet temperature at a rated condition" + annotation (Dialog( + group="Nominal thermal performance", + enable=not use_UA_nominal)); + parameter Modelica.SIunits.Temperature T_b1_nominal(fixed=not use_UA_nominal) + "Water outlet temperature at a rated condition" + annotation (Dialog( + group="Nominal thermal performance", + enable=not use_UA_nominal)); + parameter Modelica.SIunits.Temperature T_a2_nominal(fixed=not use_UA_nominal) + "Air inlet temperature at a rated condition" + annotation (Dialog( + group="Nominal thermal performance", + enable=not use_UA_nominal)); + parameter Modelica.SIunits.Temperature T_b2_nominal(fixed=not use_UA_nominal) + "Air outlet temperature at a rated condition" + annotation (Dialog( + group="Nominal thermal performance", + enable=not use_UA_nominal)); + parameter Modelica.SIunits.MassFraction X_a2_nominal(fixed=not use_UA_nominal) + "Absolute humidity of inlet air at a rated condition" + annotation (Dialog( + group="Nominal thermal performance", + enable=not use_UA_nominal)); + parameter Real r_nominal=2/3 "Ratio between air-side and water-side convective heat transfer coefficient" - annotation (Dialog(group="Nominal condition")); + annotation (Dialog(group="Nominal thermal performance")); parameter Buildings.Fluid.Types.HeatExchangerConfiguration configuration= con.CounterFlow @@ -62,15 +97,28 @@ protected annotation (Dialog(tab="Heat transfer")); Real delta=1E-2 - "a parameter for normailization"; + "Parameter for normalization"; Real delta1=1E-1 - "a parameter for normailization"; + "Parameter for normalization"; Real fac1 = Buildings.Utilities.Math.Functions.smoothMin( (1/delta * m1_flow/m1_flow_nominal)^2,1,delta1); Real fac2 = Buildings.Utilities.Math.Functions.smoothMin( (1/delta * m2_flow/m2_flow_nominal)^2,1,delta1); Real Qfac = fac1*fac2; + Buildings.Fluid.HeatExchangers.BaseClasses.WetCoilUARated UAFroRated( + final use_UA_nominal=use_UA_nominal, + final UA=UA_nominal, + final r_nominal=r_nominal, + final TAirIn=T_a2_nominal, + final TAirOut=T_b2_nominal, + final wAirIn=X_a2_nominal, + final TWatIn=T_a1_nominal, + final TWatOut=T_b1_nominal, + final mAir_flow=m2_flow_nominal, + final mWat_flow=m1_flow_nominal) + "Model that computes UA_nominal"; + Buildings.Fluid.HeatExchangers.HeaterCooler_u heaCoo( redeclare final package Medium = Medium1, final dp_nominal = dp1_nominal, diff --git a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTUWithRated.mo b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTUWithRated.mo deleted file mode 100644 index 32cbcc22b11..00000000000 --- a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTUWithRated.mo +++ /dev/null @@ -1,610 +0,0 @@ -within Buildings.Fluid.HeatExchangers; -model WetCoilEffectivenessNTUWithRated - "Heat exchanger with effectiveness - NTU relation and with moisture condensation. - This model is the same as Buildings.Fluid.HeatExchangers.WetCoilEffectivenessNTU. - However, cooling coil performance data a rated condition rather than the overall heat transfer coefficient, i.e., UA_nominal, can be specified." - extends Buildings.Fluid.Interfaces.PartialFourPortInterface( - redeclare replaceable package Medium2 = Buildings.Media.Air); - extends Buildings.Fluid.Interfaces.FourPortFlowResistanceParameters( - final computeFlowResistance1=true, - final computeFlowResistance2=true); - - import con = Buildings.Fluid.Types.HeatExchangerConfiguration; - import flo = Buildings.Fluid.Types.HeatExchangerFlowRegime; - - parameter Modelica.SIunits.Temperature T_a1_nominal - " water inlet temperature at a rated condition" - annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.Temperature T_b1_nominal - " water outlet temperature at a rated condition" - annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.Temperature T_a2_nominal - " air inlet temperature at a rated condition" - annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.Temperature T_b2_nominal - " air outlet temperature at a rated condition" - annotation (Dialog(group="Nominal condition")); - parameter Modelica.SIunits.MassFraction X_a2_nominal - "absolute humidity of inlet air at a rated condition" - annotation (Dialog(group="Nominal condition")); - - Buildings.Fluid.HeatExchangers.BaseClasses.WetCoilUARated UAFroRated( - TAirIn=T_a2_nominal, - TAirOut=T_b2_nominal, - wAirIn=X_a2_nominal, - TWatIn=T_a1_nominal, - TWatOut=T_b1_nominal, - mAir_flow=m2_flow_nominal, - mWat_flow=m1_flow_nominal); - - parameter Real r_nominal=2/3 - "Ratio between air-side and water-side convective heat transfer coefficient" - annotation (Dialog(group="Nominal condition")); - parameter Boolean waterSideFlowDependent=true - "Set to false to make water-side hA independent of mass flow rate" - annotation (Dialog(tab="Heat transfer")); - parameter Boolean airSideFlowDependent=true - "Set to false to make air-side hA independent of mass flow rate" - annotation (Dialog(tab="Heat transfer")); - parameter Boolean waterSideTemperatureDependent=false - "Set to false to make water-side hA independent of temperature" - annotation (Dialog(tab="Heat transfer")); - parameter Boolean airSideTemperatureDependent=false - "Set to false to make air-side hA independent of temperature" - annotation (Dialog(tab="Heat transfer")); - parameter Buildings.Fluid.Types.HeatExchangerConfiguration configuration= - con.CounterFlow - "Heat exchanger configuration"; - // Dynamics - parameter Modelica.Fluid.Types.Dynamics energyDynamics= - Modelica.Fluid.Types.Dynamics.SteadyState - "Type of energy balance: dynamic (3 initialization options) or steady state" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); - parameter Modelica.Fluid.Types.Dynamics massDynamics=energyDynamics - "Type of mass balance: dynamic (3 initialization options) or steady state" - annotation(Evaluate=true, Dialog(tab = "Dynamics", group="Equations")); - - Modelica.SIunits.HeatFlowRate Q1_flow = -dryWetCalcs.QTot_flow - "Heat input into water stream (positive if air is cooled)"; - Modelica.SIunits.HeatFlowRate Q2_flow = dryWetCalcs.QTot_flow - "Total heat input into air stream (negative if air is cooled)"; - Modelica.SIunits.HeatFlowRate QSen2_flow = dryWetCalcs.QSen_flow - "Sensible heat input into air stream (negative if air is cooled)"; - Modelica.SIunits.HeatFlowRate QLat2_flow= - Buildings.Utilities.Psychrometrics.Constants.h_fg * mWat_flow - "Latent heat input into air (negative if air is dehumidified)"; - Real SHR( - min=0, - max=1, - unit="1") = QSen2_flow / - noEvent(if (Q2_flow > 1E-6 or Q2_flow < -1E-6) then Q2_flow else 1) - "Sensible to total heat ratio"; - Modelica.SIunits.MassFlowRate mWat_flow = dryWetCalcs.mCon_flow - "Water flow rate of condensate removed from the air stream"; - -protected - Real delta=1E-2 - "a parameter for normailization"; - Real delta1=1E-1 - "a parameter for normailization"; - Real fac1 = Buildings.Utilities.Math.Functions.smoothMin( - (1/delta * m1_flow/m1_flow_nominal)^2,1,delta1); - Real fac2 = Buildings.Utilities.Math.Functions.smoothMin( - (1/delta * m2_flow/m2_flow_nominal)^2,1,delta1); - Real Qfac = fac1*fac2; - - Buildings.Fluid.HeatExchangers.HeaterCooler_u heaCoo( - redeclare final package Medium = Medium1, - final dp_nominal = dp1_nominal, - final m_flow_nominal = m1_flow_nominal, - final energyDynamics = energyDynamics, - final massDynamics = massDynamics, - final Q_flow_nominal=-1) - "Heat exchange with water stream" - annotation (Placement(transformation(extent={{60,50},{80,70}}))); - - Buildings.Fluid.Humidifiers.Humidifier_u heaCooHum_u( - redeclare final package Medium = Medium2, - mWat_flow_nominal = 1, - dp_nominal = dp2_nominal, - m_flow_nominal = m2_flow_nominal, - energyDynamics = energyDynamics, - massDynamics = massDynamics) - "Heat and moisture exchange with air stream" - annotation (Placement(transformation(extent={{-60,-70},{-80,-50}}))); - Buildings.Fluid.HeatExchangers.BaseClasses.HADryCoil hA( - final UA_nominal = UA_nominal, - final m_flow_nominal_a = m2_flow_nominal, - final m_flow_nominal_w = m1_flow_nominal, - final waterSideTemperatureDependent = waterSideTemperatureDependent, - final waterSideFlowDependent = waterSideFlowDependent, - final airSideTemperatureDependent = airSideTemperatureDependent, - final airSideFlowDependent = airSideFlowDependent, - r_nominal = r_nominal) - "Model for convective heat transfer coefficient" - annotation (Placement(transformation(extent={{-68,-13},{-50,9}}))); - BaseClasses.WetCoilDryWetRegime dryWetCalcs( - redeclare final package Medium2 = Medium2, - final cfg=flowRegime, - final mWat_flow_nominal=m1_flow_nominal, - final mAir_flow_nominal=m2_flow_nominal, - Qfac=Qfac) - "Dry/wet calculations block" - annotation (Placement(transformation(extent={{-20,-40},{60,40}}))); - Modelica.Blocks.Sources.RealExpression cp_a1Exp( - final y = if allowFlowReversal1 - then - fra_a1 * Medium1.specificHeatCapacityCp(state_a1_inflow) - + fra_b1 * Medium1.specificHeatCapacityCp(state_b1_inflow) - else - Medium1.specificHeatCapacityCp(state_a1_inflow)) - "Expression for cp of air" - annotation (Placement(transformation(extent={{-44,18},{-30,30}}))); - Modelica.Blocks.Sources.RealExpression XWat_a2Exp( - final y = if allowFlowReversal2 - then - fra_a2 * state_a2_inflow.X[nWat] + fra_b2 * state_b2_inflow.X[nWat] - else - state_a2_inflow.X[nWat]) - "Expression for XWat" - annotation (Placement(transformation(extent={{-44,-2},{-30,10}}))); - Modelica.Blocks.Sources.RealExpression p_a2Exp( - final y = port_a2.p) - "Pressure at port a2" - annotation (Placement(transformation(extent={{-44,-10},{-30,2}}))); - Modelica.Blocks.Sources.RealExpression h_a2Exp( - final y = if allowFlowReversal2 - then - fra_a2 * Medium2.specificEnthalpy(state_a2_inflow) - + fra_b2 * Medium2.specificEnthalpy(state_b2_inflow) - else - Medium2.specificEnthalpy(state_a2_inflow)) - "Specific enthalpy at port a2" - annotation (Placement(transformation(extent={{-44,-18},{-30,-6}}))); - Modelica.Blocks.Sources.RealExpression cp_a2Exp( - final y = if allowFlowReversal2 - then - fra_a2 * Medium2.specificHeatCapacityCp(state_a2_inflow) - + fra_b2 * Medium2.specificHeatCapacityCp(state_b2_inflow) - else - Medium2.specificHeatCapacityCp(state_a2_inflow)) - "Specific heat capacity at port a2" - annotation (Placement(transformation(extent={{-44,-30},{-30,-18}}))); - Modelica.Blocks.Sources.RealExpression TIn_a1Exp( - final y = if allowFlowReversal1 - then - fra_a1 * Medium1.temperature(state_a1_inflow) - + fra_b1 * Medium1.temperature(state_b1_inflow) - else - Medium1.temperature(state_a1_inflow)) - "Temperature at port a1" - annotation (Placement(transformation(extent={{-98,16},{-84,28}}))); - Modelica.Blocks.Sources.RealExpression TIn_a2Exp( - final y = if allowFlowReversal2 - then - fra_a2 * Medium2.temperature(state_a2_inflow) - + fra_b2 * Medium2.temperature(state_b2_inflow) - else - Medium2.temperature(state_a2_inflow)) - "Temperature at port a2" - annotation (Placement(transformation(extent={{-98,-8},{-84,4}}))); - Modelica.Blocks.Sources.RealExpression m_flow_a1Exp( - final y=Buildings.Utilities.Math.Functions.regNonZeroPower( - x=port_a1.m_flow,n=1,delta=delta*m1_flow_nominal)) - "Absolute value of mass flow rate on water side" - annotation (Placement(transformation(extent={{-98,30},{-84,42}}))); - Modelica.Blocks.Sources.RealExpression m_flow_a2Exp( - final y=Buildings.Utilities.Math.Functions.regNonZeroPower( - x=port_a2.m_flow,n=1,delta=delta*m2_flow_nominal)) - "Absolute value of mass flow rate on air side" - annotation (Placement(transformation(extent={{-98,-36},{-84,-24}}))); - final parameter Integer nWat= - Buildings.Fluid.HeatExchangers.BaseClasses.determineWaterIndex( - Medium2.substanceNames) - "Index of water"; - parameter flo flowRegime_nominal(fixed=false) - "Heat exchanger flow regime at nominal flow rates"; - flo flowRegime(fixed=false, start=flowRegime_nominal) - "Heat exchanger flow regime"; - - Buildings.HeatTransfer.Sources.PrescribedHeatFlow preHea - "Prescribed heat flow" - annotation (Placement(transformation(extent={{20,-90},{0,-70}}))); - Real fra_a1(min=0, max=1) - "Fraction of incoming state taken from port a2 - (used to avoid excessive calls to regStep)"; - Real fra_b1(min=0, max=1) - "Fraction of incoming state taken from port b2 - (used to avoid excessive calls to regStep)"; - Real fra_a2(min=0, max=1) - "Fraction of incoming state taken from port a2 - (used to avoid excessive calls to regStep)"; - Real fra_b2(min=0, max=1) - "Fraction of incoming state taken from port b2 - (used to avoid excessive calls to regStep)"; - - Modelica.SIunits.ThermalConductance C1_flow = abs(m1_flow)* - ( if allowFlowReversal1 then - fra_a1 * Medium1.specificHeatCapacityCp(state_a1_inflow) + - fra_b1 * Medium1.specificHeatCapacityCp(state_b1_inflow) else - Medium1.specificHeatCapacityCp(state_a1_inflow)) - "Heat capacity flow rate medium 1"; - Modelica.SIunits.ThermalConductance C2_flow = abs(m2_flow)* - ( if allowFlowReversal2 then - fra_a2 * Medium2.specificHeatCapacityCp(state_a2_inflow) + - fra_b2 * Medium2.specificHeatCapacityCp(state_b2_inflow) else - Medium2.specificHeatCapacityCp(state_a2_inflow)) - "Heat capacity flow rate medium 2"; - parameter Modelica.SIunits.SpecificHeatCapacity cp1_nominal(fixed=false) - "Specific heat capacity of medium 1 at nominal condition"; - parameter Modelica.SIunits.SpecificHeatCapacity cp2_nominal(fixed=false) - "Specific heat capacity of medium 2 at nominal condition"; - parameter Modelica.SIunits.ThermalConductance C1_flow_nominal(fixed=false) - "Nominal capacity flow rate of Medium 1"; - parameter Modelica.SIunits.ThermalConductance C2_flow_nominal(fixed=false) - "Nominal capacity flow rate of Medium 2"; - final parameter Medium1.ThermodynamicState sta1_default = Medium1.setState_phX( - h=Medium1.h_default, - p=Medium1.p_default, - X=Medium1.X_default[1:Medium1.nXi]) "Default state for medium 1"; - final parameter Medium2.ThermodynamicState sta2_default = Medium2.setState_phX( - h=Medium2.h_default, - p=Medium2.p_default, - X=Medium2.X_default[1:Medium2.nXi]) "Default state for medium 2"; - parameter Modelica.SIunits.ThermalConductance UA_nominal(min=0, fixed= false) - "Thermal conductance at nominal flow, used to compute heat capacity"; - -initial equation - UA_nominal=UAFroRated.UA; - cp1_nominal = Medium1.specificHeatCapacityCp(sta1_default); - cp2_nominal = Medium2.specificHeatCapacityCp(sta2_default); - C1_flow_nominal = m1_flow_nominal*cp1_nominal; - C2_flow_nominal = m2_flow_nominal*cp2_nominal; - if (configuration == con.CrossFlowStream1MixedStream2Unmixed) then - flowRegime_nominal = if (C1_flow_nominal < C2_flow_nominal) - then - flo.CrossFlowCMinMixedCMaxUnmixed - else - flo.CrossFlowCMinUnmixedCMaxMixed; - elseif (configuration == con.CrossFlowStream1UnmixedStream2Mixed) then - flowRegime_nominal = if (C1_flow_nominal < C2_flow_nominal) - then - flo.CrossFlowCMinUnmixedCMaxMixed - else - flo.CrossFlowCMinMixedCMaxUnmixed; - elseif (configuration == con.ParallelFlow) then - flowRegime_nominal = flo.ParallelFlow; - elseif (configuration == con.CounterFlow) then - flowRegime_nominal = flo.CounterFlow; - elseif (configuration == con.CrossFlowUnmixed) then - flowRegime_nominal = flo.CrossFlowUnmixed; - else - // Invalid flow regime. Assign a value to flowRegime_nominal, and stop with an assert - flowRegime_nominal = flo.CrossFlowUnmixed; - assert(configuration >= con.ParallelFlow and - configuration <= con.CrossFlowStream1UnmixedStream2Mixed, - "Invalid heat exchanger configuration."); - end if; - -equation - if allowFlowReversal1 then - fra_a1 = Modelica.Fluid.Utilities.regStep( - m1_flow, - 1, - 0, - m1_flow_small); - fra_b1 = 1-fra_a1; - else - fra_a1 = 1; - fra_b1 = 0; - end if; - if allowFlowReversal2 then - fra_a2 = Modelica.Fluid.Utilities.regStep( - m2_flow, - 1, - 0, - m2_flow_small); - fra_b2 = 1-fra_a2; - else - fra_a2 = 1; - fra_b2 = 0; - end if; - // Assign the flow regime for the given heat exchanger configuration and - // mass flow rates - if (configuration == con.ParallelFlow) then - flowRegime = if (C1_flow*C2_flow >= 0) - then - flo.ParallelFlow - else - flo.CounterFlow; - elseif (configuration == con.CounterFlow) then - flowRegime = if (C1_flow*C2_flow >= 0) - then - flo.CounterFlow - else - flo.ParallelFlow; - elseif (configuration == con.CrossFlowUnmixed) then - flowRegime = flo.CrossFlowUnmixed; - elseif (configuration == con.CrossFlowStream1MixedStream2Unmixed) then - flowRegime = if (C1_flow < C2_flow) - then - flo.CrossFlowCMinMixedCMaxUnmixed - else - flo.CrossFlowCMinUnmixedCMaxMixed; - else - // have ( configuration == con.CrossFlowStream1UnmixedStream2Mixed) - flowRegime = if (C1_flow < C2_flow) - then - flo.CrossFlowCMinUnmixedCMaxMixed - else - flo.CrossFlowCMinMixedCMaxUnmixed; - end if; - - connect(heaCoo.port_b, port_b1) annotation (Line(points={{80,60},{80,60},{100,60}},color={0,127,255}, - thickness=1)); - connect(heaCooHum_u.port_b, port_b2) annotation (Line( - points={{-80,-60},{-90,-60},{-100,-60}}, - color={0,127,255}, - thickness=1)); - connect(hA.hA_1, dryWetCalcs.UAWat) annotation (Line(points={{-49.1,5.7},{-46, - 5.7},{-46,36.6667},{-22.8571,36.6667}}, color={0,0,127})); - connect(hA.hA_2, dryWetCalcs.UAAir) annotation (Line(points={{-49.1,-9.7},{ - -46,-9.7},{-46,-36},{-46,-36.6667},{-22.8571,-36.6667}}, - color={0,0,127})); - connect(cp_a1Exp.y, dryWetCalcs.cpWat) annotation (Line(points={{-29.3,24},{ - -22.8571,24},{-22.8571,23.3333}}, - color={0,0,127})); - connect(XWat_a2Exp.y, dryWetCalcs.wAirIn) annotation (Line(points={{-29.3,4}, - {-22.8571,4},{-22.8571,3.33333}}, color={0,0,127})); - connect(p_a2Exp.y, dryWetCalcs.pAir) annotation (Line(points={{-29.3,-4},{ - -22.8571,-4},{-22.8571,-3.33333}}, - color={0,0,127})); - connect(h_a2Exp.y, dryWetCalcs.hAirIn) annotation (Line(points={{-29.3,-12},{ - -22,-12},{-22,-10},{-22.8571,-10}}, - color={0,0,127})); - connect(cp_a2Exp.y, dryWetCalcs.cpAir) annotation (Line(points={{-29.3,-24},{ - -22.8571,-24},{-22.8571,-23.3333}}, - color={0,0,127})); - connect(TIn_a1Exp.y, hA.T_1) annotation (Line(points={{-83.3,22},{-80,22},{-80, - 1.3},{-68.9,1.3}}, color={0,0,127})); - connect(TIn_a1Exp.y, dryWetCalcs.TWatIn) annotation (Line(points={{-83.3,22}, - {-50,22},{-50,16.6667},{-22.8571,16.6667}}, color={0,0,127})); - connect(TIn_a2Exp.y, hA.T_2) annotation (Line(points={{-83.3,-2},{-76,-2},{-76, - -5.3},{-68.9,-5.3}}, color={0,0,127})); - connect(TIn_a2Exp.y, dryWetCalcs.TAirIn) annotation (Line(points={{-83.3,-2}, - {-76,-2},{-76,-16.6667},{-22.8571,-16.6667}}, color={0,0,127})); - connect(m_flow_a1Exp.y, hA.m1_flow) annotation (Line(points={{-83.3,36},{-76,36}, - {-76,5.7},{-68.9,5.7}}, color={0,0,127})); - connect(m_flow_a1Exp.y, dryWetCalcs.mWat_flow) annotation (Line(points={{-83.3, - 36},{-50,36},{-50,30},{-22.8571,30}}, color={0,0,127})); - connect(port_a1, heaCoo.port_a) annotation (Line( - points={{-100,60},{-20,60},{60,60}}, - color={0,127,255}, - thickness=1)); - connect(m_flow_a2Exp.y, hA.m2_flow) annotation (Line(points={{-83.3,-30},{-80, - -30},{-80,-9.7},{-68.9,-9.7}}, - color={0,0,127})); - connect(m_flow_a2Exp.y, dryWetCalcs.mAir_flow) annotation (Line(points={{-83.3, - -30},{-22.8571,-30}}, color={0,0,127})); - connect(port_a2, heaCooHum_u.port_a) annotation (Line( - points={{100,-60},{20,-60},{-60,-60}}, - color={0,127,255}, - thickness=1)); - connect(preHea.port, heaCooHum_u.heatPort) annotation (Line(points={{0,-80},{-40, - -80},{-40,-66},{-60,-66}}, color={191,0,0})); - connect(dryWetCalcs.QTot_flow, heaCoo.u) annotation (Line(points={{62.8571, - -6.66667},{80,-6.66667},{80,44},{40,44},{40,66},{58,66}}, - color={0,0,127})); - connect(dryWetCalcs.mCon_flow, heaCooHum_u.u) annotation (Line(points={{62.8571, - -33.3333},{70,-33.3333},{70,-54},{-59,-54}}, color={0,0,127})); - connect(preHea.Q_flow, dryWetCalcs.QTot_flow) annotation (Line(points={{20,-80}, - {44,-80},{80,-80},{80,-6.66667},{62.8571,-6.66667}}, - color={0,0,127})); - annotation ( - defaultComponentName="hexWetNtu", - Icon(graphics={ - Rectangle( - extent={{-70,80},{70,-80}}, - lineColor={0,0,255}, - pattern=LinePattern.None, - fillColor={95,95,95}, - fillPattern=FillPattern.Solid), - Rectangle( - extent={{36,80},{40,-80}}, - lineColor={0,0,255}, - pattern=LinePattern.None, - fillColor={0,0,0}, - fillPattern=FillPattern.Solid), - Rectangle( - extent={{-40,80},{-36,-80}}, - lineColor={0,0,255}, - pattern=LinePattern.None, - fillColor={0,0,0}, - fillPattern=FillPattern.Solid), - Rectangle( - extent={{-2,80},{2,-80}}, - lineColor={0,0,255}, - pattern=LinePattern.None, - fillColor={0,0,0}, - fillPattern=FillPattern.Solid), - Rectangle( - extent={{-100,-55},{101,-65}}, - lineColor={0,0,255}, - pattern=LinePattern.None, - fillColor={0,127,0}, - fillPattern=FillPattern.Solid), - Rectangle( - extent={{-98,65},{103,55}}, - lineColor={0,0,255}, - pattern=LinePattern.None, - fillColor={0,0,255}, - fillPattern=FillPattern.Solid), - Rectangle( - extent={{-70,80},{70,-80}}, - lineColor={0,0,255}, - pattern=LinePattern.None, - fillColor={95,95,95}, - fillPattern=FillPattern.Solid), - Rectangle( - extent={{-100,-55},{101,-65}}, - lineColor={0,0,255}, - pattern=LinePattern.None, - fillColor={0,127,0}, - fillPattern=FillPattern.Solid), - Rectangle( - extent={{-98,65},{103,55}}, - lineColor={0,0,255}, - pattern=LinePattern.None, - fillColor={0,0,255}, - fillPattern=FillPattern.Solid), - Polygon( - points={{46,-62},{44,-72},{50,-76},{58,-72},{56,-62},{50,-50},{46,-62}}, - lineColor={0,0,255}, - fillColor={0,0,255}, - fillPattern=FillPattern.Solid, - smooth=Smooth.Bezier), - Polygon( - points={{24,-52},{22,-62},{28,-66},{36,-62},{34,-52},{28,-40},{24,-52}}, - lineColor={0,0,255}, - fillColor={0,0,255}, - fillPattern=FillPattern.Solid, - smooth=Smooth.Bezier), - Polygon( - points={{0,-48},{-2,-58},{4,-62},{12,-58},{10,-48},{4,-36},{0,-48}}, - lineColor={0,0,255}, - fillColor={0,0,255}, - fillPattern=FillPattern.Solid, - smooth=Smooth.Bezier), - Polygon( - points={{-18,-64},{-20,-74},{-14,-78},{-6,-74},{-8,-64},{-14,-52},{ - -18,-64}}, - lineColor={0,0,255}, - fillColor={0,0,255}, - fillPattern=FillPattern.Solid, - smooth=Smooth.Bezier), - Polygon( - points={{-40,-50},{-42,-60},{-36,-64},{-28,-60},{-30,-50},{-36,-38},{ - -40,-50}}, - lineColor={0,0,255}, - fillColor={0,0,255}, - fillPattern=FillPattern.Solid, - smooth=Smooth.Bezier), - Polygon( - points={{-58,-62},{-60,-72},{-54,-76},{-46,-72},{-48,-62},{-54,-50},{ - -58,-62}}, - lineColor={0,0,255}, - fillColor={0,0,255}, - fillPattern=FillPattern.Solid, - smooth=Smooth.Bezier)}), - Diagram(graphics={Text( - extent={{44,84},{86,76}}, - lineColor={28,108,200}, - textString="Water Side", - textStyle={TextStyle.Italic}, - horizontalAlignment=TextAlignment.Left), - Text( - extent={{-42,-80},{0,-88}}, - lineColor={28,108,200}, - textStyle={TextStyle.Italic}, - horizontalAlignment=TextAlignment.Left, - textString="Air Side")}), - Documentation(info=" -

    -This model describes a cooling coil that is capable of simulating fully-dry, -partially-wet, and fully-wet regimes. -The model is developed for counter flow heat exchangers but is also applicable -for the cross-flow configuration, although in the latter case it is recommended -to have over four tube rows (Elmahdy and Mitalas, 1977 and Braun, 1988). -The model can also be used for a heat exchanger which acts as both heating coil -(for some period of time) and cooling coil (for the others). -However, it is not recommended to use this model for heating coil only or for -cooling coil with no water condensation for computational efficiency. -

    -

    Main equations

    -

    -The coil model consists of two-equation sets, one for the fully-dry mode and -the other for the fully-wet mode. For the fully-dry mode, the ε-NTU -approach (Elmahdy and Mitalas, 1977) is used. -For the fully-wet mode, equations from Braun (1988) and Mitchell and Braun (2012a and b), -which are essentially the extension of the ε-NTU approach to simultaneous sensible -and latent heat transfer, are utilized. -The equation sets are switched depending on the switching criteria described below -that determines the right mode based on a coil surface temperature and dew-point -temperature for the air at the inlet of the coil. -The transition regime between the two modes, which represents the partially-wet and -partially-dry coil, is approximated by employing a fuzzy modeling approach, -so-called Takagi-Sugeno fuzzy modeling (Takagi and Sugeno, 1985), which provides a -continuously differentiable model that can cover all fully-dry, partially-wet, -and fully-wet regimes. -

    -

    The switching rules are;

    -
      -
    • R1: If the coil surface temperature at the air inlet is lower than the -dew-point temperature of air at inlet, then the cooling coil surface is fully-wet. -
    • -
    • -R2: If the coil surface temperature at the air outlet is higher than the -dew-point temperature of air at inlet, then the cooling coil surface is fully-dry. -
    • -
    • -R3: If any of the conditions in R1 or R2 is not satisfied, then the cooling coil -surface is partially wet. -
    • -
    -

    -For more detailed descriptions of the fully-wet coil model and the fuzzy modeling approach, -see - -Buildings.Fluid.HeatExchangers.BaseClasses.WetCoilWetRegime. -and - -Buildings.Fluid.HeatExchangers.BaseClasses.WetCoilDryWetRegime. -

    -

    Assumptions and limitations

    -

    This model contains the following assumptions and limitations:

    -

    Medium 2 must be air due to the use of various psychrometric functions.

    -

    The model uses steady-state physics. That is, no dynamics associated -with water and coil materials are considered.

    -

    The Lewis number, which relates the mass transfer coefficient to the heat transfer -coefficient, is assumed to be 1.

    -

    The model is not suitable for a cross-flow heat exchanger of which the number -of passes is less than four.

    -

    Validation

    -

    Validation results can be found in - -Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU. -

    References

    -

    Braun, James E. 1988. -"Methodologies for the Design and Control of -Central Cooling Plants". -PhD Thesis. University of Wisconsin - Madison. -Available - -online. -

    -

    Mitchell, John W., and James E. Braun. 2012a. -Principles of heating, ventilation, and air conditioning in buildings. -Hoboken, N.J.: Wiley.

    -

    Mitchell, John W., and James E. Braun. 2012b. -"Supplementary Material Chapter 2: Heat Exchangers for Cooling Applications". -Excerpt from Principles of heating, ventilation, and air conditioning in buildings. -Hoboken, N.J.: Wiley. -Available - -online. -

    -

    Elmahdy, A.H. and Mitalas, G.P. 1977. -"A Simple Model for Cooling and Dehumidifying Coils for Use -In Calculating Energy Requirements for Buildings". -ASHRAE Transactions. Vol.83. Part 2. pp. 103-117.

    -

    Takagi, T. and Sugeno, M., 1985. -Fuzzy identification of systems and its applications to modeling and control. - IEEE transactions on systems, man, and cybernetics, (1), pp.116-132.

    -", revisions=" -
      -
    • Jan 21, 2021, by Donghun Kim:
      First implementation of the fuzzy model. See issue 622 for more information.
    • -
    -"), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffNtuMassFlowFuzzy.mos")); -end WetCoilEffectivenessNTUWithRated; diff --git a/Buildings/Fluid/HeatExchangers/package.order b/Buildings/Fluid/HeatExchangers/package.order index 2c613a0c5a9..6ecb01ef70a 100644 --- a/Buildings/Fluid/HeatExchangers/package.order +++ b/Buildings/Fluid/HeatExchangers/package.order @@ -11,7 +11,6 @@ SensibleCooler_T WetCoilCounterFlow WetCoilDiscretized WetCoilEffectivenessNTU -WetCoilEffectivenessNTUWithRated ActiveBeams CoolingTowers DXCoils From da343646022c05eaaac326ce94902ffecdedaf11 Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Wed, 17 Feb 2021 11:46:12 -0800 Subject: [PATCH 24/69] Update mos and results --- .../Validation/WetCoilEffectivenessNTU.mo | 9 +++--- .../HeatExchangers/WetCoilEffectivenessNTU.mo | 8 ++--- ...ers_Validation_WetCoilEffectivenessNTU.txt | 30 ++++++++++++------- .../Validation/WetCoilEffectivenessNTU.mos | 11 ++++++- ...ers.Validation.WetCoilEffectivenessNTU.mos | 5 +++- 5 files changed, 42 insertions(+), 21 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo index ac2c3256c68..fbdf3d048a9 100644 --- a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo @@ -8,6 +8,7 @@ model WetCoilEffectivenessNTU constant Modelica.SIunits.AbsolutePressure pAtm = 101325 "Atmospheric pressure"; + parameter Modelica.SIunits.Temperature T_a1_nominal= Modelica.SIunits.Conversions.from_degF(42) "Inlet water temperature"; @@ -15,12 +16,12 @@ model WetCoilEffectivenessNTU Modelica.SIunits.Conversions.from_degF(80) "Inlet air temperature"; parameter Modelica.SIunits.Temperature T_b1_nominal_wet= - 273.15+11.1 + 273.15+11.0678 "Outlet water temperature in fully wet conditions"; parameter Modelica.SIunits.Temperature T_b2_nominal_wet= - 273.15+13.6 + 273.15+13.5805 "Outlet air temperature in fully wet conditions"; - parameter Real X_w_nominal_wet = 0.0173 + parameter Real X_w_a2_nominal_wet = 0.0173 "Inlet water mass fraction in fully wet conditions"; parameter Modelica.SIunits.ThermalConductance UA_nominal = 4748 "Total thermal conductance at nominal flow, from textbook"; @@ -147,7 +148,7 @@ model WetCoilEffectivenessNTU redeclare package Medium2 = Medium_A, T_a2_nominal=T_a2_nominal, T_b2_nominal=T_b2_nominal_wet, - X_a2_nominal=X_w_nominal_wet, + X_w_a2_nominal=X_w_a2_nominal_wet, T_a1_nominal=T_a1_nominal, T_b1_nominal=T_b1_nominal_wet, m1_flow_nominal=m1_flow_nominal, diff --git a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo index 51510bbd0c0..ee015dfcecc 100644 --- a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo @@ -42,8 +42,8 @@ model WetCoilEffectivenessNTU annotation (Dialog( group="Nominal thermal performance", enable=not use_UA_nominal)); - parameter Modelica.SIunits.MassFraction X_a2_nominal(fixed=not use_UA_nominal) - "Absolute humidity of inlet air at a rated condition" + parameter Modelica.SIunits.MassFraction X_w_a2_nominal(fixed=not use_UA_nominal) + "Water mass fraction of inlet air at a rated condition (in kg/kg total air)" annotation (Dialog( group="Nominal thermal performance", enable=not use_UA_nominal)); @@ -83,7 +83,7 @@ model WetCoilEffectivenessNTU "Water flow rate of condensate removed from the air stream"; protected - parameter Boolean waterSideFlowDependent=true + parameter Boolean waterSideFlowDependent=true "Set to false to make water-side hA independent of mass flow rate" annotation (Dialog(tab="Heat transfer")); parameter Boolean airSideFlowDependent=true @@ -112,7 +112,7 @@ protected final r_nominal=r_nominal, final TAirIn=T_a2_nominal, final TAirOut=T_b2_nominal, - final wAirIn=X_a2_nominal, + final wAirIn=X_w_a2_nominal, final TWatIn=T_a1_nominal, final TWatOut=T_b1_nominal, final mAir_flow=m2_flow_nominal, diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt index 26862788b18..dedad9cfc5d 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt @@ -1,20 +1,28 @@ -last-generated=2021-02-12 +last-generated=2021-02-17 +statistics-initialization= +{ + "nonlinear": "1, 1", + "numerical Jacobians": "0" +} statistics-simulation= { "linear": " ", - "nonlinear": "1, 1, 120, 1, 1", - "number of continuous time states": "10", + "nonlinear": "1, 1, 120, 1, 1, 1, 1", + "number of continuous time states": "11", "numerical Jacobians": "0" } time=[0e+00, 1e+02] -hexWetNTU.Q1_flow=[4.37056796875e+04, 4.370878515625e+04, 4.3711890625e+04, 4.37149921875e+04, 4.371809765625e+04, 4.372119921875e+04, 4.37243046875e+04, 4.372740625e+04, 4.37305078125e+04, 4.3733609375e+04, 4.37367109375e+04, 4.373980859375e+04, 4.374291015625e+04, 4.374601171875e+04, 4.3749109375e+04, 4.375220703125e+04, 4.375530859375e+04, 4.375840625e+04, 4.376150390625e+04, 4.37646015625e+04, 4.376769921875e+04, 4.377079296875e+04, 4.3773890625e+04, 4.3776859375e+04, 4.3778203125e+04, 4.377459375e+04, 4.376528515625e+04, 4.37565546875e+04, 4.376233203125e+04, 4.38018359375e+04, 4.3896015625e+04, 4.406403125e+04, 4.432055078125e+04, 4.46741640625e+04, 4.512680859375e+04, 4.5674046875e+04, 4.6305875e+04, 4.70079296875e+04, 4.77628984375e+04, 4.85520390625e+04, 4.9356734375e+04, 5.01599609375e+04, 5.094753125e+04, 5.170899609375e+04, 5.243812109375e+04, 5.313291796875e+04, 5.379523046875e+04, 5.442990625e+04, 5.50436640625e+04, 5.5643734375e+04, 5.623645703125e+04, 5.682621484375e+04, 5.741518359375e+04, 5.800400390625e+04, 5.859276953125e+04, 5.918147656250001e+04, 5.977012890625001e+04, 6.035872656249999e+04, 6.094726171874999e+04, 6.153573828125e+04, 6.212415234375e+04, 6.27125078125e+04, 6.3300796875e+04, 6.38890234375e+04, 6.447718359375e+04, 6.506528125e+04, 6.56533046875e+04, 6.6241265625e+04, 6.682915625e+04, 6.74169765625e+04, 6.80047265625e+04, 6.85923984375e+04, 6.91800078125e+04, 6.976753125e+04, 7.0354984375e+04, 7.09423671875e+04, 7.15296640625e+04, 7.2116890625e+04, 7.270403125e+04, 7.329109375e+04, 7.3878078125e+04, 7.44649765625e+04, 7.50517890625e+04, 7.56385234375e+04, 7.6225171875e+04, 7.68117265625e+04, 7.7398203125e+04, 7.79845859375e+04, 7.85708828125e+04, 7.91570859375e+04, 7.9743203125e+04, 8.03292265625e+04, 8.091515625e+04, 8.15009921875e+04, 8.2086734375e+04, 8.2672375e+04, 8.32579296875e+04, 8.3843375e+04, 8.44287265625e+04, 8.50139765625e+04, 8.55991328125e+04] +hexWetNTU.Q1_flow=[4.37056796875e+04, 4.370878515625e+04, 4.3711890625e+04, 4.37149921875e+04, 4.371809765625e+04, 4.372119921875e+04, 4.37243046875e+04, 4.372740625e+04, 4.37305078125e+04, 4.3733609375e+04, 4.37367109375e+04, 4.373980859375e+04, 4.374291015625e+04, 4.374601171875e+04, 4.3749109375e+04, 4.375220703125e+04, 4.375530859375e+04, 4.375840625e+04, 4.376150390625e+04, 4.37646015625e+04, 4.376769921875e+04, 4.377079296875e+04, 4.3773890625e+04, 4.377678125e+04, 4.377695703125e+04, 4.37676953125e+04, 4.374306640625e+04, 4.37041875e+04, 4.366120703125e+04, 4.363156640625e+04, 4.363645703125e+04, 4.369702734375e+04, 4.38311796875e+04, 4.405147265625e+04, 4.436411328125e+04, 4.47688515625e+04, 4.525958203125e+04, 4.582535546875e+04, 4.64516875e+04, 4.71220390625e+04, 4.7819359375e+04, 4.852753125e+04, 4.92326953125e+04, 4.992418359375e+04, 5.059508203125e+04, 5.124236328125e+04, 5.186653515625e+04, 5.247091796875e+04, 5.3060578125e+04, 5.364103515625e+04, 5.421697265625e+04, 5.479137890625e+04, 5.536552734375e+04, 5.5939703125e+04, 5.65139296875e+04, 5.708820312500001e+04, 5.766252734375001e+04, 5.823689843749999e+04, 5.881130859374999e+04, 5.9385765625e+04, 5.996026171875e+04, 6.053480078125e+04, 6.110937109375e+04, 6.168398046875e+04, 6.2258625e+04, 6.283330078125e+04, 6.340801171875e+04, 6.398274609375e+04, 6.455751171875e+04, 6.51323046875e+04, 6.57071171875e+04, 6.62819609375e+04, 6.68568203125e+04, 6.74316953125e+04, 6.800659375e+04, 6.85815078125e+04, 6.91564375e+04, 6.97313828125e+04, 7.03063359375e+04, 7.08813046875e+04, 7.14562890625e+04, 7.20312734375e+04, 7.2606265625e+04, 7.31812578125e+04, 7.37562578125e+04, 7.43312578125e+04, 7.49062578125e+04, 7.54812578125e+04, 7.605625e+04, 7.66312421875e+04, 7.72062265625e+04, 7.77812109375e+04, 7.83561796875e+04, 7.8931140625e+04, 7.95060859375e+04, 8.00810234375e+04, 8.06559453125e+04, 8.12308515625e+04, 8.18057421875e+04, 8.2380609375e+04, 8.29554609375e+04] hexDis.Q1_flow=[4.4666953125e+04, 4.467006640625e+04, 4.467318359375e+04, 4.4676296875e+04, 4.467941015625e+04, 4.46825234375e+04, 4.468563671875e+04, 4.468875e+04, 4.469186328125e+04, 4.46949765625e+04, 4.46980859375e+04, 4.470119921875e+04, 4.470430859375e+04, 4.470741796875e+04, 4.471053125e+04, 4.4713640625e+04, 4.471675e+04, 4.471985546875e+04, 4.472296484375e+04, 4.472607421875e+04, 4.47291796875e+04, 4.477980078125e+04, 4.490005078125e+04, 4.5074625e+04, 4.52928125e+04, 4.555167578125e+04, 4.583922265625e+04, 4.615662890625e+04, 4.64976953125e+04, 4.6859421875e+04, 4.723980859375e+04, 4.763695703125e+04, 4.804902734375e+04, 4.847423046875e+04, 4.891162890625e+04, 4.936323046875e+04, 4.9824015625e+04, 5.029236328125e+04, 5.077248046875e+04, 5.12602109375e+04, 5.17531171875e+04, 5.225769921875e+04, 5.276421484375e+04, 5.32818984375e+04, 5.3800875e+04, 5.432996484375e+04, 5.48590625e+04, 5.5399140625e+04, 5.59385859375e+04, 5.6486734375e+04, 5.703676953125e+04, 5.75901015625e+04, 5.8150359375e+04, 5.87099765625e+04, 5.92767734375e+04, 5.984625781250001e+04, 6.041510156250001e+04, 6.098330468749999e+04, 6.155086718749999e+04, 6.211778515625e+04, 6.26840625e+04, 6.324969140625e+04, 6.381467578125e+04, 6.437901171875e+04, 6.494269921875e+04, 6.550573828125e+04, 6.60681328125e+04, 6.6629875e+04, 6.71909609375e+04, 6.77513984375e+04, 6.83111796875e+04, 6.88703125e+04, 6.94287890625e+04, 6.9986609375e+04, 7.0543765625e+04, 7.11002734375e+04, 7.1656125e+04, 7.22113125e+04, 7.276584375e+04, 7.33197109375e+04, 7.3872921875e+04, 7.442546875e+04, 7.49773515625e+04, 7.5528578125e+04, 7.60791328125e+04, 7.66290234375e+04, 7.717825e+04, 7.77268125e+04, 7.8274703125e+04, 7.88219296875e+04, 7.93684921875e+04, 7.9914375e+04, 8.045959375e+04, 8.10041484375e+04, 8.15480234375e+04, 8.2091234375e+04, 8.2633765625e+04, 8.31756328125e+04, 8.37168203125e+04, 8.42573359375e+04, 8.4797171875e+04] -hexWetNTU.sta_b2.T=[2.834467163085938e+02, 2.83447509765625e+02, 2.834483032226562e+02, 2.834490966796875e+02, 2.834498901367188e+02, 2.8345068359375e+02, 2.834514770507812e+02, 2.834522399902344e+02, 2.834530334472656e+02, 2.834538269042969e+02, 2.834546203613281e+02, 2.834554138183594e+02, 2.834562072753906e+02, 2.834570007324219e+02, 2.834577941894531e+02, 2.834585876464844e+02, 2.834593811035156e+02, 2.834601745605469e+02, 2.834609680175781e+02, 2.834617614746094e+02, 2.834625549316406e+02, 2.834633483886719e+02, 2.834641418457031e+02, 2.834649658203125e+02, 2.834664001464844e+02, 2.834696960449219e+02, 2.834751281738281e+02, 2.834803466796875e+02, 2.834862976074219e+02, 2.835041198730469e+02, 2.835307922363281e+02, 2.835674438476562e+02, 2.836146240234375e+02, 2.836721801757812e+02, 2.837392883300781e+02, 2.838145751953125e+02, 2.838963012695312e+02, 2.839824829101562e+02, 2.840709533691406e+02, 2.8415966796875e+02, 2.842467346191406e+02, 2.8433056640625e+02, 2.844099731445312e+02, 2.844842834472656e+02, 2.845532836914062e+02, 2.846171875e+02, 2.846765747070312e+02, 2.847322692871094e+02, 2.847853088378906e+02, 2.848366088867188e+02, 2.848869934082031e+02, 2.849369506835938e+02, 2.849867553710938e+02, 2.850364685058594e+02, 2.850860900878906e+02, 2.851356811523438e+02, 2.851851806640625e+02, 2.85234619140625e+02, 2.852839660644531e+02, 2.85333251953125e+02, 2.853824768066406e+02, 2.854316101074219e+02, 2.854806823730469e+02, 2.855296936035156e+02, 2.855786437988281e+02, 2.856275024414062e+02, 2.856763000488281e+02, 2.857250366210938e+02, 2.85773681640625e+02, 2.858222961425781e+02, 2.858708190917969e+02, 2.859192810058594e+02, 2.859676818847656e+02, 2.860159912109375e+02, 2.860642700195312e+02, 2.861124572753906e+02, 2.861605834960938e+02, 2.862086486816406e+02, 2.862566528320312e+02, 2.863045959472656e+02, 2.863524475097656e+02, 2.864002685546875e+02, 2.86447998046875e+02, 2.864956665039062e+02, 2.865433044433594e+02, 2.865908508300781e+02, 2.866383361816406e+02, 2.866857604980469e+02, 2.867331237792969e+02, 2.867804260253906e+02, 2.868276672363281e+02, 2.868748474121094e+02, 2.869219665527344e+02, 2.869690246582031e+02, 2.870160217285156e+02, 2.870629577636719e+02, 2.871098327636719e+02, 2.871566467285156e+02, 2.872034301757812e+02, 2.872501220703125e+02, 2.872967529296875e+02] +hexWetNTU.sta_b2.T=[2.834467163085938e+02, 2.83447509765625e+02, 2.834483032226562e+02, 2.834490966796875e+02, 2.834498901367188e+02, 2.8345068359375e+02, 2.834514770507812e+02, 2.834522399902344e+02, 2.834530334472656e+02, 2.834538269042969e+02, 2.834546203613281e+02, 2.834554138183594e+02, 2.834562072753906e+02, 2.834570007324219e+02, 2.834577941894531e+02, 2.834585876464844e+02, 2.834593811035156e+02, 2.834601745605469e+02, 2.834609680175781e+02, 2.834617614746094e+02, 2.834625549316406e+02, 2.834633483886719e+02, 2.834641418457031e+02, 2.834649963378906e+02, 2.834668884277344e+02, 2.834722900390625e+02, 2.834834289550781e+02, 2.834998779296875e+02, 2.835178833007812e+02, 2.835334167480469e+02, 2.835759887695312e+02, 2.836319580078125e+02, 2.837012329101562e+02, 2.837828979492188e+02, 2.83875244140625e+02, 2.839760437011719e+02, 2.840826721191406e+02, 2.841923522949219e+02, 2.843023681640625e+02, 2.844101867675781e+02, 2.845136108398438e+02, 2.846109313964844e+02, 2.847011108398438e+02, 2.847836303710938e+02, 2.848586730957031e+02, 2.849268493652344e+02, 2.849892578125e+02, 2.850472106933594e+02, 2.851020812988281e+02, 2.851550903320312e+02, 2.852071838378906e+02, 2.852589111328125e+02, 2.853104858398438e+02, 2.853619384765625e+02, 2.85413330078125e+02, 2.85464599609375e+02, 2.855157775878906e+02, 2.855668640136719e+02, 2.856178588867188e+02, 2.856687622070312e+02, 2.857195739746094e+02, 2.857702941894531e+02, 2.858208923339844e+02, 2.858714294433594e+02, 2.85921875e+02, 2.859722290039062e+02, 2.860224914550781e+02, 2.860726623535156e+02, 2.861227722167969e+02, 2.861727600097656e+02, 2.8622265625e+02, 2.862724914550781e+02, 2.863222351074219e+02, 2.863718872070312e+02, 2.864214477539062e+02, 2.86470947265625e+02, 2.865203247070312e+02, 2.865696411132812e+02, 2.866188659667969e+02, 2.866680297851562e+02, 2.867170715332031e+02, 2.867660522460938e+02, 2.868149719238281e+02, 2.8686376953125e+02, 2.869125061035156e+02, 2.86961181640625e+02, 2.87009765625e+02, 2.870582580566406e+02, 2.871066589355469e+02, 2.871549987792969e+02, 2.872032775878906e+02, 2.8725146484375e+02, 2.87299560546875e+02, 2.873475952148438e+02, 2.873955383300781e+02, 2.874434204101562e+02, 2.874912109375e+02, 2.875389404296875e+02, 2.875866088867188e+02, 2.876341857910156e+02, 2.876816711425781e+02] hexDis.sta_b2.T=[2.83086669921875e+02, 2.830874938964844e+02, 2.830883178710938e+02, 2.830891723632812e+02, 2.830899963378906e+02, 2.830908203125e+02, 2.830916442871094e+02, 2.830924682617188e+02, 2.830933227539062e+02, 2.830941467285156e+02, 2.83094970703125e+02, 2.830957946777344e+02, 2.830966491699219e+02, 2.830974731445312e+02, 2.830982971191406e+02, 2.8309912109375e+02, 2.830999450683594e+02, 2.831007995605469e+02, 2.831016235351562e+02, 2.831024475097656e+02, 2.83103271484375e+02, 2.831187133789062e+02, 2.831521911621094e+02, 2.831964721679688e+02, 2.8324755859375e+02, 2.83303466796875e+02, 2.833618774414062e+02, 2.834222717285156e+02, 2.834837036132812e+02, 2.83545654296875e+02, 2.836078491210938e+02, 2.836700134277344e+02, 2.837320251464844e+02, 2.837937316894531e+02, 2.838550720214844e+02, 2.839158325195312e+02, 2.839761657714844e+02, 2.840360717773438e+02, 2.840953063964844e+02, 2.841540222167969e+02, 2.842123413085938e+02, 2.842698364257812e+02, 2.843271179199219e+02, 2.84383544921875e+02, 2.844397583007812e+02, 2.844951171875e+02, 2.845504150390625e+02, 2.846047058105469e+02, 2.846589660644531e+02, 2.8471240234375e+02, 2.847655944824219e+02, 2.848183898925781e+02, 2.848704833984375e+02, 2.849225769042969e+02, 2.84973876953125e+02, 2.850248413085938e+02, 2.850758056640625e+02, 2.851267700195312e+02, 2.85177734375e+02, 2.852286987304688e+02, 2.852796325683594e+02, 2.853305969238281e+02, 2.853815307617188e+02, 2.854324645996094e+02, 2.854833679199219e+02, 2.855343017578125e+02, 2.85585205078125e+02, 2.856361083984375e+02, 2.8568701171875e+02, 2.857378845214844e+02, 2.857887878417969e+02, 2.858396606445312e+02, 2.858905334472656e+02, 2.859413757324219e+02, 2.859922485351562e+02, 2.860430908203125e+02, 2.860939025878906e+02, 2.861447448730469e+02, 2.86195556640625e+02, 2.862463684082031e+02, 2.862971801757812e+02, 2.863479614257812e+02, 2.863987426757812e+02, 2.864495239257812e+02, 2.865003051757812e+02, 2.865510559082031e+02, 2.86601806640625e+02, 2.866525268554688e+02, 2.867032470703125e+02, 2.867539672851562e+02, 2.868046875e+02, 2.868553771972656e+02, 2.869060668945312e+02, 2.869567260742188e+02, 2.870073852539062e+02, 2.870580444335938e+02, 2.871086730957031e+02, 2.871593017578125e+02, 2.872099304199219e+02, 2.872605285644531e+02, 2.873111267089844e+02] -RelHumOut_eps.phi=[5e-01, 4.807458817958832e-01, 4.851866662502289e-01, 4.983434081077576e-01, 5.147038102149963e-01, 5.322390198707581e-01, 5.502036809921265e-01, 5.683231353759766e-01, 5.864958763122559e-01, 6.046844720840454e-01, 6.228765249252319e-01, 6.410662531852722e-01, 6.592522263526917e-01, 6.774336099624634e-01, 6.956099271774292e-01, 7.137811779975891e-01, 7.319474220275879e-01, 7.501087188720703e-01, 7.682651281356812e-01, 7.864165306091309e-01, 8.045628070831299e-01, 8.22704017162323e-01, 8.40840220451355e-01, 8.589707016944885e-01, 8.770843744277954e-01, 8.951377868652344e-01, 9.130790233612061e-01, 9.309306740760803e-01, 9.487404823303224e-01, 9.655286073684691e-01, 9.806634187698364e-01, 9.936394095420837e-01, 1.003999948501587e+00, 1.011433005332947e+00, 1.01582407951355e+00, 1.017245292663574e+00, 1.015960574150085e+00, 1.012381672859192e+00, 1.007035732269287e+00, 1.000486373901367e+00, 9.933390021324158e-01, 9.861120581626892e-01, 9.792985916137695e-01, 9.732573628425598e-01, 9.682464003562927e-01, 9.643759727478027e-01, 9.616511464118958e-01, 9.599738717079163e-01, 9.591524004936218e-01, 9.58992600440979e-01, 9.592487812042236e-01, 9.597574472427368e-01, 9.603806138038635e-01, 9.610464572906494e-01, 9.617268443107605e-01, 9.624078869819641e-01, 9.630863070487976e-01, 9.637607336044312e-01, 9.644306898117065e-01, 9.650958776473999e-01, 9.65756356716156e-01, 9.664121270179749e-01, 9.670632481575012e-01, 9.677097201347351e-01, 9.683516621589661e-01, 9.689890146255493e-01, 9.696217179298401e-01, 9.702499508857727e-01, 9.708738327026367e-01, 9.714931845664978e-01, 9.721080660820007e-01, 9.727186560630798e-01, 9.733249545097351e-01, 9.739269018173218e-01, 9.745244979858398e-01, 9.751179814338684e-01, 9.757074117660522e-01, 9.762927293777466e-01, 9.768738746643066e-01, 9.774508476257324e-01, 9.780237078666687e-01, 9.785924553871155e-01, 9.79157030582428e-01, 9.79717493057251e-01, 9.802738428115845e-01, 9.808260798454285e-01, 9.813742637634277e-01, 9.819191694259644e-01, 9.824602007865906e-01, 9.829972982406616e-01, 9.835306406021118e-01, 9.840601086616516e-01, 9.845858216285706e-01, 9.851077198982239e-01, 9.856258630752563e-01, 9.861403107643127e-01, 9.866510629653931e-01, 9.871581196784973e-01, 9.87661600112915e-01, 9.88161563873291e-01, 9.886580109596252e-01] -RelHumOut_dis.phi=[5e-01, 4.879871308803558e-01, 4.953725337982178e-01, 5.098927021026611e-01, 5.270346999168396e-01, 5.451372861862183e-01, 5.63590407371521e-01, 5.821690559387207e-01, 6.0079026222229e-01, 6.194232702255249e-01, 6.380579471588135e-01, 6.566895842552185e-01, 6.753170490264893e-01, 6.939396262168884e-01, 7.125568985939026e-01, 7.31168806552887e-01, 7.497755289077759e-01, 7.683771252632141e-01, 7.869734764099121e-01, 8.055646419525146e-01, 8.24126124382019e-01, 8.41975212097168e-01, 8.573434352874756e-01, 8.700541853904724e-01, 8.805397152900696e-01, 8.892693519592285e-01, 8.966516256332397e-01, 9.029713273048401e-01, 9.084591865539551e-01, 9.132800698280334e-01, 9.175565242767334e-01, 9.213860034942627e-01, 9.248403906822205e-01, 9.279791116714478e-01, 9.308440685272217e-01, 9.334763288497925e-01, 9.359102845191956e-01, 9.381670355796814e-01, 9.402610659599304e-01, 9.422263503074646e-01, 9.440659284591675e-01, 9.457938671112061e-01, 9.474299550056458e-01, 9.489694833755493e-01, 9.504368305206299e-01, 9.518241882324219e-01, 9.531521201133728e-01, 9.544141292572021e-01, 9.556226134300232e-01, 9.567819833755493e-01, 9.578878879547119e-01, 9.589594006538391e-01, 9.599815011024475e-01, 9.609702229499817e-01, 9.619269371032715e-01, 9.628446698188782e-01, 9.637401700019836e-01, 9.64623749256134e-01, 9.655007719993591e-01, 9.663733243942261e-01, 9.672417044639587e-01, 9.681061506271362e-01, 9.68966543674469e-01, 9.698230028152466e-01, 9.706755876541138e-01, 9.715242385864258e-01, 9.723688960075378e-01, 9.732097387313843e-01, 9.740468263626099e-01, 9.74880039691925e-01, 9.757093787193298e-01, 9.765349626541138e-01, 9.773569107055664e-01, 9.781751036643982e-01, 9.789894819259644e-01, 9.79800283908844e-01, 9.806076288223267e-01, 9.81411337852478e-01, 9.822114706039429e-01, 9.830079674720764e-01, 9.838008880615234e-01, 9.845901727676392e-01, 9.853759407997131e-01, 9.861580729484558e-01, 9.86936628818512e-01, 9.877116084098816e-01, 9.884831309318542e-01, 9.892516732215881e-01, 9.900168180465698e-01, 9.907785654067993e-01, 9.915369749069214e-01, 9.92292046546936e-01, 9.930437803268433e-01, 9.937922358512878e-01, 9.94537353515625e-01, 9.952792525291443e-01, 9.960178732872009e-01, 9.967532753944397e-01, 9.974854588508606e-01, 9.982146620750427e-01, 9.98940646648407e-01] -hexWetNTU.dryWetCalcs.dryFra=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999998807907104e-01, 9.999626874923706e-01, 9.993447065353394e-01, 9.962406158447266e-01, 9.876253604888916e-01, 9.704166054725647e-01, 9.423255920410155e-01, 9.022666215896608e-01, 8.50419819355011e-01, 7.880649566650391e-01, 7.172929048538208e-01, 6.406838893890381e-01, 5.610149502754211e-01, 4.810258150100708e-01, 4.032467901706696e-01, 3.298781514167786e-01, 2.627072036266327e-01, 2.030545324087143e-01, 1.517457515001297e-01, 1.091101244091988e-01, 7.500828802585602e-02, 4.888887703418732e-02, 2.987034991383553e-02, 1.684082299470901e-02, 8.567113429307938e-03, 3.804834792390466e-03, 1.403011381626129e-03, 3.965569485444576e-04, 7.509823626605794e-05, 7.463286692654947e-06, 2.377598633529487e-07, 7.583455530202343e-10, 6.849351933470608e-15, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +RelHumOut_eps.phi=[5e-01, 4.807461798191071e-01, 4.851891100406647e-01, 4.983444809913635e-01, 5.147045254707336e-01, 5.322400331497192e-01, 5.502045750617981e-01, 5.683233737945557e-01, 5.864959955215454e-01, 6.046844720840454e-01, 6.228764653205872e-01, 6.410660147666931e-01, 6.592516899108887e-01, 6.774331331253052e-01, 6.956097483634949e-01, 7.137811183929443e-01, 7.319475412368774e-01, 7.501089572906494e-01, 7.682653069496155e-01, 7.864166498184204e-01, 8.045628666877747e-01, 8.22704017162323e-01, 8.40840220451355e-01, 8.589703440666199e-01, 8.770760297775269e-01, 8.950772285461426e-01, 9.128395318984985e-01, 9.302695393562317e-01, 9.474205374717714e-01, 9.64506447315216e-01, 9.801273345947266e-01, 9.931338429450989e-01, 1.003311991691589e+00, 1.01045298576355e+00, 1.014495730400085e+00, 1.015554189682007e+00, 1.013933062553406e+00, 1.010080456733704e+00, 1.004543542861938e+00, 9.97907817363739e-01, 9.907832145690918e-01, 9.836920499801636e-01, 9.771031737327576e-01, 9.713578820228577e-01, 9.666827321052551e-01, 9.631640315055847e-01, 9.607728123664856e-01, 9.593827724456787e-01, 9.58787202835083e-01, 9.587816596031189e-01, 9.591248035430908e-01, 9.59672749042511e-01, 9.60304856300354e-01, 9.609640836715698e-01, 9.616326093673706e-01, 9.622998237609863e-01, 9.629634022712708e-01, 9.636226892471313e-01, 9.642772674560547e-01, 9.64927077293396e-01, 9.655721783638e-01, 9.662125706672668e-01, 9.668482542037964e-01, 9.674792885780334e-01, 9.681057333946228e-01, 9.68727707862854e-01, 9.693450927734375e-01, 9.699578881263733e-01, 9.705660939216614e-01, 9.711701273918152e-01, 9.717698097229004e-01, 9.723649621009827e-01, 9.729557633399963e-01, 9.735422134399414e-01, 9.741246104240417e-01, 9.74702775478363e-01, 9.752766489982605e-01, 9.758462905883789e-01, 9.764119386672974e-01, 9.769737720489502e-01, 9.775314927101135e-01, 9.780851602554321e-01, 9.786348342895508e-01, 9.791805148124695e-01, 9.797221422195435e-01, 9.802597761154175e-01, 9.807933568954468e-01, 9.813230037689209e-01, 9.818486571311951e-01, 9.823707342147827e-01, 9.828893542289734e-01, 9.834041595458984e-01, 9.839152693748474e-01, 9.844226837158203e-01, 9.849264621734619e-01, 9.854265451431274e-01, 9.859229922294617e-01, 9.864158630371094e-01, 9.869050979614258e-01, 9.873908758163452e-01, 9.878718256950378e-01] +RelHumOut_dis.phi=[5e-01, 4.879873692989349e-01, 4.953745305538177e-01, 5.098935961723328e-01, 5.270352363586426e-01, 5.451381206512451e-01, 5.635911822319031e-01, 5.821692943572998e-01, 6.007903218269348e-01, 6.194232702255249e-01, 6.380579471588135e-01, 6.566894054412842e-01, 6.753166317939758e-01, 6.93939208984375e-01, 7.125567197799683e-01, 7.31168806552887e-01, 7.497756481170654e-01, 7.683773040771484e-01, 7.869736552238464e-01, 8.055647611618042e-01, 8.241481184959412e-01, 8.419843316078186e-01, 8.57346773147583e-01, 8.700552582740784e-01, 8.805401921272278e-01, 8.892697691917419e-01, 8.966498374938965e-01, 9.029695987701416e-01, 9.084571599960327e-01, 9.132761359214783e-01, 9.175557494163513e-01, 9.213864803314209e-01, 9.248408079147339e-01, 9.279789924621582e-01, 9.308441281318665e-01, 9.334756135940552e-01, 9.359105229377747e-01, 9.381664991378784e-01, 9.402607679367065e-01, 9.422258734703064e-01, 9.440646767616272e-01, 9.457932710647583e-01, 9.474298357963562e-01, 9.489693641662598e-01, 9.504354596138e-01, 9.518236517906189e-01, 9.531522989273071e-01, 9.544140696525574e-01, 9.556223750114441e-01, 9.56781804561615e-01, 9.578883647918701e-01, 9.589607715606689e-01, 9.599820375442505e-01, 9.609716534614563e-01, 9.619280695915222e-01, 9.628450274467468e-01, 9.63740348815918e-01, 9.646239876747131e-01, 9.655009508132935e-01, 9.663733243942261e-01, 9.672417044639587e-01, 9.681060910224915e-01, 9.68966543674469e-01, 9.698229432106018e-01, 9.70675528049469e-01, 9.715242385864258e-01, 9.723690152168274e-01, 9.732098579406738e-01, 9.740467667579651e-01, 9.74880039691925e-01, 9.757094979286194e-01, 9.765351414680481e-01, 9.773569703102112e-01, 9.781750440597534e-01, 9.789896011352539e-01, 9.798004031181335e-01, 9.806075096130371e-01, 9.814109206199646e-01, 9.822108745574951e-01, 9.830073714256287e-01, 9.838003516197205e-01, 9.845897555351257e-01, 9.853755831718445e-01, 9.861578941345215e-01, 9.869367480278015e-01, 9.87712025642395e-01, 9.884837865829468e-01, 9.892520308494568e-01, 9.90016758441925e-01, 9.907783269882202e-01, 9.915367364883423e-01, 9.922918081283569e-01, 9.930436015129089e-01, 9.937921166419983e-01, 9.945372939109802e-01, 9.952792525291443e-01, 9.960179924964905e-01, 9.967535138130188e-01, 9.974857568740845e-01, 9.982149004936218e-01, 9.989389777183533e-01] +hexWetNTU.dryWetCalcs.dryFra=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999998807907104e-01, 9.999593496322632e-01, 9.992995858192444e-01, 9.960250854492188e-01, 9.870083928108215e-01, 9.69098687171936e-01, 9.399927854537963e-01, 8.986451625823976e-01, 8.453195691108704e-01, 7.814058065414429e-01, 7.091134190559387e-01, 6.311355233192444e-01, 5.503464341163635e-01, 4.695620834827423e-01, 3.913650214672089e-01, 3.179813325405121e-01, 2.511966228485107e-01, 1.92301481962204e-01, 1.420646011829376e-01, 1.007353886961937e-01, 6.807831674814224e-02, 4.343842715024948e-02, 2.583320811390877e-02, 1.406233105808496e-02, 6.825658027082682e-03, 2.840936416760087e-03, 9.541775798425078e-04, 2.342051739105955e-04, 3.53551768057514e-05, 2.365619138799957e-06, 3.465353870524268e-08, 1.753730147213695e-11, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] hexDis.dryFra=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 8.999999761581421e-01, 8.333333134651184e-01, 7.666666507720947e-01, 6.99999988079071e-01, 6.666666865348816e-01, 6.333333253860474e-01, 5.666666626930237e-01, 5.333333611488342e-01, 5e-01, 4.666666686534882e-01, 4.333333373069763e-01, 4.000000059604645e-01, 3.666666746139526e-01, 3.666666746139526e-01, 3.333333432674408e-01, 3.00000011920929e-01, 2.666666805744171e-01, 2.666666805744171e-01, 2.333333343267441e-01, 2.333333343267441e-01, 2.000000029802322e-01, 1.666666716337204e-01, 1.666666716337204e-01, 1.333333402872086e-01, 1.333333402872086e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 6.666667014360428e-02, 6.666667014360428e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -hexWetNTU.SHR=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.996239542961121e-01, 9.977563619613647e-01, 9.941201210021973e-01, 9.882391095161438e-01, 9.798130989074707e-01, 9.687608480453491e-01, 9.552227258682251e-01, 9.395307898521423e-01, 9.221569299697876e-01, 9.036521315574646e-01, 8.845856189727783e-01, 8.654927611351013e-01, 8.468344807624817e-01, 8.289710283279419e-01, 8.12149703502655e-01, 7.965038418769836e-01, 7.820627093315125e-01, 7.687678337097168e-01, 7.564941644668579e-01, 7.450745701789856e-01, 7.34325647354126e-01, 7.240734696388245e-01, 7.141772508621216e-01, 7.045431137084961e-01, 6.951236128807068e-01, 6.859008073806763e-01, 6.768672466278076e-01, 6.680171489715575e-01, 6.593451499938964e-01, 6.508459448814393e-01, 6.425145268440248e-01, 6.343460083007812e-01, 6.263357996940613e-01, 6.184793710708618e-01, 6.10772430896759e-01, 6.032108068466187e-01, 5.957905650138855e-01, 5.885077118873596e-01, 5.813586711883545e-01, 5.74339747428894e-01, 5.674474835395813e-01, 5.606786608695984e-01, 5.540299415588379e-01, 5.474982261657715e-01, 5.410805344581604e-01, 5.347739458084106e-01, 5.285756587982178e-01, 5.224829316139221e-01, 5.164932012557983e-01, 5.106039047241211e-01, 5.048125386238098e-01, 4.991167783737183e-01, 4.935142993927002e-01, 4.880028963088989e-01, 4.825803935527802e-01, 4.772446751594543e-01, 4.719937741756439e-01, 4.668256938457489e-01, 4.617384970188141e-01, 4.567303955554962e-01, 4.517995715141296e-01, 4.469442963600159e-01, 4.421628415584564e-01, 4.374536275863647e-01, 4.328150451183319e-01, 4.282455444335938e-01, 4.237436056137085e-01, 4.193078279495239e-01, 4.14936751127243e-01, 4.10629004240036e-01, 4.063832759857178e-01, 4.021982550621033e-01, 3.980726599693298e-01] -hexWetNTU.dryWetCalcs.w_FW=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.121166799810294e-15, 1.221358445491205e-07, 3.733820631168783e-05, 6.552886916324496e-04, 3.759396495297551e-03, 1.237465068697929e-02, 2.9583390802145e-02, 5.767438933253301e-02, 9.7733363509178e-02, 1.495801955461502e-01, 2.119350433349609e-01, 2.827070951461792e-01, 3.593160808086395e-01, 4.389850497245789e-01, 5.189741849899292e-01, 5.967531800270081e-01, 6.701218485832214e-01, 7.372927665710449e-01, 7.969454526901245e-01, 8.482542634010315e-01, 8.908898830413818e-01, 9.249917268753052e-01, 9.511111378669739e-01, 9.70129668712616e-01, 9.831591844558716e-01, 9.914329051971436e-01, 9.961951375007629e-01, 9.985969662666321e-01, 9.996034502983093e-01, 9.99924898147583e-01, 9.999925494194031e-01, 9.999997615814209e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] -hexWetNTU.dryWetCalcs.w_FD=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999998807907104e-01, 9.999626874923706e-01, 9.993447065353394e-01, 9.962406158447266e-01, 9.876253604888916e-01, 9.704166054725647e-01, 9.423255920410155e-01, 9.022666215896608e-01, 8.50419819355011e-01, 7.880649566650391e-01, 7.172929048538208e-01, 6.406838893890381e-01, 5.610149502754211e-01, 4.810258150100708e-01, 4.032467901706696e-01, 3.298781514167786e-01, 2.627072036266327e-01, 2.030545324087143e-01, 1.517457515001297e-01, 1.091101244091988e-01, 7.500828802585602e-02, 4.888887703418732e-02, 2.987034991383553e-02, 1.684082299470901e-02, 8.567113429307938e-03, 3.804834792390466e-03, 1.403011381626129e-03, 3.965569485444576e-04, 7.509823626605794e-05, 7.463286692654947e-06, 2.377598633529487e-07, 7.583455530202343e-10, 6.849351933470608e-15, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +hexWetNTU.SHR=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.998449087142944e-01, 9.972462058067322e-01, 9.925675988197327e-01, 9.854366183280945e-01, 9.756923913955688e-01, 9.63398277759552e-01, 9.488228559494019e-01, 9.323951601982117e-01, 9.146462082862854e-01, 8.961463570594788e-01, 8.774474263191223e-01, 8.590362071990967e-01, 8.413013219833374e-01, 8.245155811309814e-01, 8.088327646255493e-01, 7.942954301834106e-01, 7.808524370193481e-01, 7.683820724487305e-01, 7.56718635559082e-01, 7.456820011138916e-01, 7.35105574131012e-01, 7.248609662055969e-01, 7.14869499206543e-01, 7.050957083702087e-01, 6.955268383026123e-01, 6.861562132835388e-01, 6.769778132438659e-01, 6.6798597574234e-01, 6.591750979423524e-01, 6.505399346351625e-01, 6.420754790306091e-01, 6.337767243385315e-01, 6.25639021396637e-01, 6.176578402519226e-01, 6.09828770160675e-01, 6.0214763879776e-01, 5.946103930473328e-01, 5.872131586074829e-01, 5.799520611763e-01, 5.728235840797424e-01, 5.658242106437683e-01, 5.589504837989807e-01, 5.521991848945618e-01, 5.455670952796936e-01, 5.390512943267822e-01, 5.326486825942993e-01, 5.263565182685852e-01, 5.201719999313354e-01, 5.140924453735352e-01, 5.08115291595459e-01, 5.022380948066711e-01, 4.964583814144135e-01, 4.907738268375397e-01, 4.851821660995483e-01, 4.796811938285828e-01, 4.742687940597534e-01, 4.689429104328156e-01, 4.637015163898468e-01, 4.585427343845367e-01, 4.534646272659302e-01, 4.484653770923615e-01, 4.435432553291321e-01, 4.386965036392212e-01, 4.339234828948975e-01, 4.292225241661072e-01, 4.24592137336731e-01, 4.200307130813599e-01, 4.155368208885193e-01, 4.111090004444122e-01, 4.067458212375641e-01, 4.024459719657898e-01, 3.982081115245819e-01] +hexWetNTU.dryWetCalcs.w_FW=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.829496831402282e-15, 1.384113659241848e-07, 4.067224654136226e-05, 7.004395592957735e-04, 3.97489033639431e-03, 1.299162954092026e-02, 3.090133145451546e-02, 6.000718846917166e-02, 1.0135480761528e-01, 1.546804457902908e-01, 2.185942083597183e-01, 2.908865511417389e-01, 3.688644766807556e-01, 4.496535956859589e-01, 5.304379463195801e-01, 6.086350083351135e-01, 6.820186376571655e-01, 7.488033771514893e-01, 8.076985478401184e-01, 8.579354286193848e-01, 8.992646336555481e-01, 9.31921660900116e-01, 9.565615653991699e-01, 9.741668105125427e-01, 9.859376549720764e-01, 9.931743144989014e-01, 9.971590638160706e-01, 9.990458488464355e-01, 9.997658133506775e-01, 9.999646544456482e-01, 9.99997615814209e-01, 9.999999403953552e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] +hexWetNTU.dryWetCalcs.w_FD=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999998807907104e-01, 9.999593496322632e-01, 9.992995858192444e-01, 9.960250854492188e-01, 9.870083928108215e-01, 9.69098687171936e-01, 9.399927854537963e-01, 8.986451625823976e-01, 8.453195691108704e-01, 7.814058065414429e-01, 7.091134190559387e-01, 6.311355233192444e-01, 5.503464341163635e-01, 4.695620834827423e-01, 3.913650214672089e-01, 3.179813325405121e-01, 2.511966228485107e-01, 1.92301481962204e-01, 1.420646011829376e-01, 1.007353886961937e-01, 6.807831674814224e-02, 4.343842715024948e-02, 2.583320811390877e-02, 1.406233105808496e-02, 6.825658027082682e-03, 2.840936416760087e-03, 9.541775798425078e-04, 2.342051739105955e-04, 3.53551768057514e-05, 2.365619138799957e-06, 3.465353870524268e-08, 1.753730147213695e-11, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +hexDis.UA_nominal=[4.748e+03, 4.748e+03] +hexWetNTU.UA_nominal=[4.748e+03, 4.748e+03] +hexWetNTU_TX.UA_nominal=[4.75475341796875e+03, 4.75475341796875e+03] diff --git a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos index ede1498652d..df6d8d68e2c 100644 --- a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos +++ b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos @@ -50,4 +50,13 @@ createPlot( autoerase=true, autoreplot=true, grid=true, - color=true); \ No newline at end of file + color=true); +createPlot( + id=3, + position={771, 947, 952, 562}, + y={"hexDis.UA_nominal", "hexWetNTU.UA_nominal", "hexWetNTU_TX.UA_nominal"}, + autoscale=true, + autoerase=true, + autoreplot=true, + grid=true, + color=true); diff --git a/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos b/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos index bb90355721d..65a1078c4f4 100644 --- a/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos +++ b/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos @@ -10,5 +10,8 @@ compareVars := "hexDis.dryFra", "hexWetNTU.SHR", "hexWetNTU.dryWetCalcs.w_FW", - "hexWetNTU.dryWetCalcs.w_FD" + "hexWetNTU.dryWetCalcs.w_FD", + "hexDis.UA_nominal", + "hexWetNTU.UA_nominal", + "hexWetNTU_TX.UA_nominal" }; From b72cc08d2f16d4d493ac24f7b1810bedaba0c908 Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Wed, 17 Feb 2021 11:54:20 -0800 Subject: [PATCH 25/69] Fix medium declaration --- .../BaseClasses/WetCoilDryWetRegime.mo | 3 --- .../BaseClasses/WetCoilUARated.mo | 8 +++++-- .../BaseClasses/WetCoilWetRegime.mo | 21 +++++++++++-------- .../HeatExchangers/WetCoilEffectivenessNTU.mo | 1 - 4 files changed, 18 insertions(+), 15 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo index d0a77859373..20a97f198d4 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo @@ -2,9 +2,6 @@ within Buildings.Fluid.HeatExchangers.BaseClasses; model WetCoilDryWetRegime "Model implementing the switching algorithm of the TK-fuzzy model for cooling coil application" input Real Qfac; - replaceable package Medium2 = Modelica.Media.Interfaces.PartialMedium - "Medium 2 in the component" - annotation (choicesAllMatching = true); parameter Modelica.SIunits.MassFlowRate mWat_flow_nominal(min=0) "Nominal mass flow rate for water" diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo index 0f686a7503f..1f2c7a4da18 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo @@ -2,8 +2,12 @@ within Buildings.Fluid.HeatExchangers.BaseClasses; model WetCoilUARated "This model calculates overall heat transfer coefficient, i.e., UA-value, from a rated condition for a cooling coil. Specify a rated condition either in fully-dry or fully-wet coil regime. Avoid that on partially-wet regime." - replaceable package MediumA=Buildings.Media.Air; - replaceable package MediumW=Buildings.Media.Water; + replaceable package MediumA=Buildings.Media.Air + constrainedby Modelica.Media.Interfaces.PartialMedium + "Air-side medium"; + replaceable package MediumW=Buildings.Media.Water + constrainedby Modelica.Media.Interfaces.PartialMedium + "Water-side medium"; parameter Boolean use_UA_nominal = false "Set to true to specify UA_nominal, or to false to use nominal conditions" diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo index 94d49682cf5..297e9eaef94 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo @@ -79,7 +79,7 @@ model WetCoilWetRegime constant Real cpWat0=4200 "Used for scaling"; parameter Real delta = 1E-3 "Small value used for smoothing"; constant Modelica.SIunits.SpecificHeatCapacity cpDum=1 - "Dummy cp to eliminate the warning message of the unit mismatch when using the eps-NTU model for the wet coil"; + "Dummy cp to eliminate the warning message of the unit mismatch when using the eps-NTU model for the wet coil"; constant Modelica.SIunits.TemperatureDifference dTWat=0.1; parameter Real tau=6*60 "Time constant for the state estimation: introduced to avoid the algebraic loop of the wet coil equations"; @@ -94,14 +94,17 @@ model WetCoilWetRegime "Effectiveness for heat exchanger (e*)"; Modelica.SIunits.MassFlowRate CStaMin - "Min of product of mass flow rates and specific heats; analogous to Cmin"; - - Modelica.SIunits.MassFlowRate CStaMin_flow_nominal= min(mAir_flow_nominal,mWat_flow_nominal*cpEff0/cpWat0) - "Analogus to CMin_flow_nominal, only for a regularization"; - Modelica.SIunits.MassFlowRate CStaMax_flow_nominal= max(mAir_flow_nominal,mWat_flow_nominal*cpEff0/cpWat0) - "Analogus to CMax_flow_nominal, only for a regularization"; - Modelica.SIunits.MassFlowRate deltaCStaMin=delta*min(mAir_flow_nominal,mWat_flow_nominal*cpEff0/cpWat0) - "Min of product of mass flow rates and specific heats, analogous to Cmin"; + "Min of product of mass flow rates and specific heats; analogous to Cmin"; + + Modelica.SIunits.MassFlowRate CStaMin_flow_nominal= min( + mAir_flow_nominal,mWat_flow_nominal*cpEff0/cpWat0) + "Analogus to CMin_flow_nominal, only for a regularization"; + Modelica.SIunits.MassFlowRate CStaMax_flow_nominal= max( + mAir_flow_nominal,mWat_flow_nominal*cpEff0/cpWat0) + "Analogus to CMax_flow_nominal, only for a regularization"; + Modelica.SIunits.MassFlowRate deltaCStaMin=delta*min( + mAir_flow_nominal,mWat_flow_nominal*cpEff0/cpWat0) + "Min of product of mass flow rates and specific heats, analogous to Cmin"; Modelica.SIunits.Temperature TWatOutEst "State_estimation of Temperature of water at outlet"; diff --git a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo index ee015dfcecc..09f7e703355 100644 --- a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo @@ -150,7 +150,6 @@ protected "Model for convective heat transfer coefficient" annotation (Placement(transformation(extent={{-68,-13},{-50,9}}))); BaseClasses.WetCoilDryWetRegime dryWetCalcs( - redeclare final package Medium2 = Medium2, final cfg=flowRegime, final mWat_flow_nominal=m1_flow_nominal, final mAir_flow_nominal=m2_flow_nominal, From 6beb8cd8e7a368b685a83cb1934bb43938a992d0 Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Wed, 17 Feb 2021 12:13:57 -0800 Subject: [PATCH 26/69] Fixe package order --- Buildings/Fluid/HeatExchangers/BaseClasses/package.order | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/package.order b/Buildings/Fluid/HeatExchangers/BaseClasses/package.order index 5afec83242e..aced07a5558 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/package.order +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/package.order @@ -22,8 +22,8 @@ PipeManifoldNoResistance RayleighNumber WetCoilDryRegime WetCoilDryWetRegime -WetCoilWetRegime WetCoilUARated +WetCoilWetRegime determineWaterIndex dynamicViscosityWater epsilon_C From 192fb5405bbb33b39eb4cd30cd49508a74c21c73 Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Wed, 17 Feb 2021 12:53:42 -0800 Subject: [PATCH 27/69] Update results (in progress) --- ...olingCoilHumidifyingHeating_ClosedLoop.txt | 16 +++--- ...CoolingCoilHumidifyingHeating_OpenLoop.txt | 18 +++---- ...es_IntegratedPrimaryLoadSideEconomizer.txt | 24 ++++----- ...s_IntegratedPrimarySecondaryEconomizer.txt | 24 ++++----- ...onIntegratedPrimarySecondaryEconomizer.txt | 22 ++++---- ...gs_Examples_DualFanDualDuct_ClosedLoop.txt | 54 +++++++++---------- ..._BuildingVAV_Examples_OneFloor_OneZone.txt | 14 ++--- ..._BuildingVAV_Examples_TwoFloor_TwoZone.txt | 10 ++-- ...Examples_Tutorial_SpaceCooling_System3.txt | 10 ++-- ..._Examples_SmallOffice_ASHRAE2006Spring.txt | 30 +++++------ ..._Examples_SmallOffice_ASHRAE2006Summer.txt | 36 ++++++------- ...Examples_SmallOffice_Guideline36Spring.txt | 42 +++++++-------- ...Examples_SmallOffice_Guideline36Summer.txt | 38 ++++++------- 13 files changed, 169 insertions(+), 169 deletions(-) diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Applications_DataCenters_ChillerCooled_Equipment_Validation_CoolingCoilHumidifyingHeating_ClosedLoop.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Applications_DataCenters_ChillerCooled_Equipment_Validation_CoolingCoilHumidifyingHeating_ClosedLoop.txt index 587b9e496c2..78bb57ccfc3 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Applications_DataCenters_ChillerCooled_Equipment_Validation_CoolingCoilHumidifyingHeating_ClosedLoop.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Applications_DataCenters_ChillerCooled_Equipment_Validation_CoolingCoilHumidifyingHeating_ClosedLoop.txt @@ -1,4 +1,4 @@ -last-generated=2019-08-15 +last-generated=2021-02-17 statistics-initialization= { "nonlinear": "1, 1", @@ -11,17 +11,17 @@ statistics-simulation= "number of continuous time states": "28", "numerical Jacobians": "0" } -ahu.port_a1.m_flow=[1.183920001983643e+01, 2.45395302772522e+00, 3.270102739334106e+00, 3.502070903778076e+00, 3.664077520370483e+00, 3.779908418655396e+00, 3.865586280822754e+00, 3.928892135620117e+00, 3.978431224822998e+00, 4.018772602081299e+00, 4.049014091491699e+00, 4.064453125e+00, 4.071325302124023e+00, 4.085511207580566e+00, 4.092696666717529e+00, 4.096453666687012e+00, 4.097211837768555e+00, 4.096768856048584e+00, 4.098428249359131e+00, 4.110293865203857e+00, 4.10612678527832e+00, 4.107063293457031e+00, 4.108212947845459e+00, 4.110469341278076e+00, 4.114210605621338e+00, 4.116304397583008e+00, 4.106838226318359e+00, 4.110908508300781e+00, 4.110547065734863e+00, 4.110340595245361e+00, 4.10963773727417e+00, 4.108038902282715e+00, 4.104991436004639e+00, 4.107730388641357e+00, 4.112626075744629e+00, 4.108869552612305e+00, 4.1108078956604e+00, 4.110915184020996e+00, 4.111053466796875e+00, 4.111174583435059e+00, 4.112493515014648e+00, 4.113517284393311e+00, 4.106419563293457e+00, 4.111168384552002e+00, 4.111836433410645e+00, 4.108433246612549e+00, 4.110643863677979e+00, 4.111013889312744e+00, 4.109387397766113e+00, 4.109216690063477e+00, 4.108137130737305e+00, 1.593963384628296e+00, 1.593963384628296e+00, 1.593963384628296e+00, 1.593963384628296e+00, 2.708094596862793e+00, 1.609710931778081e+00, 1.593963384628416e+00, 2.632352113723755e+00, 1.593963384628296e+00, 2.972776889801025e+00, 1.593963384628296e+00, 1.732775330543518e+00, 2.419291734695435e+00, 1.593963384628296e+00, 3.044371366500854e+00, 1.593963384628296e+00, 1.917332530021667e+00, 2.257167816162253e+00, 1.593963384628339e+00, 3.066664218902588e+00, 1.593963384628296e+00, 2.085161447525024e+00, 2.108553409576416e+00, 1.593963384628296e+00, 3.051822662353516e+00, 1.593963384628296e+00, 2.264853000640869e+00, 1.969703316688538e+00, 1.593963384628296e+00, 2.999346494674683e+00, 1.593963384628336e+00, 2.446268796920934e+00, 1.835078954696655e+00, 1.593963384628296e+00, 2.914750576019287e+00, 1.593963384628296e+00, 2.6151123046875e+00, 1.713689804077148e+00, 1.593963384628296e+00, 2.804542303085327e+00, 1.593963384628296e+00, 2.766889095306396e+00, 1.602573275566101e+00, 1.593963384628296e+00, 2.6720290184021e+00, 1.593963384628296e+00, 2.896878719329834e+00, 1.593963384628296e+00, 1.625651359558105e+00, 2.528512239456177e+00] -ahu.port_a2.m_flow=[0e+00, 3.354105472564697e+00, 3.360737562179565e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00] time=[0e+00, 2.4e+03] +ahu.port_a1.m_flow=[1.183920001983643e+01, 2.454073667526245e+00, 3.270115375518799e+00, 3.500532388687134e+00, 3.661059141159058e+00, 3.778803110122681e+00, 3.866692543029785e+00, 3.932308673858643e+00, 3.980355978012085e+00, 4.01564884185791e+00, 4.041469097137451e+00, 4.060299873352051e+00, 4.074031352996826e+00, 4.084004402160645e+00, 4.091239452362061e+00, 4.096481800079346e+00, 4.100279331207275e+00, 4.103030204772949e+00, 4.105020999908447e+00, 4.106462478637695e+00, 4.107505798339844e+00, 4.108260154724121e+00, 4.10880708694458e+00, 4.109201908111572e+00, 4.109489440917969e+00, 4.109695911407471e+00, 4.109844207763672e+00, 4.109953880310059e+00, 4.110028743743896e+00, 4.110088348388672e+00, 4.110127449035645e+00, 4.110154151916504e+00, 4.110180377960205e+00, 4.11019229888916e+00, 4.110208034515381e+00, 4.110213279724121e+00, 4.110213756561279e+00, 4.110227584838867e+00, 4.11022424697876e+00, 4.110233783721924e+00, 4.110227108001709e+00, 4.11023473739624e+00, 4.110226631164551e+00, 4.110237598419189e+00, 4.110228061676025e+00, 4.110238552093506e+00, 4.1102294921875e+00, 4.110239028930664e+00, 4.110249996185303e+00, 4.110240459442139e+00, 4.110236167907715e+00, 1.593963384628296e+00, 1.593963384628296e+00, 1.593963384628296e+00, 1.593963384628296e+00, 2.703267335891724e+00, 1.621392488479741e+00, 1.593963384628413e+00, 2.645730257034302e+00, 1.593963384628296e+00, 2.967486143112183e+00, 1.593963384628296e+00, 1.726184487342834e+00, 2.425929307937622e+00, 1.593963384628296e+00, 3.036746978759766e+00, 1.593963384628296e+00, 1.889612555503845e+00, 2.277840614318991e+00, 1.593963384628296e+00, 3.063698291778564e+00, 1.593963384628296e+00, 2.043519496917725e+00, 2.150122165679932e+00, 1.593963384628296e+00, 3.059783220291138e+00, 1.593963384628296e+00, 2.193204164505005e+00, 2.029531002044678e+00, 1.593963384628296e+00, 3.029329299926758e+00, 1.593963384628339e+00, 2.346110582351846e+00, 1.913248419761658e+00, 1.593963384628296e+00, 2.974534749984741e+00, 1.593963384628296e+00, 2.493464708328247e+00, 1.8052738904953e+00, 1.593963384628296e+00, 2.89661979675293e+00, 1.593963384628296e+00, 2.635117769241333e+00, 1.703242897987366e+00, 1.593963384628296e+00, 2.802122831344604e+00, 1.593963384628296e+00, 2.76152229309082e+00, 1.610149264335632e+00, 1.593963384628296e+00, 2.691373825073242e+00] +ahu.port_a2.m_flow=[0e+00, 3.354105472564697e+00, 3.360737562179565e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00, 3.360750675201416e+00] temSenWat1.T=[2.931499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.861499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02, 2.801499938964844e+02] -temSenWat2.T=[2.931499938964844e+02, 2.88481201171875e+02, 2.883538208007812e+02, 2.882237243652344e+02, 2.881424865722656e+02, 2.880857543945312e+02, 2.880453491210938e+02, 2.880164794921875e+02, 2.879958801269531e+02, 2.879811706542969e+02, 2.879705200195312e+02, 2.87962646484375e+02, 2.879569396972656e+02, 2.879530334472656e+02, 2.879501037597656e+02, 2.879479370117188e+02, 2.879463195800781e+02, 2.879451599121094e+02, 2.879443969726562e+02, 2.87944091796875e+02, 2.879435119628906e+02, 2.879432373046875e+02, 2.879430541992188e+02, 2.879429626464844e+02, 2.879429321289062e+02, 2.8794287109375e+02, 2.879425048828125e+02, 2.87942626953125e+02, 2.879425659179688e+02, 2.879425048828125e+02, 2.879424743652344e+02, 2.879423828125e+02, 2.879422912597656e+02, 2.879424438476562e+02, 2.879425354003906e+02, 2.879424133300781e+02, 2.879425048828125e+02, 2.879425048828125e+02, 2.879425048828125e+02, 2.879425354003906e+02, 2.879425964355469e+02, 2.879425354003906e+02, 2.879423522949219e+02, 2.879425048828125e+02, 2.879425048828125e+02, 2.879424133300781e+02, 2.879424743652344e+02, 2.879424743652344e+02, 2.879424438476562e+02, 2.879424438476562e+02, 2.879424133300781e+02, 2.872652282714844e+02, 2.861245422363281e+02, 2.857229614257812e+02, 2.85091064453125e+02, 2.848506774902344e+02, 2.848356018066406e+02, 2.848394165039062e+02, 2.848715209960938e+02, 2.848418273925781e+02, 2.848798828125e+02, 2.848537292480469e+02, 2.848570251464844e+02, 2.848768005371094e+02, 2.848486328125e+02, 2.848869934082031e+02, 2.848547668457031e+02, 2.848622436523438e+02, 2.848747863769531e+02, 2.848501892089844e+02, 2.848893127441406e+02, 2.848538818359375e+02, 2.84865478515625e+02, 2.848715515136719e+02, 2.848510131835938e+02, 2.848900451660156e+02, 2.848527221679688e+02, 2.848688354492188e+02, 2.848685607910156e+02, 2.848518676757812e+02, 2.848897399902344e+02, 2.848516540527344e+02, 2.848724670410156e+02, 2.848656005859375e+02, 2.848530883789062e+02, 2.848885498046875e+02, 2.848508605957031e+02, 2.848761291503906e+02, 2.84863037109375e+02, 2.848544616699219e+02, 2.848865661621094e+02, 2.848503112792969e+02, 2.848796997070312e+02, 2.848607482910156e+02, 2.848561096191406e+02, 2.848838806152344e+02, 2.848499450683594e+02, 2.848831481933594e+02, 2.848586730957031e+02, 2.848580932617188e+02, 2.848808898925781e+02] -temSenAir2.T=[2.931499938964844e+02, 2.897738342285156e+02, 2.896769409179688e+02, 2.8953173828125e+02, 2.89425537109375e+02, 2.89348388671875e+02, 2.892928161621094e+02, 2.892528076171875e+02, 2.892243347167969e+02, 2.89204345703125e+02, 2.891899719238281e+02, 2.891787109375e+02, 2.891700134277344e+02, 2.891649475097656e+02, 2.891608581542969e+02, 2.8915771484375e+02, 2.891551818847656e+02, 2.891531982421875e+02, 2.891520690917969e+02, 2.891526184082031e+02, 2.891513366699219e+02, 2.891509399414062e+02, 2.891507263183594e+02, 2.891507568359375e+02, 2.891510620117188e+02, 2.891511840820312e+02, 2.891498107910156e+02, 2.891502990722656e+02, 2.891501770019531e+02, 2.891501159667969e+02, 2.891499938964844e+02, 2.891497497558594e+02, 2.891493225097656e+02, 2.891497192382812e+02, 2.891503295898438e+02, 2.891498413085938e+02, 2.891500854492188e+02, 2.891501159667969e+02, 2.891501159667969e+02, 2.89150146484375e+02, 2.891503295898438e+02, 2.891504211425781e+02, 2.891495056152344e+02, 2.89150146484375e+02, 2.891502075195312e+02, 2.891497497558594e+02, 2.891500549316406e+02, 2.891501159667969e+02, 2.891498718261719e+02, 2.891498718261719e+02, 2.891497192382812e+02, 2.884757690429688e+02, 2.878008728027344e+02, 2.876034851074219e+02, 2.886335144042969e+02, 2.892361145019531e+02, 2.889913024902344e+02, 2.889588928222657e+02, 2.892673645019531e+02, 2.888095397949219e+02, 2.893357238769531e+02, 2.889656677246094e+02, 2.890570068359375e+02, 2.892397155761719e+02, 2.888263549804688e+02, 2.893568115234375e+02, 2.889349670410156e+02, 2.891127319335938e+02, 2.892063598632813e+02, 2.888403015136719e+02, 2.893626708984375e+02, 2.8890869140625e+02, 2.891567687988281e+02, 2.891714782714844e+02, 2.888581237792969e+02, 2.89361083984375e+02, 2.888839111328125e+02, 2.89199951171875e+02, 2.891361999511719e+02, 2.88882080078125e+02, 2.893527221679688e+02, 2.888623352050782e+02, 2.892404174804688e+02, 2.890994262695312e+02, 2.889120788574219e+02, 2.8933837890625e+02, 2.888454284667969e+02, 2.892757568359375e+02, 2.890637817382812e+02, 2.889463195800781e+02, 2.893187255859375e+02, 2.888334045410156e+02, 2.893058776855469e+02, 2.890287780761719e+02, 2.889850463867188e+02, 2.892939147949219e+02, 2.888265380859375e+02, 2.893306884765625e+02, 2.889944152832031e+02, 2.890286560058594e+02, 2.892654724121094e+02] +temSenWat2.T=[2.931499938964844e+02, 2.884812316894531e+02, 2.883538208007812e+02, 2.882236633300781e+02, 2.881423950195312e+02, 2.880857238769531e+02, 2.8804541015625e+02, 2.880166015625e+02, 2.879959106445312e+02, 2.879810485839844e+02, 2.879703369140625e+02, 2.879625854492188e+02, 2.8795703125e+02, 2.879529724121094e+02, 2.879500732421875e+02, 2.879479675292969e+02, 2.879464416503906e+02, 2.879453430175781e+02, 2.879445495605469e+02, 2.879439697265625e+02, 2.879435424804688e+02, 2.879432373046875e+02, 2.879430236816406e+02, 2.8794287109375e+02, 2.879427490234375e+02, 2.879426879882812e+02, 2.87942626953125e+02, 2.879425659179688e+02, 2.879425659179688e+02, 2.879424743652344e+02, 2.879425354003906e+02, 2.879425964355469e+02, 2.879424743652344e+02, 2.87942626953125e+02, 2.879422912597656e+02, 2.879425048828125e+02, 2.879429931640625e+02, 2.879424438476562e+02, 2.879432373046875e+02, 2.879414978027344e+02, 2.879427185058594e+02, 2.87942138671875e+02, 2.879425048828125e+02, 2.879424438476562e+02, 2.879424743652344e+02, 2.879424743652344e+02, 2.879424743652344e+02, 2.879424743652344e+02, 2.879424743652344e+02, 2.879424743652344e+02, 2.879424743652344e+02, 2.872651977539062e+02, 2.861246032714844e+02, 2.857229309082031e+02, 2.850914916992188e+02, 2.848506774902344e+02, 2.848361511230469e+02, 2.848392028808594e+02, 2.848717956542969e+02, 2.848416442871094e+02, 2.84879638671875e+02, 2.848536682128906e+02, 2.848570861816406e+02, 2.848769226074219e+02, 2.848487854003906e+02, 2.848868713378906e+02, 2.848551330566406e+02, 2.848618774414062e+02, 2.848751831054688e+02, 2.848502197265625e+02, 2.848891296386719e+02, 2.848543090820312e+02, 2.848648681640625e+02, 2.848726806640625e+02, 2.848509521484375e+02, 2.848899841308594e+02, 2.848533020019531e+02, 2.848676147460938e+02, 2.848700256347656e+02, 2.848516235351562e+02, 2.848901062011719e+02, 2.848523254394531e+02, 2.848705444335938e+02, 2.848674621582031e+02, 2.848525085449219e+02, 2.848895568847656e+02, 2.848515625e+02, 2.848735656738281e+02, 2.848651123046875e+02, 2.84853515625e+02, 2.848883361816406e+02, 2.848508911132812e+02, 2.84876708984375e+02, 2.848629455566406e+02, 2.848547668457031e+02, 2.848866577148438e+02, 2.848504333496094e+02, 2.848796997070312e+02, 2.848610229492188e+02, 2.848561706542969e+02, 2.848844299316406e+02] +temSenAir2.T=[2.931499938964844e+02, 2.897738647460938e+02, 2.896769409179688e+02, 2.895314636230469e+02, 2.894251098632812e+02, 2.893482360839844e+02, 2.892929992675781e+02, 2.892532653808594e+02, 2.892245788574219e+02, 2.892039184570312e+02, 2.8918896484375e+02, 2.891781921386719e+02, 2.891703796386719e+02, 2.891647338867188e+02, 2.8916064453125e+02, 2.8915771484375e+02, 2.891555786132812e+02, 2.891540222167969e+02, 2.891529235839844e+02, 2.89152099609375e+02, 2.891515197753906e+02, 2.891510925292969e+02, 2.891507873535156e+02, 2.891505737304688e+02, 2.891504211425781e+02, 2.891502990722656e+02, 2.891502075195312e+02, 2.89150146484375e+02, 2.891501159667969e+02, 2.891500854492188e+02, 2.891500549316406e+02, 2.891500549316406e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.884757690429688e+02, 2.878008728027344e+02, 2.876034851074219e+02, 2.886344909667969e+02, 2.892351989746094e+02, 2.889950866699219e+02, 2.889548339843751e+02, 2.892699890136719e+02, 2.888083190917969e+02, 2.893347778320312e+02, 2.889662780761719e+02, 2.890550842285156e+02, 2.892411499023438e+02, 2.888268432617188e+02, 2.893554382324219e+02, 2.889397888183594e+02, 2.891052551269531e+02, 2.892110900878907e+02, 2.88838623046875e+02, 2.893620300292969e+02, 2.889149780273438e+02, 2.891463317871094e+02, 2.891816101074219e+02, 2.888527526855469e+02, 2.893622131347656e+02, 2.888934631347656e+02, 2.891831970214844e+02, 2.891517639160156e+02, 2.88870849609375e+02, 2.893576354980469e+02, 2.888739318847657e+02, 2.892184753417969e+02, 2.891211242675781e+02, 2.888928527832031e+02, 2.893486328125e+02, 2.888575744628906e+02, 2.892505493164062e+02, 2.890909118652344e+02, 2.889189758300781e+02, 2.893352355957031e+02, 2.888440246582031e+02, 2.892798461914062e+02, 2.890606079101562e+02, 2.889490661621094e+02, 2.893183288574219e+02, 2.888342590332031e+02, 2.893048706054688e+02, 2.8903125e+02, 2.88982177734375e+02, 2.892976379394531e+02] TSet.y=[2.891499938964844e+02, 2.891499938964844e+02] x_pTphi.T=[2.991499938964844e+02, 2.991499938964844e+02] -PID.u_m=[2.931499938964844e+02, 2.897738342285156e+02, 2.896769409179688e+02, 2.8953173828125e+02, 2.89425537109375e+02, 2.89348388671875e+02, 2.892928161621094e+02, 2.892528076171875e+02, 2.892243347167969e+02, 2.89204345703125e+02, 2.891899719238281e+02, 2.891787109375e+02, 2.891700134277344e+02, 2.891649475097656e+02, 2.891608581542969e+02, 2.8915771484375e+02, 2.891551818847656e+02, 2.891531982421875e+02, 2.891520690917969e+02, 2.891526184082031e+02, 2.891513366699219e+02, 2.891509399414062e+02, 2.891507263183594e+02, 2.891507568359375e+02, 2.891510620117188e+02, 2.891511840820312e+02, 2.891498107910156e+02, 2.891502990722656e+02, 2.891501770019531e+02, 2.891501159667969e+02, 2.891499938964844e+02, 2.891497497558594e+02, 2.891493225097656e+02, 2.891497192382812e+02, 2.891503295898438e+02, 2.891498413085938e+02, 2.891500854492188e+02, 2.891501159667969e+02, 2.891501159667969e+02, 2.89150146484375e+02, 2.891503295898438e+02, 2.891504211425781e+02, 2.891495056152344e+02, 2.89150146484375e+02, 2.891502075195312e+02, 2.891497497558594e+02, 2.891500549316406e+02, 2.891501159667969e+02, 2.891498718261719e+02, 2.891498718261719e+02, 2.891497192382812e+02, 2.884757690429688e+02, 2.878008728027344e+02, 2.876034851074219e+02, 2.886335144042969e+02, 2.892361145019531e+02, 2.889913024902344e+02, 2.889588928222657e+02, 2.892673645019531e+02, 2.888095397949219e+02, 2.893357238769531e+02, 2.889656677246094e+02, 2.890570068359375e+02, 2.892397155761719e+02, 2.888263549804688e+02, 2.893568115234375e+02, 2.889349670410156e+02, 2.891127319335938e+02, 2.892063598632813e+02, 2.888403015136719e+02, 2.893626708984375e+02, 2.8890869140625e+02, 2.891567687988281e+02, 2.891714782714844e+02, 2.888581237792969e+02, 2.89361083984375e+02, 2.888839111328125e+02, 2.89199951171875e+02, 2.891361999511719e+02, 2.88882080078125e+02, 2.893527221679688e+02, 2.888623352050782e+02, 2.892404174804688e+02, 2.890994262695312e+02, 2.889120788574219e+02, 2.8933837890625e+02, 2.888454284667969e+02, 2.892757568359375e+02, 2.890637817382812e+02, 2.889463195800781e+02, 2.893187255859375e+02, 2.888334045410156e+02, 2.893058776855469e+02, 2.890287780761719e+02, 2.889850463867188e+02, 2.892939147949219e+02, 2.888265380859375e+02, 2.893306884765625e+02, 2.889944152832031e+02, 2.890286560058594e+02, 2.892654724121094e+02] PID.u_s=[2.891499938964844e+02, 2.891499938964844e+02] -PID.y=[1e+00, 5.119068026542664e-01, 5.87496817111969e-01, 6.057621836662292e-01, 6.178767085075378e-01, 6.262460350990295e-01, 6.322905421257019e-01, 6.366807222366333e-01, 6.400728821754456e-01, 6.428077816963196e-01, 6.44842267036438e-01, 6.458758115768433e-01, 6.46334707736969e-01, 6.472799181938171e-01, 6.477575898170471e-01, 6.480070948600769e-01, 6.480574011802673e-01, 6.480279564857483e-01, 6.481381058692932e-01, 6.489243507385254e-01, 6.486484408378601e-01, 6.487104892730713e-01, 6.487866044044495e-01, 6.489359736442566e-01, 6.49183452129364e-01, 6.493218541145325e-01, 6.486955881118774e-01, 6.489650011062622e-01, 6.489410996437073e-01, 6.489274501800537e-01, 6.488808989524841e-01, 6.48775041103363e-01, 6.485732197761536e-01, 6.487546563148499e-01, 6.490786671638489e-01, 6.488300561904907e-01, 6.489583849906921e-01, 6.489654779434204e-01, 6.48974597454071e-01, 6.489826440811157e-01, 6.490699052810669e-01, 6.49137556552887e-01, 6.486678123474121e-01, 6.489822268486023e-01, 6.490263938903809e-01, 6.488011479377747e-01, 6.489474773406982e-01, 6.489719748497009e-01, 6.488643288612366e-01, 6.48853063583374e-01, 6.487815976142883e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 5.377098321914673e-01, 4.025362432003207e-01, 4.000000059604822e-01, 5.302692055702209e-01, 4.000000059604645e-01, 5.622528195381165e-01, 4.000000059604645e-01, 4.215573072433472e-01, 5.081918239593506e-01, 4.000000059604645e-01, 5.685390830039978e-01, 4.000000059604645e-01, 4.477398097515106e-01, 4.901082813739925e-01, 4.000000059604709e-01, 5.704683065414429e-01, 4.000000059604645e-01, 4.695001244544983e-01, 4.723972380161285e-01, 4.000000059604645e-01, 5.691853761672974e-01, 4.000000059604645e-01, 4.909932613372803e-01, 4.547223746776581e-01, 4.000000059604645e-01, 5.646020174026489e-01, 4.000000059604704e-01, 5.110875368118443e-01, 4.363889098167419e-01, 4.000000059604645e-01, 5.570532083511353e-01, 4.000000059604645e-01, 5.285472869873047e-01, 4.186958372592926e-01, 4.000000059604645e-01, 5.469045042991638e-01, 4.000000059604645e-01, 5.433509349822998e-01, 4.013897180557251e-01, 4.000000059604645e-01, 5.341918468475342e-01, 4.000000059604645e-01, 5.554322004318237e-01, 4.000000059604645e-01, 4.050788581371307e-01, 5.197309851646423e-01] +PID.u_m=[2.931499938964844e+02, 2.897738647460938e+02, 2.896769409179688e+02, 2.895314636230469e+02, 2.894251098632812e+02, 2.893482360839844e+02, 2.892929992675781e+02, 2.892532653808594e+02, 2.892245788574219e+02, 2.892039184570312e+02, 2.8918896484375e+02, 2.891781921386719e+02, 2.891703796386719e+02, 2.891647338867188e+02, 2.8916064453125e+02, 2.8915771484375e+02, 2.891555786132812e+02, 2.891540222167969e+02, 2.891529235839844e+02, 2.89152099609375e+02, 2.891515197753906e+02, 2.891510925292969e+02, 2.891507873535156e+02, 2.891505737304688e+02, 2.891504211425781e+02, 2.891502990722656e+02, 2.891502075195312e+02, 2.89150146484375e+02, 2.891501159667969e+02, 2.891500854492188e+02, 2.891500549316406e+02, 2.891500549316406e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891500244140625e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.891499938964844e+02, 2.884757690429688e+02, 2.878008728027344e+02, 2.876034851074219e+02, 2.886344909667969e+02, 2.892351989746094e+02, 2.889950866699219e+02, 2.889548339843751e+02, 2.892699890136719e+02, 2.888083190917969e+02, 2.893347778320312e+02, 2.889662780761719e+02, 2.890550842285156e+02, 2.892411499023438e+02, 2.888268432617188e+02, 2.893554382324219e+02, 2.889397888183594e+02, 2.891052551269531e+02, 2.892110900878907e+02, 2.88838623046875e+02, 2.893620300292969e+02, 2.889149780273438e+02, 2.891463317871094e+02, 2.891816101074219e+02, 2.888527526855469e+02, 2.893622131347656e+02, 2.888934631347656e+02, 2.891831970214844e+02, 2.891517639160156e+02, 2.88870849609375e+02, 2.893576354980469e+02, 2.888739318847657e+02, 2.892184753417969e+02, 2.891211242675781e+02, 2.888928527832031e+02, 2.893486328125e+02, 2.888575744628906e+02, 2.892505493164062e+02, 2.890909118652344e+02, 2.889189758300781e+02, 2.893352355957031e+02, 2.888440246582031e+02, 2.892798461914062e+02, 2.890606079101562e+02, 2.889490661621094e+02, 2.893183288574219e+02, 2.888342590332031e+02, 2.893048706054688e+02, 2.8903125e+02, 2.88982177734375e+02, 2.892976379394531e+02] +PID.y=[1e+00, 5.119196176528931e-01, 5.874978303909302e-01, 6.05644702911377e-01, 6.176554560661316e-01, 6.261672377586365e-01, 6.323677897453308e-01, 6.369158625602722e-01, 6.402038931846619e-01, 6.425969004631042e-01, 6.44335925579071e-01, 6.455980539321899e-01, 6.465152502059937e-01, 6.471796631813049e-01, 6.476607918739319e-01, 6.480089426040649e-01, 6.482608914375305e-01, 6.484432816505432e-01, 6.485751867294312e-01, 6.486706733703613e-01, 6.48739755153656e-01, 6.487897038459778e-01, 6.488259434700012e-01, 6.488520503044128e-01, 6.48871123790741e-01, 6.488847732543945e-01, 6.488946080207825e-01, 6.489018201828003e-01, 6.489067673683167e-01, 6.489107012748718e-01, 6.489133238792419e-01, 6.489151120185852e-01, 6.489168405532837e-01, 6.489176154136658e-01, 6.489186882972717e-01, 6.489189863204956e-01, 6.489190459251404e-01, 6.48919939994812e-01, 6.489197015762329e-01, 6.489203572273254e-01, 6.48919939994812e-01, 6.489204168319702e-01, 6.489198803901672e-01, 6.489205956459045e-01, 6.489199995994568e-01, 6.489206552505493e-01, 6.489201188087463e-01, 6.489207148551941e-01, 6.489214301109314e-01, 6.489208340644836e-01, 6.489205360412598e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 4.000000059604645e-01, 5.37241518497467e-01, 4.044019281864352e-01, 4.000000059604816e-01, 5.315980911254883e-01, 4.000000059604645e-01, 5.617826581001282e-01, 4.000000059604645e-01, 4.205726385116577e-01, 5.089071393013e-01, 4.000000059604645e-01, 5.678762197494507e-01, 4.000000059604645e-01, 4.439683854579926e-01, 4.924823343753962e-01, 4.000000059604645e-01, 5.702123641967773e-01, 4.000000059604645e-01, 4.64263916015625e-01, 4.774696826934814e-01, 4.000000059604645e-01, 5.698742270469666e-01, 4.000000059604645e-01, 4.826277196407318e-01, 4.624817371368408e-01, 4.000000059604645e-01, 5.672298669815063e-01, 4.000000059604708e-01, 5.001778602600261e-01, 4.471874833106995e-01, 4.000000059604645e-01, 5.624088644981384e-01, 4.000000059604645e-01, 5.160809755325317e-01, 4.321529865264893e-01, 4.000000059604645e-01, 5.554086565971375e-01, 4.000000059604645e-01, 5.305444598197937e-01, 4.171163141727448e-01, 4.000000059604645e-01, 5.466775298118591e-01, 4.000000059604645e-01, 5.428407788276672e-01, 4.026064872741699e-01, 4.000000059604645e-01, 5.360843539237976e-01] ahu.PHea=[0e+00, 3.402902279049158e-03, 3.409602679312229e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 3.409615950658917e-03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03, 9.9999970703125e+03] -masFra.X=[9.999999776482582e-03, 1.099999900907278e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02] masFraSet.y=[1.099999994039536e-02, 1.099999994039536e-02] +masFra.X=[9.999999776482582e-03, 1.099999900907278e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02, 1.099999994039536e-02] diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Applications_DataCenters_ChillerCooled_Equipment_Validation_CoolingCoilHumidifyingHeating_OpenLoop.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Applications_DataCenters_ChillerCooled_Equipment_Validation_CoolingCoilHumidifyingHeating_OpenLoop.txt index 5f09df71ea2..65e6e90220a 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Applications_DataCenters_ChillerCooled_Equipment_Validation_CoolingCoilHumidifyingHeating_OpenLoop.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Applications_DataCenters_ChillerCooled_Equipment_Validation_CoolingCoilHumidifyingHeating_OpenLoop.txt @@ -1,4 +1,4 @@ -last-generated=2019-08-15 +last-generated=2021-02-17 statistics-initialization= { "nonlinear": "1", @@ -11,14 +11,14 @@ statistics-simulation= "number of continuous time states": "29", "numerical Jacobians": "0" } -ahu.port_a1.m_flow=[2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.827500104904175e+00, 2.755000114440918e+00, 2.682499885559082e+00, 2.609999895095825e+00, 2.537499904632568e+00, 2.464999914169312e+00, 2.392499923706055e+00, 2.319999933242798e+00, 2.247499942779541e+00, 2.174999952316284e+00, 2.102499961853027e+00, 2.029999971389771e+00, 1.957499980926514e+00, 1.884999990463257e+00, 1.8125e+00, 1.740000009536743e+00, 1.667500019073486e+00, 1.595000028610229e+00, 1.522500038146973e+00, 1.450000047683716e+00, 1.377500057220459e+00, 1.304999947547913e+00, 1.232499957084656e+00, 1.159999966621399e+00, 1.087499976158142e+00, 1.014999985694885e+00, 9.424999952316284e-01, 8.700000047683716e-01, 7.975000143051147e-01, 7.250000238418579e-01, 6.524999737739563e-01, 5.799999833106995e-01, 5.074999928474426e-01, 4.350000023841858e-01, 3.62500011920929e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01] -ahu.port_a2.m_flow=[0e+00, 3.73043417930603e+00, 4.008962631225586e+00, 4.029760360717773e+00, 4.031310558319092e+00, 4.031425952911377e+00, 4.031435012817383e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00] time=[0e+00, 1e+03] -ahu.cooCoi.Q2_flow=[0e+00, -3.26683046875e+04, -4.67847421875e+04, -5.25288359375e+04, -5.483484765625e+04, -5.5611640625e+04, -5.5875046875e+04, -5.59649921875e+04, -5.599568359375e+04, -5.600620703125e+04, -5.6009796875e+04, -5.601105078125e+04, -5.601148046875e+04, -5.601163671875e+04, -5.601169140625e+04, -5.6011703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.559184375e+04, -5.5006171875e+04, -5.4363671875e+04, -5.368884375e+04, -5.298975e+04, -5.226875e+04, -5.152616015625e+04, -5.076147265625e+04, -4.997391015625e+04, -4.9162546875e+04, -4.838526953125e+04, -4.76224453125e+04, -4.682850390625e+04, -4.600572265625e+04, -4.515346484375e+04, -4.42696796875e+04, -4.33521328125e+04, -4.239939453125e+04, -4.14121796875e+04, -4.03850859375e+04, -3.931672265625e+04, -3.8358078125e+04, -3.734801953125e+04, -3.6273609375e+04, -3.513822265625e+04, -3.393972265625e+04, -3.2674423828125e+04, -3.1422806640625e+04, -3.0270921875e+04, -2.896862109375e+04, -2.7551091796875e+04, -2.6013435546875e+04, -2.4344484375e+04, -2.252676171875e+04, -2.05372734375e+04, -1.834368359375e+04, -1.697230859375e+04, -1.63451474609375e+04, -1.60012275390625e+04, -1.5765916015625e+04, -1.55784560546875e+04, -1.5417185546875e+04, -1.52746572265625e+04, -1.514779296875e+04, -1.50348642578125e+04, -1.49345e+04, -1.48454326171875e+04, -1.47665126953125e+04, -1.46967490234375e+04, -1.4635255859375e+04, -1.45811689453125e+04, -1.453365625e+04, -1.44919775390625e+04, -1.4455478515625e+04, -1.44235673828125e+04, -1.4395708984375e+04, -1.4371416015625e+04, -1.4350251953125e+04, -1.43318310546875e+04, -1.43158134765625e+04, -1.4301900390625e+04, -1.4289826171875e+04, -1.42793544921875e+04, -1.427027734375e+04] -ahu.cooCoi.Q1_flow=[0e+00, 4.417260546875e+04, 5.55113125e+04, 5.6353453125e+04, 5.620273828125e+04, 5.60746484375e+04, 5.603133984375e+04, 5.60181015625e+04, 5.6013875e+04, 5.60124453125e+04, 5.60119609375e+04, 5.601179296875e+04, 5.6011734375e+04, 5.601171484375e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.52625546875e+04, 5.4613671875e+04, 5.394017578125e+04, 5.324675e+04, 5.253371484375e+04, 5.180025390625e+04, 5.10454375e+04, 5.02683359375e+04, 4.946798828125e+04, 4.86433671875e+04, 4.781516015625e+04, 4.70146015625e+04, 4.619616015625e+04, 4.535053125e+04, 4.44748203125e+04, 4.3567265625e+04, 4.262610546875e+04, 4.164909375e+04, 4.063328515625e+04, 3.957749609375e+04, 3.847871875e+04, 3.73921328125e+04, 3.63107578125e+04, 3.517641796875e+04, 3.398083203125e+04, 3.272028125e+04, 3.13897734375e+04, 2.9992173828125e+04, 2.86266328125e+04, 2.719037890625e+04, 2.56389296875e+04, 2.3956896484375e+04, 2.2126896484375e+04, 2.0126798828125e+04, 1.79253203125e+04, 1.54772548828125e+04, 1.58130283203125e+04, 1.5785048828125e+04, 1.5649751953125e+04, 1.549429296875e+04, 1.5344751953125e+04, 1.520856640625e+04, 1.508671875e+04, 1.49784580078125e+04, 1.48825947265625e+04, 1.47979208984375e+04, 1.4723314453125e+04, 1.46577275390625e+04, 1.46001669921875e+04, 1.45497109375e+04, 1.4505546875e+04, 1.44669580078125e+04, 1.4433287109375e+04, 1.44039404296875e+04, 1.43783896484375e+04, 1.43561630859375e+04, 1.43368486328125e+04, 1.4320080078125e+04, 1.4305533203125e+04, 1.4292921875e+04, 1.4281994140625e+04, 1.42725283203125e+04, 1.4264333984375e+04, 1.4257244140625e+04] -ahu.cooCoi.QLat2_flow=[0e+00, -2.27789013671875e+03, -6.6303662109375e+03, -9.1790244140625e+03, -1.0456392578125e+04, -1.0880048828125e+04, -1.10242607421875e+04, -1.1073486328125e+04, -1.1090275390625e+04, -1.10960234375e+04, -1.10979892578125e+04, -1.10986748046875e+04, -1.109891015625e+04, -1.10989951171875e+04, -1.10990234375e+04, -1.109903125e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.08752216796875e+04, -1.0555689453125e+04, -1.02042919921875e+04, -9.8344287109375e+03, -9.4503837890625e+03, -9.05336328125e+03, -8.6434599609375e+03, -8.2203095703125e+03, -7.7833935546875e+03, -7.3321064453125e+03, -6.93428125e+03, -6.5706103515625e+03, -6.1916923828125e+03, -5.79841748046875e+03, -5.3900703125e+03, -4.96523388671875e+03, -4.52260888671875e+03, -4.061655517578125e+03, -3.583289306640625e+03, -3.083619140625e+03, -2.562259521484375e+03, -2.214452880859375e+03, -1.88185595703125e+03, -1.528689575195312e+03, -1.155255737304688e+03, -7.603865356445312e+02, -3.425194396972656e+02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -ahu.cooCoi.QSen2_flow=[0e+00, -3.0390416015625e+04, -4.015437890625e+04, -4.33498125e+04, -4.437845703125e+04, -4.473159375e+04, -4.485078515625e+04, -4.48915078125e+04, -4.490541015625e+04, -4.491018359375e+04, -4.491180859375e+04, -4.491237890625e+04, -4.49125703125e+04, -4.491264453125e+04, -4.491266796875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.491267578125e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.471662109375e+04, -4.4450484375e+04, -4.415937890625e+04, -4.385441796875e+04, -4.35393671875e+04, -4.321538671875e+04, -4.288269921875e+04, -4.25411640625e+04, -4.2190515625e+04, -4.183044140625e+04, -4.145098828125e+04, -4.10518359375e+04, -4.06368125e+04, -4.02073046875e+04, -3.976339453125e+04, -3.93044453125e+04, -3.88295234375e+04, -3.833773828125e+04, -3.7828890625e+04, -3.730146484375e+04, -3.675446484375e+04, -3.6143625e+04, -3.54661640625e+04, -3.4744921875e+04, -3.398296484375e+04, -3.31793359375e+04, -3.2331904296875e+04, -3.1422806640625e+04, -3.0270921875e+04, -2.896862109375e+04, -2.7551091796875e+04, -2.6013435546875e+04, -2.4344484375e+04, -2.252676171875e+04, -2.05372734375e+04, -1.834368359375e+04, -1.697230859375e+04, -1.63451474609375e+04, -1.60012275390625e+04, -1.5765916015625e+04, -1.55784560546875e+04, -1.5417185546875e+04, -1.52746572265625e+04, -1.514779296875e+04, -1.50348642578125e+04, -1.49345e+04, -1.48454326171875e+04, -1.47665126953125e+04, -1.46967490234375e+04, -1.4635255859375e+04, -1.45811689453125e+04, -1.453365625e+04, -1.44919775390625e+04, -1.4455478515625e+04, -1.44235673828125e+04, -1.4395708984375e+04, -1.4371416015625e+04, -1.4350251953125e+04, -1.43318310546875e+04, -1.43158134765625e+04, -1.4301900390625e+04, -1.4289826171875e+04, -1.42793544921875e+04, -1.427027734375e+04] -temSenAir2.T=[2.931499938964844e+02, 2.922688598632812e+02, 2.901781616210938e+02, 2.883307495117188e+02, 2.874521179199219e+02, 2.871238098144531e+02, 2.87012939453125e+02, 2.869752807617188e+02, 2.869624633789062e+02, 2.869580688476562e+02, 2.869565734863281e+02, 2.88638427734375e+02, 2.886518249511719e+02, 2.8865185546875e+02, 2.886518249511719e+02, 2.886518249511719e+02, 2.886518249511719e+02, 2.886518249511719e+02, 2.869566040039062e+02, 2.869558410644531e+02, 2.869557495117188e+02, 2.869557800292969e+02, 2.869557800292969e+02, 2.869557800292969e+02, 2.877805786132812e+02, 2.886515808105469e+02, 2.8865185546875e+02, 2.886518249511719e+02, 2.886518249511719e+02, 2.886518249511719e+02, 2.886518249511719e+02, 2.871395568847656e+02, 2.869558410644531e+02, 2.869557800292969e+02, 2.869557800292969e+02, 2.869557800292969e+02, 2.869557800292969e+02, 2.870104675292969e+02, 2.886091613769531e+02, 2.886518249511719e+02, 2.886519165039062e+02, 2.886518249511719e+02, 2.886518249511719e+02, 2.886518249511719e+02, 2.886518249511719e+02, 2.883427429199219e+02, 2.885362548828125e+02, 2.887332763671875e+02, 2.889158325195312e+02, 2.89105224609375e+02, 2.893020629882812e+02, 2.895060729980469e+02, 2.897174682617188e+02, 2.899367065429688e+02, 2.901642761230469e+02, 2.903504028320312e+02, 2.904767456054688e+02, 2.906074829101562e+02, 2.907474365234375e+02, 2.9090673828125e+02, 2.910780029296875e+02, 2.912592163085938e+02, 2.91450439453125e+02, 2.91652099609375e+02, 2.918655090332031e+02, 2.921282043457031e+02, 2.924359130859375e+02, 2.927721862792969e+02, 2.931371765136719e+02, 2.935329895019531e+02, 2.939635925292969e+02, 2.944340209960938e+02, 2.949512634277344e+02, 2.953997192382812e+02, 2.956070251464844e+02, 2.957099914550781e+02, 2.957745971679688e+02, 2.958236083984375e+02, 2.958650512695312e+02, 2.959014892578125e+02, 2.959339294433594e+02, 2.959628295898438e+02, 2.959885559082031e+02, 2.960114440917969e+02, 2.9603173828125e+02, 2.960497436523438e+02, 2.960656127929688e+02, 2.9607958984375e+02, 2.960918884277344e+02, 2.961026916503906e+02, 2.961121520996094e+02, 2.961204223632812e+02, 2.96127685546875e+02, 2.961340026855469e+02, 2.961394958496094e+02, 2.96144287109375e+02, 2.961484680175781e+02, 2.96152099609375e+02, 2.961552429199219e+02, 2.961579895019531e+02, 2.961603393554688e+02] +ahu.port_a1.m_flow=[2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.900000095367432e+00, 2.827500104904175e+00, 2.755000114440918e+00, 2.682499885559082e+00, 2.609999895095825e+00, 2.537499904632568e+00, 2.464999914169312e+00, 2.392499923706055e+00, 2.319999933242798e+00, 2.247499942779541e+00, 2.174999952316284e+00, 2.102499961853027e+00, 2.029999971389771e+00, 1.957499980926514e+00, 1.884999990463257e+00, 1.8125e+00, 1.740000009536743e+00, 1.667500019073486e+00, 1.595000028610229e+00, 1.522500038146973e+00, 1.450000047683716e+00, 1.377500057220459e+00, 1.304999947547913e+00, 1.232499957084656e+00, 1.159999966621399e+00, 1.087499976158142e+00, 1.014999985694885e+00, 9.424999952316284e-01, 8.700000047683716e-01, 7.975000143051147e-01, 7.250000238418579e-01, 6.524999737739563e-01, 5.799999833106995e-01, 5.074999928474426e-01, 4.350000023841858e-01, 3.62500011920929e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01, 2.899999916553497e-01] +ahu.port_a2.m_flow=[0e+00, 3.730438947677612e+00, 4.008963584899902e+00, 4.029760360717773e+00, 4.031310558319092e+00, 4.031425952911377e+00, 4.031435012817383e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00, 4.031435966491699e+00] +ahu.cooCoi.Q1_flow=[0e+00, 4.4173015625e+04, 5.551122265625e+04, 5.635353515625e+04, 5.62027421875e+04, 5.607465234375e+04, 5.603133984375e+04, 5.60181015625e+04, 5.6013875e+04, 5.60124453125e+04, 5.60119609375e+04, 5.601179296875e+04, 5.6011734375e+04, 5.601171484375e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.601170703125e+04, 5.52625546875e+04, 5.4613671875e+04, 5.394017578125e+04, 5.324675e+04, 5.253371484375e+04, 5.180025390625e+04, 5.10454375e+04, 5.02683359375e+04, 4.946798828125e+04, 4.86433671875e+04, 4.781499609375e+04, 4.701466015625e+04, 4.619608203125e+04, 4.535046484375e+04, 4.44749765625e+04, 4.35675e+04, 4.262610546875e+04, 4.16487578125e+04, 4.063332421875e+04, 3.95774921875e+04, 3.84787265625e+04, 3.739223046875e+04, 3.631098046875e+04, 3.51763984375e+04, 3.3980828125e+04, 3.272029296875e+04, 3.13897890625e+04, 2.9992142578125e+04, 2.862663671875e+04, 2.71904375e+04, 2.5639109375e+04, 2.3956875e+04, 2.2126908203125e+04, 2.0126798828125e+04, 1.792531640625e+04, 1.5477291015625e+04, 1.58130439453125e+04, 1.5785056640625e+04, 1.56497578125e+04, 1.54942958984375e+04, 1.53447548828125e+04, 1.52085693359375e+04, 1.50867216796875e+04, 1.49784609375e+04, 1.48825966796875e+04, 1.47979228515625e+04, 1.47233154296875e+04, 1.46577294921875e+04, 1.460016796875e+04, 1.45497119140625e+04, 1.45055478515625e+04, 1.44669580078125e+04, 1.4433287109375e+04, 1.440394140625e+04, 1.43783896484375e+04, 1.43561640625e+04, 1.43368486328125e+04, 1.4320080078125e+04, 1.43055341796875e+04, 1.42929228515625e+04, 1.4281994140625e+04, 1.42725283203125e+04, 1.4264333984375e+04, 1.4257244140625e+04] +ahu.cooCoi.Q2_flow=[0e+00, -3.2669255859375e+04, -4.678498828125e+04, -5.25281796875e+04, -5.48347890625e+04, -5.56116171875e+04, -5.58750390625e+04, -5.59649921875e+04, -5.599568359375e+04, -5.600620703125e+04, -5.600980078125e+04, -5.601105078125e+04, -5.601148046875e+04, -5.601163671875e+04, -5.601169140625e+04, -5.6011703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.601170703125e+04, -5.559184375e+04, -5.5006171875e+04, -5.4363671875e+04, -5.368884375e+04, -5.298975e+04, -5.226875e+04, -5.152616015625e+04, -5.076147265625e+04, -4.997391015625e+04, -4.9162546875e+04, -4.838557421875e+04, -4.762226171875e+04, -4.682888671875e+04, -4.60059765625e+04, -4.51530703125e+04, -4.42689296875e+04, -4.335197265625e+04, -4.240038671875e+04, -4.141216015625e+04, -4.03850703125e+04, -3.93167109375e+04, -3.835821875e+04, -3.7347890625e+04, -3.62736015625e+04, -3.513823828125e+04, -3.393973828125e+04, -3.267441796875e+04, -3.1422908203125e+04, -3.0270939453125e+04, -2.8968556640625e+04, -2.75508359375e+04, -2.6013470703125e+04, -2.4344466796875e+04, -2.25267734375e+04, -2.05372890625e+04, -1.8343611328125e+04, -1.6972298828125e+04, -1.63451484375e+04, -1.6001232421875e+04, -1.5765921875e+04, -1.55784609375e+04, -1.5417189453125e+04, -1.52746611328125e+04, -1.51477958984375e+04, -1.50348671875e+04, -1.4934501953125e+04, -1.48454345703125e+04, -1.4766513671875e+04, -1.469675e+04, -1.46352568359375e+04, -1.4581169921875e+04, -1.45336572265625e+04, -1.4491978515625e+04, -1.44554794921875e+04, -1.4423568359375e+04, -1.43957099609375e+04, -1.4371416015625e+04, -1.4350251953125e+04, -1.43318310546875e+04, -1.43158134765625e+04, -1.4301900390625e+04, -1.4289826171875e+04, -1.42793544921875e+04, -1.427027734375e+04] +ahu.cooCoi.QSen2_flow=[0e+00, -3.039060546875e+04, -4.01542578125e+04, -4.334984765625e+04, -4.437842578125e+04, -4.473158203125e+04, -4.485078125e+04, -4.48915078125e+04, -4.490541015625e+04, -4.491018359375e+04, -4.491180859375e+04, -4.491237890625e+04, -4.49125703125e+04, -4.491264453125e+04, -4.491266796875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.491267578125e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.4912671875e+04, -4.471662109375e+04, -4.4450484375e+04, -4.415937890625e+04, -4.385441796875e+04, -4.35393671875e+04, -4.321538671875e+04, -4.288269921875e+04, -4.25411640625e+04, -4.2190515625e+04, -4.183044140625e+04, -4.145103515625e+04, -4.105176953125e+04, -4.063687890625e+04, -4.020741796875e+04, -3.976337890625e+04, -3.93042578125e+04, -3.882936328125e+04, -3.83378828125e+04, -3.78289140625e+04, -3.730146484375e+04, -3.675445703125e+04, -3.6143671875e+04, -3.54660625e+04, -3.47449140625e+04, -3.39829765625e+04, -3.31793515625e+04, -3.2331923828125e+04, -3.1422908203125e+04, -3.0270939453125e+04, -2.8968556640625e+04, -2.75508359375e+04, -2.6013470703125e+04, -2.4344466796875e+04, -2.25267734375e+04, -2.05372890625e+04, -1.8343611328125e+04, -1.6972298828125e+04, -1.63451484375e+04, -1.6001232421875e+04, -1.5765921875e+04, -1.55784609375e+04, -1.5417189453125e+04, -1.52746611328125e+04, -1.51477958984375e+04, -1.50348671875e+04, -1.4934501953125e+04, -1.48454345703125e+04, -1.4766513671875e+04, -1.469675e+04, -1.46352568359375e+04, -1.4581169921875e+04, -1.45336572265625e+04, -1.4491978515625e+04, -1.44554794921875e+04, -1.4423568359375e+04, -1.43957099609375e+04, -1.4371416015625e+04, -1.4350251953125e+04, -1.43318310546875e+04, -1.43158134765625e+04, -1.4301900390625e+04, -1.4289826171875e+04, -1.42793544921875e+04, -1.427027734375e+04] +ahu.cooCoi.QLat2_flow=[0e+00, -2.2786513671875e+03, -6.6307314453125e+03, -9.178333984375e+03, -1.045636328125e+04, -1.0880037109375e+04, -1.10242568359375e+04, -1.1073484375e+04, -1.10902744140625e+04, -1.10960234375e+04, -1.1097990234375e+04, -1.10986748046875e+04, -1.109891015625e+04, -1.10989951171875e+04, -1.10990234375e+04, -1.109903125e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.10990322265625e+04, -1.08752216796875e+04, -1.0555689453125e+04, -1.02042919921875e+04, -9.8344287109375e+03, -9.4503837890625e+03, -9.05336328125e+03, -8.6434599609375e+03, -8.2203095703125e+03, -7.7833935546875e+03, -7.3321064453125e+03, -6.93453955078125e+03, -6.57049169921875e+03, -6.1920068359375e+03, -5.798560546875e+03, -5.38969140625e+03, -4.964671875e+03, -4.5226103515625e+03, -4.06250439453125e+03, -3.583247314453125e+03, -3.0836083984375e+03, -2.562255859375e+03, -2.214545654296875e+03, -1.881826416015625e+03, -1.528687622070312e+03, -1.15526171875e+03, -7.603890380859375e+02, -3.424943237304688e+02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] temSou_2.y=[2.991499938964844e+02, 2.991499938964844e+02] -temSenWat2.T=[2.931499938964844e+02, 2.921714172363281e+02, 2.884414672851562e+02, 2.856343688964844e+02, 2.844081420898438e+02, 2.839813232421875e+02, 2.838390502929688e+02, 2.837910461425781e+02, 2.837747497558594e+02, 2.837691650390625e+02, 2.837672729492188e+02, 2.837666015625e+02, 2.83766357421875e+02, 2.837662963867188e+02, 2.837662658691406e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837761840820312e+02, 2.838117980957031e+02, 2.838638916015625e+02, 2.839242248535156e+02, 2.839888610839844e+02, 2.840562438964844e+02, 2.841257934570312e+02, 2.841974182128906e+02, 2.842710876464844e+02, 2.843468322753906e+02, 2.844248046875e+02, 2.845074157714844e+02, 2.845965576171875e+02, 2.846905822753906e+02, 2.847884521484375e+02, 2.848899230957031e+02, 2.849949645996094e+02, 2.851036987304688e+02, 2.852162780761719e+02, 2.853327941894531e+02, 2.854534606933594e+02, 2.855783996582031e+02, 2.857087707519531e+02, 2.858465576171875e+02, 2.8599267578125e+02, 2.86146728515625e+02, 2.863079833984375e+02, 2.864756774902344e+02, 2.86649169921875e+02, 2.868279113769531e+02, 2.870115051269531e+02, 2.871992492675781e+02, 2.873895568847656e+02, 2.875797729492188e+02, 2.877659606933594e+02, 2.879425964355469e+02, 2.881229553222656e+02, 2.883160400390625e+02, 2.885112609863281e+02, 2.887026672363281e+02, 2.888872680664062e+02, 2.890633850097656e+02, 2.892301330566406e+02, 2.893869018554688e+02, 2.895333557128906e+02, 2.896693725585938e+02, 2.89794921875e+02, 2.899102172851562e+02, 2.900155334472656e+02, 2.901112670898438e+02, 2.901978759765625e+02, 2.902759094238281e+02, 2.903459167480469e+02, 2.904084777832031e+02, 2.904642333984375e+02, 2.905137634277344e+02, 2.905576171875e+02, 2.905963439941406e+02, 2.906304931640625e+02, 2.906604919433594e+02, 2.906867980957031e+02, 2.907098388671875e+02, 2.907300109863281e+02, 2.907475891113281e+02] temSenWat1.T=[2.931499938964844e+02, 2.791521301269531e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02, 2.791499938964844e+02] +temSenWat2.T=[2.931499938964844e+02, 2.921714172363281e+02, 2.884415283203125e+02, 2.856344604492188e+02, 2.844081726074219e+02, 2.839813537597656e+02, 2.838390502929688e+02, 2.837910461425781e+02, 2.837747497558594e+02, 2.837691650390625e+02, 2.837672729492188e+02, 2.837666015625e+02, 2.83766357421875e+02, 2.837662963867188e+02, 2.837662658691406e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837662353515625e+02, 2.837761840820312e+02, 2.838117980957031e+02, 2.838638916015625e+02, 2.839242248535156e+02, 2.839888610839844e+02, 2.840562438964844e+02, 2.841257934570312e+02, 2.841974182128906e+02, 2.842710876464844e+02, 2.843468322753906e+02, 2.844248046875e+02, 2.845074157714844e+02, 2.845965576171875e+02, 2.846905822753906e+02, 2.847884521484375e+02, 2.848899230957031e+02, 2.849949951171875e+02, 2.851036987304688e+02, 2.852162780761719e+02, 2.853327941894531e+02, 2.854534606933594e+02, 2.855783996582031e+02, 2.85708740234375e+02, 2.858465576171875e+02, 2.8599267578125e+02, 2.86146728515625e+02, 2.863079528808594e+02, 2.864756469726562e+02, 2.866491394042969e+02, 2.868279113769531e+02, 2.870115051269531e+02, 2.871992492675781e+02, 2.873895568847656e+02, 2.875797729492188e+02, 2.877659606933594e+02, 2.879425964355469e+02, 2.881229248046875e+02, 2.883160095214844e+02, 2.8851123046875e+02, 2.887026672363281e+02, 2.888872375488281e+02, 2.890633850097656e+02, 2.892301330566406e+02, 2.893868713378906e+02, 2.895333557128906e+02, 2.896693420410156e+02, 2.89794921875e+02, 2.899102172851562e+02, 2.900155334472656e+02, 2.901112670898438e+02, 2.901978759765625e+02, 2.9027587890625e+02, 2.903458862304688e+02, 2.904084777832031e+02, 2.904642333984375e+02, 2.905137634277344e+02, 2.905576171875e+02, 2.905963439941406e+02, 2.906304931640625e+02, 2.906604919433594e+02, 2.906867980957031e+02, 2.907098388671875e+02, 2.907300109863281e+02, 2.907475891113281e+02] +temSenAir2.T=[2.931499938964844e+02, 2.922679748535156e+02, 2.901782531738281e+02, 2.883307495117188e+02, 2.874521484375e+02, 2.871238098144531e+02, 2.87012939453125e+02, 2.869752807617188e+02, 2.869624633789062e+02, 2.869580688476562e+02, 2.869565734863281e+02, 2.88638427734375e+02, 2.886518249511719e+02, 2.8865185546875e+02, 2.886518249511719e+02, 2.886518249511719e+02, 2.886518249511719e+02, 2.886518249511719e+02, 2.869566040039062e+02, 2.869558410644531e+02, 2.869557495117188e+02, 2.869557800292969e+02, 2.869557800292969e+02, 2.869557800292969e+02, 2.877809143066406e+02, 2.886515808105469e+02, 2.8865185546875e+02, 2.886518249511719e+02, 2.886518249511719e+02, 2.886518249511719e+02, 2.886518249511719e+02, 2.871394653320312e+02, 2.869558410644531e+02, 2.869557800292969e+02, 2.869557800292969e+02, 2.869557800292969e+02, 2.869557800292969e+02, 2.870104675292969e+02, 2.886091613769531e+02, 2.886518249511719e+02, 2.886519165039062e+02, 2.886518249511719e+02, 2.886518249511719e+02, 2.886518249511719e+02, 2.886518249511719e+02, 2.883427429199219e+02, 2.885362548828125e+02, 2.887333068847656e+02, 2.889158325195312e+02, 2.89105224609375e+02, 2.89302001953125e+02, 2.895060119628906e+02, 2.89717529296875e+02, 2.899368286132812e+02, 2.901643371582031e+02, 2.903504333496094e+02, 2.904767456054688e+02, 2.906074829101562e+02, 2.907474365234375e+02, 2.909067993164062e+02, 2.910780334472656e+02, 2.912592163085938e+02, 2.91450439453125e+02, 2.916520690917969e+02, 2.918655395507812e+02, 2.921282043457031e+02, 2.924359436035156e+02, 2.927723083496094e+02, 2.931371765136719e+02, 2.935329895019531e+02, 2.939635925292969e+02, 2.944340209960938e+02, 2.949512634277344e+02, 2.953997192382812e+02, 2.956070251464844e+02, 2.957099914550781e+02, 2.957745971679688e+02, 2.958236083984375e+02, 2.958650512695312e+02, 2.959014892578125e+02, 2.959339294433594e+02, 2.959628295898438e+02, 2.959885559082031e+02, 2.960114440917969e+02, 2.9603173828125e+02, 2.960497436523438e+02, 2.960656127929688e+02, 2.9607958984375e+02, 2.960918884277344e+02, 2.961026916503906e+02, 2.961121520996094e+02, 2.961204223632812e+02, 2.96127685546875e+02, 2.961340026855469e+02, 2.961394958496094e+02, 2.96144287109375e+02, 2.961484680175781e+02, 2.96152099609375e+02, 2.961552429199219e+02, 2.961579895019531e+02, 2.961603393554688e+02] diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Applications_DataCenters_ChillerCooled_Examples_IntegratedPrimaryLoadSideEconomizer.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Applications_DataCenters_ChillerCooled_Examples_IntegratedPrimaryLoadSideEconomizer.txt index 11f58ac3373..bada33caa6a 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Applications_DataCenters_ChillerCooled_Examples_IntegratedPrimaryLoadSideEconomizer.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Applications_DataCenters_ChillerCooled_Examples_IntegratedPrimaryLoadSideEconomizer.txt @@ -1,4 +1,4 @@ -last-generated=2020-10-06 +last-generated=2021-02-17 statistics-initialization= { "nonlinear": "1, 1, 1, 1, 2, 5, 4, 1, 1, 1", @@ -16,20 +16,20 @@ cooModCon.y=[1e+00, 1e+00, 2e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+0 chiOn[1].u=[0e+00, 0e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] chiOn[2].u=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] wseOn.y=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] -TCWSup.T=[2.931499938964844e+02, 2.733481140136719e+02, 2.743569641113281e+02, 2.749655456542969e+02, 2.757942810058594e+02, 2.759494323730469e+02, 2.761877136230469e+02, 2.764712829589844e+02, 2.767770690917969e+02, 2.770889587402344e+02, 2.773910827636719e+02, 2.776901550292969e+02, 2.779984130859375e+02, 2.783580017089844e+02, 2.788186645507812e+02, 2.781337890625e+02, 2.779671325683594e+02, 2.7788330078125e+02, 2.778142395019531e+02, 2.777452697753906e+02, 2.776900939941406e+02, 2.776573791503906e+02, 2.776246337890625e+02, 2.776246337890625e+02, 2.776295471191406e+02, 2.776379699707031e+02, 2.7767822265625e+02, 2.777149658203125e+02, 2.777364196777344e+02, 2.777145690917969e+02, 2.776636352539062e+02, 2.776406860351562e+02, 2.776437683105469e+02, 2.776691284179688e+02, 2.776961364746094e+02, 2.77707763671875e+02, 2.777800598144531e+02, 2.780860290527344e+02, 2.784513549804688e+02, 2.788619079589844e+02, 2.792044677734375e+02, 2.794131164550781e+02, 2.79730224609375e+02, 2.795587768554688e+02, 2.794610900878906e+02, 2.794443969726562e+02, 2.795417785644531e+02, 2.797257385253906e+02, 2.79934326171875e+02, 2.801339721679688e+02, 2.802904357910156e+02, 2.803836059570312e+02, 2.804332580566406e+02, 2.804626159667969e+02, 2.804946899414062e+02, 2.805655822753906e+02, 2.806797485351562e+02, 2.807728881835938e+02, 2.807872009277344e+02, 2.807046203613281e+02, 2.806304931640625e+02, 2.805748901367188e+02, 2.805338439941406e+02, 2.805052490234375e+02, 2.804931640625e+02, 2.804837646484375e+02, 2.804603881835938e+02, 2.80396240234375e+02, 2.801275634765625e+02, 2.797044982910156e+02, 2.792661437988281e+02, 2.789517211914062e+02, 2.787866516113281e+02, 2.786884155273438e+02, 2.785887756347656e+02, 2.784187316894531e+02, 2.781477355957031e+02, 2.785387878417969e+02, 2.776943359375e+02, 2.776930847167969e+02, 2.776968994140625e+02, 2.776929931640625e+02, 2.776907653808594e+02, 2.776893005371094e+02, 2.776871948242188e+02, 2.776856994628906e+02, 2.776862487792969e+02, 2.776884155273438e+02, 2.77689697265625e+02, 2.776881103515625e+02, 2.77688232421875e+02, 2.776899108886719e+02, 2.776943664550781e+02, 2.777026062011719e+02, 2.777064514160156e+02, 2.777056274414062e+02, 2.776983642578125e+02, 2.776727600097656e+02, 2.776614685058594e+02, 2.776679992675781e+02, 2.776881408691406e+02] -TCWRet.T=[2.931499938964844e+02, 2.733482666015625e+02, 2.748460388183594e+02, 2.752640686035156e+02, 2.760496520996094e+02, 2.762178039550781e+02, 2.7647900390625e+02, 2.767918701171875e+02, 2.77131591796875e+02, 2.774806213378906e+02, 2.778214416503906e+02, 2.781597290039062e+02, 2.785069885253906e+02, 2.789115295410156e+02, 2.794236450195312e+02, 2.788235168457031e+02, 2.78693603515625e+02, 2.786275329589844e+02, 2.785741882324219e+02, 2.785209655761719e+02, 2.785093078613281e+02, 2.785155334472656e+02, 2.785374145507812e+02, 2.785736389160156e+02, 2.786192932128906e+02, 2.786705932617188e+02, 2.7875341796875e+02, 2.788313903808594e+02, 2.788938903808594e+02, 2.789132690429688e+02, 2.789034118652344e+02, 2.78921630859375e+02, 2.789660034179688e+02, 2.7903271484375e+02, 2.791011962890625e+02, 2.791541748046875e+02, 2.792646179199219e+02, 2.796136474609375e+02, 2.800210266113281e+02, 2.804734802246094e+02, 2.808575134277344e+02, 2.811074829101562e+02, 2.815990600585938e+02, 2.813563232421875e+02, 2.812293395996094e+02, 2.812015075683594e+02, 2.812946472167969e+02, 2.814791259765625e+02, 2.816898498535156e+02, 2.818923645019531e+02, 2.820520324707031e+02, 2.821475524902344e+02, 2.821985168457031e+02, 2.822284545898438e+02, 2.822606201171875e+02, 2.823309631347656e+02, 2.824461975097656e+02, 2.825415649414062e+02, 2.825583801269531e+02, 2.82475830078125e+02, 2.82400390625e+02, 2.823437194824219e+02, 2.823019104003906e+02, 2.822726440429688e+02, 2.822601318359375e+02, 2.82250732421875e+02, 2.822275695800781e+02, 2.821649169921875e+02, 2.818982238769531e+02, 2.814722595214844e+02, 2.8102783203125e+02, 2.807059326171875e+02, 2.805348510742188e+02, 2.804335632324219e+02, 2.803323974609375e+02, 2.801608276367188e+02, 2.798856201171875e+02, 2.803436889648438e+02, 2.794551086425781e+02, 2.794263610839844e+02, 2.794207763671875e+02, 2.794143371582031e+02, 2.794116516113281e+02, 2.794103088378906e+02, 2.794083862304688e+02, 2.794070434570312e+02, 2.794076232910156e+02, 2.794098205566406e+02, 2.794111938476562e+02, 2.794096069335938e+02, 2.794096984863281e+02, 2.79411376953125e+02, 2.794157409667969e+02, 2.794240112304688e+02, 2.794278869628906e+02, 2.794270629882812e+02, 2.794199829101562e+02, 2.793942260742188e+02, 2.793828735351562e+02, 2.79389404296875e+02, 2.794095458984375e+02] +TCWSup.T=[2.931499938964844e+02, 2.733481140136719e+02, 2.743569641113281e+02, 2.749655456542969e+02, 2.757943115234375e+02, 2.759494018554688e+02, 2.761877136230469e+02, 2.764713134765625e+02, 2.767770690917969e+02, 2.770889892578125e+02, 2.773910827636719e+02, 2.776901550292969e+02, 2.779984130859375e+02, 2.783580017089844e+02, 2.788186340332031e+02, 2.781337890625e+02, 2.779671325683594e+02, 2.7788330078125e+02, 2.778142395019531e+02, 2.777452697753906e+02, 2.776900939941406e+02, 2.776573791503906e+02, 2.776246337890625e+02, 2.776246337890625e+02, 2.776295166015625e+02, 2.776379699707031e+02, 2.7767822265625e+02, 2.777149658203125e+02, 2.777363891601562e+02, 2.777144775390625e+02, 2.776636352539062e+02, 2.776406860351562e+02, 2.776437683105469e+02, 2.776691284179688e+02, 2.776961059570312e+02, 2.77707763671875e+02, 2.777800598144531e+02, 2.780860290527344e+02, 2.784513549804688e+02, 2.788619079589844e+02, 2.792044677734375e+02, 2.794131164550781e+02, 2.797301940917969e+02, 2.795587768554688e+02, 2.794610900878906e+02, 2.794443969726562e+02, 2.795417785644531e+02, 2.797257385253906e+02, 2.79934326171875e+02, 2.801339721679688e+02, 2.802904357910156e+02, 2.803836059570312e+02, 2.804332580566406e+02, 2.804626159667969e+02, 2.804946899414062e+02, 2.805655822753906e+02, 2.806797485351562e+02, 2.807728881835938e+02, 2.807872009277344e+02, 2.807046203613281e+02, 2.806304931640625e+02, 2.805748901367188e+02, 2.805338439941406e+02, 2.805052490234375e+02, 2.804931640625e+02, 2.804837646484375e+02, 2.804603881835938e+02, 2.80396240234375e+02, 2.801275634765625e+02, 2.797044982910156e+02, 2.792661437988281e+02, 2.789517211914062e+02, 2.787866516113281e+02, 2.786884155273438e+02, 2.785887756347656e+02, 2.784186096191406e+02, 2.781477355957031e+02, 2.785387573242188e+02, 2.776943359375e+02, 2.776930847167969e+02, 2.776968994140625e+02, 2.776929931640625e+02, 2.776907653808594e+02, 2.776893005371094e+02, 2.776871948242188e+02, 2.776856994628906e+02, 2.776862487792969e+02, 2.776884155273438e+02, 2.77689697265625e+02, 2.776881103515625e+02, 2.77688232421875e+02, 2.776899108886719e+02, 2.776943664550781e+02, 2.777026062011719e+02, 2.777064514160156e+02, 2.777056274414062e+02, 2.776983642578125e+02, 2.776727600097656e+02, 2.776614685058594e+02, 2.776679992675781e+02, 2.776881408691406e+02] +TCWRet.T=[2.931499938964844e+02, 2.733482666015625e+02, 2.748460388183594e+02, 2.752640686035156e+02, 2.760496826171875e+02, 2.762178039550781e+02, 2.7647900390625e+02, 2.767919006347656e+02, 2.77131591796875e+02, 2.774806518554688e+02, 2.778214111328125e+02, 2.781597290039062e+02, 2.785069885253906e+02, 2.789115295410156e+02, 2.794236450195312e+02, 2.788235168457031e+02, 2.78693603515625e+02, 2.786275329589844e+02, 2.7857421875e+02, 2.785209655761719e+02, 2.785093078613281e+02, 2.785155029296875e+02, 2.785374145507812e+02, 2.785736389160156e+02, 2.786192932128906e+02, 2.78670654296875e+02, 2.787534484863281e+02, 2.788313903808594e+02, 2.788938598632812e+02, 2.789131774902344e+02, 2.789033813476562e+02, 2.789216003417969e+02, 2.789660034179688e+02, 2.7903271484375e+02, 2.791011962890625e+02, 2.791541748046875e+02, 2.792646179199219e+02, 2.796136474609375e+02, 2.800210266113281e+02, 2.804734802246094e+02, 2.808575134277344e+02, 2.811074829101562e+02, 2.815990295410156e+02, 2.813563232421875e+02, 2.812293395996094e+02, 2.812015075683594e+02, 2.812946472167969e+02, 2.814791259765625e+02, 2.816898498535156e+02, 2.818923645019531e+02, 2.820520324707031e+02, 2.821475524902344e+02, 2.821985168457031e+02, 2.822284545898438e+02, 2.822606201171875e+02, 2.823309631347656e+02, 2.824461975097656e+02, 2.825415649414062e+02, 2.825583801269531e+02, 2.82475830078125e+02, 2.824003601074219e+02, 2.823437194824219e+02, 2.823019104003906e+02, 2.822726135253906e+02, 2.822601318359375e+02, 2.82250732421875e+02, 2.822275695800781e+02, 2.821649169921875e+02, 2.818982238769531e+02, 2.814722595214844e+02, 2.8102783203125e+02, 2.807059326171875e+02, 2.805348510742188e+02, 2.804335327148438e+02, 2.803323974609375e+02, 2.801607360839844e+02, 2.798856201171875e+02, 2.803436584472656e+02, 2.794551086425781e+02, 2.794263610839844e+02, 2.794207763671875e+02, 2.794143371582031e+02, 2.794116516113281e+02, 2.794103088378906e+02, 2.794083862304688e+02, 2.794070434570312e+02, 2.794076232910156e+02, 2.794098205566406e+02, 2.794111938476562e+02, 2.794096069335938e+02, 2.794096984863281e+02, 2.79411376953125e+02, 2.794157409667969e+02, 2.794240112304688e+02, 2.794278869628906e+02, 2.794270629882812e+02, 2.794199829101562e+02, 2.793942260742188e+02, 2.793828735351562e+02, 2.79389404296875e+02, 2.794095458984375e+02] TCWSupSet.y=[2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02] -TCHWSup.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.768280944824219e+02, 2.762196960449219e+02, 2.769158630371094e+02, 2.771261901855469e+02, 2.774638671875e+02, 2.778756713867188e+02, 2.783302612304688e+02, 2.788053894042969e+02, 2.792777709960938e+02, 2.797493286132812e+02, 2.802290954589844e+02, 2.807834167480469e+02, 2.814714660644531e+02, 2.811675109863281e+02, 2.811623840332031e+02, 2.811567077636719e+02, 2.811567687988281e+02, 2.811569213867188e+02, 2.811624145507812e+02, 2.811585388183594e+02, 2.811560668945312e+02, 2.811506042480469e+02, 2.811482543945312e+02, 2.811512451171875e+02, 2.81180419921875e+02, 2.812066650390625e+02, 2.812204895019531e+02, 2.812002258300781e+02, 2.811576843261719e+02, 2.811368103027344e+02, 2.811364135742188e+02, 2.811535339355469e+02, 2.811716918945312e+02, 2.811782836914062e+02, 2.812326049804688e+02, 2.814690246582031e+02, 2.817527770996094e+02, 2.820708923339844e+02, 2.823345642089844e+02, 2.824933776855469e+02, 2.811499938964844e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.81890380859375e+02, 2.811919250488281e+02, 2.811657409667969e+02, 2.811562805175781e+02, 2.811477661132812e+02, 2.811436157226562e+02, 2.811414794921875e+02, 2.811394348144531e+02, 2.811381530761719e+02, 2.811385192871094e+02, 2.811402282714844e+02, 2.811412048339844e+02, 2.811399841308594e+02, 2.811400756835938e+02, 2.811413879394531e+02, 2.811448669433594e+02, 2.811512756347656e+02, 2.811542663574219e+02, 2.811535949707031e+02, 2.8114794921875e+02, 2.811279602050781e+02, 2.811191711425781e+02, 2.811243286132812e+02, 2.811401062011719e+02] -TCHWRet.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.837148132324219e+02, 2.8162353515625e+02, 2.81408935546875e+02, 2.818497924804688e+02, 2.825909118652344e+02, 2.835185852050781e+02, 2.845705261230469e+02, 2.856983032226562e+02, 2.86851318359375e+02, 2.880131530761719e+02, 2.891800842285156e+02, 2.905265502929688e+02, 2.921210327148438e+02, 2.932925415039062e+02, 2.939361877441406e+02, 2.942464294433594e+02, 2.945230712890625e+02, 2.947995910644531e+02, 2.950487670898438e+02, 2.9516064453125e+02, 2.952800598144531e+02, 2.9525390625e+02, 2.952229309082031e+02, 2.952041015625e+02, 2.951903076171875e+02, 2.951742553710938e+02, 2.951564636230469e+02, 2.951398010253906e+02, 2.951317138671875e+02, 2.951202392578125e+02, 2.951070251464844e+02, 2.950921020507812e+02, 2.950738525390625e+02, 2.950603637695312e+02, 2.950520324707031e+02, 2.950115966796875e+02, 2.94970947265625e+02, 2.949184265136719e+02, 2.948627624511719e+02, 2.948179626464844e+02, 2.947579345703125e+02, 2.949499206542969e+02, 2.949681091308594e+02, 2.949590759277344e+02, 2.9495166015625e+02, 2.949481201171875e+02, 2.949467468261719e+02, 2.949463500976562e+02, 2.949462280273438e+02, 2.949461669921875e+02, 2.949461669921875e+02, 2.949461364746094e+02, 2.949461364746094e+02, 2.949461364746094e+02, 2.949461364746094e+02, 2.949461364746094e+02, 2.949461059570312e+02, 2.949461059570312e+02, 2.949461059570312e+02, 2.949460754394531e+02, 2.949460754394531e+02, 2.949460754394531e+02, 2.94946044921875e+02, 2.94946044921875e+02, 2.94946044921875e+02, 2.949460144042969e+02, 2.949460144042969e+02, 2.949460144042969e+02, 2.949459838867188e+02, 2.949459838867188e+02, 2.949459838867188e+02, 2.949459533691406e+02, 2.949459533691406e+02, 2.949459533691406e+02, 2.949459228515625e+02, 2.951715087890625e+02, 2.95180419921875e+02, 2.950571899414062e+02, 2.949939575195312e+02, 2.94966796875e+02, 2.949548645019531e+02, 2.94949951171875e+02, 2.949479675292969e+02, 2.949475708007812e+02, 2.949473876953125e+02, 2.949472351074219e+02, 2.949466552734375e+02, 2.949469604492188e+02, 2.949470520019531e+02, 2.949469604492188e+02, 2.949468994140625e+02, 2.949458312988281e+02, 2.949452209472656e+02, 2.949450378417969e+02, 2.949452819824219e+02, 2.949476928710938e+02, 2.949495849609375e+02, 2.949497375488281e+02, 2.949483947753906e+02] +TCHWSup.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.76828125e+02, 2.762196655273438e+02, 2.769159240722656e+02, 2.771261596679688e+02, 2.774638977050781e+02, 2.778756713867188e+02, 2.783302917480469e+02, 2.78805419921875e+02, 2.792777709960938e+02, 2.797493286132812e+02, 2.802290954589844e+02, 2.807833862304688e+02, 2.814714660644531e+02, 2.811675109863281e+02, 2.811623840332031e+02, 2.811567077636719e+02, 2.811567687988281e+02, 2.811569213867188e+02, 2.811624145507812e+02, 2.811585083007812e+02, 2.811560668945312e+02, 2.811505737304688e+02, 2.811482238769531e+02, 2.811512145996094e+02, 2.81180419921875e+02, 2.812066955566406e+02, 2.812205200195312e+02, 2.812001647949219e+02, 2.811576843261719e+02, 2.811367797851562e+02, 2.811364135742188e+02, 2.811535339355469e+02, 2.811716918945312e+02, 2.811782836914062e+02, 2.812326049804688e+02, 2.814690246582031e+02, 2.817527770996094e+02, 2.820708923339844e+02, 2.823345642089844e+02, 2.824933776855469e+02, 2.811499938964844e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.818903503417969e+02, 2.811919250488281e+02, 2.811657409667969e+02, 2.811562805175781e+02, 2.811477661132812e+02, 2.811436157226562e+02, 2.811414794921875e+02, 2.811394348144531e+02, 2.811381530761719e+02, 2.811385192871094e+02, 2.811402282714844e+02, 2.811412048339844e+02, 2.811399841308594e+02, 2.811400756835938e+02, 2.811413879394531e+02, 2.811448669433594e+02, 2.811512756347656e+02, 2.811542663574219e+02, 2.811535949707031e+02, 2.8114794921875e+02, 2.811279602050781e+02, 2.811191711425781e+02, 2.811243286132812e+02, 2.811401062011719e+02] +TCHWRet.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.837148132324219e+02, 2.816235046386719e+02, 2.814090270996094e+02, 2.818497619628906e+02, 2.825909118652344e+02, 2.835186462402344e+02, 2.84570556640625e+02, 2.85698486328125e+02, 2.868512878417969e+02, 2.880131530761719e+02, 2.891800842285156e+02, 2.905265502929688e+02, 2.921210632324219e+02, 2.932925415039062e+02, 2.939361572265625e+02, 2.942464294433594e+02, 2.945230712890625e+02, 2.947995910644531e+02, 2.950487060546875e+02, 2.951606140136719e+02, 2.952800598144531e+02, 2.952538757324219e+02, 2.952227783203125e+02, 2.952040710449219e+02, 2.951903686523438e+02, 2.951743469238281e+02, 2.95156494140625e+02, 2.951397705078125e+02, 2.951316833496094e+02, 2.951201782226562e+02, 2.951069946289062e+02, 2.95092041015625e+02, 2.950738220214844e+02, 2.950603332519531e+02, 2.950520324707031e+02, 2.950115966796875e+02, 2.94970947265625e+02, 2.9491845703125e+02, 2.948627624511719e+02, 2.948179626464844e+02, 2.947579345703125e+02, 2.949499206542969e+02, 2.949681091308594e+02, 2.949590759277344e+02, 2.9495166015625e+02, 2.949481201171875e+02, 2.949467468261719e+02, 2.949463500976562e+02, 2.949462280273438e+02, 2.949461975097656e+02, 2.949461669921875e+02, 2.949461669921875e+02, 2.949461669921875e+02, 2.949461364746094e+02, 2.949461364746094e+02, 2.949461364746094e+02, 2.949461059570312e+02, 2.949461059570312e+02, 2.949461059570312e+02, 2.949460754394531e+02, 2.949460754394531e+02, 2.949460754394531e+02, 2.94946044921875e+02, 2.94946044921875e+02, 2.94946044921875e+02, 2.949460144042969e+02, 2.949460144042969e+02, 2.949460144042969e+02, 2.949459838867188e+02, 2.949459838867188e+02, 2.949459838867188e+02, 2.949459533691406e+02, 2.949459533691406e+02, 2.949459533691406e+02, 2.949459228515625e+02, 2.951715087890625e+02, 2.95180419921875e+02, 2.950571899414062e+02, 2.949939575195312e+02, 2.94966796875e+02, 2.949548645019531e+02, 2.94949951171875e+02, 2.949479675292969e+02, 2.949475708007812e+02, 2.949473876953125e+02, 2.949472351074219e+02, 2.949466552734375e+02, 2.949469604492188e+02, 2.949470520019531e+02, 2.949469604492188e+02, 2.949468994140625e+02, 2.949458312988281e+02, 2.949452209472656e+02, 2.949450378417969e+02, 2.949452819824219e+02, 2.949476928710938e+02, 2.949495849609375e+02, 2.949497375488281e+02, 2.949483947753906e+02] TCHWSupSet.y=[2.811499938964844e+02, 2.811499938964844e+02] -chiWSE.TCHWSupWSE=[2.931499938964844e+02, 2.931499938964844e+02, 2.762392883300781e+02, 2.762499694824219e+02, 2.769164428710938e+02, 2.771278381347656e+02, 2.774662170410156e+02, 2.778783569335938e+02, 2.783332214355469e+02, 2.788083801269531e+02, 2.792807312011719e+02, 2.797523498535156e+02, 2.802322082519531e+02, 2.807880249023438e+02, 2.814756469726562e+02, 2.811671752929688e+02, 2.811620483398438e+02, 2.811565246582031e+02, 2.811565856933594e+02, 2.8115673828125e+02, 2.811621704101562e+02, 2.811583557128906e+02, 2.811557922363281e+02, 2.811504821777344e+02, 2.811481628417969e+02, 2.81151123046875e+02, 2.811803894042969e+02, 2.812066345214844e+02, 2.812203979492188e+02, 2.811999206542969e+02, 2.811574401855469e+02, 2.811366577148438e+02, 2.811363525390625e+02, 2.811535339355469e+02, 2.811716003417969e+02, 2.8117822265625e+02, 2.812332763671875e+02, 2.814697875976562e+02, 2.817536926269531e+02, 2.820717468261719e+02, 2.823351135253906e+02, 2.824936218261719e+02, 2.827376708984375e+02, 2.826372680664062e+02, 2.825624389648438e+02, 2.825470581054688e+02, 2.826231079101562e+02, 2.827694396972656e+02, 2.829360046386719e+02, 2.830957336425781e+02, 2.832211303710938e+02, 2.832958679199219e+02, 2.83335693359375e+02, 2.833592224121094e+02, 2.833848266601562e+02, 2.834413146972656e+02, 2.835325927734375e+02, 2.836072998046875e+02, 2.83619140625e+02, 2.8355322265625e+02, 2.834938659667969e+02, 2.834493103027344e+02, 2.834164428710938e+02, 2.833934936523438e+02, 2.833837585449219e+02, 2.833762817382812e+02, 2.83357666015625e+02, 2.833067321777344e+02, 2.830926208496094e+02, 2.827544860839844e+02, 2.824036254882812e+02, 2.821513977050781e+02, 2.820189819335938e+02, 2.819402465820312e+02, 2.818606872558594e+02, 2.817250366210938e+02, 2.815085144042969e+02, 2.818800048828125e+02, 2.811914672851562e+02, 2.811657104492188e+02, 2.811562194824219e+02, 2.81147705078125e+02, 2.811435546875e+02, 2.811414184570312e+02, 2.811393737792969e+02, 2.811380920410156e+02, 2.811384582519531e+02, 2.811401672363281e+02, 2.8114111328125e+02, 2.81139892578125e+02, 2.811399841308594e+02, 2.811413269042969e+02, 2.811448364257812e+02, 2.811512145996094e+02, 2.811542053222656e+02, 2.811535034179688e+02, 2.811478271484375e+02, 2.811278381347656e+02, 2.811191101074219e+02, 2.811242980957031e+02, 2.811401062011719e+02] -TAirSup.T=[2.931499938964844e+02, 2.934500122070312e+02, 2.828916015625e+02, 2.808954467773438e+02, 2.807955932617188e+02, 2.811203918457031e+02, 2.817196044921875e+02, 2.824890747070312e+02, 2.833682861328125e+02, 2.843055725097656e+02, 2.852633972167969e+02, 2.862286376953125e+02, 2.871991577148438e+02, 2.886166381835938e+02, 2.900147399902344e+02, 2.908226623535156e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.912169494628906e+02, 2.911928405761719e+02, 2.912377014160156e+02, 2.912212524414062e+02, 2.91198486328125e+02, 2.911919555664062e+02, 2.911964721679688e+02, 2.911983337402344e+02, 2.911958312988281e+02, 2.91189208984375e+02, 2.911898193359375e+02, 2.911893310546875e+02, 2.91189453125e+02, 2.911897888183594e+02, 2.911858215332031e+02, 2.91185791015625e+02, 2.911998901367188e+02, 2.912023620605469e+02, 2.912118530273438e+02, 2.912144470214844e+02, 2.912059326171875e+02, 2.911935424804688e+02, 2.908965148925781e+02, 2.911412658691406e+02, 2.911714172363281e+02, 2.911639099121094e+02, 2.911561279296875e+02, 2.911521911621094e+02, 2.91150634765625e+02, 2.91150146484375e+02, 2.911500549316406e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911500244140625e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.915381774902344e+02, 2.914227600097656e+02, 2.912820434570312e+02, 2.912078247070312e+02, 2.911747741699219e+02, 2.911600036621094e+02, 2.9115380859375e+02, 2.911510925292969e+02, 2.91150390625e+02, 2.911502380371094e+02, 2.911502990722656e+02, 2.911497497558594e+02, 2.911499328613281e+02, 2.911500549316406e+02, 2.911501770019531e+02, 2.91150634765625e+02, 2.911503601074219e+02, 2.911500244140625e+02, 2.911496887207031e+02, 2.911491088867188e+02, 2.911489562988281e+02, 2.911500549316406e+02, 2.911511535644531e+02, 2.911519775390625e+02] +chiWSE.TCHWSupWSE=[2.931499938964844e+02, 2.931499938964844e+02, 2.762392883300781e+02, 2.762499694824219e+02, 2.769164733886719e+02, 2.771278381347656e+02, 2.774662170410156e+02, 2.778783874511719e+02, 2.78333251953125e+02, 2.788084106445312e+02, 2.792807312011719e+02, 2.797523498535156e+02, 2.802322082519531e+02, 2.807880249023438e+02, 2.814756469726562e+02, 2.811671752929688e+02, 2.811620788574219e+02, 2.811565246582031e+02, 2.811565856933594e+02, 2.8115673828125e+02, 2.811621704101562e+02, 2.811583251953125e+02, 2.811557922363281e+02, 2.811504821777344e+02, 2.811481323242188e+02, 2.81151123046875e+02, 2.81180419921875e+02, 2.812066345214844e+02, 2.812203979492188e+02, 2.811998291015625e+02, 2.811574401855469e+02, 2.811366271972656e+02, 2.811363220214844e+02, 2.811535339355469e+02, 2.811716003417969e+02, 2.8117822265625e+02, 2.812332763671875e+02, 2.814697875976562e+02, 2.817536926269531e+02, 2.820717468261719e+02, 2.823351135253906e+02, 2.824936218261719e+02, 2.827376708984375e+02, 2.826372680664062e+02, 2.825624389648438e+02, 2.825470581054688e+02, 2.826231079101562e+02, 2.827694396972656e+02, 2.829360046386719e+02, 2.830957336425781e+02, 2.832211303710938e+02, 2.832958679199219e+02, 2.83335693359375e+02, 2.833592224121094e+02, 2.833848266601562e+02, 2.834413146972656e+02, 2.835325927734375e+02, 2.836072998046875e+02, 2.83619140625e+02, 2.8355322265625e+02, 2.834938659667969e+02, 2.834493103027344e+02, 2.834164123535156e+02, 2.833934936523438e+02, 2.833837585449219e+02, 2.833762817382812e+02, 2.83357666015625e+02, 2.833067321777344e+02, 2.830926208496094e+02, 2.827544860839844e+02, 2.824036254882812e+02, 2.821513977050781e+02, 2.820189514160156e+02, 2.819402465820312e+02, 2.818606872558594e+02, 2.817249450683594e+02, 2.815085144042969e+02, 2.818799743652344e+02, 2.811914672851562e+02, 2.811657104492188e+02, 2.811562194824219e+02, 2.81147705078125e+02, 2.811435546875e+02, 2.811414184570312e+02, 2.811393737792969e+02, 2.811380920410156e+02, 2.811384582519531e+02, 2.811401672363281e+02, 2.8114111328125e+02, 2.81139892578125e+02, 2.811399841308594e+02, 2.811413269042969e+02, 2.811448364257812e+02, 2.811512145996094e+02, 2.811542053222656e+02, 2.811535034179688e+02, 2.811478271484375e+02, 2.811278381347656e+02, 2.811191101074219e+02, 2.811242980957031e+02, 2.811401062011719e+02] +TAirSup.T=[2.931499938964844e+02, 2.934500122070312e+02, 2.828916015625e+02, 2.808954467773438e+02, 2.807955627441406e+02, 2.81120361328125e+02, 2.817196044921875e+02, 2.824891357421875e+02, 2.833683166503906e+02, 2.843056030273438e+02, 2.852633666992188e+02, 2.862286376953125e+02, 2.871991577148438e+02, 2.886166076660156e+02, 2.900149230957031e+02, 2.908226623535156e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.912169189453125e+02, 2.911927795410156e+02, 2.912376708984375e+02, 2.9122119140625e+02, 2.911982727050781e+02, 2.911918640136719e+02, 2.911965637207031e+02, 2.911984558105469e+02, 2.911958923339844e+02, 2.911891784667969e+02, 2.911897583007812e+02, 2.911892700195312e+02, 2.911894226074219e+02, 2.911897277832031e+02, 2.91185791015625e+02, 2.91185791015625e+02, 2.911998901367188e+02, 2.912023620605469e+02, 2.912118835449219e+02, 2.912144470214844e+02, 2.912059326171875e+02, 2.911935424804688e+02, 2.908965148925781e+02, 2.911412658691406e+02, 2.9117138671875e+02, 2.911639099121094e+02, 2.911561279296875e+02, 2.911521911621094e+02, 2.91150634765625e+02, 2.911501770019531e+02, 2.911500244140625e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911500244140625e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.915381774902344e+02, 2.914227600097656e+02, 2.912820434570312e+02, 2.912078247070312e+02, 2.911747741699219e+02, 2.911600036621094e+02, 2.9115380859375e+02, 2.911510925292969e+02, 2.91150390625e+02, 2.911502380371094e+02, 2.911502990722656e+02, 2.911497497558594e+02, 2.911499328613281e+02, 2.911500549316406e+02, 2.911501770019531e+02, 2.91150634765625e+02, 2.911503601074219e+02, 2.911500244140625e+02, 2.911496887207031e+02, 2.911491088867188e+02, 2.911489562988281e+02, 2.911500549316406e+02, 2.911511535644531e+02, 2.911519775390625e+02] TAirSupSet.y=[2.911499938964844e+02, 2.911499938964844e+02] -chiWSE.chiPar.chi[1].P=[0e+00, 0e+00, 2.338026970392093e-04, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.06961376953125e+04, 1.00832763671875e+04, 9.73958203125e+03, 9.675638671875e+03, 9.99118359375e+03, 1.05972900390625e+04, 1.12923671875e+04, 1.1964599609375e+04, 1.24960810546875e+04, 1.2814353515625e+04, 1.2984517578125e+04, 1.30852861328125e+04, 1.319548828125e+04, 1.3439447265625e+04, 1.3834185546875e+04, 1.41578759765625e+04, 1.42080029296875e+04, 1.3920994140625e+04, 1.36641630859375e+04, 1.3471947265625e+04, 1.33304619140625e+04, 1.32319609375e+04, 1.31903193359375e+04, 1.3158060546875e+04, 1.307783203125e+04, 1.28581103515625e+04, 1.194437402343749e+04, 1.052813085937501e+04, 9.092338867187511e+03, 8.0832197265625e+03, 6.97705224609375e+03, 6.31866552734375e+03, 5.6575830078125e+03, 4.54278564453125e+03, 2.797572509765625e+03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +chiWSE.chiPar.chi[1].P=[0e+00, 0e+00, 2.338026824872941e-04, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.06960693359375e+04, 1.0083255859375e+04, 9.739576171875e+03, 9.675638671875e+03, 9.9911884765625e+03, 1.0597287109375e+04, 1.12923623046875e+04, 1.19646015625e+04, 1.24960595703125e+04, 1.2814341796875e+04, 1.2984521484375e+04, 1.308529296875e+04, 1.31954833984375e+04, 1.3439447265625e+04, 1.38341865234375e+04, 1.41578837890625e+04, 1.42080126953125e+04, 1.39209921875e+04, 1.36641357421875e+04, 1.34719384765625e+04, 1.33304365234375e+04, 1.32319306640625e+04, 1.319034375e+04, 1.31580537109375e+04, 1.30778173828125e+04, 1.2858111328125e+04, 1.194437792968749e+04, 1.052813085937501e+04, 9.092342773437511e+03, 8.08322216796875e+03, 6.9769814453125e+03, 6.31859912109375e+03, 5.65754296875e+03, 4.542099609375e+03, 2.79757666015625e+03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] chiWSE.chiPar.chi[2].P=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -chiWSE.chiPar.chi[1].COP=[0e+00, 0e+00, 8.185892105102539e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.762195587158203e+00, 5.467807292938232e+00, 5.288229465484619e+00, 5.239251613616943e+00, 5.343721866607666e+00, 5.537416458129883e+00, 5.731002330780029e+00, 5.892684459686279e+00, 6.005446434020996e+00, 6.067360877990723e+00, 6.098865509033203e+00, 6.116979598999023e+00, 6.136277675628662e+00, 6.177362918853761e+00, 6.240210533142091e+00, 6.288540840148926e+00, 6.296181678771973e+00, 6.254278659820557e+00, 6.214502334594727e+00, 6.183400630950928e+00, 6.159746646881104e+00, 6.14285135269165e+00, 6.135587692260742e+00, 6.129985809326172e+00, 6.11593770980835e+00, 6.076521873474121e+00, 5.891011238098142e+00, 5.519460678100589e+00, 4.993225097656254e+00, 4.487328052520752e+00, 4.511827945709229e+00, 4.530912399291992e+00, 4.550414085388184e+00, 4.584033489227295e+00, 4.63849925994873e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +chiWSE.chiPar.chi[1].COP=[0e+00, 0e+00, 8.185892105102539e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.762152671813965e+00, 5.467791080474854e+00, 5.288224220275879e+00, 5.239251136779785e+00, 5.343723773956299e+00, 5.537415027618408e+00, 5.731000900268555e+00, 5.89268684387207e+00, 6.005436420440674e+00, 6.067353248596191e+00, 6.098864078521729e+00, 6.116985321044922e+00, 6.136277198791504e+00, 6.177361488342286e+00, 6.240207195281983e+00, 6.288541793823242e+00, 6.296186447143555e+00, 6.254278659820557e+00, 6.214496612548828e+00, 6.183399677276611e+00, 6.15974235534668e+00, 6.14284610748291e+00, 6.135591983795166e+00, 6.129985332489014e+00, 6.1159348487854e+00, 6.076521873474121e+00, 5.8910117149353e+00, 5.519461154937748e+00, 4.993227005004887e+00, 4.487329483032227e+00, 4.511829853057861e+00, 4.530914306640625e+00, 4.5504150390625e+00, 4.584054470062256e+00, 4.63849925994873e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] chiWSE.chiPar.chi[2].COP=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -chiWSE.chiPar.chi[1].QEva_flow=[0e+00, 0e+00, -1.055000000633299e-03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -6.163323828125e+04, -5.5133421875e+04, -5.15051484375e+04, -5.0693109375e+04, -5.3390109375e+04, -5.86816171875e+04, -6.47165859375e+04, -7.0503609375e+04, -7.50445546875e+04, -7.77493125e+04, -7.91908359375e+04, -8.00424375e+04, -8.09711875e+04, -8.302035156250003e+04, -8.632823437500003e+04, -8.903238281249999e+04, -8.94561796875e+04, -8.70657890625e+04, -8.4915984375e+04, -8.3302453125e+04, -8.211228125e+04, -8.12819765625e+04, -8.09303671875e+04, -8.0658734375e+04, -7.99832109375e+04, -7.81326015625e+04, -7.036444531249991e+04, -5.810960937500011e+04, -4.54000976562501e+04, -3.62720625e+04, -3.1479263671875e+04, -2.8629326171875e+04, -2.5744349609375e+04, -2.082428515625e+04, -1.297654296875e+04, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +chiWSE.chiPar.chi[1].QEva_flow=[0e+00, 0e+00, -1.055000000633299e-03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -6.1632390625e+04, -5.513313671875e+04, -5.150506640625e+04, -5.069310546875e+04, -5.339015625e+04, -5.868158203125e+04, -6.471654296875e+04, -7.050365625e+04, -7.5044296875e+04, -7.7749140625e+04, -7.91908359375e+04, -8.00425546875e+04, -8.097115625e+04, -8.302032812500003e+04, -8.632819531250003e+04, -8.903245312499999e+04, -8.94563046875e+04, -8.70657734375e+04, -8.49157265625e+04, -8.33023828125e+04, -8.21120625e+04, -8.128171875e+04, -8.0930578125e+04, -8.06586796875e+04, -7.99830859375e+04, -7.81326015625e+04, -7.036447656249991e+04, -5.810961718750011e+04, -4.54001367187501e+04, -3.627208203125e+04, -3.147895703125e+04, -2.8629037109375e+04, -2.5744173828125e+04, -2.082123828125e+04, -1.29765615234375e+04, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] chiWSE.chiPar.chi[2].QEva_flow=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -chiWSE.wse.heaExc.hex.Q2_flow=[-0e+00, -0e+00, -1.31830375e+05, -8.83469453125e+04, -7.41588828125e+04, -7.7978890625e+04, -8.464990625e+04, -9.317331250000001e+04, -1.0303909375e+05, -1.138155625e+05, -1.250503671875e+05, -1.3644040625e+05, -1.4777665625e+05, -1.60879734375e+05, -1.7581721875e+05, -2.00206515625e+05, -2.108884375e+05, -2.160690625e+05, -2.2063296875e+05, -2.25193828125e+05, -2.37855125e+05, -2.49154484375e+05, -2.6503625e+05, -2.755614375e+05, -2.873915625e+05, -2.9983840625e+05, -3.1220815625e+05, -3.241831875e+05, -3.360929687500001e+05, -3.4804159375e+05, -3.599693125e+05, -3.7193415625e+05, -3.83940625e+05, -3.95949375e+05, -4.079892187500001e+05, -4.199904374999999e+05, -4.3114625e+05, -4.4367815625e+05, -4.55912e+05, -4.6807578125e+05, -4.800918125e+05, -4.920353125e+05, -4.6678140625e+05, -4.564145e+05, -4.52333375e+05, -4.50307125e+05, -4.46708125e+05, -4.411760625e+05, -4.3509253125e+05, -4.2930575e+05, -4.2477471875e+05, -4.2207425e+05, -4.2063434375e+05, -4.1978359375e+05, -4.1885484375e+05, -4.168000625e+05, -4.1349103125e+05, -4.10790375e+05, -4.1037559375e+05, -4.127699375e+05, -4.14918e+05, -4.1652996875e+05, -4.1771915625e+05, -4.185480625e+05, -4.1889878125e+05, -4.191708125e+05, -4.1984828125e+05, -4.21708125e+05, -4.294952812500001e+05, -4.417574687499999e+05, -4.544624999999999e+05, -4.6357528125e+05, -4.6835984375e+05, -4.7120696875e+05, -4.74095e+05, -4.790239375e+05, -4.86878125e+05, -5.22920625e+05, -5.11345625e+05, -5.0332853125e+05, -5.0056578125e+05, -4.998124375e+05, -4.996750625e+05, -4.9970159375e+05, -4.9975265625e+05, -4.9979003125e+05, -4.998100625e+05, -4.9982215625e+05, -4.9984015625e+05, -4.9983346875e+05, -4.99831875e+05, -4.9983253125e+05, -4.99811375e+05, -4.9982125e+05, -4.998265625e+05, -4.9983009375e+05, -4.99862875e+05, -4.99822e+05, -4.9981925e+05, -4.9982371875e+05, -4.99824e+05] -ahu.cooCoi.Q2_flow=[0e+00, -5.63275341796875e+03, -9.76563125e+04, -8.40698046875e+04, -7.55551640625e+04, -8.21563046875e+04, -9.05617578125e+04, -1.001404140625e+05, -1.1083034375e+05, -1.21880015625e+05, -1.332075e+05, -1.44637984375e+05, -1.5602896875e+05, -1.7139884375e+05, -1.86400734375e+05, -2.0435353125e+05, -2.137119375e+05, -2.17842203125e+05, -2.22401140625e+05, -2.2696203125e+05, -2.3785515625e+05, -2.4965953125e+05, -2.6412428125e+05, -2.7583540625e+05, -2.87739125e+05, -2.998314375e+05, -3.119299375e+05, -3.239311875e+05, -3.359064687500001e+05, -3.4788503125e+05, -3.598738125e+05, -3.718603125e+05, -3.8385865625e+05, -3.9585853125e+05, -4.078592812500001e+05, -4.198619999999999e+05, -4.316576875e+05, -4.4376853125e+05, -4.558436875e+05, -4.67882375e+05, -4.7987190625e+05, -4.918478125e+05, -5.07735375e+05, -5.033341875e+05, -5.0108853125e+05, -5.00216375e+05, -4.9992715625e+05, -4.9984521875e+05, -4.9982665625e+05, -4.9982478125e+05, -4.998259375e+05, -4.998256875e+05, -4.9982534375e+05, -4.99825375e+05, -4.9982575e+05, -4.9982565625e+05, -4.9982565625e+05, -4.9982540625e+05, -4.9982540625e+05, -4.9982553125e+05, -4.9982553125e+05, -4.9982546875e+05, -4.998255e+05, -4.9982546875e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -5.072240625e+05, -5.040265e+05, -5.011965e+05, -5.001843125e+05, -4.9988071875e+05, -4.998040625e+05, -4.9979696875e+05, -4.99805875e+05, -4.9981528125e+05, -4.9982059375e+05, -4.99824125e+05, -4.99827875e+05, -4.9982715625e+05, -4.9982678125e+05, -4.998270625e+05, -4.9982159375e+05, -4.9982290625e+05, -4.9982428125e+05, -4.9982525e+05, -4.9983309375e+05, -4.998253125e+05, -4.9982553125e+05, -4.99826625e+05, -4.99826375e+05] +chiWSE.wse.heaExc.hex.Q2_flow=[-0e+00, -0e+00, -1.318304375e+05, -8.8346953125e+04, -7.415978125e+04, -7.7978640625e+04, -8.46499765625e+04, -9.317385156250001e+04, -1.03039421875e+05, -1.13817390625e+05, -1.250500625e+05, -1.36440390625e+05, -1.4777665625e+05, -1.60879953125e+05, -1.7581740625e+05, -2.00206515625e+05, -2.10889e+05, -2.1606975e+05, -2.20633609375e+05, -2.251945e+05, -2.37852921875e+05, -2.4915453125e+05, -2.6503528125e+05, -2.755625625e+05, -2.8739515625e+05, -2.998511875e+05, -3.122151875e+05, -3.24182e+05, -3.360879375000001e+05, -3.480385e+05, -3.59967125e+05, -3.7193309375e+05, -3.8394128125e+05, -3.959491875e+05, -4.079897500000001e+05, -4.199910312499999e+05, -4.311466875e+05, -4.4367809375e+05, -4.559128125e+05, -4.6807596875e+05, -4.80091625e+05, -4.9203490625e+05, -4.667794375e+05, -4.5641375e+05, -4.5233315625e+05, -4.5030709375e+05, -4.46708125e+05, -4.41176e+05, -4.3509246875e+05, -4.29305875e+05, -4.2477440625e+05, -4.2207384375e+05, -4.2063409375e+05, -4.1978390625e+05, -4.1885484375e+05, -4.167999375e+05, -4.1349065625e+05, -4.1079025e+05, -4.1037584375e+05, -4.127699375e+05, -4.1491809375e+05, -4.1653009375e+05, -4.1771934375e+05, -4.1854834375e+05, -4.188985625e+05, -4.1917090625e+05, -4.19848375e+05, -4.21708125e+05, -4.294952500000001e+05, -4.417574687499999e+05, -4.544624687499999e+05, -4.6357528125e+05, -4.68360125e+05, -4.7120725e+05, -4.7409515625e+05, -4.7902703125e+05, -4.8687809375e+05, -5.22922125e+05, -5.113461875e+05, -5.033288125e+05, -5.005659375e+05, -4.998125e+05, -4.996750625e+05, -4.99701625e+05, -4.9975265625e+05, -4.9979003125e+05, -4.998100625e+05, -4.9982215625e+05, -4.9984015625e+05, -4.9983346875e+05, -4.99831875e+05, -4.9983253125e+05, -4.99811375e+05, -4.9982125e+05, -4.998265625e+05, -4.9983009375e+05, -4.99862875e+05, -4.99822e+05, -4.9981925e+05, -4.9982371875e+05, -4.9982409375e+05] +ahu.cooCoi.Q2_flow=[0e+00, -5.63275341796875e+03, -9.76563203125e+04, -8.406984375e+04, -7.555834375e+04, -8.2156171875e+04, -9.056165625e+04, -1.001401953125e+05, -1.108305625e+05, -1.21877328125e+05, -1.332070625e+05, -1.44637921875e+05, -1.56029375e+05, -1.71399265625e+05, -1.86399265625e+05, -2.0435353125e+05, -2.137138125e+05, -2.17842796875e+05, -2.22401796875e+05, -2.2696265625e+05, -2.3785428125e+05, -2.49659703125e+05, -2.6412003125e+05, -2.758286875e+05, -2.8773959375e+05, -2.9983440625e+05, -3.119319375e+05, -3.2393121875e+05, -3.359049375000001e+05, -3.478836875e+05, -3.5987309375e+05, -3.7186015625e+05, -3.8385875e+05, -3.958584375e+05, -4.078593437500001e+05, -4.198621249999999e+05, -4.31657875e+05, -4.437685e+05, -4.5584396875e+05, -4.6788246875e+05, -4.79871875e+05, -4.918476875e+05, -5.077345625e+05, -5.0333375e+05, -5.0108815625e+05, -5.0021634375e+05, -4.999271875e+05, -4.998451875e+05, -4.9982665625e+05, -4.99824875e+05, -4.9982575e+05, -4.998255e+05, -4.9982528125e+05, -4.998255e+05, -4.9982578125e+05, -4.99825625e+05, -4.9982553125e+05, -4.99825375e+05, -4.9982553125e+05, -4.9982553125e+05, -4.9982546875e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -5.0722453125e+05, -5.0402665625e+05, -5.011965625e+05, -5.0018434375e+05, -4.9988071875e+05, -4.998040625e+05, -4.9979696875e+05, -4.99805875e+05, -4.9981528125e+05, -4.9982059375e+05, -4.99824125e+05, -4.99827875e+05, -4.9982715625e+05, -4.9982678125e+05, -4.998270625e+05, -4.9982159375e+05, -4.9982290625e+05, -4.9982428125e+05, -4.9982525e+05, -4.9983309375e+05, -4.9982534375e+05, -4.9982553125e+05, -4.99826625e+05, -4.9982640625e+05] diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Applications_DataCenters_ChillerCooled_Examples_IntegratedPrimarySecondaryEconomizer.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Applications_DataCenters_ChillerCooled_Examples_IntegratedPrimarySecondaryEconomizer.txt index 16ee7df50dd..b5c81bc7a0c 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Applications_DataCenters_ChillerCooled_Examples_IntegratedPrimarySecondaryEconomizer.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Applications_DataCenters_ChillerCooled_Examples_IntegratedPrimarySecondaryEconomizer.txt @@ -1,4 +1,4 @@ -last-generated=2020-10-06 +last-generated=2021-02-17 statistics-initialization= { "nonlinear": "1, 1, 3, 1, 1, 2, 1, 4, 1, 1, 1, 1, 1", @@ -16,20 +16,20 @@ cooModCon.y=[1e+00, 1e+00, 2e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+0 chiOn[1].u=[0e+00, 0e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] chiOn[2].u=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] wseOn.y=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] -TCWSup.T=[2.931499938964844e+02, 2.733481140136719e+02, 2.74323486328125e+02, 2.748457336425781e+02, 2.757481689453125e+02, 2.7591943359375e+02, 2.761682434082031e+02, 2.764586791992188e+02, 2.767689514160156e+02, 2.770837097167969e+02, 2.773877258300781e+02, 2.7768798828125e+02, 2.779970703125e+02, 2.783567504882812e+02, 2.788180541992188e+02, 2.781343994140625e+02, 2.779673767089844e+02, 2.778834838867188e+02, 2.778144226074219e+02, 2.777454833984375e+02, 2.776903991699219e+02, 2.776576538085938e+02, 2.776249694824219e+02, 2.77624755859375e+02, 2.776296691894531e+02, 2.776381530761719e+02, 2.776782836914062e+02, 2.777150268554688e+02, 2.777365417480469e+02, 2.7771484375e+02, 2.776639709472656e+02, 2.776408996582031e+02, 2.776438598632812e+02, 2.776691284179688e+02, 2.776962280273438e+02, 2.777078552246094e+02, 2.777801208496094e+02, 2.780859985351562e+02, 2.784513854980469e+02, 2.788619689941406e+02, 2.792045288085938e+02, 2.794131774902344e+02, 2.797100830078125e+02, 2.795457763671875e+02, 2.794576110839844e+02, 2.794443359375e+02, 2.795423889160156e+02, 2.797262268066406e+02, 2.799346008300781e+02, 2.801341247558594e+02, 2.8029052734375e+02, 2.803836669921875e+02, 2.804333190917969e+02, 2.80462646484375e+02, 2.804947509765625e+02, 2.805656433105469e+02, 2.806798095703125e+02, 2.8077294921875e+02, 2.807872619628906e+02, 2.807046203613281e+02, 2.806305236816406e+02, 2.805749206542969e+02, 2.805338745117188e+02, 2.805052795410156e+02, 2.804931945800781e+02, 2.804838256835938e+02, 2.804604187011719e+02, 2.80396240234375e+02, 2.801275024414062e+02, 2.797044067382812e+02, 2.792660522460938e+02, 2.789516906738281e+02, 2.787866516113281e+02, 2.786884155273438e+02, 2.785887756347656e+02, 2.784185791015625e+02, 2.781476745605469e+02, 2.783848266601562e+02, 2.776941528320312e+02, 2.776929321289062e+02, 2.776969299316406e+02, 2.776930541992188e+02, 2.776908569335938e+02, 2.776893920898438e+02, 2.776872863769531e+02, 2.77685791015625e+02, 2.776863403320312e+02, 2.776884765625e+02, 2.776898193359375e+02, 2.77688232421875e+02, 2.776883239746094e+02, 2.776900024414062e+02, 2.776944274902344e+02, 2.777026672363281e+02, 2.7770654296875e+02, 2.777057189941406e+02, 2.776985168457031e+02, 2.776729125976562e+02, 2.776615600585938e+02, 2.776680297851562e+02, 2.776881713867188e+02] -TCWRet.T=[2.931499938964844e+02, 2.733482666015625e+02, 2.747946166992188e+02, 2.751372680664062e+02, 2.759988403320312e+02, 2.761847229003906e+02, 2.7645751953125e+02, 2.767779846191406e+02, 2.771226501464844e+02, 2.774748229980469e+02, 2.778177185058594e+02, 2.781573486328125e+02, 2.785054931640625e+02, 2.789101257324219e+02, 2.794230041503906e+02, 2.788241271972656e+02, 2.7869384765625e+02, 2.786277465820312e+02, 2.785744018554688e+02, 2.785211486816406e+02, 2.785096740722656e+02, 2.785157775878906e+02, 2.785377807617188e+02, 2.785737609863281e+02, 2.786194152832031e+02, 2.786708374023438e+02, 2.787535705566406e+02, 2.7883154296875e+02, 2.788940734863281e+02, 2.7891357421875e+02, 2.789037170410156e+02, 2.789218139648438e+02, 2.789660949707031e+02, 2.790327453613281e+02, 2.79101318359375e+02, 2.791543273925781e+02, 2.792646789550781e+02, 2.796135864257812e+02, 2.800210571289062e+02, 2.804735412597656e+02, 2.808576354980469e+02, 2.811075439453125e+02, 2.815633850097656e+02, 2.813331604003906e+02, 2.812225341796875e+02, 2.81200927734375e+02, 2.812954406738281e+02, 2.814798583984375e+02, 2.816902770996094e+02, 2.818926391601562e+02, 2.820521850585938e+02, 2.821476745605469e+02, 2.821986083984375e+02, 2.82228515625e+02, 2.822607116699219e+02, 2.823310852050781e+02, 2.824463195800781e+02, 2.825416870117188e+02, 2.825584411621094e+02, 2.824758605957031e+02, 2.824004211425781e+02, 2.823437805175781e+02, 2.823019714355469e+02, 2.82272705078125e+02, 2.822601928710938e+02, 2.822508239746094e+02, 2.822276306152344e+02, 2.821649780273438e+02, 2.818981323242188e+02, 2.814721069335938e+02, 2.810277099609375e+02, 2.807058715820312e+02, 2.805348510742188e+02, 2.804335632324219e+02, 2.803323974609375e+02, 2.801606750488281e+02, 2.79885498046875e+02, 2.801776733398438e+02, 2.794508361816406e+02, 2.794248657226562e+02, 2.794203491210938e+02, 2.794142150878906e+02, 2.794116516113281e+02, 2.794103393554688e+02, 2.79408447265625e+02, 2.794071044921875e+02, 2.7940771484375e+02, 2.79409912109375e+02, 2.794113159179688e+02, 2.794096984863281e+02, 2.794097900390625e+02, 2.794114685058594e+02, 2.794158325195312e+02, 2.794241027832031e+02, 2.79427978515625e+02, 2.794271545410156e+02, 2.794201049804688e+02, 2.793943481445312e+02, 2.793829650878906e+02, 2.793894348144531e+02, 2.794095764160156e+02] +TCWSup.T=[2.931499938964844e+02, 2.733481140136719e+02, 2.74323486328125e+02, 2.748457336425781e+02, 2.757481689453125e+02, 2.7591943359375e+02, 2.76168212890625e+02, 2.764586791992188e+02, 2.767689208984375e+02, 2.770837097167969e+02, 2.773876953125e+02, 2.776880187988281e+02, 2.779970703125e+02, 2.783567810058594e+02, 2.788180541992188e+02, 2.781343994140625e+02, 2.779673767089844e+02, 2.778834838867188e+02, 2.778144226074219e+02, 2.777454833984375e+02, 2.776903991699219e+02, 2.776576232910156e+02, 2.776249694824219e+02, 2.77624755859375e+02, 2.776296691894531e+02, 2.776381225585938e+02, 2.776782836914062e+02, 2.777150268554688e+02, 2.777365417480469e+02, 2.7771484375e+02, 2.776639709472656e+02, 2.776408996582031e+02, 2.776438598632812e+02, 2.776691284179688e+02, 2.776962280273438e+02, 2.777078552246094e+02, 2.777801208496094e+02, 2.780859985351562e+02, 2.78451416015625e+02, 2.788619689941406e+02, 2.792045288085938e+02, 2.794131774902344e+02, 2.797100830078125e+02, 2.795457458496094e+02, 2.794575805664062e+02, 2.794443359375e+02, 2.795423889160156e+02, 2.797262268066406e+02, 2.799346008300781e+02, 2.801341247558594e+02, 2.8029052734375e+02, 2.803836669921875e+02, 2.804332885742188e+02, 2.80462646484375e+02, 2.804947509765625e+02, 2.805656433105469e+02, 2.806798095703125e+02, 2.807729797363281e+02, 2.807872314453125e+02, 2.807046203613281e+02, 2.806305236816406e+02, 2.805749206542969e+02, 2.805338745117188e+02, 2.805052795410156e+02, 2.804931945800781e+02, 2.804838256835938e+02, 2.804604187011719e+02, 2.80396240234375e+02, 2.801275024414062e+02, 2.797043762207031e+02, 2.792660522460938e+02, 2.789516906738281e+02, 2.787866516113281e+02, 2.786884155273438e+02, 2.785887756347656e+02, 2.784186706542969e+02, 2.781476745605469e+02, 2.783848571777344e+02, 2.776941223144531e+02, 2.776929321289062e+02, 2.776969299316406e+02, 2.776930541992188e+02, 2.776908569335938e+02, 2.776893920898438e+02, 2.776872863769531e+02, 2.77685791015625e+02, 2.776863403320312e+02, 2.776884765625e+02, 2.776898193359375e+02, 2.77688232421875e+02, 2.776883239746094e+02, 2.776900024414062e+02, 2.776944274902344e+02, 2.777026672363281e+02, 2.7770654296875e+02, 2.777057189941406e+02, 2.776985168457031e+02, 2.776729125976562e+02, 2.776615600585938e+02, 2.776680297851562e+02, 2.776881713867188e+02] +TCWRet.T=[2.931499938964844e+02, 2.733482666015625e+02, 2.747946166992188e+02, 2.751372680664062e+02, 2.759988403320312e+02, 2.761847229003906e+02, 2.7645751953125e+02, 2.767779541015625e+02, 2.771226501464844e+02, 2.774748229980469e+02, 2.778177185058594e+02, 2.781573486328125e+02, 2.785055236816406e+02, 2.7891015625e+02, 2.794230041503906e+02, 2.788241271972656e+02, 2.7869384765625e+02, 2.786277465820312e+02, 2.785744018554688e+02, 2.785211486816406e+02, 2.785096740722656e+02, 2.785157775878906e+02, 2.785377807617188e+02, 2.7857373046875e+02, 2.786193237304688e+02, 2.786708068847656e+02, 2.787535705566406e+02, 2.788315734863281e+02, 2.788941040039062e+02, 2.7891357421875e+02, 2.789037170410156e+02, 2.789217834472656e+02, 2.789660949707031e+02, 2.790327453613281e+02, 2.791013488769531e+02, 2.791543273925781e+02, 2.792646789550781e+02, 2.796136169433594e+02, 2.800211181640625e+02, 2.804735717773438e+02, 2.808576354980469e+02, 2.811075439453125e+02, 2.815633850097656e+02, 2.813330993652344e+02, 2.812225341796875e+02, 2.81200927734375e+02, 2.812954406738281e+02, 2.814798583984375e+02, 2.816902770996094e+02, 2.818926391601562e+02, 2.820521850585938e+02, 2.821476745605469e+02, 2.821986083984375e+02, 2.82228515625e+02, 2.822607116699219e+02, 2.823310852050781e+02, 2.824463195800781e+02, 2.825416870117188e+02, 2.825584411621094e+02, 2.824758605957031e+02, 2.824004211425781e+02, 2.823437805175781e+02, 2.823019714355469e+02, 2.82272705078125e+02, 2.822601928710938e+02, 2.822508239746094e+02, 2.822276306152344e+02, 2.821649780273438e+02, 2.818981323242188e+02, 2.814721069335938e+02, 2.810277099609375e+02, 2.807058715820312e+02, 2.805348510742188e+02, 2.804335632324219e+02, 2.803323974609375e+02, 2.801607666015625e+02, 2.79885498046875e+02, 2.801776733398438e+02, 2.794508361816406e+02, 2.794248657226562e+02, 2.794203491210938e+02, 2.794142150878906e+02, 2.794116516113281e+02, 2.794103393554688e+02, 2.79408447265625e+02, 2.794071044921875e+02, 2.7940771484375e+02, 2.79409912109375e+02, 2.794113159179688e+02, 2.794096984863281e+02, 2.794097900390625e+02, 2.794114685058594e+02, 2.794158325195312e+02, 2.794241027832031e+02, 2.79427978515625e+02, 2.794271545410156e+02, 2.794201049804688e+02, 2.793943481445312e+02, 2.793829650878906e+02, 2.793894348144531e+02, 2.794095764160156e+02] TCWSupSet.y=[2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02] -TCHWSup.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.767357177734375e+02, 2.761054077148438e+02, 2.768494567871094e+02, 2.770840759277344e+02, 2.774377136230469e+02, 2.778598327636719e+02, 2.783212585449219e+02, 2.788005676269531e+02, 2.792756652832031e+02, 2.797490234375e+02, 2.802300415039062e+02, 2.80785888671875e+02, 2.814745788574219e+02, 2.811678161621094e+02, 2.811623229980469e+02, 2.811567077636719e+02, 2.811567687988281e+02, 2.811569213867188e+02, 2.811623840332031e+02, 2.811585388183594e+02, 2.811560363769531e+02, 2.811506042480469e+02, 2.81148193359375e+02, 2.811511535644531e+02, 2.811803894042969e+02, 2.812066955566406e+02, 2.812205505371094e+02, 2.812001647949219e+02, 2.8115771484375e+02, 2.811368103027344e+02, 2.811363830566406e+02, 2.811535034179688e+02, 2.811716613769531e+02, 2.811782836914062e+02, 2.812332763671875e+02, 2.814696960449219e+02, 2.817536010742188e+02, 2.820717163085938e+02, 2.823351745605469e+02, 2.8249365234375e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.817608032226562e+02, 2.811943054199219e+02, 2.811671447753906e+02, 2.811571350097656e+02, 2.811482543945312e+02, 2.811438903808594e+02, 2.811416320800781e+02, 2.811394958496094e+02, 2.8113818359375e+02, 2.811385498046875e+02, 2.811402282714844e+02, 2.811412048339844e+02, 2.811399841308594e+02, 2.811400756835938e+02, 2.811413879394531e+02, 2.811448974609375e+02, 2.811512756347656e+02, 2.811542663574219e+02, 2.811535949707031e+02, 2.811479797363281e+02, 2.811279602050781e+02, 2.811191711425781e+02, 2.811243286132812e+02, 2.8114013671875e+02] -TCHWRet.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.833218078613281e+02, 2.814026184082031e+02, 2.812596435546875e+02, 2.817520141601562e+02, 2.825274047851562e+02, 2.834775085449219e+02, 2.845440979003906e+02, 2.856812744140625e+02, 2.868403625488281e+02, 2.880061645507812e+02, 2.891756896972656e+02, 2.905222473144531e+02, 2.921192626953125e+02, 2.932930908203125e+02, 2.939365844726562e+02, 2.9424658203125e+02, 2.945232238769531e+02, 2.947997131347656e+02, 2.950486755371094e+02, 2.951605834960938e+02, 2.952799987792969e+02, 2.952539672851562e+02, 2.952225646972656e+02, 2.9520361328125e+02, 2.951901550292969e+02, 2.951743774414062e+02, 2.951566772460938e+02, 2.95139892578125e+02, 2.951317443847656e+02, 2.951201477050781e+02, 2.951068420410156e+02, 2.950918884277344e+02, 2.950736694335938e+02, 2.950602416992188e+02, 2.950519714355469e+02, 2.950114135742188e+02, 2.949706726074219e+02, 2.949183044433594e+02, 2.948628845214844e+02, 2.948180847167969e+02, 2.947142639160156e+02, 2.949027404785156e+02, 2.949407348632812e+02, 2.949467163085938e+02, 2.949469299316406e+02, 2.949465637207031e+02, 2.949463195800781e+02, 2.949461975097656e+02, 2.949461364746094e+02, 2.949461364746094e+02, 2.949461669921875e+02, 2.949461975097656e+02, 2.949461669921875e+02, 2.949461364746094e+02, 2.949461364746094e+02, 2.949461364746094e+02, 2.949461059570312e+02, 2.949461059570312e+02, 2.949460754394531e+02, 2.949460754394531e+02, 2.949460754394531e+02, 2.94946044921875e+02, 2.94946044921875e+02, 2.94946044921875e+02, 2.949460144042969e+02, 2.949460144042969e+02, 2.949460144042969e+02, 2.949459838867188e+02, 2.949459838867188e+02, 2.949459838867188e+02, 2.949459533691406e+02, 2.949459533691406e+02, 2.949459533691406e+02, 2.949459228515625e+02, 2.949459228515625e+02, 2.952068176269531e+02, 2.951958923339844e+02, 2.950653991699219e+02, 2.949983825683594e+02, 2.949691772460938e+02, 2.949561157226562e+02, 2.949505615234375e+02, 2.949482727050781e+02, 2.949477233886719e+02, 2.949474487304688e+02, 2.949472351074219e+02, 2.949466552734375e+02, 2.949469604492188e+02, 2.94947021484375e+02, 2.949469604492188e+02, 2.949468994140625e+02, 2.949458618164062e+02, 2.949452514648438e+02, 2.94945068359375e+02, 2.949452819824219e+02, 2.949477233886719e+02, 2.949496154785156e+02, 2.949497985839844e+02, 2.94948486328125e+02] +TCHWSup.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.767357177734375e+02, 2.761054077148438e+02, 2.768494873046875e+02, 2.770840759277344e+02, 2.774377136230469e+02, 2.778598327636719e+02, 2.783212280273438e+02, 2.78800537109375e+02, 2.792756652832031e+02, 2.797490539550781e+02, 2.802300720214844e+02, 2.807859191894531e+02, 2.814745788574219e+02, 2.811678161621094e+02, 2.811623229980469e+02, 2.811567077636719e+02, 2.811567687988281e+02, 2.811569213867188e+02, 2.811623840332031e+02, 2.811585388183594e+02, 2.811560668945312e+02, 2.81150634765625e+02, 2.81148193359375e+02, 2.81151123046875e+02, 2.811803894042969e+02, 2.812066955566406e+02, 2.812205505371094e+02, 2.812001647949219e+02, 2.8115771484375e+02, 2.811368103027344e+02, 2.811363830566406e+02, 2.811535034179688e+02, 2.811716613769531e+02, 2.811782836914062e+02, 2.812332458496094e+02, 2.814696960449219e+02, 2.817536315917969e+02, 2.820717163085938e+02, 2.823351745605469e+02, 2.8249365234375e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.811500244140625e+02, 2.817608337402344e+02, 2.811943054199219e+02, 2.811671447753906e+02, 2.811571350097656e+02, 2.811482543945312e+02, 2.811438903808594e+02, 2.811416320800781e+02, 2.811394958496094e+02, 2.8113818359375e+02, 2.811385498046875e+02, 2.811402282714844e+02, 2.811412048339844e+02, 2.811399841308594e+02, 2.811400756835938e+02, 2.811413879394531e+02, 2.811448974609375e+02, 2.811512756347656e+02, 2.811542663574219e+02, 2.811535949707031e+02, 2.811479797363281e+02, 2.811279602050781e+02, 2.811191711425781e+02, 2.811243286132812e+02, 2.8114013671875e+02] +TCHWRet.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.833218078613281e+02, 2.814026184082031e+02, 2.812596740722656e+02, 2.817520141601562e+02, 2.825274047851562e+02, 2.834774780273438e+02, 2.845440673828125e+02, 2.856812133789062e+02, 2.8684033203125e+02, 2.880061950683594e+02, 2.891757507324219e+02, 2.905223388671875e+02, 2.921192626953125e+02, 2.932930908203125e+02, 2.939365844726562e+02, 2.9424658203125e+02, 2.945232238769531e+02, 2.947997131347656e+02, 2.950486755371094e+02, 2.951605834960938e+02, 2.952800903320312e+02, 2.952542419433594e+02, 2.952224426269531e+02, 2.952034912109375e+02, 2.951900939941406e+02, 2.951743774414062e+02, 2.951567077636719e+02, 2.95139892578125e+02, 2.951317749023438e+02, 2.951201477050781e+02, 2.951068115234375e+02, 2.950918273925781e+02, 2.950736389160156e+02, 2.950602416992188e+02, 2.950519409179688e+02, 2.950113830566406e+02, 2.949706726074219e+02, 2.949183349609375e+02, 2.948629150390625e+02, 2.948180847167969e+02, 2.947145690917969e+02, 2.949029846191406e+02, 2.949407653808594e+02, 2.949467163085938e+02, 2.949469299316406e+02, 2.949465637207031e+02, 2.949463195800781e+02, 2.949461975097656e+02, 2.949461364746094e+02, 2.949461364746094e+02, 2.949461669921875e+02, 2.949461975097656e+02, 2.949461669921875e+02, 2.949461364746094e+02, 2.949461364746094e+02, 2.949461059570312e+02, 2.949461059570312e+02, 2.949461059570312e+02, 2.949460754394531e+02, 2.949460754394531e+02, 2.949460754394531e+02, 2.94946044921875e+02, 2.94946044921875e+02, 2.94946044921875e+02, 2.949460144042969e+02, 2.949460144042969e+02, 2.949460144042969e+02, 2.949459838867188e+02, 2.949459838867188e+02, 2.949459838867188e+02, 2.949459533691406e+02, 2.949459533691406e+02, 2.949459533691406e+02, 2.949459228515625e+02, 2.949459228515625e+02, 2.952068176269531e+02, 2.951958923339844e+02, 2.950653991699219e+02, 2.949983825683594e+02, 2.949691772460938e+02, 2.949561157226562e+02, 2.949505615234375e+02, 2.949482727050781e+02, 2.949477233886719e+02, 2.949474487304688e+02, 2.949472351074219e+02, 2.949466552734375e+02, 2.949469604492188e+02, 2.94947021484375e+02, 2.949469604492188e+02, 2.949468994140625e+02, 2.949458618164062e+02, 2.949452514648438e+02, 2.94945068359375e+02, 2.949452819824219e+02, 2.949477233886719e+02, 2.949496154785156e+02, 2.949497985839844e+02, 2.94948486328125e+02] TCHWSupSet.y=[2.811499938964844e+02, 2.811499938964844e+02] -chiWSE.TCHWSupWSE=[2.931499938964844e+02, 2.931499938964844e+02, 2.761336669921875e+02, 2.761072692871094e+02, 2.768495178222656e+02, 2.770841979980469e+02, 2.774378662109375e+02, 2.778600158691406e+02, 2.783214416503906e+02, 2.788007507324219e+02, 2.792758483886719e+02, 2.797492065429688e+02, 2.80230224609375e+02, 2.807861633300781e+02, 2.814748229980469e+02, 2.811678161621094e+02, 2.811623229980469e+02, 2.811567077636719e+02, 2.811567687988281e+02, 2.811569213867188e+02, 2.811623840332031e+02, 2.811585388183594e+02, 2.811560363769531e+02, 2.811506042480469e+02, 2.81148193359375e+02, 2.811511535644531e+02, 2.811803894042969e+02, 2.812066955566406e+02, 2.812205505371094e+02, 2.812001647949219e+02, 2.8115771484375e+02, 2.811368103027344e+02, 2.811363830566406e+02, 2.811535339355469e+02, 2.811716613769531e+02, 2.811782836914062e+02, 2.812333068847656e+02, 2.814697265625e+02, 2.81753662109375e+02, 2.820717468261719e+02, 2.82335205078125e+02, 2.8249365234375e+02, 2.827134704589844e+02, 2.826178894042969e+02, 2.82554443359375e+02, 2.825446472167969e+02, 2.826226806640625e+02, 2.827695007324219e+02, 2.829361572265625e+02, 2.830958557128906e+02, 2.8322119140625e+02, 2.832958984375e+02, 2.833357543945312e+02, 2.833592529296875e+02, 2.833848876953125e+02, 2.834413757324219e+02, 2.835326538085938e+02, 2.836073608398438e+02, 2.836191711425781e+02, 2.835532531738281e+02, 2.83493896484375e+02, 2.834493103027344e+02, 2.834164428710938e+02, 2.833935241699219e+02, 2.833837890625e+02, 2.833763122558594e+02, 2.833576965332031e+02, 2.833067626953125e+02, 2.830925903320312e+02, 2.827544250488281e+02, 2.82403564453125e+02, 2.821513671875e+02, 2.820189819335938e+02, 2.819402465820312e+02, 2.818606872558594e+02, 2.817249145507812e+02, 2.815084838867188e+02, 2.817603454589844e+02, 2.811942749023438e+02, 2.811671447753906e+02, 2.811571350097656e+02, 2.811482543945312e+02, 2.811438903808594e+02, 2.811416320800781e+02, 2.811394958496094e+02, 2.8113818359375e+02, 2.811385498046875e+02, 2.811402282714844e+02, 2.811412048339844e+02, 2.811399841308594e+02, 2.811400756835938e+02, 2.811413879394531e+02, 2.811448974609375e+02, 2.811512756347656e+02, 2.811542663574219e+02, 2.811535949707031e+02, 2.811479797363281e+02, 2.811279602050781e+02, 2.811191711425781e+02, 2.811243286132812e+02, 2.8114013671875e+02] -TAirSup.T=[2.931499938964844e+02, 2.934500122070312e+02, 2.825289611816406e+02, 2.806894226074219e+02, 2.806575012207031e+02, 2.810302734375e+02, 2.816611022949219e+02, 2.824512023925781e+02, 2.833438720703125e+02, 2.84289794921875e+02, 2.852532348632812e+02, 2.8622216796875e+02, 2.871951293945312e+02, 2.886125183105469e+02, 2.900133056640625e+02, 2.90823486328125e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.912168273925781e+02, 2.9119287109375e+02, 2.912377014160156e+02, 2.912214660644531e+02, 2.911980895996094e+02, 2.911913146972656e+02, 2.911962585449219e+02, 2.911985168457031e+02, 2.911961669921875e+02, 2.911893920898438e+02, 2.911899719238281e+02, 2.911893310546875e+02, 2.911893005371094e+02, 2.911896057128906e+02, 2.911856384277344e+02, 2.911856994628906e+02, 2.911998901367188e+02, 2.912021179199219e+02, 2.912115783691406e+02, 2.912142944335938e+02, 2.912061462402344e+02, 2.911937255859375e+02, 2.908500366210938e+02, 2.910889282226562e+02, 2.911402282714844e+02, 2.911495666503906e+02, 2.911505432128906e+02, 2.911503295898438e+02, 2.911501159667969e+02, 2.911500244140625e+02, 2.911499633789062e+02, 2.911499633789062e+02, 2.911499938964844e+02, 2.911500244140625e+02, 2.911500244140625e+02, 2.911500244140625e+02, 2.911499938964844e+02, 2.911500244140625e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.915621643066406e+02, 2.914426879882812e+02, 2.912925415039062e+02, 2.912134399414062e+02, 2.911777648925781e+02, 2.911615905761719e+02, 2.911545715332031e+02, 2.911514587402344e+02, 2.911505737304688e+02, 2.911502990722656e+02, 2.911502990722656e+02, 2.911497497558594e+02, 2.9114990234375e+02, 2.911500549316406e+02, 2.911501770019531e+02, 2.91150634765625e+02, 2.91150390625e+02, 2.911500854492188e+02, 2.911497192382812e+02, 2.91149169921875e+02, 2.911490173339844e+02, 2.911501159667969e+02, 2.911512145996094e+02, 2.911520385742188e+02] +chiWSE.TCHWSupWSE=[2.931499938964844e+02, 2.931499938964844e+02, 2.761336669921875e+02, 2.761072692871094e+02, 2.768495483398438e+02, 2.770841979980469e+02, 2.774378662109375e+02, 2.778600158691406e+02, 2.783214111328125e+02, 2.788007202148438e+02, 2.792758483886719e+02, 2.797492370605469e+02, 2.802302551269531e+02, 2.807861938476562e+02, 2.814748229980469e+02, 2.811678161621094e+02, 2.811623229980469e+02, 2.811567077636719e+02, 2.811567687988281e+02, 2.811569213867188e+02, 2.811623840332031e+02, 2.811585388183594e+02, 2.811560363769531e+02, 2.81150634765625e+02, 2.81148193359375e+02, 2.81151123046875e+02, 2.811803894042969e+02, 2.812066955566406e+02, 2.812205505371094e+02, 2.812001647949219e+02, 2.8115771484375e+02, 2.811368103027344e+02, 2.811363830566406e+02, 2.811535034179688e+02, 2.811716613769531e+02, 2.811782836914062e+02, 2.812333068847656e+02, 2.814697570800781e+02, 2.817536926269531e+02, 2.8207177734375e+02, 2.82335205078125e+02, 2.8249365234375e+02, 2.827135314941406e+02, 2.826178894042969e+02, 2.82554443359375e+02, 2.825446472167969e+02, 2.826226806640625e+02, 2.827695007324219e+02, 2.829361572265625e+02, 2.830958557128906e+02, 2.8322119140625e+02, 2.832958984375e+02, 2.833357543945312e+02, 2.833592529296875e+02, 2.833848876953125e+02, 2.834413757324219e+02, 2.835326538085938e+02, 2.836073608398438e+02, 2.836191711425781e+02, 2.835532531738281e+02, 2.83493896484375e+02, 2.834493103027344e+02, 2.834164428710938e+02, 2.833935241699219e+02, 2.833837890625e+02, 2.833763122558594e+02, 2.833576965332031e+02, 2.833067626953125e+02, 2.830925903320312e+02, 2.827544250488281e+02, 2.82403564453125e+02, 2.821513671875e+02, 2.820189514160156e+02, 2.819402465820312e+02, 2.818606872558594e+02, 2.817249755859375e+02, 2.815084838867188e+02, 2.817604064941406e+02, 2.811942749023438e+02, 2.811671447753906e+02, 2.811571350097656e+02, 2.811482543945312e+02, 2.811438903808594e+02, 2.811416320800781e+02, 2.811394958496094e+02, 2.8113818359375e+02, 2.811385498046875e+02, 2.811402282714844e+02, 2.811412048339844e+02, 2.811399841308594e+02, 2.811400756835938e+02, 2.811413879394531e+02, 2.811448974609375e+02, 2.811512756347656e+02, 2.811542663574219e+02, 2.811535949707031e+02, 2.811479797363281e+02, 2.811279602050781e+02, 2.811191711425781e+02, 2.811243286132812e+02, 2.8114013671875e+02] +TAirSup.T=[2.931499938964844e+02, 2.934500122070312e+02, 2.825289306640625e+02, 2.806894226074219e+02, 2.806575012207031e+02, 2.810302734375e+02, 2.816610717773438e+02, 2.82451171875e+02, 2.833438415527344e+02, 2.842897644042969e+02, 2.852532348632812e+02, 2.862222290039062e+02, 2.871951904296875e+02, 2.886126098632812e+02, 2.900134887695312e+02, 2.908234558105469e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.912168273925781e+02, 2.9119287109375e+02, 2.912378234863281e+02, 2.912218933105469e+02, 2.91197998046875e+02, 2.91191162109375e+02, 2.911961669921875e+02, 2.91198486328125e+02, 2.911961975097656e+02, 2.911892395019531e+02, 2.911899719238281e+02, 2.911893310546875e+02, 2.911892700195312e+02, 2.911895141601562e+02, 2.911856079101562e+02, 2.911856689453125e+02, 2.911998596191406e+02, 2.912021179199219e+02, 2.912115783691406e+02, 2.912143249511719e+02, 2.912061767578125e+02, 2.911937561035156e+02, 2.908503723144531e+02, 2.910891723632812e+02, 2.911402893066406e+02, 2.911495666503906e+02, 2.911505432128906e+02, 2.911503295898438e+02, 2.911501159667969e+02, 2.911500244140625e+02, 2.911499633789062e+02, 2.911499633789062e+02, 2.911499938964844e+02, 2.911500244140625e+02, 2.911500244140625e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.915621948242188e+02, 2.914427185058594e+02, 2.912925415039062e+02, 2.912134399414062e+02, 2.911777648925781e+02, 2.911615905761719e+02, 2.911545715332031e+02, 2.911514587402344e+02, 2.911505737304688e+02, 2.911502990722656e+02, 2.911502990722656e+02, 2.911497497558594e+02, 2.9114990234375e+02, 2.911500549316406e+02, 2.911501770019531e+02, 2.91150634765625e+02, 2.91150390625e+02, 2.911500854492188e+02, 2.911497192382812e+02, 2.91149169921875e+02, 2.911490173339844e+02, 2.911501159667969e+02, 2.911512145996094e+02, 2.911520385742188e+02] TAirSupSet.y=[2.911499938964844e+02, 2.911499938964844e+02] -chiWSE.chiPar.chi[1].P=[0e+00, 0e+00, 2.345560060348362e-04, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.06029765625e+04, 1.0023513671875e+04, 9.7212138671875e+03, 9.6732451171875e+03, 9.992884765625e+03, 1.05991533203125e+04, 1.12937392578125e+04, 1.19655546875e+04, 1.249667578125e+04, 1.28147236328125e+04, 1.298480078125e+04, 1.30855615234375e+04, 1.31958349609375e+04, 1.34399619140625e+04, 1.38347314453125e+04, 1.41582939453125e+04, 1.4208134765625e+04, 1.39209951171875e+04, 1.366423046875e+04, 1.34720478515625e+04, 1.3330578125e+04, 1.3232115234375e+04, 1.3190517578125e+04, 1.315826953125e+04, 1.307796484375e+04, 1.28580244140625e+04, 1.194366406249999e+04, 1.052718945312501e+04, 9.091550781250011e+03, 8.0829423828125e+03, 6.97585302734375e+03, 6.31786376953125e+03, 5.6563427734375e+03, 4.53948681640625e+03, 2.793920166015625e+03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +chiWSE.chiPar.chi[1].P=[0e+00, 0e+00, 2.345560060348362e-04, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.060306640625e+04, 1.0023404296875e+04, 9.7211669921875e+03, 9.6732265625e+03, 9.9928759765625e+03, 1.0599154296875e+04, 1.12937412109375e+04, 1.1965556640625e+04, 1.24966728515625e+04, 1.281472265625e+04, 1.2984798828125e+04, 1.3085560546875e+04, 1.31958359375e+04, 1.3439955078125e+04, 1.38347255859375e+04, 1.4158310546875e+04, 1.42081162109375e+04, 1.3920994140625e+04, 1.3664228515625e+04, 1.34720478515625e+04, 1.33305751953125e+04, 1.32321396484375e+04, 1.319051953125e+04, 1.31582587890625e+04, 1.30779609375e+04, 1.28580185546875e+04, 1.194366406249999e+04, 1.052718750000001e+04, 9.091547851562511e+03, 8.08293310546875e+03, 6.975826171875e+03, 6.31787255859375e+03, 5.6563388671875e+03, 4.5399873046875e+03, 2.793912353515625e+03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] chiWSE.chiPar.chi[2].P=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -chiWSE.chiPar.chi[1].COP=[0e+00, 0e+00, 8.181110024452209e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.675153732299805e+00, 5.40446949005127e+00, 5.262683391571045e+00, 5.232291221618652e+00, 5.343509674072266e+00, 5.538668155670166e+00, 5.732258796691895e+00, 5.893640995025635e+00, 6.006036758422852e+00, 6.067715644836426e+00, 6.099118709564209e+00, 6.117224216461182e+00, 6.136579990386963e+00, 6.177849292755128e+00, 6.240713596343995e+00, 6.288887977600098e+00, 6.296204090118408e+00, 6.254166126251221e+00, 6.21445369720459e+00, 6.183398723602295e+00, 6.159782886505127e+00, 6.142936229705811e+00, 6.135711193084717e+00, 6.130095958709717e+00, 6.115970611572266e+00, 6.076197147369385e+00, 5.889801979064939e+00, 5.517637252807621e+00, 4.991284370422368e+00, 4.486121654510498e+00, 4.511828422546387e+00, 4.530912399291992e+00, 4.550414562225342e+00, 4.584061145782471e+00, 4.63851261138916e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +chiWSE.chiPar.chi[1].COP=[0e+00, 0e+00, 8.181110024452209e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.675343036651611e+00, 5.404484748840332e+00, 5.262673377990723e+00, 5.232283592224121e+00, 5.343505382537842e+00, 5.538668155670166e+00, 5.732260704040527e+00, 5.893642425537109e+00, 6.006036281585693e+00, 6.067714691162109e+00, 6.099117755889893e+00, 6.117224216461182e+00, 6.136580467224121e+00, 6.177848339080811e+00, 6.240712642669679e+00, 6.288890838623047e+00, 6.296201705932617e+00, 6.254165649414062e+00, 6.214453220367432e+00, 6.183398723602295e+00, 6.159781455993652e+00, 6.142940998077393e+00, 6.135711193084717e+00, 6.130094051361084e+00, 6.115969657897949e+00, 6.07619571685791e+00, 5.889802455902097e+00, 5.517636775970463e+00, 4.991282939910893e+00, 4.4861159324646e+00, 4.511829376220703e+00, 4.530911922454834e+00, 4.550414562225342e+00, 4.584045886993408e+00, 4.63851261138916e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] chiWSE.chiPar.chi[2].COP=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -chiWSE.chiPar.chi[1].QEva_flow=[0e+00, 0e+00, -1.055000000633299e-03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -6.017352734375e+04, -5.417178125e+04, -5.115967578125e+04, -5.061324609375e+04, -5.339708203125e+04, -5.870519921875e+04, -6.4738640625e+04, -7.05206953125e+04, -7.50555078125e+04, -7.77561015625e+04, -7.919584375e+04, -8.00473203125e+04, -8.09773046875e+04, -8.303006250000003e+04, -8.633860937500003e+04, -8.903992968749999e+04, -8.94573203125e+04, -8.70642265625e+04, -8.49157421875e+04, -8.3303046875e+04, -8.21134765625e+04, -8.12840546875e+04, -8.09332109375e+04, -8.0661453125e+04, -7.9984453125e+04, -7.8127890625e+04, -7.034582812499991e+04, -5.808521875000011e+04, -4.53785234375001e+04, -3.626106640625e+04, -3.1473857421875e+04, -2.8625693359375e+04, -2.5738708984375e+04, -2.0809291015625e+04, -1.2959638671875e+04, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +chiWSE.chiPar.chi[1].QEva_flow=[0e+00, 0e+00, -1.055000000633299e-03, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -6.017604296875e+04, -5.417133984375e+04, -5.115933203125e+04, -5.061307421875e+04, -5.339699609375e+04, -5.870520703125e+04, -6.473867578125e+04, -7.052071875e+04, -7.50554765625e+04, -7.77560859375e+04, -7.91958203125e+04, -8.00473125e+04, -8.09773125e+04, -8.303001562500003e+04, -8.633855468750003e+04, -8.904007812499999e+04, -8.9457171875e+04, -8.70642109375e+04, -8.491571875e+04, -8.33030546875e+04, -8.21134296875e+04, -8.12842578125e+04, -8.09332265625e+04, -8.06613671875e+04, -7.9984421875e+04, -7.812784375e+04, -7.034582812499991e+04, -5.808519921875011e+04, -4.53784960937501e+04, -3.626098046875e+04, -3.1473740234375e+04, -2.862573046875e+04, -2.573869140625e+04, -2.0811515625e+04, -1.2959603515625e+04, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] chiWSE.chiPar.chi[2].QEva_flow=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -chiWSE.wse.heaExc.hex.Q2_flow=[-0e+00, -0e+00, -1.26935953125e+05, -8.64092578125e+04, -7.2799640625e+04, -7.7090046875e+04, -8.40728984375e+04, -9.279986718750001e+04, -1.02799234375e+05, -1.136610390625e+05, -1.249507734375e+05, -1.3637703125e+05, -1.47737078125e+05, -1.6083978125e+05, -1.75801796875e+05, -2.00205984375e+05, -2.108895e+05, -2.1606740625e+05, -2.2063125e+05, -2.25191765625e+05, -2.37874203125e+05, -2.4915790625e+05, -2.6504528125e+05, -2.7556021875e+05, -2.8738275e+05, -2.99856625e+05, -3.1224090625e+05, -3.242110625e+05, -3.361076562500001e+05, -3.4804790625e+05, -3.599680625e+05, -3.719268125e+05, -3.8393634375e+05, -3.9594971875e+05, -4.079953125000001e+05, -4.200003749999999e+05, -4.3115259375e+05, -4.436706875e+05, -4.5591503125e+05, -4.6808475e+05, -4.801049375e+05, -4.920433125e+05, -4.625180625e+05, -4.535676875e+05, -4.51245875e+05, -4.5001590625e+05, -4.46671125e+05, -4.4119203125e+05, -4.351089375e+05, -4.2931546875e+05, -4.2477909375e+05, -4.2207746875e+05, -4.2063815625e+05, -4.197889375e+05, -4.188609375e+05, -4.1680490625e+05, -4.1349534375e+05, -4.1079565625e+05, -4.103809375e+05, -4.1277571875e+05, -4.149238125e+05, -4.165355e+05, -4.17724875e+05, -4.1855346875e+05, -4.189038125e+05, -4.1917575e+05, -4.1985340625e+05, -4.217135625e+05, -4.295030625000001e+05, -4.417664374999999e+05, -4.544712812499999e+05, -4.6358259375e+05, -4.683664375e+05, -4.712134375e+05, -4.7410153125e+05, -4.7903440625e+05, -4.868865e+05, -5.19791375e+05, -5.1019153125e+05, -5.0295534375e+05, -5.004350625e+05, -4.9975628125e+05, -4.9964671875e+05, -4.9968659375e+05, -4.9973953125e+05, -4.997840625e+05, -4.998110625e+05, -4.998223125e+05, -4.9984140625e+05, -4.9983578125e+05, -4.99833875e+05, -4.9983534375e+05, -4.9981425e+05, -4.998230625e+05, -4.9982525e+05, -4.9982728125e+05, -4.998584375e+05, -4.9982028125e+05, -4.9981675e+05, -4.9982096875e+05, -4.998249375e+05] -ahu.cooCoi.Q2_flow=[0e+00, -5.63275537109375e+03, -9.47270234375e+04, -8.2613953125e+04, -7.46420859375e+04, -8.1563375e+04, -9.0173625e+04, -9.988498437500001e+04, -1.106616171875e+05, -1.217669921875e+05, -1.33131140625e+05, -1.44586421875e+05, -1.559938125e+05, -1.713636875e+05, -1.8638821875e+05, -2.04345640625e+05, -2.1369825e+05, -2.1783021875e+05, -2.22389375e+05, -2.26950609375e+05, -2.37860109375e+05, -2.496568125e+05, -2.641220625e+05, -2.7582640625e+05, -2.8773425e+05, -2.998325e+05, -3.11935625e+05, -3.2393659375e+05, -3.359086250000001e+05, -3.4788446875e+05, -3.5987171875e+05, -3.71856375e+05, -3.8385525e+05, -3.95856375e+05, -4.078585625000001e+05, -4.198625937499999e+05, -4.3165765625e+05, -4.437643125e+05, -4.5584225e+05, -4.6788303125e+05, -4.7987446875e+05, -4.9184878125e+05, -5.059231875e+05, -5.0205484375e+05, -5.005775e+05, -5.0006446875e+05, -4.998981875e+05, -4.998461875e+05, -4.998306875e+05, -4.9982671875e+05, -4.9982553125e+05, -4.9982465625e+05, -4.9982459375e+05, -4.998253125e+05, -4.99826125e+05, -4.9982571875e+05, -4.9982553125e+05, -4.998255625e+05, -4.998253125e+05, -4.9982540625e+05, -4.9982553125e+05, -4.998254375e+05, -4.9982553125e+05, -4.9982546875e+05, -4.9982546875e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -5.0624653125e+05, -5.037228125e+05, -5.0110946875e+05, -5.0015634375e+05, -4.99869625e+05, -4.9979825e+05, -4.99793375e+05, -4.998019375e+05, -4.9981309375e+05, -4.9982028125e+05, -4.99823375e+05, -4.998275625e+05, -4.998270625e+05, -4.99826625e+05, -4.998271875e+05, -4.9982178125e+05, -4.99822875e+05, -4.99823375e+05, -4.9982384375e+05, -4.9983084375e+05, -4.9982425e+05, -4.998243125e+05, -4.99825375e+05, -4.9982625e+05] +chiWSE.wse.heaExc.hex.Q2_flow=[-0e+00, -0e+00, -1.26935890625e+05, -8.6409265625e+04, -7.27997421875e+04, -7.709003125e+04, -8.40726875e+04, -9.279966406250001e+04, -1.027989453125e+05, -1.13660609375e+05, -1.249505625e+05, -1.36377375e+05, -1.47737671875e+05, -1.608405625e+05, -1.75801765625e+05, -2.002058125e+05, -2.10889484375e+05, -2.1606740625e+05, -2.20631265625e+05, -2.25191765625e+05, -2.37874265625e+05, -2.49158078125e+05, -2.6504915625e+05, -2.755481875e+05, -2.8736084375e+05, -2.998510625e+05, -3.1224209375e+05, -3.2421371875e+05, -3.361090312500001e+05, -3.4804765625e+05, -3.59967e+05, -3.71924e+05, -3.8393403125e+05, -3.95950875e+05, -4.079979062500001e+05, -4.200022499999999e+05, -4.3115153125e+05, -4.4367371875e+05, -4.559194375e+05, -4.6808653125e+05, -4.801055e+05, -4.9204275e+05, -4.6252740625e+05, -4.5356803125e+05, -4.512453125e+05, -4.5001553125e+05, -4.4667096875e+05, -4.411920625e+05, -4.3510903125e+05, -4.2931553125e+05, -4.2477915625e+05, -4.2207740625e+05, -4.2063809375e+05, -4.197889375e+05, -4.1886096875e+05, -4.1680496875e+05, -4.13495375e+05, -4.10795625e+05, -4.1038109375e+05, -4.1277571875e+05, -4.149238125e+05, -4.1653553125e+05, -4.1772484375e+05, -4.1855328125e+05, -4.189038125e+05, -4.191758125e+05, -4.198534375e+05, -4.2171359375e+05, -4.295030625000001e+05, -4.417664687499999e+05, -4.544712812499999e+05, -4.635826875e+05, -4.683665625e+05, -4.71213375e+05, -4.741015625e+05, -4.790321875e+05, -4.8688653125e+05, -5.197865e+05, -5.1018953125e+05, -5.02954375e+05, -5.0043459375e+05, -4.9975609375e+05, -4.99646625e+05, -4.996865625e+05, -4.9973953125e+05, -4.9978403125e+05, -4.998110625e+05, -4.9982234375e+05, -4.9984140625e+05, -4.9983578125e+05, -4.9983384375e+05, -4.9983534375e+05, -4.9981428125e+05, -4.9982321875e+05, -4.9982540625e+05, -4.9982746875e+05, -4.99858625e+05, -4.9982034375e+05, -4.9981678125e+05, -4.9982096875e+05, -4.99825e+05] +ahu.cooCoi.Q2_flow=[0e+00, -5.63275537109375e+03, -9.47269453125e+04, -8.2614125e+04, -7.46398515625e+04, -8.156334375e+04, -9.01736953125e+04, -9.988488281250001e+04, -1.106579296875e+05, -1.217614921875e+05, -1.33130921875e+05, -1.44586109375e+05, -1.55994015625e+05, -1.7136390625e+05, -1.8638575e+05, -2.043455625e+05, -2.13698265625e+05, -2.17830234375e+05, -2.22389375e+05, -2.26950609375e+05, -2.3786015625e+05, -2.49656765625e+05, -2.6412296875e+05, -2.7582459375e+05, -2.8772878125e+05, -2.9983078125e+05, -3.1193571875e+05, -3.2393721875e+05, -3.359090312500001e+05, -3.4788384375e+05, -3.5987146875e+05, -3.7185565625e+05, -3.8385453125e+05, -3.95856625e+05, -4.078591875000001e+05, -4.198630937499999e+05, -4.3165725e+05, -4.437650625e+05, -4.558435625e+05, -4.67883625e+05, -4.7987471875e+05, -4.91848625e+05, -5.0592884375e+05, -5.020555625e+05, -5.0057740625e+05, -5.0006434375e+05, -4.99898125e+05, -4.998461875e+05, -4.9983075e+05, -4.9982675e+05, -4.9982553125e+05, -4.9982465625e+05, -4.998245625e+05, -4.998253125e+05, -4.9982615625e+05, -4.9982571875e+05, -4.9982553125e+05, -4.9982559375e+05, -4.998253125e+05, -4.9982540625e+05, -4.9982553125e+05, -4.998254375e+05, -4.998255e+05, -4.998255e+05, -4.9982546875e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -4.998255e+05, -5.0624496875e+05, -5.0372221875e+05, -5.0110890625e+05, -5.0015621875e+05, -4.998695625e+05, -4.9979825e+05, -4.99793375e+05, -4.9980190625e+05, -4.9981309375e+05, -4.9982028125e+05, -4.99823375e+05, -4.998275625e+05, -4.9982709375e+05, -4.99826625e+05, -4.998271875e+05, -4.998218125e+05, -4.998229375e+05, -4.9982340625e+05, -4.9982390625e+05, -4.99830875e+05, -4.9982428125e+05, -4.998243125e+05, -4.99825375e+05, -4.9982628125e+05] diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Applications_DataCenters_ChillerCooled_Examples_NonIntegratedPrimarySecondaryEconomizer.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Applications_DataCenters_ChillerCooled_Examples_NonIntegratedPrimarySecondaryEconomizer.txt index 2a1810264fa..267c70095a0 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Applications_DataCenters_ChillerCooled_Examples_NonIntegratedPrimarySecondaryEconomizer.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Applications_DataCenters_ChillerCooled_Examples_NonIntegratedPrimarySecondaryEconomizer.txt @@ -1,4 +1,4 @@ -last-generated=2020-10-06 +last-generated=2021-02-17 statistics-initialization= { "nonlinear": "1, 1, 2, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1", @@ -12,18 +12,18 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 8.64e+04] -TAirSup.T=[2.931499938964844e+02, 2.934500122070312e+02, 2.833548278808594e+02, 2.842743835449219e+02, 2.831278991699219e+02, 2.82216796875e+02, 2.819932556152344e+02, 2.822085876464844e+02, 2.826922607421875e+02, 2.833428344726562e+02, 2.840726318359375e+02, 2.848437194824219e+02, 2.856414184570312e+02, 2.864630432128906e+02, 2.873049011230469e+02, 2.884226684570312e+02, 2.897019958496094e+02, 2.907265930175781e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.912288208007812e+02, 2.912419128417969e+02, 2.911499938964844e+02, 2.912402648925781e+02, 2.912241821289062e+02, 2.911989440917969e+02, 2.911911926269531e+02, 2.911923522949219e+02, 2.911932678222656e+02, 2.911912841796875e+02, 2.911914367675781e+02, 2.911902160644531e+02, 2.911892395019531e+02, 2.911885375976562e+02, 2.911859436035156e+02, 2.911854248046875e+02, 2.91184814453125e+02, 2.911841735839844e+02, 2.911838989257812e+02, 2.9118212890625e+02, 2.911803894042969e+02, 2.911793518066406e+02, 2.911434326171875e+02, 2.91151123046875e+02, 2.91152587890625e+02, 2.911524963378906e+02, 2.911522827148438e+02, 2.91151123046875e+02, 2.911504516601562e+02, 2.911498413085938e+02, 2.911492004394531e+02, 2.911494445800781e+02, 2.911566162109375e+02, 2.911532897949219e+02, 2.9115380859375e+02, 2.911606750488281e+02, 2.911615905761719e+02, 2.911565551757812e+02, 2.911460876464844e+02, 2.911414184570312e+02, 2.9114306640625e+02, 2.911450500488281e+02, 2.911465148925781e+02, 2.911479797363281e+02, 2.911492309570312e+02, 2.911487426757812e+02, 2.911466369628906e+02, 2.911400756835938e+02, 2.911480407714844e+02, 2.911510009765625e+02, 2.911520080566406e+02, 2.911523132324219e+02, 2.911510314941406e+02, 2.911502685546875e+02, 2.911497192382812e+02, 2.911492614746094e+02, 2.911498718261719e+02, 2.911502685546875e+02, 2.91150634765625e+02, 2.911510009765625e+02, 2.911496276855469e+02, 2.911497497558594e+02, 2.911498413085938e+02, 2.9114990234375e+02, 2.911498107910156e+02, 2.911499328613281e+02, 2.911499938964844e+02, 2.911500244140625e+02, 2.911497497558594e+02, 2.911498718261719e+02, 2.911499633789062e+02, 2.911500244140625e+02, 2.911502990722656e+02, 2.911501770019531e+02, 2.911500549316406e+02, 2.911498413085938e+02, 2.911495361328125e+02, 2.911495971679688e+02, 2.911500549316406e+02, 2.91150634765625e+02, 2.91151123046875e+02] +TAirSup.T=[2.931499938964844e+02, 2.934500122070312e+02, 2.833548278808594e+02, 2.842743835449219e+02, 2.831279296875e+02, 2.82216796875e+02, 2.819932556152344e+02, 2.822085876464844e+02, 2.826922912597656e+02, 2.833428039550781e+02, 2.840726013183594e+02, 2.848436889648438e+02, 2.856414794921875e+02, 2.864630737304688e+02, 2.873049011230469e+02, 2.884226989746094e+02, 2.897020568847656e+02, 2.907266235351562e+02, 2.911499938964844e+02, 2.911499938964844e+02, 2.912288208007812e+02, 2.912418823242188e+02, 2.911499938964844e+02, 2.912403259277344e+02, 2.912242126464844e+02, 2.911990051269531e+02, 2.911912536621094e+02, 2.911923522949219e+02, 2.911932983398438e+02, 2.911913146972656e+02, 2.911914367675781e+02, 2.911902160644531e+02, 2.91189208984375e+02, 2.911885375976562e+02, 2.911859436035156e+02, 2.911854553222656e+02, 2.91184814453125e+02, 2.911841430664062e+02, 2.91183837890625e+02, 2.911820373535156e+02, 2.911802673339844e+02, 2.911792907714844e+02, 2.911434020996094e+02, 2.91151123046875e+02, 2.91152587890625e+02, 2.911524963378906e+02, 2.911522827148438e+02, 2.91151123046875e+02, 2.911504516601562e+02, 2.911498413085938e+02, 2.911492004394531e+02, 2.911494445800781e+02, 2.911566162109375e+02, 2.911532592773438e+02, 2.911537780761719e+02, 2.911607055664062e+02, 2.911615905761719e+02, 2.911565856933594e+02, 2.911461181640625e+02, 2.911414184570312e+02, 2.911430969238281e+02, 2.9114501953125e+02, 2.911464538574219e+02, 2.9114794921875e+02, 2.911491394042969e+02, 2.91148681640625e+02, 2.911466369628906e+02, 2.911401062011719e+02, 2.911480407714844e+02, 2.911509399414062e+02, 2.911519775390625e+02, 2.911522827148438e+02, 2.911510009765625e+02, 2.911502685546875e+02, 2.911497497558594e+02, 2.911493225097656e+02, 2.9114990234375e+02, 2.911502380371094e+02, 2.911506042480469e+02, 2.911509704589844e+02, 2.91149658203125e+02, 2.911498107910156e+02, 2.9114990234375e+02, 2.9114990234375e+02, 2.911497802734375e+02, 2.911498413085938e+02, 2.9114990234375e+02, 2.911499633789062e+02, 2.911496887207031e+02, 2.911497802734375e+02, 2.911498718261719e+02, 2.911499633789062e+02, 2.911502685546875e+02, 2.911501770019531e+02, 2.911500244140625e+02, 2.911498413085938e+02, 2.911495666503906e+02, 2.911495361328125e+02, 2.911500549316406e+02, 2.91150634765625e+02, 2.911510925292969e+02] TAirSupSet.y=[2.911499938964844e+02, 2.911499938964844e+02] -ahuValSig.y=[1.000000014901161e-01, 5.234167575836182e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000379100441933e-01, 1.000379100441933e-01, 1.043127402663231e-01, 1.267133951187134e-01, 1.356423646211624e-01, 1.459676176309586e-01, 1.554511338472366e-01, 1.660634279251099e-01, 1.771342307329178e-01, 1.875916570425034e-01, 1.973576992750168e-01, 2.064251005649567e-01, 2.150841057300568e-01, 2.236487418413162e-01, 2.321183085441589e-01, 2.404841035604477e-01, 2.486052364110947e-01, 2.564198374748229e-01, 2.640401721000671e-01, 2.714860141277313e-01, 2.787961661815643e-01, 2.858786582946777e-01, 2.925998568534851e-01, 2.99032598733902e-01, 3.040443062782288e-01, 3.034921884536743e-01, 3.032847046852112e-01, 3.033133745193481e-01, 3.035229742527008e-01, 3.036245405673981e-01, 3.036846220493317e-01, 3.036741316318512e-01, 3.035567104816437e-01, 3.0340176820755e-01, 3.038585186004639e-01, 3.044138848781586e-01, 3.050974011421204e-01, 3.06621253490448e-01, 3.091183006763458e-01, 3.111461997032166e-01, 3.114373981952667e-01, 3.094401359558105e-01, 3.079218566417694e-01, 3.067685961723328e-01, 3.059102892875671e-01, 3.052999675273895e-01, 3.050706088542938e-01, 3.048831224441528e-01, 3.043902218341827e-01, 3.031727373600006e-01, 3.023498058319092e-01, 3.022023737430573e-01, 3.024195432662964e-01, 3.028086125850677e-01, 3.029945492744446e-01, 3.030563294887543e-01, 3.030147552490234e-01, 3.028831481933594e-01, 3.028075695037842e-01, 3.02815854549408e-01, 3.029032647609711e-01, 3.030709028244019e-01, 3.031116127967834e-01, 3.031114637851715e-01, 3.03105354309082e-01, 3.030983209609985e-01, 3.030815124511719e-01, 3.030714988708496e-01, 3.030756711959839e-01, 3.030932247638702e-01, 3.031055927276611e-01, 3.03090900182724e-01, 3.030903935432434e-01, 3.03102970123291e-01, 3.031346201896667e-01, 3.032054603099823e-01, 3.032366931438446e-01, 3.032281994819641e-01, 3.031746447086334e-01, 3.029482960700989e-01, 3.028518259525299e-01, 3.029046952724457e-01, 3.030832409858704e-01] -TCHWSup.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.811500244140625e+02, 2.811499938964844e+02, 2.772748107910156e+02, 2.769414672851562e+02, 2.768921813964844e+02, 2.770090942382812e+02, 2.7722216796875e+02, 2.774898681640625e+02, 2.777781372070312e+02, 2.780783996582031e+02, 2.7839599609375e+02, 2.787395629882812e+02, 2.790964660644531e+02, 2.794689636230469e+02, 2.799573669433594e+02, 2.803932800292969e+02, 2.807536926269531e+02, 2.8088037109375e+02, 2.810165100097656e+02, 2.814782409667969e+02, 2.811484375e+02, 2.811558837890625e+02, 2.811539611816406e+02, 2.811531372070312e+02, 2.8116552734375e+02, 2.811763916015625e+02, 2.811806945800781e+02, 2.811703796386719e+02, 2.811551818847656e+02, 2.811484069824219e+02, 2.81148681640625e+02, 2.811556701660156e+02, 2.811621704101562e+02, 2.811647644042969e+02, 2.81168212890625e+02, 2.811728515625e+02, 2.811800231933594e+02, 2.811842041015625e+02, 2.811792907714844e+02, 2.811683959960938e+02, 2.811514587402344e+02, 2.81146484375e+02, 2.811473083496094e+02, 2.811534423828125e+02, 2.811649475097656e+02, 2.811707153320312e+02, 2.811736145019531e+02, 2.811730651855469e+02, 2.8116748046875e+02, 2.811602478027344e+02, 2.811811218261719e+02, 2.812090759277344e+02, 2.812410278320312e+02, 2.813124084472656e+02, 2.814255981445312e+02, 2.815162963867188e+02, 2.815278625488281e+02, 2.814434204101562e+02, 2.813717346191406e+02, 2.813176879882812e+02, 2.812777404785156e+02, 2.812498779296875e+02, 2.812384948730469e+02, 2.81229248046875e+02, 2.812057495117188e+02, 2.811437683105469e+02, 2.811061706542969e+02, 2.811015014648438e+02, 2.811128845214844e+02, 2.811314697265625e+02, 2.811407470703125e+02, 2.81143798828125e+02, 2.811418762207031e+02, 2.811357116699219e+02, 2.811319580078125e+02, 2.811324462890625e+02, 2.811366577148438e+02, 2.811445922851562e+02, 2.811471252441406e+02, 2.811466674804688e+02, 2.81146240234375e+02, 2.811458129882812e+02, 2.8114501953125e+02, 2.811445007324219e+02, 2.811446838378906e+02, 2.811454467773438e+02, 2.81145751953125e+02, 2.811451416015625e+02, 2.811451721191406e+02, 2.811458129882812e+02, 2.811476745605469e+02, 2.811507873535156e+02, 2.811521606445312e+02, 2.811517028808594e+02, 2.811487121582031e+02, 2.811386108398438e+02, 2.811342163085938e+02, 2.811366577148438e+02, 2.811450500488281e+02] -TCHWRet.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.845896301269531e+02, 2.846625061035156e+02, 2.840283203125e+02, 2.83145263671875e+02, 2.8299853515625e+02, 2.8333056640625e+02, 2.8395751953125e+02, 2.847792053222656e+02, 2.856954040527344e+02, 2.866577453613281e+02, 2.876482543945312e+02, 2.886627502441406e+02, 2.896986389160156e+02, 2.908143005371094e+02, 2.922369995117188e+02, 2.93478759765625e+02, 2.944290771484375e+02, 2.9475341796875e+02, 2.9505322265625e+02, 2.951922302246094e+02, 2.951521606445312e+02, 2.952716979980469e+02, 2.952413330078125e+02, 2.952079162597656e+02, 2.95187255859375e+02, 2.95173095703125e+02, 2.951592712402344e+02, 2.951449890136719e+02, 2.951332092285156e+02, 2.951195068359375e+02, 2.951053771972656e+02, 2.950908508300781e+02, 2.950751037597656e+02, 2.950616760253906e+02, 2.950481872558594e+02, 2.950346984863281e+02, 2.950213317871094e+02, 2.9500732421875e+02, 2.949946594238281e+02, 2.949834289550781e+02, 2.949451293945312e+02, 2.949485778808594e+02, 2.949490356445312e+02, 2.949479675292969e+02, 2.949462280273438e+02, 2.94944580078125e+02, 2.949436645507812e+02, 2.949432373046875e+02, 2.949434204101562e+02, 2.949445190429688e+02, 2.949478149414062e+02, 2.949414367675781e+02, 2.949378967285156e+02, 2.949345703125e+02, 2.949207763671875e+02, 2.949051513671875e+02, 2.948954162597656e+02, 2.949030151367188e+02, 2.949135131835938e+02, 2.949217834472656e+02, 2.949278564453125e+02, 2.949324035644531e+02, 2.949346923828125e+02, 2.949353637695312e+02, 2.949365844726562e+02, 2.949391174316406e+02, 2.949502258300781e+02, 2.949528503417969e+02, 2.949521179199219e+02, 2.949499816894531e+02, 2.949478454589844e+02, 2.949468994140625e+02, 2.949466857910156e+02, 2.949470825195312e+02, 2.949480285644531e+02, 2.949482727050781e+02, 2.949480285644531e+02, 2.949472961425781e+02, 2.949458618164062e+02, 2.94946044921875e+02, 2.949461669921875e+02, 2.949462585449219e+02, 2.949462890625e+02, 2.949464416503906e+02, 2.949464721679688e+02, 2.949463806152344e+02, 2.949461059570312e+02, 2.949462585449219e+02, 2.949463195800781e+02, 2.949462890625e+02, 2.949462890625e+02, 2.949457702636719e+02, 2.949454956054688e+02, 2.949453735351562e+02, 2.949454956054688e+02, 2.949468383789062e+02, 2.949477233886719e+02, 2.949478149414062e+02, 2.949471435546875e+02] +ahuValSig.y=[1.000000014901161e-01, 5.234167575836182e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000382229685783e-01, 1.000382229685783e-01, 1.043130680918694e-01, 1.267151683568954e-01, 1.356433928012848e-01, 1.4596888422966e-01, 1.554499715566635e-01, 1.660657227039337e-01, 1.771344095468521e-01, 1.875886023044586e-01, 1.973539888858795e-01, 2.064244747161865e-01, 2.150851488113403e-01, 2.23649725317955e-01, 2.321188747882843e-01, 2.404827475547791e-01, 2.486042082309723e-01, 2.564201951026916e-01, 2.640378475189209e-01, 2.714842259883881e-01, 2.787952721118927e-01, 2.858768403530121e-01, 2.925996482372284e-01, 2.990334331989288e-01, 3.040450513362885e-01, 3.034926354885101e-01, 3.032849431037903e-01, 3.033134937286377e-01, 3.035230040550232e-01, 3.036246597766876e-01, 3.036846518516541e-01, 3.036738038063049e-01, 3.035564720630646e-01, 3.0340176820755e-01, 3.038589060306549e-01, 3.044137954711914e-01, 3.050990700721741e-01, 3.066222071647644e-01, 3.091188669204712e-01, 3.111481368541718e-01, 3.114367425441742e-01, 3.094398677349091e-01, 3.079204261302948e-01, 3.067678809165955e-01, 3.059116899967194e-01, 3.053027093410492e-01, 3.050730228424072e-01, 3.04886132478714e-01, 3.043929636478424e-01, 3.031747043132782e-01, 3.023509979248047e-01, 3.022004365921021e-01, 3.024185597896576e-01, 3.02808403968811e-01, 3.0299311876297e-01, 3.030569851398468e-01, 3.030164539813995e-01, 3.02885502576828e-01, 3.028095066547394e-01, 3.028180301189423e-01, 3.029049932956696e-01, 3.030724227428436e-01, 3.031128942966461e-01, 3.031117618083954e-01, 3.031060695648193e-01, 3.030976355075836e-01, 3.030804097652435e-01, 3.030703663825989e-01, 3.030750155448914e-01, 3.030921220779419e-01, 3.031041026115417e-01, 3.030917644500732e-01, 3.030929565429688e-01, 3.031066358089447e-01, 3.031388819217682e-01, 3.032076060771942e-01, 3.032381534576416e-01, 3.032295703887939e-01, 3.031752407550812e-01, 3.029484450817108e-01, 3.028515875339508e-01, 3.029037415981293e-01, 3.030815124511719e-01] +TCHWSup.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.811500244140625e+02, 2.811499938964844e+02, 2.772748107910156e+02, 2.769414672851562e+02, 2.768921813964844e+02, 2.770090942382812e+02, 2.772221984863281e+02, 2.774898681640625e+02, 2.777781372070312e+02, 2.780783996582031e+02, 2.783960266113281e+02, 2.787395629882812e+02, 2.790964660644531e+02, 2.794689636230469e+02, 2.799573669433594e+02, 2.803932800292969e+02, 2.807537231445312e+02, 2.808804016113281e+02, 2.810164489746094e+02, 2.81478271484375e+02, 2.811484375e+02, 2.811558837890625e+02, 2.811539611816406e+02, 2.811531372070312e+02, 2.811655578613281e+02, 2.811763916015625e+02, 2.811806945800781e+02, 2.811703186035156e+02, 2.811551818847656e+02, 2.811484069824219e+02, 2.81148681640625e+02, 2.811556701660156e+02, 2.811621398925781e+02, 2.811647644042969e+02, 2.81168212890625e+02, 2.811728515625e+02, 2.811800231933594e+02, 2.811841735839844e+02, 2.811792602539062e+02, 2.811683959960938e+02, 2.811514587402344e+02, 2.81146484375e+02, 2.811473083496094e+02, 2.811534423828125e+02, 2.811649780273438e+02, 2.811707153320312e+02, 2.811736145019531e+02, 2.811730651855469e+02, 2.8116748046875e+02, 2.811602478027344e+02, 2.811811218261719e+02, 2.812090759277344e+02, 2.812410278320312e+02, 2.813124389648438e+02, 2.814255981445312e+02, 2.815163269042969e+02, 2.8152783203125e+02, 2.814434204101562e+02, 2.813717041015625e+02, 2.813176879882812e+02, 2.812777404785156e+02, 2.812499084472656e+02, 2.81238525390625e+02, 2.812292785644531e+02, 2.812057800292969e+02, 2.811437683105469e+02, 2.811061706542969e+02, 2.811015014648438e+02, 2.811128845214844e+02, 2.811314392089844e+02, 2.811407775878906e+02, 2.81143798828125e+02, 2.811418762207031e+02, 2.811357116699219e+02, 2.811319885253906e+02, 2.811324462890625e+02, 2.811366577148438e+02, 2.811445922851562e+02, 2.811471252441406e+02, 2.811466979980469e+02, 2.81146240234375e+02, 2.811458129882812e+02, 2.8114501953125e+02, 2.811445007324219e+02, 2.811446838378906e+02, 2.811454467773438e+02, 2.811457214355469e+02, 2.811451416015625e+02, 2.811451721191406e+02, 2.811458129882812e+02, 2.811476135253906e+02, 2.811507873535156e+02, 2.811521606445312e+02, 2.811517028808594e+02, 2.81148681640625e+02, 2.811386108398438e+02, 2.811342163085938e+02, 2.811366577148438e+02, 2.811449890136719e+02] +TCHWRet.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.845896301269531e+02, 2.846625061035156e+02, 2.840283203125e+02, 2.83145263671875e+02, 2.8299853515625e+02, 2.8333056640625e+02, 2.839575500488281e+02, 2.847791748046875e+02, 2.856953735351562e+02, 2.8665771484375e+02, 2.876483154296875e+02, 2.886627807617188e+02, 2.896986694335938e+02, 2.908143005371094e+02, 2.922369689941406e+02, 2.934787902832031e+02, 2.944290466308594e+02, 2.9475341796875e+02, 2.950532531738281e+02, 2.951921997070312e+02, 2.951521606445312e+02, 2.952717590332031e+02, 2.952413330078125e+02, 2.952079772949219e+02, 2.951872863769531e+02, 2.95173095703125e+02, 2.951592712402344e+02, 2.9514501953125e+02, 2.951332092285156e+02, 2.951195068359375e+02, 2.951053466796875e+02, 2.950908813476562e+02, 2.950751037597656e+02, 2.950616760253906e+02, 2.950481567382812e+02, 2.9503466796875e+02, 2.950213012695312e+02, 2.950072631835938e+02, 2.949945678710938e+02, 2.949833984375e+02, 2.949451293945312e+02, 2.949485778808594e+02, 2.949490356445312e+02, 2.949479675292969e+02, 2.949462280273438e+02, 2.94944580078125e+02, 2.949436645507812e+02, 2.949432373046875e+02, 2.949434204101562e+02, 2.949445190429688e+02, 2.949477844238281e+02, 2.9494140625e+02, 2.949378662109375e+02, 2.949345703125e+02, 2.949207763671875e+02, 2.949051513671875e+02, 2.948954467773438e+02, 2.949030151367188e+02, 2.949135131835938e+02, 2.949217529296875e+02, 2.949277954101562e+02, 2.949323425292969e+02, 2.949346008300781e+02, 2.949353332519531e+02, 2.949365844726562e+02, 2.949391479492188e+02, 2.949502258300781e+02, 2.949528198242188e+02, 2.949520874023438e+02, 2.949499816894531e+02, 2.949478149414062e+02, 2.949468688964844e+02, 2.949467163085938e+02, 2.949471435546875e+02, 2.949480590820312e+02, 2.949482421875e+02, 2.94947998046875e+02, 2.949472961425781e+02, 2.949458923339844e+02, 2.949461059570312e+02, 2.949462280273438e+02, 2.949462585449219e+02, 2.949462585449219e+02, 2.949463500976562e+02, 2.949463806152344e+02, 2.949463195800781e+02, 2.949460754394531e+02, 2.949461975097656e+02, 2.949462585449219e+02, 2.949462585449219e+02, 2.949462585449219e+02, 2.949457702636719e+02, 2.949454650878906e+02, 2.949454040527344e+02, 2.949455261230469e+02, 2.949468078613281e+02, 2.949477233886719e+02, 2.949478149414062e+02, 2.949471130371094e+02] TCHWSupSet.y=[2.811499938964844e+02, 2.811499938964844e+02] -TCWSup.T=[2.931499938964844e+02, 2.733480224609375e+02, 2.866749267578125e+02, 2.791675720214844e+02, 2.77086181640625e+02, 2.767726135253906e+02, 2.767281799316406e+02, 2.768406372070312e+02, 2.770433044433594e+02, 2.772964477539062e+02, 2.775679321289062e+02, 2.778504943847656e+02, 2.781502075195312e+02, 2.784759521484375e+02, 2.788146362304688e+02, 2.791680297851562e+02, 2.796315002441406e+02, 2.80045166015625e+02, 2.803873596191406e+02, 2.805076599121094e+02, 2.806365966796875e+02, 2.810741577148438e+02, 2.807150268554688e+02, 2.807026062011719e+02, 2.806845092773438e+02, 2.806646118164062e+02, 2.806566772460938e+02, 2.806473693847656e+02, 2.806319274902344e+02, 2.806019897460938e+02, 2.805673828125e+02, 2.805411376953125e+02, 2.805219116210938e+02, 2.805093383789062e+02, 2.804961547851562e+02, 2.804791564941406e+02, 2.804630432128906e+02, 2.804481201171875e+02, 2.804357299804688e+02, 2.804202880859375e+02, 2.80395751953125e+02, 2.803652648925781e+02, 2.803326416015625e+02, 2.803291931152344e+02, 2.803307800292969e+02, 2.803372802734375e+02, 2.803489074707031e+02, 2.80354736328125e+02, 2.803576354980469e+02, 2.803570251464844e+02, 2.803514404296875e+02, 2.8034423828125e+02, 2.803652038574219e+02, 2.803932800292969e+02, 2.8042529296875e+02, 2.804970092773438e+02, 2.806101379394531e+02, 2.807004699707031e+02, 2.807114562988281e+02, 2.806272277832031e+02, 2.805554809570312e+02, 2.805014953613281e+02, 2.804615783691406e+02, 2.80433837890625e+02, 2.804224548339844e+02, 2.804131469726562e+02, 2.803895263671875e+02, 2.803269653320312e+02, 2.802897644042969e+02, 2.802853698730469e+02, 2.802969055175781e+02, 2.803154907226562e+02, 2.803247680664062e+02, 2.803277893066406e+02, 2.803258361816406e+02, 2.803196716308594e+02, 2.803159484863281e+02, 2.803164367675781e+02, 2.803206787109375e+02, 2.803286437988281e+02, 2.803311767578125e+02, 2.803306884765625e+02, 2.803302612304688e+02, 2.80329833984375e+02, 2.803290405273438e+02, 2.803285217285156e+02, 2.803287048339844e+02, 2.803294677734375e+02, 2.803297424316406e+02, 2.803291320800781e+02, 2.803291931152344e+02, 2.803298034667969e+02, 2.803316955566406e+02, 2.803347778320312e+02, 2.803361511230469e+02, 2.80335693359375e+02, 2.803326110839844e+02, 2.803225708007812e+02, 2.803182067871094e+02, 2.803207092285156e+02, 2.803291015625e+02] -TCWRet.T=[2.931499938964844e+02, 2.733481750488281e+02, 2.878188781738281e+02, 2.797398681640625e+02, 2.774707946777344e+02, 2.771253967285156e+02, 2.770752563476562e+02, 2.771998291015625e+02, 2.774259948730469e+02, 2.777106323242188e+02, 2.780177612304688e+02, 2.783379516601562e+02, 2.786758728027344e+02, 2.790396728515625e+02, 2.794169616699219e+02, 2.798125610351562e+02, 2.803290100097656e+02, 2.807885437011719e+02, 2.811644897460938e+02, 2.81296142578125e+02, 2.814448852539062e+02, 2.819349060058594e+02, 2.8162939453125e+02, 2.816585998535156e+02, 2.816750183105469e+02, 2.816953735351562e+02, 2.817304077148438e+02, 2.817634887695312e+02, 2.8178955078125e+02, 2.8180078125e+02, 2.818072814941406e+02, 2.818222045898438e+02, 2.818442077636719e+02, 2.818729553222656e+02, 2.819011535644531e+02, 2.819254760742188e+02, 2.8195068359375e+02, 2.8197705078125e+02, 2.820059204101562e+02, 2.820318298339844e+02, 2.82048583984375e+02, 2.820594177246094e+02, 2.820595703125e+02, 2.820531921386719e+02, 2.820533142089844e+02, 2.820591430664062e+02, 2.820705261230469e+02, 2.82076171875e+02, 2.820790710449219e+02, 2.820784606933594e+02, 2.820728759765625e+02, 2.82065673828125e+02, 2.820867919921875e+02, 2.821145324707031e+02, 2.821465148925781e+02, 2.822181091308594e+02, 2.823314208984375e+02, 2.824220275878906e+02, 2.824333190917969e+02, 2.823483581542969e+02, 2.8227685546875e+02, 2.822229309082031e+02, 2.821830139160156e+02, 2.821552124023438e+02, 2.821438903808594e+02, 2.821346435546875e+02, 2.82111083984375e+02, 2.820492248535156e+02, 2.820118408203125e+02, 2.820071105957031e+02, 2.820184631347656e+02, 2.820370178222656e+02, 2.820462036132812e+02, 2.820492248535156e+02, 2.820472717285156e+02, 2.820410766601562e+02, 2.820373840332031e+02, 2.820378723144531e+02, 2.820420837402344e+02, 2.82050048828125e+02, 2.82052490234375e+02, 2.820520629882812e+02, 2.820516357421875e+02, 2.820512390136719e+02, 2.820504455566406e+02, 2.820499267578125e+02, 2.820501098632812e+02, 2.820508728027344e+02, 2.820511779785156e+02, 2.820505981445312e+02, 2.820506286621094e+02, 2.820512390136719e+02, 2.820530700683594e+02, 2.820561828613281e+02, 2.820575866699219e+02, 2.8205712890625e+02, 2.820541381835938e+02, 2.820440063476562e+02, 2.820396118164062e+02, 2.820421142578125e+02, 2.820505065917969e+02] +TCWSup.T=[2.931499938964844e+02, 2.733480224609375e+02, 2.866748962402344e+02, 2.791676025390625e+02, 2.77086181640625e+02, 2.767726135253906e+02, 2.767281799316406e+02, 2.768406372070312e+02, 2.770433044433594e+02, 2.772964477539062e+02, 2.775679321289062e+02, 2.778504943847656e+02, 2.781502380371094e+02, 2.784759521484375e+02, 2.788146362304688e+02, 2.791680297851562e+02, 2.796315002441406e+02, 2.80045166015625e+02, 2.803873901367188e+02, 2.805076904296875e+02, 2.806365356445312e+02, 2.8107421875e+02, 2.807150268554688e+02, 2.807026062011719e+02, 2.806845092773438e+02, 2.806646118164062e+02, 2.806566772460938e+02, 2.806473999023438e+02, 2.806319274902344e+02, 2.806019287109375e+02, 2.805673828125e+02, 2.805411376953125e+02, 2.805218811035156e+02, 2.805093383789062e+02, 2.804961547851562e+02, 2.804791564941406e+02, 2.804630432128906e+02, 2.804481201171875e+02, 2.804357604980469e+02, 2.804202575683594e+02, 2.803957214355469e+02, 2.803652648925781e+02, 2.803326110839844e+02, 2.803291931152344e+02, 2.803307800292969e+02, 2.803372802734375e+02, 2.803489074707031e+02, 2.80354736328125e+02, 2.803576354980469e+02, 2.803570251464844e+02, 2.803514404296875e+02, 2.8034423828125e+02, 2.803652038574219e+02, 2.803932800292969e+02, 2.804253234863281e+02, 2.804970092773438e+02, 2.806101379394531e+02, 2.807005004882812e+02, 2.807114562988281e+02, 2.806272277832031e+02, 2.805554809570312e+02, 2.8050146484375e+02, 2.804615783691406e+02, 2.80433837890625e+02, 2.804224853515625e+02, 2.804131774902344e+02, 2.803895263671875e+02, 2.803269958496094e+02, 2.802897644042969e+02, 2.802853698730469e+02, 2.802969055175781e+02, 2.803154602050781e+02, 2.803247985839844e+02, 2.803277893066406e+02, 2.803258666992188e+02, 2.803196716308594e+02, 2.803159484863281e+02, 2.803164672851562e+02, 2.803206787109375e+02, 2.803286437988281e+02, 2.803311767578125e+02, 2.803307189941406e+02, 2.803302612304688e+02, 2.80329833984375e+02, 2.803290100097656e+02, 2.803284912109375e+02, 2.803286743164062e+02, 2.803294372558594e+02, 2.803297119140625e+02, 2.803291320800781e+02, 2.803291625976562e+02, 2.803298034667969e+02, 2.803316345214844e+02, 2.803347778320312e+02, 2.803361511230469e+02, 2.80335693359375e+02, 2.803325805664062e+02, 2.803225708007812e+02, 2.803182067871094e+02, 2.803207092285156e+02, 2.803290405273438e+02] +TCWRet.T=[2.931499938964844e+02, 2.733481750488281e+02, 2.8781884765625e+02, 2.797399291992188e+02, 2.774707946777344e+02, 2.771254272460938e+02, 2.770752563476562e+02, 2.771998291015625e+02, 2.774259948730469e+02, 2.777106018066406e+02, 2.780177612304688e+02, 2.783379211425781e+02, 2.786758728027344e+02, 2.790397033691406e+02, 2.794169616699219e+02, 2.798125610351562e+02, 2.803290100097656e+02, 2.807885437011719e+02, 2.811644897460938e+02, 2.812961730957031e+02, 2.814448547363281e+02, 2.819349670410156e+02, 2.8162939453125e+02, 2.816585998535156e+02, 2.816750183105469e+02, 2.816953735351562e+02, 2.817304077148438e+02, 2.817634887695312e+02, 2.817895202636719e+02, 2.818007202148438e+02, 2.818072814941406e+02, 2.818222045898438e+02, 2.818442077636719e+02, 2.818729553222656e+02, 2.819011535644531e+02, 2.819255065917969e+02, 2.8195068359375e+02, 2.8197705078125e+02, 2.820059509277344e+02, 2.820317993164062e+02, 2.82048583984375e+02, 2.820594177246094e+02, 2.820595703125e+02, 2.820531921386719e+02, 2.820533142089844e+02, 2.820591430664062e+02, 2.820705261230469e+02, 2.82076171875e+02, 2.820790710449219e+02, 2.820784606933594e+02, 2.820728759765625e+02, 2.82065673828125e+02, 2.820867919921875e+02, 2.821145324707031e+02, 2.821465148925781e+02, 2.822181396484375e+02, 2.823314514160156e+02, 2.824220581054688e+02, 2.824332885742188e+02, 2.823483276367188e+02, 2.822768249511719e+02, 2.822229309082031e+02, 2.821830444335938e+02, 2.821552429199219e+02, 2.821439208984375e+02, 2.821346740722656e+02, 2.821111145019531e+02, 2.820492553710938e+02, 2.820118408203125e+02, 2.82007080078125e+02, 2.820184326171875e+02, 2.820369873046875e+02, 2.820462341308594e+02, 2.820492248535156e+02, 2.820473022460938e+02, 2.820411071777344e+02, 2.820374145507812e+02, 2.820379028320312e+02, 2.820420837402344e+02, 2.82050048828125e+02, 2.820525207519531e+02, 2.820520935058594e+02, 2.820516662597656e+02, 2.820512390136719e+02, 2.820504150390625e+02, 2.820498962402344e+02, 2.820500793457031e+02, 2.820508728027344e+02, 2.820511474609375e+02, 2.820505676269531e+02, 2.820506286621094e+02, 2.820512390136719e+02, 2.820530395507812e+02, 2.820562133789062e+02, 2.820575866699219e+02, 2.8205712890625e+02, 2.820541076660156e+02, 2.820440063476562e+02, 2.820396118164062e+02, 2.820420837402344e+02, 2.820504455566406e+02] TCWSupSet.y=[2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02, 2.887099914550781e+02] cooModCon.y=[1e+00, 1e+00, 3e+00, 3e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] chiNumOn.y=[0e+00, 0e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -cooTow[1].Q_flow=[-0e+00, 2.526547241210938e+02, -2.2292209375e+05, -9.42402890625e+04, -5.81661015625e+04, -5.181693359375e+04, -5.02049453125e+04, -5.149552734375e+04, -5.4647828125e+04, -5.908330078125e+04, -6.422225390625e+04, -6.96308671875e+04, -7.50895234375e+04, -8.05257421875e+04, -8.610147656250001e+04, -9.1893609375e+04, -9.952671875e+04, -1.06363046875e+05, -1.120776640625e+05, -1.140934921875e+05, -1.16149125e+05, -1.233649765625e+05, -1.32768484375e+05, -1.389771875e+05, -1.4390415625e+05, -1.49701421875e+05, -1.55904921875e+05, -1.62091734375e+05, -1.681659375e+05, -1.74224109375e+05, -1.80141328125e+05, -1.86086796875e+05, -1.92050609375e+05, -1.9802053125e+05, -2.04057e+05, -2.10058734375e+05, -2.16053265625e+05, -2.2204275e+05, -2.28031828125e+05, -2.34055796875e+05, -2.40087421875e+05, -2.46092171875e+05, -2.50878375e+05, -2.5035678125e+05, -2.50092828125e+05, -2.49958328125e+05, -2.49917625e+05, -2.49912125e+05, -2.49918484375e+05, -2.49937546875e+05, -2.499628125e+05, -2.49951515625e+05, -2.49791734375e+05, -2.49786015625e+05, -2.4973e+05, -2.4946678125e+05, -2.494633125e+05, -2.49708625e+05, -2.50169984375e+05, -2.502025e+05, -2.50166765625e+05, -2.5011496875e+05, -2.500654375e+05, -2.4998959375e+05, -2.49956453125e+05, -2.49989671875e+05, -2.50088828125e+05, -2.50385078125e+05, -2.50101671875e+05, -2.49954859375e+05, -2.498826875e+05, -2.49886078125e+05, -2.49902171875e+05, -2.49923734375e+05, -2.49941875e+05, -2.49960625e+05, -2.499340625e+05, -2.4991603125e+05, -2.49898515625e+05, -2.49881875e+05, -2.49907171875e+05, -2.4991821875e+05, -2.49921765625e+05, -2.49923671875e+05, -2.49925578125e+05, -2.49923546875e+05, -2.4992125e+05, -2.4992003125e+05, -2.49933875e+05, -2.49929109375e+05, -2.499253125e+05, -2.49922e+05, -2.49906375e+05, -2.4991090625e+05, -2.4992140625e+05, -2.49930515625e+05, -2.4999025e+05, -2.4995809375e+05, -2.49925953125e+05, -2.49897671875e+05, -2.49872328125e+05] -chiWSE.chiPar.chi[1].QEva_flow=[0e+00, 0e+00, -6.39659921875e+04, -5.804738671875e+04, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -chiWSE.wse.heaExc.hex.Q2_flow=[-0e+00, 1.152836036682129e+01, 7.903926372528076e-01, -2.959138154983521e-01, -1.1143840625e+05, -1.023519765625e+05, -1.007679140625e+05, -1.043344375e+05, -1.111768359375e+05, -1.203291953125e+05, -1.306970078125e+05, -1.4162284375e+05, -1.527235e+05, -1.63790796875e+05, -1.7499546875e+05, -1.87291515625e+05, -2.02681359375e+05, -2.15978703125e+05, -2.2569853125e+05, -2.2897084375e+05, -2.3480734375e+05, -2.50070515625e+05, -2.6548403125e+05, -2.7757953125e+05, -2.8761378125e+05, -2.9929646875e+05, -3.11770625e+05, -3.2407440625e+05, -3.361280000000001e+05, -3.480754375e+05, -3.6001821875e+05, -3.719684375e+05, -3.839534375e+05, -3.9594921875e+05, -4.079532812500001e+05, -4.199610312499999e+05, -4.319579375e+05, -4.439481875e+05, -4.5593296875e+05, -4.6792746875e+05, -4.7992103125e+05, -4.9191109375e+05, -5.014140625e+05, -5.0057359375e+05, -5.0015415625e+05, -4.9995690625e+05, -4.9988446875e+05, -4.998403125e+05, -4.9983253125e+05, -4.9983378125e+05, -4.998345625e+05, -4.998340625e+05, -4.9988975e+05, -4.99785e+05, -4.99781e+05, -4.9977696875e+05, -4.998325e+05, -4.99888375e+05, -4.999415e+05, -4.997129375e+05, -4.9979390625e+05, -4.9982515625e+05, -4.9983046875e+05, -4.9980721875e+05, -4.998306875e+05, -4.9984634375e+05, -4.9986075e+05, -5.0003834375e+05, -5.000134375e+05, -4.999214375e+05, -4.998720625e+05, -4.9986125e+05, -4.9983909375e+05, -4.9983271875e+05, -4.9983075e+05, -4.998286875e+05, -4.998365625e+05, -4.9983275e+05, -4.998288125e+05, -4.9982628125e+05, -4.9979609375e+05, -4.9981584375e+05, -4.998224375e+05, -4.998259375e+05, -4.998255625e+05, -4.99827625e+05, -4.99828e+05, -4.9982971875e+05, -4.9983928125e+05, -4.9983621875e+05, -4.998338125e+05, -4.998321875e+05, -4.9981865625e+05, -4.9982590625e+05, -4.9982921875e+05, -4.998308125e+05, -4.9985090625e+05, -4.9983271875e+05, -4.998254375e+05, -4.998244375e+05, -4.998246875e+05] -ahu.cooCoi.Q2_flow=[0e+00, -5.63275634765625e+03, -5.96291484375e+04, -6.0431015625e+04, -1.0074240625e+05, -9.843903125e+04, -1.013001328125e+05, -1.07639953125e+05, -1.1624921875e+05, -1.264075078125e+05, -1.3722021875e+05, -1.48400828125e+05, -1.59699609375e+05, -1.7096553125e+05, -1.82298296875e+05, -1.96301828125e+05, -2.11689484375e+05, -2.2444290625e+05, -2.289414375e+05, -2.31032328125e+05, -2.365365e+05, -2.50095734375e+05, -2.668529375e+05, -2.763633125e+05, -2.8785709375e+05, -2.99718875e+05, -3.1181378125e+05, -3.2389371875e+05, -3.359127187500001e+05, -3.4789815625e+05, -3.5988646875e+05, -3.7186990625e+05, -3.8386296875e+05, -3.9585953125e+05, -4.078540937500001e+05, -4.198559062499999e+05, -4.31853375e+05, -4.4384871875e+05, -4.5584309375e+05, -4.6783665625e+05, -4.798311875e+05, -4.9182653125e+05, -5.0035125e+05, -5.0005503125e+05, -4.9992784375e+05, -4.9986778125e+05, -4.998434375e+05, -4.998291875e+05, -4.9982546875e+05, -4.998248125e+05, -4.998241875e+05, -4.9982546875e+05, -4.9985734375e+05, -4.99815375e+05, -4.9981565625e+05, -4.9982853125e+05, -4.9983584375e+05, -4.9983846875e+05, -4.998373125e+05, -4.9978225e+05, -4.998100625e+05, -4.99821125e+05, -4.9982378125e+05, -4.99818875e+05, -4.9982559375e+05, -4.998274375e+05, -4.9982753125e+05, -4.9987178125e+05, -4.99883e+05, -4.9985709375e+05, -4.9984153125e+05, -4.9983621875e+05, -4.998283125e+05, -4.9982559375e+05, -4.998244375e+05, -4.998235e+05, -4.9982759375e+05, -4.9982684375e+05, -4.99826e+05, -4.9982553125e+05, -4.9981346875e+05, -4.998203125e+05, -4.99822625e+05, -4.9982384375e+05, -4.9982359375e+05, -4.9982453125e+05, -4.9982471875e+05, -4.9982521875e+05, -4.998275e+05, -4.9982696875e+05, -4.998264375e+05, -4.998260625e+05, -4.99822625e+05, -4.998240625e+05, -4.998249375e+05, -4.9982521875e+05, -4.998295625e+05, -4.9982703125e+05, -4.9982559375e+05, -4.99825625e+05, -4.998259375e+05] +cooTow[1].Q_flow=[-0e+00, 2.526547241210938e+02, -2.22921859375e+05, -9.424115625e+04, -5.816615234375e+04, -5.181695703125e+04, -5.020496484375e+04, -5.14955390625e+04, -5.464791796875e+04, -5.90831640625e+04, -6.4222171875e+04, -6.963071875e+04, -7.5089796875e+04, -8.052584375e+04, -8.610158593750001e+04, -9.1893671875e+04, -9.95266796875e+04, -1.06363015625e+05, -1.120779765625e+05, -1.14093671875e+05, -1.161483671875e+05, -1.233658203125e+05, -1.32768875e+05, -1.38978109375e+05, -1.43903515625e+05, -1.49703078125e+05, -1.55906484375e+05, -1.62091359375e+05, -1.68161765625e+05, -1.74213015625e+05, -1.80143796875e+05, -1.8608759375e+05, -1.9205084375e+05, -1.98019484375e+05, -2.04055984375e+05, -2.10059125e+05, -2.16051203125e+05, -2.2204096875e+05, -2.2804134375e+05, -2.3405053125e+05, -2.400841875e+05, -2.46093171875e+05, -2.5087909375e+05, -2.5035721875e+05, -2.50093078125e+05, -2.499584375e+05, -2.4992040625e+05, -2.49911359375e+05, -2.4991828125e+05, -2.4993728125e+05, -2.4996171875e+05, -2.4995153125e+05, -2.49792046875e+05, -2.4978596875e+05, -2.497313125e+05, -2.494684375e+05, -2.49463765625e+05, -2.49710046875e+05, -2.50169484375e+05, -2.502025625e+05, -2.501656875e+05, -2.501144375e+05, -2.500665625e+05, -2.49991609375e+05, -2.4995828125e+05, -2.49991921875e+05, -2.5009090625e+05, -2.50386828125e+05, -2.5010228125e+05, -2.49953046875e+05, -2.4988128125e+05, -2.4987196875e+05, -2.49906109375e+05, -2.4992440625e+05, -2.49943546875e+05, -2.49960765625e+05, -2.499375e+05, -2.4992690625e+05, -2.49900484375e+05, -2.4988328125e+05, -2.499085625e+05, -2.49918609375e+05, -2.499225625e+05, -2.4992303125e+05, -2.49922703125e+05, -2.49921921875e+05, -2.4992034375e+05, -2.49918765625e+05, -2.49928296875e+05, -2.49930515625e+05, -2.49930171875e+05, -2.49926640625e+05, -2.4990240625e+05, -2.4991490625e+05, -2.49923203125e+05, -2.49932e+05, -2.4997975e+05, -2.49958140625e+05, -2.4992553125e+05, -2.49896765625e+05, -2.4983046875e+05] +chiWSE.chiPar.chi[1].QEva_flow=[0e+00, 0e+00, -6.39660703125e+04, -5.804739453125e+04, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +chiWSE.wse.heaExc.hex.Q2_flow=[-0e+00, 1.152836036682129e+01, 7.903906106948853e-01, -2.959064841270447e-01, -1.114384765625e+05, -1.0235203125e+05, -1.007679453125e+05, -1.043344609375e+05, -1.111772421875e+05, -1.2032875e+05, -1.306964375e+05, -1.4162259375e+05, -1.5272396875e+05, -1.6379121875e+05, -1.74995671875e+05, -1.8729178125e+05, -2.02681296875e+05, -2.15979015625e+05, -2.25698390625e+05, -2.2897103125e+05, -2.348088125e+05, -2.50071171875e+05, -2.6548478125e+05, -2.7758109375e+05, -2.8761253125e+05, -2.992993125e+05, -3.1177090625e+05, -3.240705625e+05, -3.361235312500001e+05, -3.48076875e+05, -3.6001965625e+05, -3.719698125e+05, -3.8395415625e+05, -3.9594734375e+05, -4.079516875000001e+05, -4.199616249999999e+05, -4.3195428125e+05, -4.4394515625e+05, -4.5592946875e+05, -4.679250625e+05, -4.799198125e+05, -4.9191234375e+05, -5.0141525e+05, -5.0057434375e+05, -5.001545625e+05, -4.99957125e+05, -4.998841875e+05, -4.9984059375e+05, -4.99832625e+05, -4.9983303125e+05, -4.9983421875e+05, -4.9983403125e+05, -4.9989015625e+05, -4.99784625e+05, -4.9978303125e+05, -4.9977825e+05, -4.9983325e+05, -4.998911875e+05, -4.9994078125e+05, -4.9971246875e+05, -4.99792e+05, -4.998240625e+05, -4.9983190625e+05, -4.9981078125e+05, -4.9983325e+05, -4.9985003125e+05, -4.998646875e+05, -5.000414375e+05, -5.0001590625e+05, -4.9991803125e+05, -4.9987028125e+05, -4.99861875e+05, -4.99835375e+05, -4.9983384375e+05, -4.9983384375e+05, -4.998331875e+05, -4.9984e+05, -4.998355e+05, -4.99831625e+05, -4.998289375e+05, -4.9979846875e+05, -4.99816625e+05, -4.99823875e+05, -4.9982465625e+05, -4.998236875e+05, -4.9982515625e+05, -4.998264375e+05, -4.998275e+05, -4.998370625e+05, -4.99837375e+05, -4.9983790625e+05, -4.99838875e+05, -4.99828e+05, -4.998295e+05, -4.9983175e+05, -4.9983334375e+05, -4.9985390625e+05, -4.9983278125e+05, -4.99825e+05, -4.99822625e+05, -4.998230625e+05] +ahu.cooCoi.Q2_flow=[0e+00, -5.63275634765625e+03, -5.962918359375e+04, -6.043578515625e+04, -1.00742453125e+05, -9.84390703125e+04, -1.0130015625e+05, -1.0763996875e+05, -1.162517109375e+05, -1.26403609375e+05, -1.3721978125e+05, -1.4840059375e+05, -1.59699234375e+05, -1.70964796875e+05, -1.82297109375e+05, -1.96302125e+05, -2.1168828125e+05, -2.24442984375e+05, -2.28940046875e+05, -2.31032171875e+05, -2.36538546875e+05, -2.50096171875e+05, -2.6685359375e+05, -2.7636384375e+05, -2.87856875e+05, -2.9971953125e+05, -3.118136875e+05, -3.2389275e+05, -3.359114375000001e+05, -3.478980625e+05, -3.5988678125e+05, -3.71870375e+05, -3.8386321875e+05, -3.95859125e+05, -4.078537187500001e+05, -4.198560312499999e+05, -4.3185234375e+05, -4.4384778125e+05, -4.558423125e+05, -4.6783628125e+05, -4.79831e+05, -4.9182671875e+05, -5.0035153125e+05, -5.0005521875e+05, -4.9992796875e+05, -4.9986784375e+05, -4.9984334375e+05, -4.998293125e+05, -4.9982546875e+05, -4.9982459375e+05, -4.998240625e+05, -4.9982546875e+05, -4.998574375e+05, -4.998151875e+05, -4.9981615625e+05, -4.9982871875e+05, -4.998360625e+05, -4.9983934375e+05, -4.9983715625e+05, -4.9978196875e+05, -4.9980953125e+05, -4.9982078125e+05, -4.998240625e+05, -4.998199375e+05, -4.99826125e+05, -4.9982840625e+05, -4.998286875e+05, -4.9987275e+05, -4.9988371875e+05, -4.998559375e+05, -4.9984096875e+05, -4.998363125e+05, -4.99826875e+05, -4.99825875e+05, -4.9982546875e+05, -4.9982503125e+05, -4.998286875e+05, -4.9982775e+05, -4.9982646875e+05, -4.9982621875e+05, -4.9981425e+05, -4.9982071875e+05, -4.998231875e+05, -4.9982340625e+05, -4.9982290625e+05, -4.9982359375e+05, -4.9982403125e+05, -4.9982440625e+05, -4.998266875e+05, -4.99827125e+05, -4.998275e+05, -4.9982775e+05, -4.99825125e+05, -4.99825125e+05, -4.9982565625e+05, -4.99826e+05, -4.998306875e+05, -4.9982696875e+05, -4.998254375e+05, -4.998250625e+05, -4.9982521875e+05] diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Examples_DualFanDualDuct_ClosedLoop.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Examples_DualFanDualDuct_ClosedLoop.txt index fc589e0ce3d..98f70a831a5 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Examples_DualFanDualDuct_ClosedLoop.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Examples_DualFanDualDuct_ClosedLoop.txt @@ -1,4 +1,4 @@ -last-generated=2021-01-25 +last-generated=2021-02-17 statistics-initialization= { "nonlinear": "1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 1, 16, 16, 16, 1, 0, 16, 2, 1, 1", @@ -12,33 +12,33 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 1.728e+05] -fanSupHot.m_flow=[-0e+00, 4.331284664260693e-09, -5.267778657724875e-09, 7.878255559035097e-08, 6.040386324457359e-08, 1.493707912914033e-07, 5.899912025597587e-08, -5.677494741007653e-08, -2.516827457554882e-08, -5.72431950729424e-08, -1.15891127805412e-08, 6.590575907239327e-08, 2.056984663009644e+00, 2.066988468170166e+00, 2.066099643707275e+00, 2.06499719619751e+00, 2.060622692108154e+00, 2.024821996688842e+00, 1.93339204788208e+00, 1.876869201660156e+00, 1.860785841941833e+00, 1.847906470298767e+00, 1.836134314537048e+00, 1.822399377822876e+00, 1.810734629631042e+00, 1.800406932830811e+00, 1.802572250366211e+00, 1.797945499420166e+00, 1.77478289604187e+00, 1.76779842376709e+00, 1.765105962753296e+00, 1.763665318489075e+00, 1.763304471969604e+00, 1.763015508651733e+00, 1.762811064720154e+00, 1.761985182762146e+00, 1.769240856170654e+00, 1.791820406913757e+00, 1.816740155220032e+00, 1.8456711769104e+00, -3.292946928468155e-07, 1.000877887236129e-07, 4.313725412430358e-07, 8.84986803839638e-08, -1.521802772685987e-08, -1.983026010066169e-07, -1.128475233258541e-07, -1.014925317122106e-07, 4.799531438948179e-09, 6.075504899172302e-08, 2.57535841541312e-08, 1.1331577098872e-07, 4.659057495359775e-08, -3.026046044851682e-07, 1.247878174126527e-07, -5.700907124151007e-08, -1.34738073143115e-07, 3.376060817572596e-07, -2.388059527902442e-08, -1.753584939478969e-07, -1.553877609694609e-06, 5.670470955010387e-07, 1.930242538452148e+00, 1.922651290893555e+00, 1.914785981178284e+00, 1.911072492599487e+00, 1.910548329353333e+00, 1.895355105400085e+00, 1.850877285003662e+00, 1.816775441169739e+00, 1.807364583015442e+00, 1.799267888069153e+00, 1.789124250411987e+00, 1.779932141304016e+00, 1.774914860725403e+00, 1.769633769989014e+00, 1.772624969482422e+00, 1.766901016235352e+00, 1.749284505844116e+00, 1.755918264389038e+00, 1.758516192436218e+00, 1.758437633514404e+00, 1.754793167114258e+00, 1.747462391853333e+00, 1.743956089019775e+00, 1.742841958999634e+00, 1.754173398017883e+00, 1.784743547439575e+00, 1.804461479187012e+00, 1.818299412727356e+00, 7.011998803818642e-08, 2.610476990128063e-08, -5.033654915109764e-08, -3.864208224513277e-07, -3.65583844086359e-07, 1.675153527003204e-07, 1.099092742151697e-06, 1.649400047654126e-07, 3.511852475490684e-10, -4.098331771729136e-07, -6.801287355528984e-08] -fanSupCol.m_flow=[-0e+00, 6.672519425876544e-09, -8.311383581371956e-09, 1.206906574680033e-07, 9.212759266574722e-08, 2.282704087974707e-07, 9.013754720399447e-08, -8.697687547964966e-08, -3.863037534301839e-08, -8.732806122679904e-08, -1.76763244041922e-08, 1.006730983021953e-07, 1.613527536392212e-01, 1.381945163011551e-01, 1.413287967443466e-01, 1.444038301706314e-01, 1.55162900686264e-01, 2.438422441482549e-01, 5.330122709274292e-01, 7.98284113407135e-01, 8.837611079216003e-01, 9.535698294639587e-01, 1.01792585849762e+00, 1.094256639480591e+00, 1.159696578979492e+00, 1.218800187110901e+00, 1.20570695400238e+00, 1.231912016868591e+00, 1.36733877658844e+00, 1.408449411392212e+00, 1.423764586448669e+00, 1.431441187858582e+00, 1.432530283927917e+00, 1.43330442905426e+00, 1.433818936347961e+00, 1.438112854957581e+00, 1.396189451217651e+00, 1.264523386955261e+00, 1.120073080062866e+00, 9.569419026374817e-01, -5.034825676375476e-07, 1.531167583834758e-07, 6.594087835765094e-07, 1.353233756162808e-07, -2.306116364536592e-08, -3.030728521480341e-07, -1.726660769918453e-07, -1.553409418875162e-07, 7.257828116280507e-09, 9.306408799147903e-08, 3.944980875303372e-08, 1.731343246547112e-07, 7.129060008992383e-08, -4.627450778116327e-07, 1.909277074219062e-07, -8.674275164821763e-08, -2.060286732330332e-07, 5.158910880709325e-07, -3.664032632855196e-08, -2.674860866136441e-07, -2.376353450017632e-06, 8.669592830301553e-07, 5.413932204246521e-01, 5.744830369949341e-01, 6.096742749214172e-01, 6.266111135482788e-01, 6.289919018745422e-01, 7.005151510238647e-01, 9.305729269981403e-01, 1.120332717895507e+00, 1.173102855682373e+00, 1.219481468200684e+00, 1.278666734695435e+00, 1.332973837852478e+00, 1.361144423484802e+00, 1.388570427894592e+00, 1.368925094604492e+00, 1.39702296257019e+00, 1.477253437042236e+00, 1.435348868370056e+00, 1.424728989601135e+00, 1.427992343902588e+00, 1.447829008102417e+00, 1.480061531066895e+00, 1.486321926116943e+00, 1.481207013130188e+00, 1.418205738067627e+00, 1.278256297111511e+00, 1.185198664665222e+00, 1.112021207809448e+00, 1.073456203926071e-07, 3.980099450018315e-08, -7.690956493888734e-08, -5.905765192437684e-07, -5.590869136540277e-07, 2.556628544425621e-07, 1.680070113252441e-06, 2.522680517813569e-07, 3.511852475490684e-10, -6.263974228204461e-07, -1.039508319422566e-07] -fanRet.m_flow=[-0e+00, -4.145741741012898e-07, -4.527362875705876e-07, -1.473612201152719e-07, -1.476148554502288e-07, 2.15218022958652e-07, 1.004779992541671e-08, -3.677884876651662e-07, -3.068188334509614e-07, -4.197053726784361e-07, -3.220953885829658e-07, -2.038825464012461e-08, 3.265599727630615e+00, 3.252820253372192e+00, 3.254234313964844e+00, 3.255804061889648e+00, 3.262219429016113e+00, 3.311347723007203e+00, 3.493973970413208e+00, 3.68563437461853e+00, 3.746534824371338e+00, 3.79803991317749e+00, 3.845424175262451e+00, 3.902278900146484e+00, 3.952303171157837e+00, 3.997589349746704e+00, 3.98826265335083e+00, 4.008888721466064e+00, 4.112009048461914e+00, 4.143249034881592e+00, 4.155639171600342e+00, 4.162431716918945e+00, 4.164504528045654e+00, 4.166048049926758e+00, 4.166679859161377e+00, 4.170089721679688e+00, 4.138516426086426e+00, 4.038790225982666e+00, 3.929290056228638e+00, 3.805673122406006e+00, -1.367671416119265e-06, -9.753194518680175e-08, 1.186635358862986e-06, 2.652814146131277e-07, -4.867817438025668e-08, -7.858354820200475e-07, -6.846746600785991e-07, -7.326504487537022e-07, -4.47800204028681e-07, -2.21149150547717e-07, -3.030923778624128e-07, -1.833967311348772e-09, -9.035215953190345e-08, -1.402926500304602e-06, -4.88342593030211e-08, -6.033362183188753e-07, -8.964978519543022e-07, 8.204467576433703e-07, -2.507072451862769e-07, -7.52375342472078e-07, -6.030884378560586e-06, 1.224602442562173e-06, 3.498868465423584e+00, 3.522597789764404e+00, 3.54801869392395e+00, 3.560451984405518e+00, 3.56217622756958e+00, 3.613663911819458e+00, 3.783157587051393e+00, 3.925339937210083e+00, 3.965402364730835e+00, 4.000598907470703e+00, 4.045320987701416e+00, 4.086272239685059e+00, 4.108851909637451e+00, 4.130632877349854e+00, 4.116341590881348e+00, 4.137112140655518e+00, 4.194124698638916e+00, 4.16027307510376e+00, 4.153422355651855e+00, 4.156754493713379e+00, 4.170795440673828e+00, 4.191794395446777e+00, 4.191240787506104e+00, 4.174957275390625e+00, 4.129253387451172e+00, 4.041863441467285e+00, 3.975563287734985e+00, 3.920905828475952e+00, -1.700321803355109e-07, -2.750560668118851e-07, -5.272070779938076e-07, -1.732767486828379e-06, -1.984177060876391e-06, -3.803531285484496e-07, 2.930270056822337e-06, 4.754657823013986e-07, 5.657984081253176e-10, -1.388976670568809e-06, -4.354697011876851e-07] -fanSupHot.dp=[0e+00, 2.473825588822365e-10, -3.055902197957039e-10, 4.43833414465189e-09, 3.390596248209476e-09, 8.396455086767673e-09, 3.332388587296009e-09, -3.201421350240709e-09, -1.426087692379951e-09, -3.215973265469074e-09, -6.402842700481415e-10, 3.710738383233547e-09, 4.803245162963867e+01, 4.849892807006836e+01, 4.845746994018555e+01, 4.840603637695312e+01, 4.820206069946289e+01, 4.65325241088867e+01, 3.752122116088867e+01, 2.480864524841309e+01, 2.028060531616211e+01, 1.642615127563477e+01, 1.279480361938477e+01, 8.374698638916016e+00, 4.468624114990234e+00, 8.593409657478333e-01, 1.622561931610107e+00, -5.043020471930504e-03, -8.492190361022963e+00, -1.114384937286377e+01, -1.214663410186768e+01, -1.265756797790527e+01, -1.274610042572021e+01, -1.280856609344482e+01, -1.284029674530029e+01, -1.311559104919433e+01, -1.042831516265869e+01, -2.13592004776001e+00, 6.622888565063477e+00, 1.603871917724609e+01, -1.855369191616774e-08, 5.631591193377972e-09, 2.430169843137264e-08, 4.976755008101463e-09, -8.440110832452774e-10, -1.116131898015738e-08, -6.359186954796314e-09, -5.718902684748173e-09, 2.619344741106033e-10, 3.41970007866621e-09, 1.455191522836685e-09, 6.388290785253048e-09, 2.619344741106033e-09, -1.705484464764595e-08, 7.028575055301189e-09, -3.201421350240743e-09, -7.581547833978524e-09, 1.90048012882472e-08, -1.353328116238117e-09, -9.851646609604359e-09, -8.748611435294151e-08, 3.192690201103687e-08, 3.690651702880859e+01, 3.548088455200195e+01, 3.388528060913086e+01, 3.309408187866211e+01, 3.298504257202148e+01, 2.954599380493164e+01, 1.748423767089833e+01, 6.629127979278609e+00, 3.479413032531764e+00, 6.613163352012634e-01, -2.998275995254517e+00, -6.410685062408447e+00, -8.20716667175293e+00, -9.936875343322754e+00, -8.67318058013916e+00, -1.039002799987793e+01, -1.521248626708984e+01, -1.237929153442383e+01, -1.175186157226562e+01, -1.2001051902771e+01, -1.324941825866699e+01, -1.516423416137695e+01, -1.529464721679688e+01, -1.45420560836792e+01, -1.054936790466309e+01, -2.555920124053955e+00, 2.80370306968689e+00, 7.069046974182129e+00, 3.958120942115784e-09, 1.455191522836685e-09, -2.837623469531536e-09, -2.174056135118008e-08, -2.060551196336746e-08, 9.400537237524986e-09, 6.187474355101585e-08, 9.284121915698051e-09, 1.455191522836685e-11, -2.307933755218983e-08, -3.827153705060482e-09] -fanSupCol.dp=[0e+00, 1.01863406598568e-10, -1.164153218269348e-10, 1.935404725372791e-09, 1.498847268521786e-09, 3.667082637548447e-09, 1.469743438065052e-09, -1.396983861923219e-09, -6.111804395914078e-10, -1.426087692379951e-09, -2.764863893389702e-10, 1.644366420805454e-09, -4.574013519287109e+01, -4.606449127197266e+01, -4.602059173583984e+01, -4.597752380371094e+01, -4.582682800292969e+01, -4.458473587036132e+01, -4.053398895263672e+01, -3.6817138671875e+01, -3.561927032470703e+01, -3.464089965820312e+01, -3.373888397216797e+01, -3.266895294189453e+01, -3.175161170959473e+01, -3.092303848266602e+01, -3.110659027099609e+01, -3.073920631408691e+01, -2.884040832519531e+01, -2.82639331817627e+01, -2.804917526245117e+01, -2.794153785705566e+01, -2.792627334594727e+01, -2.79154109954834e+01, -2.790820121765137e+01, -2.784800720214844e+01, -2.843581390380859e+01, -3.028204345703125e+01, -3.230706024169922e+01, -3.459361267089844e+01, -8.149072527885437e-09, 2.473825588822365e-09, 1.069565769284964e-08, 2.197339199483395e-09, -3.492459654808044e-10, -4.918547347187996e-09, -2.779415808618069e-09, -2.517481334507465e-09, 1.164153218269348e-10, 1.498847268521786e-09, 6.257323548197746e-10, 2.823071554303169e-09, 1.149601303040981e-09, -7.494236342608929e-09, 3.070454113185406e-09, -1.4115357771516e-09, -3.317836672067377e-09, 8.367351256310981e-09, -5.820766091346741e-10, -4.336470738053322e-09, -3.844616003334522e-08, 1.402804628014565e-08, -4.041656112670898e+01, -3.995296859741211e+01, -3.945991897583008e+01, -3.922263717651367e+01, -3.918914413452148e+01, -3.818709564208984e+01, -3.496316909790036e+01, -3.230340194702149e+01, -3.156367111206055e+01, -3.091345405578613e+01, -3.008367919921875e+01, -2.932207870483398e+01, -2.892724990844727e+01, -2.854268074035645e+01, -2.881814002990723e+01, -2.842417526245117e+01, -2.729915809631348e+01, -2.788681030273438e+01, -2.803572463989258e+01, -2.798995780944824e+01, -2.771179962158203e+01, -2.725976371765137e+01, -2.717203140258789e+01, -2.724378776550293e+01, -2.812727928161621e+01, -3.008991432189941e+01, -3.139411163330078e+01, -3.241992950439453e+01, 1.760781742632389e-09, 6.257323548197746e-10, -1.236912794411182e-09, -9.546056389808655e-09, -9.051291272044182e-09, 4.132743924856186e-09, 2.719752956181765e-08, 4.074536263942719e-09, 1.455191522836685e-11, -1.015723682940006e-08, -1.673470251262188e-09] -fanRet.dp=[0e+00, -1.207808963954449e-09, -1.324224285781384e-09, -4.511093720793724e-10, -4.511093720793724e-10, 5.820766091346741e-10, 1.455191522836685e-11, -1.047737896442414e-09, -8.87666828930378e-10, -1.207808963954449e-09, -9.313225746154785e-10, -8.731149137020111e-11, -1.618831787109375e+02, -1.620322875976562e+02, -1.620157928466797e+02, -1.619974822998047e+02, -1.619226226806641e+02, -1.613494415283203e+02, -1.592187347412109e+02, -1.569827270507812e+02, -1.562722625732422e+02, -1.556714019775391e+02, -1.551186218261719e+02, -1.544553833007812e+02, -1.53871826171875e+02, -1.533435516357422e+02, -1.534523468017578e+02, -1.532117462158203e+02, -1.520088348388672e+02, -1.516444244384766e+02, -1.514998931884766e+02, -1.514206695556641e+02, -1.51396484375e+02, -1.513784790039062e+02, -1.513711090087891e+02, -1.513313446044922e+02, -1.516996307373047e+02, -1.528629302978516e+02, -1.541402893066406e+02, -1.555823516845703e+02, -3.870809450745583e-09, -3.201421350240707e-10, 3.317836672067642e-09, 7.421476766467094e-10, -1.309672370553017e-10, -2.226443029940128e-09, -1.964508555829525e-09, -2.095475792884827e-09, -1.309672370553017e-09, -6.693881005048752e-10, -8.87666828930378e-10, -4.365574568510056e-11, -2.764863893389702e-10, -3.987224772572517e-09, -1.891748979687691e-10, -1.746229827404029e-09, -2.56113708019247e-09, 2.284650690853604e-09, -7.275957614183426e-10, -2.139131538569927e-09, -1.705484464764595e-08, 3.37604433298111e-09, -1.591616058349609e+02, -1.58884765625e+02, -1.585881958007812e+02, -1.584431457519531e+02, -1.584230194091797e+02, -1.578223571777344e+02, -1.558450164794922e+02, -1.541863708496094e+02, -1.537190246582031e+02, -1.533084411621094e+02, -1.527867584228516e+02, -1.523090515136719e+02, -1.52045654296875e+02, -1.517915802001953e+02, -1.519582977294922e+02, -1.517160034179688e+02, -1.510509643554688e+02, -1.514458465576172e+02, -1.515257568359375e+02, -1.514868927001953e+02, -1.513231048583984e+02, -1.510781555175781e+02, -1.510846099853516e+02, -1.512745513916016e+02, -1.518076782226562e+02, -1.528270874023438e+02, -1.536004943847656e+02, -1.542380828857422e+02, -5.238689482212067e-10, -8.149072527885437e-10, -1.513399183750153e-09, -4.918547347187996e-09, -5.660695023834705e-09, -1.164153218269348e-09, 8.178176358342171e-09, 1.324224285781384e-09, 0e+00, -3.914465196430683e-09, -1.251464709639549e-09] -flo.sou.air.vol.T=[2.931499938964844e+02, 2.923798828125e+02, 2.922748107910156e+02, 2.92197265625e+02, 2.920619812011719e+02, 2.919623107910156e+02, 2.91901611328125e+02, 2.918099060058594e+02, 2.916726684570312e+02, 2.915941772460938e+02, 2.915897216796875e+02, 2.914867858886719e+02, 2.917958984375e+02, 2.917720947265625e+02, 2.917473449707031e+02, 2.91730224609375e+02, 2.917517700195312e+02, 2.9187255859375e+02, 2.921646728515625e+02, 2.925000915527344e+02, 2.9272607421875e+02, 2.930013732910156e+02, 2.932998962402344e+02, 2.934720153808594e+02, 2.935246887207031e+02, 2.935531005859375e+02, 2.935481567382812e+02, 2.935529479980469e+02, 2.9359130859375e+02, 2.936058044433594e+02, 2.936098327636719e+02, 2.936082458496094e+02, 2.936021728515625e+02, 2.93596435546875e+02, 2.935915222167969e+02, 2.935892639160156e+02, 2.935680847167969e+02, 2.935191345214844e+02, 2.934638366699219e+02, 2.933778686523438e+02, 2.931738586425781e+02, 2.930021667480469e+02, 2.930055847167969e+02, 2.931878356933594e+02, 2.931780395507812e+02, 2.931076049804688e+02, 2.927682800292969e+02, 2.926715698242188e+02, 2.9258837890625e+02, 2.925302429199219e+02, 2.924788818359375e+02, 2.924265747070312e+02, 2.923993530273438e+02, 2.922847595214844e+02, 2.921907653808594e+02, 2.921548767089844e+02, 2.921087341308594e+02, 2.921165771484375e+02, 2.922020568847656e+02, 2.921539001464844e+02, 2.919152221679688e+02, 2.918958435058594e+02, 2.926465454101562e+02, 2.92666748046875e+02, 2.92692626953125e+02, 2.927070922851562e+02, 2.926981811523438e+02, 2.927467956542969e+02, 2.929585571289062e+02, 2.932079467773438e+02, 2.933171691894531e+02, 2.933874816894531e+02, 2.934446105957031e+02, 2.934825134277344e+02, 2.935040893554688e+02, 2.935240173339844e+02, 2.935224609375e+02, 2.935375671386719e+02, 2.935700988769531e+02, 2.935407409667969e+02, 2.935316162109375e+02, 2.935311584472656e+02, 2.935405578613281e+02, 2.935588989257812e+02, 2.935592651367188e+02, 2.935302429199219e+02, 2.934898071289062e+02, 2.934228515625e+02, 2.933248901367188e+02, 2.932285766601562e+02, 2.9280517578125e+02, 2.926777038574219e+02, 2.926159973144531e+02, 2.925821533203125e+02, 2.925918273925781e+02, 2.926997375488281e+02, 2.927720031738281e+02, 2.927593383789062e+02, 2.927563781738281e+02, 2.926831970214844e+02, 2.926348266601562e+02] -flo.eas.air.vol.T=[2.931499938964844e+02, 2.924093627929688e+02, 2.923101501464844e+02, 2.922389526367188e+02, 2.921715393066406e+02, 2.921040344238281e+02, 2.920500793457031e+02, 2.9199072265625e+02, 2.919149475097656e+02, 2.918481140136719e+02, 2.917957763671875e+02, 2.917437438964844e+02, 2.922335205078125e+02, 2.922269287109375e+02, 2.922158203125e+02, 2.921989135742188e+02, 2.922157287597656e+02, 2.923356018066406e+02, 2.9259521484375e+02, 2.928869934082031e+02, 2.931142272949219e+02, 2.932903137207031e+02, 2.934257202148438e+02, 2.934559020996094e+02, 2.934604797363281e+02, 2.934777221679688e+02, 2.934720153808594e+02, 2.934814147949219e+02, 2.935323181152344e+02, 2.935464782714844e+02, 2.935495300292969e+02, 2.935505676269531e+02, 2.935502319335938e+02, 2.9355078125e+02, 2.935499572753906e+02, 2.935523376464844e+02, 2.935323791503906e+02, 2.934750061035156e+02, 2.933950805664062e+02, 2.9325e+02, 2.930241394042969e+02, 2.928969116210938e+02, 2.927845458984375e+02, 2.928061218261719e+02, 2.928373718261719e+02, 2.926885070800781e+02, 2.927026062011719e+02, 2.926611633300781e+02, 2.926103820800781e+02, 2.925675659179688e+02, 2.925291442871094e+02, 2.924841918945312e+02, 2.924306640625e+02, 2.923881530761719e+02, 2.923522644042969e+02, 2.923189086914062e+02, 2.922794189453125e+02, 2.922401428222656e+02, 2.920967102050781e+02, 2.920833740234375e+02, 2.921721801757812e+02, 2.921527709960938e+02, 2.928076782226562e+02, 2.928250427246094e+02, 2.928464050292969e+02, 2.928581848144531e+02, 2.928551330566406e+02, 2.929041137695312e+02, 2.931005554199219e+02, 2.933278503417969e+02, 2.934006958007812e+02, 2.934400024414062e+02, 2.934812622070312e+02, 2.9351171875e+02, 2.935237121582031e+02, 2.935348815917969e+02, 2.935284118652344e+02, 2.935423278808594e+02, 2.935753173828125e+02, 2.935517883300781e+02, 2.935433654785156e+02, 2.935428466796875e+02, 2.935515747070312e+02, 2.935668334960938e+02, 2.935661315917969e+02, 2.935715942382812e+02, 2.935385437011719e+02, 2.934630737304688e+02, 2.934028625488281e+02, 2.933465576171875e+02, 2.928523254394531e+02, 2.9275537109375e+02, 2.927323913574219e+02, 2.92636962890625e+02, 2.925575561523438e+02, 2.925445861816406e+02, 2.925867919921875e+02, 2.927548828125e+02, 2.927884826660156e+02, 2.92746337890625e+02, 2.926811828613281e+02] -flo.nor.air.vol.T=[2.931499938964844e+02, 2.923794860839844e+02, 2.922746276855469e+02, 2.921984558105469e+02, 2.921272583007812e+02, 2.920550842285156e+02, 2.919956970214844e+02, 2.919320678710938e+02, 2.9185302734375e+02, 2.917828063964844e+02, 2.917273864746094e+02, 2.916712646484375e+02, 2.924042358398438e+02, 2.924022521972656e+02, 2.923902893066406e+02, 2.923794555664062e+02, 2.923873291015625e+02, 2.924390869140625e+02, 2.925938720703125e+02, 2.927955322265625e+02, 2.929274597167969e+02, 2.930625305175781e+02, 2.931655883789062e+02, 2.932762451171875e+02, 2.933931884765625e+02, 2.934432678222656e+02, 2.934514770507812e+02, 2.934724426269531e+02, 2.935254211425781e+02, 2.935419311523438e+02, 2.935467224121094e+02, 2.935499267578125e+02, 2.935514221191406e+02, 2.935523986816406e+02, 2.935538024902344e+02, 2.935568237304688e+02, 2.935421752929688e+02, 2.935021362304688e+02, 2.934593811035156e+02, 2.934064331054688e+02, 2.928337707519531e+02, 2.926850280761719e+02, 2.926392211914062e+02, 2.926010437011719e+02, 2.926217346191406e+02, 2.925672912597656e+02, 2.925001525878906e+02, 2.924515991210938e+02, 2.924008178710938e+02, 2.92357421875e+02, 2.923189392089844e+02, 2.922754821777344e+02, 2.9222265625e+02, 2.921795959472656e+02, 2.921429443359375e+02, 2.921103820800781e+02, 2.920726318359375e+02, 2.920437316894531e+02, 2.920220336914062e+02, 2.9200634765625e+02, 2.9197705078125e+02, 2.919556579589844e+02, 2.929535522460938e+02, 2.929955444335938e+02, 2.930335388183594e+02, 2.930606079101562e+02, 2.930682067871094e+02, 2.931282348632812e+02, 2.933328247070312e+02, 2.934533081054688e+02, 2.934812927246094e+02, 2.9350146484375e+02, 2.935243835449219e+02, 2.935438232421875e+02, 2.935588989257812e+02, 2.935806274414062e+02, 2.935845336914062e+02, 2.936095886230469e+02, 2.936687927246094e+02, 2.936532592773438e+02, 2.936417236328125e+02, 2.936377563476562e+02, 2.936484069824219e+02, 2.936759338378906e+02, 2.936953735351562e+02, 2.93701171875e+02, 2.936682739257812e+02, 2.935852661132812e+02, 2.935208740234375e+02, 2.934878234863281e+02, 2.929985046386719e+02, 2.928632507324219e+02, 2.928160400390625e+02, 2.92775634765625e+02, 2.927406921386719e+02, 2.927217102050781e+02, 2.927142028808594e+02, 2.926505432128906e+02, 2.926962280273438e+02, 2.926617126464844e+02, 2.924244384765625e+02] -flo.wes.air.vol.T=[2.931499938964844e+02, 2.920982055664062e+02, 2.919955444335938e+02, 2.919284973144531e+02, 2.918799438476562e+02, 2.91847412109375e+02, 2.918505859375e+02, 2.917947082519531e+02, 2.916957092285156e+02, 2.916235656738281e+02, 2.915434875488281e+02, 2.915193786621094e+02, 2.923622131347656e+02, 2.92366455078125e+02, 2.92365234375e+02, 2.923666381835938e+02, 2.923719482421875e+02, 2.924175720214844e+02, 2.925592346191406e+02, 2.927352294921875e+02, 2.928243713378906e+02, 2.929038391113281e+02, 2.930043640136719e+02, 2.931120910644531e+02, 2.932129211425781e+02, 2.933106079101562e+02, 2.933368530273438e+02, 2.933957824707031e+02, 2.934916687011719e+02, 2.935204772949219e+02, 2.935351867675781e+02, 2.935444030761719e+02, 2.935484313964844e+02, 2.935514831542969e+02, 2.935527038574219e+02, 2.935544738769531e+02, 2.935370788574219e+02, 2.934883422851562e+02, 2.934299926757812e+02, 2.933441467285156e+02, 2.929341735839844e+02, 2.928047485351562e+02, 2.927601928710938e+02, 2.927379760742188e+02, 2.927425537109375e+02, 2.926915588378906e+02, 2.926274719238281e+02, 2.92579833984375e+02, 2.925291748046875e+02, 2.924864807128906e+02, 2.924486389160156e+02, 2.924077453613281e+02, 2.923594665527344e+02, 2.923167724609375e+02, 2.922766418457031e+02, 2.922459411621094e+02, 2.922117004394531e+02, 2.921864318847656e+02, 2.921617126464844e+02, 2.921459655761719e+02, 2.921171875e+02, 2.920899353027344e+02, 2.928833312988281e+02, 2.929143981933594e+02, 2.929468994140625e+02, 2.929692687988281e+02, 2.929745788574219e+02, 2.930293579101562e+02, 2.932272644042969e+02, 2.934154663085938e+02, 2.934609985351562e+02, 2.934879760742188e+02, 2.935140991210938e+02, 2.935340881347656e+02, 2.935459289550781e+02, 2.935571899414062e+02, 2.935516967773438e+02, 2.935644836425781e+02, 2.936018981933594e+02, 2.935812683105469e+02, 2.93572998046875e+02, 2.935731506347656e+02, 2.935818176269531e+02, 2.936008911132812e+02, 2.936155090332031e+02, 2.936527404785156e+02, 2.936394653320312e+02, 2.935267028808594e+02, 2.9348486328125e+02, 2.934638977050781e+02, 2.930779113769531e+02, 2.929617309570312e+02, 2.929166564941406e+02, 2.928750305175781e+02, 2.928388671875e+02, 2.928214111328125e+02, 2.92818115234375e+02, 2.928062438964844e+02, 2.92803466796875e+02, 2.927695617675781e+02, 2.925788879394531e+02] -flo.cor.air.vol.T=[2.931499938964844e+02, 2.928847045898438e+02, 2.928187866210938e+02, 2.927740478515625e+02, 2.927292175292969e+02, 2.926865844726562e+02, 2.92657958984375e+02, 2.926190490722656e+02, 2.925611267089844e+02, 2.925127563476562e+02, 2.924782104492188e+02, 2.924395141601562e+02, 2.934700927734375e+02, 2.934616394042969e+02, 2.934630126953125e+02, 2.934643249511719e+02, 2.934688415527344e+02, 2.935001220703125e+02, 2.935715637207031e+02, 2.936483459472656e+02, 2.936839294433594e+02, 2.937189636230469e+02, 2.937543029785156e+02, 2.937924194335938e+02, 2.938347778320312e+02, 2.938778686523438e+02, 2.938526306152344e+02, 2.938742370605469e+02, 2.940225524902344e+02, 2.940642700195312e+02, 2.940862121582031e+02, 2.9410302734375e+02, 2.941147766113281e+02, 2.941253967285156e+02, 2.941351013183594e+02, 2.9414697265625e+02, 2.940922546386719e+02, 2.939339904785156e+02, 2.937893981933594e+02, 2.937063598632812e+02, 2.936521301269531e+02, 2.935315246582031e+02, 2.934906921386719e+02, 2.93479248046875e+02, 2.934794311523438e+02, 2.934385070800781e+02, 2.933781127929688e+02, 2.933390197753906e+02, 2.932982788085938e+02, 2.932626647949219e+02, 2.93230224609375e+02, 2.931983642578125e+02, 2.931657409667969e+02, 2.931271667480469e+02, 2.930885925292969e+02, 2.930613098144531e+02, 2.930312805175781e+02, 2.930091857910156e+02, 2.9298583984375e+02, 2.929671630859375e+02, 2.929290161132812e+02, 2.929043579101562e+02, 2.935722351074219e+02, 2.935806884765625e+02, 2.935894775390625e+02, 2.935938110351562e+02, 2.935943908691406e+02, 2.936157836914062e+02, 2.937070617675781e+02, 2.938513488769531e+02, 2.938984680175781e+02, 2.939359741210938e+02, 2.939811096191406e+02, 2.940242004394531e+02, 2.940473327636719e+02, 2.9407275390625e+02, 2.940319213867188e+02, 2.940568237304688e+02, 2.941947021484375e+02, 2.9416015625e+02, 2.9415966796875e+02, 2.941721801757812e+02, 2.941994934082031e+02, 2.942413940429688e+02, 2.942535095214844e+02, 2.942475891113281e+02, 2.941630859375e+02, 2.939931945800781e+02, 2.938756713867188e+02, 2.937799987792969e+02, 2.9375048828125e+02, 2.936438293457031e+02, 2.936043395996094e+02, 2.935636291503906e+02, 2.935307006835938e+02, 2.935233459472656e+02, 2.935277709960938e+02, 2.935269165039062e+02, 2.935289001464844e+02, 2.935016479492188e+02, 2.934232788085938e+02] -cor.vavHot.m_flow=[2.044842379814522e-18, -3.399168153981474e-13, -2.991435495581368e-13, -1.430158075299559e-12, -1.349937522876488e-12, -2.163136857136205e-12, -1.064639695846914e-12, 1.458221157756362e-13, -1.678320839509223e-13, 1.059772454796611e-13, -5.596717750702696e-13, -1.109362710201289e-12, 6.440046429634094e-01, 6.471757292747498e-01, 6.46892249584198e-01, 6.465418338775635e-01, 6.451544761657715e-01, 6.338186860084533e-01, 6.048742532730103e-01, 5.868255496025085e-01, 5.816181898117065e-01, 5.774564743041992e-01, 5.737212300300598e-01, 5.694132447242737e-01, 5.656659603118896e-01, 5.622676014900208e-01, 5.631327629089355e-01, 5.615997314453125e-01, 5.533217787742615e-01, 5.507830381393433e-01, 5.49727737903595e-01, 5.490986108779907e-01, 5.488477945327759e-01, 5.486298799514771e-01, 5.484453439712524e-01, 5.480454564094543e-01, 5.508667230606079e-01, 5.592690706253052e-01, 5.679100751876831e-01, 5.772132873535156e-01, 3.830579083097252e-12, -4.304014826830849e-13, -4.575717842819627e-12, -8.095148900169602e-13, 1.580157716913472e-13, 1.580703124816341e-12, 1.534175889626732e-12, 1.614505079107487e-12, 5.465075549222764e-13, 4.355368198255896e-14, 4.034583268603537e-13, -6.550825420309492e-13, -9.777575071204941e-14, 3.670675308847793e-12, -6.440543627930784e-13, 1.254240418122062e-12, 2.040943369169155e-12, -3.177694218869941e-12, -3.484936948391915e-13, 1.342640516995008e-12, 1.694527504425558e-11, -5.060245625299054e-12, 6.038787364959717e-01, 6.014659404754639e-01, 5.989638566970825e-01, 5.977805256843567e-01, 5.976208448410034e-01, 5.92766284942627e-01, 5.785633921623229e-01, 5.673349499702454e-01, 5.642029643058777e-01, 5.614851117134094e-01, 5.580427050590515e-01, 5.548595786094666e-01, 5.531827211380005e-01, 5.515171885490417e-01, 5.530170202255249e-01, 5.513727068901062e-01, 5.455189347267151e-01, 5.481709837913513e-01, 5.486607551574707e-01, 5.482712388038635e-01, 5.468553900718689e-01, 5.445979833602905e-01, 5.441826581954956e-01, 5.448151230812073e-01, 5.493663549423218e-01, 5.581234693527222e-01, 5.638373494148254e-01, 5.683374404907227e-01, -1.807195343893342e-12, -1.172074264900458e-12, -2.661678928476963e-13, 2.649635936005645e-12, 2.150234200762324e-12, -3.029604128332308e-12, -1.175532761410469e-11, -1.386153886985542e-12, -1.783805435380168e-15, 4.300887770924966e-12, 2.095030746107618e-12] -sou.vavHot.m_flow=[-0e+00, 3.007232050183939e-12, 2.432101395277719e-12, -4.658328844192594e-13, -2.841969931957622e-12, -3.967047610548002e-12, -3.376470544130816e-12, -3.775073136036424e-12, -5.93782488456096e-12, -5.676141848209859e-12, -4.241565432216987e-12, -6.615110369201371e-12, 3.626697957515717e-01, 3.64427924156189e-01, 3.642721176147461e-01, 3.640785217285156e-01, 3.633100390434265e-01, 3.570145964622497e-01, 3.409328460693359e-01, 3.310301303863525e-01, 3.282304108142853e-01, 3.260281085968018e-01, 3.238405883312225e-01, 3.212015628814697e-01, 3.19160521030426e-01, 3.17401111125946e-01, 3.177624344825745e-01, 3.170065581798553e-01, 3.132149279117584e-01, 3.120774924755096e-01, 3.116618990898132e-01, 3.114666342735291e-01, 3.114574253559113e-01, 3.114569485187531e-01, 3.114657700061798e-01, 3.113670349121094e-01, 3.125227689743042e-01, 3.161801993846893e-01, 3.203751146793365e-01, 3.254395723342896e-01, -7.422266794232524e-12, -1.165050608070706e-11, -9.757735418280955e-12, -1.003716559736315e-13, 9.534038191089458e-14, 9.210535979742307e-13, -9.599777570090673e-12, -1.036617666705375e-11, -1.130070256122329e-11, -1.132054259361803e-11, -1.087472820127111e-11, -1.052500100962028e-11, -7.976440688506337e-12, -9.177702001150756e-12, -1.342901224249404e-11, -1.1586549428233e-11, -1.070780963896573e-11, -1.083467950774302e-11, -3.843436419820323e-12, -5.432260110488363e-12, -6.829224252075106e-12, -1.754111092489019e-11, 3.403790891170502e-01, 3.390460908412933e-01, 3.376657068729401e-01, 3.370137512683868e-01, 3.369258642196655e-01, 3.342591822147369e-01, 3.26599508523941e-01, 3.208816349506378e-01, 3.191999495029449e-01, 3.17758321762085e-01, 3.159908354282379e-01, 3.144232034683228e-01, 3.136069774627686e-01, 3.128307461738586e-01, 3.133446872234344e-01, 3.125849068164825e-01, 3.105750679969788e-01, 3.11789333820343e-01, 3.120765089988708e-01, 3.11985582113266e-01, 3.114604353904724e-01, 3.106499016284943e-01, 3.105985522270203e-01, 3.109886348247528e-01, 3.127200901508331e-01, 3.16238671541214e-01, 3.18859726190567e-01, 3.210545480251312e-01, -1.211165716330509e-11, -1.25488178875921e-11, -1.285008471157978e-11, -1.057198252552016e-11, -8.076824799252424e-12, -4.005149944336095e-12, -2.623029614692851e-12, 1.001363841022021e-13, -1.00992680625284e-15, -3.059535589287898e-13, 5.798978051224646e-12] -eas.vavHot.m_flow=[0e+00, 1.474781668314717e-12, 1.536832076529104e-12, 9.876143956463745e-13, 1.427354545321946e-12, 1.182021602992578e-12, 1.46033933643569e-12, 2.545743997550699e-12, 3.590682222040509e-12, 3.633776656311594e-12, 2.413493450231785e-12, 3.293036850149367e-12, 2.582501173019409e-01, 2.595020532608032e-01, 2.593911290168762e-01, 2.592532634735107e-01, 2.587060332298279e-01, 2.542231380939483e-01, 2.427710443735123e-01, 2.357188016176224e-01, 2.337251007556915e-01, 2.319910675287247e-01, 2.303935438394547e-01, 2.287393808364868e-01, 2.27385938167572e-01, 2.261639982461929e-01, 2.264223992824554e-01, 2.258772403001785e-01, 2.231616824865341e-01, 2.223561108112335e-01, 2.220633625984192e-01, 2.21918597817421e-01, 2.218983620405197e-01, 2.218832075595856e-01, 2.218796163797379e-01, 2.217989265918732e-01, 2.226162403821945e-01, 2.252305150032043e-01, 2.282510250806808e-01, 2.319211065769196e-01, 3.069943821723542e-12, 1.915857229806139e-12, -3.849915178322227e-12, -5.472904573110282e-13, 6.895227661410375e-14, -1.763773914247035e-12, 7.607994095826243e-13, 2.608353637245653e-12, 3.50235639101637e-12, 4.334217880430646e-12, 5.041606021549683e-12, 2.743364780136148e-12, 9.910489312883741e-13, 4.929159944794259e-12, 6.533214073900506e-12, 6.683030431137153e-12, 4.863965567120024e-12, -1.709692175159943e-12, -3.024717412300482e-12, -2.192844430343177e-12, 1.127209957318964e-11, 5.441836217756624e-12, 2.423767298460007e-01, 2.41427406668663e-01, 2.404443621635437e-01, 2.399800568819046e-01, 2.399174720048904e-01, 2.380183786153793e-01, 2.325675338506698e-01, 2.283439040184021e-01, 2.271709591150284e-01, 2.261820137500763e-01, 2.249433845281601e-01, 2.238368093967438e-01, 2.232745885848999e-01, 2.227441370487213e-01, 2.231247574090958e-01, 2.225948721170425e-01, 2.211927324533463e-01, 2.220512628555298e-01, 2.222466170787811e-01, 2.221768200397491e-01, 2.218052446842194e-01, 2.212491184473038e-01, 2.21237912774086e-01, 2.214670926332474e-01, 2.226874679327011e-01, 2.25159540772438e-01, 2.269473820924759e-01, 2.284651398658752e-01, -6.149310227687721e-12, -5.296135925647594e-12, -4.564835055093086e-12, -5.096479661903519e-12, -6.621193610750753e-12, -8.630705525258797e-12, -1.080324371627306e-11, -1.088898068934974e-12, -7.188413398904992e-16, 1.874335539206462e-12, 5.744784422473392e-12] -nor.vavHot.m_flow=[-0e+00, 2.19891184254084e-12, 2.994748546369941e-12, 5.119432655575906e-12, 7.109427629936604e-12, 5.862458088423672e-12, 5.074202776705894e-12, 6.519295086410139e-12, 7.631062448609782e-12, 8.190114385298042e-12, 8.188449918122842e-12, 7.087998157156994e-12, 4.984310269355774e-01, 5.008471012115479e-01, 5.006330609321594e-01, 5.003669857978821e-01, 4.993109107017517e-01, 4.906592071056365e-01, 4.685563743114471e-01, 4.54944908618927e-01, 4.510967135429382e-01, 4.480720162391663e-01, 4.453729093074799e-01, 4.420264363288879e-01, 4.390897750854492e-01, 4.366236925125122e-01, 4.370728433132172e-01, 4.359804391860962e-01, 4.307347238063812e-01, 4.291706085205078e-01, 4.285989701747894e-01, 4.283105134963989e-01, 4.282636642456055e-01, 4.282325804233551e-01, 4.282163083553314e-01, 4.280574321746826e-01, 4.296141862869263e-01, 4.345979690551758e-01, 4.403125941753387e-01, 4.471666812896729e-01, 5.591625253098531e-12, 2.749814698860265e-12, 1.379512172897113e-12, -1.502026151026237e-12, 8.265503353369757e-14, 4.393848999917349e-12, 4.562700044175028e-12, 4.30596964334784e-12, 4.039408130901423e-12, 3.117641561578566e-12, 3.308198983850708e-12, 2.692832502121378e-12, 2.034166238229496e-12, 6.345294949194891e-12, 4.443360610006941e-12, 4.946812057204923e-12, 4.984871456586914e-12, 7.136271283104723e-13, 5.7746229673028e-12, 7.311667764298146e-12, 1.768287079262354e-11, 1.732081708963329e-12, 4.677952826023102e-01, 4.659630358219147e-01, 4.640656709671021e-01, 4.631695151329041e-01, 4.630487859249115e-01, 4.593833386898041e-01, 4.48422223329544e-01, 4.403049647808076e-01, 4.381614327430725e-01, 4.363081455230713e-01, 4.339751899242401e-01, 4.318743050098419e-01, 4.305268526077271e-01, 4.288077652454376e-01, 4.28973525762558e-01, 4.267614483833313e-01, 4.201558232307434e-01, 4.209895133972168e-01, 4.223114848136902e-01, 4.228712320327759e-01, 4.219541549682617e-01, 4.189727008342743e-01, 4.163227081298828e-01, 4.148090481758118e-01, 4.183032810688019e-01, 4.290137588977814e-01, 4.364754259586334e-01, 4.404689371585846e-01, 1.208480451125871e-11, 1.163721289471065e-11, 1.190806481199402e-11, 1.766886290055503e-11, 1.87842189719456e-11, 9.747615041522106e-12, -6.71562328316555e-12, -3.70391608009446e-12, -1.392183140348931e-15, 4.073167584467408e-12, -9.164324681065761e-12] -wes.vavHot.m_flow=[0e+00, -5.890039758010834e-12, -5.887438973839476e-12, -6.235898082629365e-12, -5.84292206631809e-12, -5.426881166670228e-12, -3.777240239338786e-12, -3.322719920387241e-12, -3.976492746193827e-12, -4.059744294210299e-12, -5.031630060520209e-12, -4.490531644446571e-12, 2.936290800571442e-01, 2.950355708599091e-01, 2.949109673500061e-01, 2.947561144828796e-01, 2.941412925720215e-01, 2.891063690185546e-01, 2.76255339384079e-01, 2.683487832546234e-01, 2.661143243312836e-01, 2.643582224845886e-01, 2.628052830696106e-01, 2.610186636447906e-01, 2.594316005706787e-01, 2.579494118690491e-01, 2.581815123558044e-01, 2.574811577796936e-01, 2.543491721153259e-01, 2.534116804599762e-01, 2.530542612075806e-01, 2.528707385063171e-01, 2.528365254402161e-01, 2.528128325939178e-01, 2.528036236763e-01, 2.527145445346832e-01, 2.536261081695557e-01, 2.565419375896454e-01, 2.598941028118134e-01, 2.639345824718475e-01, 6.125221423819438e-12, 4.72214108093727e-12, 2.978366685224554e-12, 9.413437640059391e-14, 8.448978821261333e-14, 1.553700744449937e-12, 6.877595281479243e-12, 5.719205491139245e-12, 3.697294206905788e-12, 2.413370284864991e-12, 1.812381733405644e-12, 2.54266442969997e-12, 3.856996753232034e-12, 4.72448252394897e-12, -3.606433185941726e-13, 1.13882959052599e-12, 3.857630794662473e-12, 4.341930027323957e-12, 2.463248788969752e-12, 4.950659240193778e-12, 1.316197931894303e-11, -2.279238429936381e-12, 2.758130431175232e-01, 2.747485041618347e-01, 2.73646205663681e-01, 2.731256186962128e-01, 2.730554640293121e-01, 2.709264159202576e-01, 2.647223770618438e-01, 2.599092721939087e-01, 2.58626788854599e-01, 2.575344443321228e-01, 2.561715245246887e-01, 2.549515068531036e-01, 2.543231248855591e-01, 2.537345886230469e-01, 2.541662156581879e-01, 2.535869181156158e-01, 2.518424093723297e-01, 2.529174983501434e-01, 2.532210648059845e-01, 2.531330287456512e-01, 2.527171075344086e-01, 2.519949674606323e-01, 2.516147196292877e-01, 2.507625818252563e-01, 2.510966360569e-01, 2.561556994915009e-01, 2.583414316177368e-01, 2.599737048149109e-01, 6.231917759613737e-12, 7.026304017776486e-12, 7.923191616687753e-12, 8.650333054027737e-12, 6.83551349203726e-12, 1.724519724070894e-12, -3.190291997592909e-12, 7.63424642512972e-13, -8.068998909386811e-16, 3.549125836971312e-12, -1.956108235459664e-12] -cor.vavCol.m_flow=[6.816127479704864e-18, -1.133127988141303e-12, -9.970596397124165e-13, -4.768427840085021e-12, -4.500734420570529e-12, -7.212785490401386e-12, -3.54973472491138e-12, 4.869736883704467e-13, -5.590547014037994e-13, 3.541581632994506e-13, -1.865390654443022e-12, -3.698912270228005e-12, 1.612028181552887e-01, 1.380521953105927e-01, 1.41186848282814e-01, 1.442620903253555e-01, 1.550224870443344e-01, 2.437195330858236e-01, 5.329161882400513e-01, 7.981941103935242e-01, 8.83677065372467e-01, 9.527287483215332e-01, 1.001390218734741e+00, 1.021091341972351e+00, 1.021736025810242e+00, 1.017353057861328e+00, 1.005130648612976e+00, 1.004091262817383e+00, 1.0079265832901e+00, 9.973661303520203e-01, 9.966606497764587e-01, 9.999663829803467e-01, 1.006814479827881e+00, 1.013215899467468e+00, 1.0194331407547e+00, 1.022670149803162e+00, 1.03221595287323e+00, 1.030577182769775e+00, 1.002839326858521e+00, 9.21001672744751e-01, 1.27737820321272e-11, -1.43624684628002e-12, -1.525916545896955e-11, -2.699775082312672e-12, 5.269645397126821e-13, 5.272137327400062e-12, 5.11570126537908e-12, 5.383269351122433e-12, 1.821606884430671e-12, 1.442146640821818e-13, 1.344452110405014e-12, -2.185411140248616e-12, -3.266651543449434e-13, 1.224033287922088e-11, -2.148821051650707e-12, 4.181685379911508e-12, 6.805246904189779e-12, -1.059762694266556e-11, -1.161274960741199e-12, 4.478230286597551e-12, 5.650865886330791e-11, -1.68764065222593e-11, 5.412725210189819e-01, 5.743718147277832e-01, 6.095643639564514e-01, 6.265000104904175e-01, 6.288900971412659e-01, 7.00428307056427e-01, 9.261748194694536e-01, 1.061213493347168e+00, 1.067485809326172e+00, 1.06554651260376e+00, 1.054963111877441e+00, 1.041251301765442e+00, 1.031959772109985e+00, 1.023488640785217e+00, 1.012731671333313e+00, 1.003806352615356e+00, 1.013220429420471e+00, 1.042052507400513e+00, 1.052953124046326e+00, 1.057376503944397e+00, 1.052706480026245e+00, 1.04218602180481e+00, 1.045916676521301e+00, 1.054771780967712e+00, 1.074965000152588e+00, 1.072041392326355e+00, 1.041182279586792e+00, 9.935709834098816e-01, -6.025087113253891e-12, -3.907323683355335e-12, -8.864256442579765e-13, 8.838175850900409e-12, 7.173199100679595e-12, -1.010129219852773e-11, -3.920168703541727e-11, -4.623110488183313e-12, -5.926685720290077e-15, 1.434273273065445e-11, 6.984479834770685e-12] -sou.vavCol.m_flow=[0e+00, 1.002404843158944e-11, 8.107039345395251e-12, -1.553471652530891e-12, -9.473756848454862e-12, -1.322479452336989e-11, -1.125540459445684e-11, -1.258304918594356e-11, -1.979249056316412e-11, -1.891994373670602e-11, -1.413842914271823e-11, -2.205091664819747e-11, 3.6329758586362e-05, 3.667784039862454e-05, 3.664120231405832e-05, 3.660004585981369e-05, 3.644448224804364e-05, 3.517182631185278e-05, 3.036800808331463e-05, 2.507003773644101e-05, 2.326908179384191e-05, 2.175992813135963e-05, 1.20787660125643e-03, 4.663670808076859e-02, 9.95059534907341e-02, 1.362554281949997e-01, 1.305194050073624e-01, 1.335992068052292e-01, 1.685613840818406e-01, 1.815357804298401e-01, 1.83291420340538e-01, 1.776873916387558e-01, 1.666330248117447e-01, 1.565081775188446e-01, 1.481693536043167e-01, 1.430822461843491e-01, 1.231678873300552e-01, 8.054492622613907e-02, 4.059505835175514e-02, 9.355171583592892e-03, -2.473792871937608e-11, -3.883584773212156e-11, -3.252955890764575e-11, -3.353550076523604e-13, 3.1793949526078e-13, 3.071928345380059e-12, -3.19982026986132e-11, -3.455296812560071e-11, -3.766898945545272e-11, -3.773562018416499e-11, -3.624926053769073e-11, -3.508429657905765e-11, -2.658850743741947e-11, -3.058960723612003e-11, -4.476441439749124e-11, -3.862127284648406e-11, -3.569144979564972e-11, -3.611853871543517e-11, -1.281123297725006e-11, -1.810595597062647e-11, -2.275026868281405e-11, -5.847531486802282e-11, 3.013148671016097e-05, 2.95075005851686e-05, 2.882507942558732e-05, 2.849121301551349e-05, 2.844500522769522e-05, 2.701404446270317e-05, 2.219164343841836e-05, 9.603583748684926e-05, 1.672473270446036e-03, 7.796173915266991e-03, 2.20345426350832e-02, 3.94543930888176e-02, 5.302262306213379e-02, 6.802551448345184e-02, 6.915924698114395e-02, 8.135285228490829e-02, 1.058448851108551e-01, 7.990541309118271e-02, 7.157857716083527e-02, 7.042856514453888e-02, 7.664613425731659e-02, 9.113116562366486e-02, 9.145223349332809e-02, 6.329537183046341e-02, 3.960610181093216e-02, 1.54142752289772e-02, 2.148863160982728e-03, 1.966005802387372e-04, -4.037275375123883e-11, -4.182956064857635e-11, -4.283309470998198e-11, -3.523647346126424e-11, -2.69194597168898e-11, -1.335196796875548e-11, -8.75316832904538e-12, 3.323240662690685e-13, -3.368149223000288e-15, -1.016203939573079e-12, 1.933049380287155e-11] -eas.vavCol.m_flow=[-0e+00, 4.915909693203879e-12, 5.122800187523646e-12, 3.291546505843068e-12, 4.757458316184682e-12, 3.939128103563894e-12, 4.867421136284245e-12, 8.486160558984773e-12, 1.19690767713676e-11, 1.211293045033646e-11, 8.045040328363839e-12, 1.097635871083469e-11, 2.587485687399749e-05, 2.612276875879616e-05, 2.609667535580229e-05, 2.606736416055355e-05, 2.595656587800477e-05, 2.505015072529204e-05, 2.162876080546994e-05, 1.785542735888157e-05, 1.657275242905598e-05, 7.772490498609841e-04, 1.527537871152163e-02, 2.561507374048233e-02, 2.537823468446732e-02, 3.139140084385872e-02, 2.909543365240097e-02, 3.278983011841774e-02, 5.715158954262737e-02, 6.408003717660904e-02, 6.465259939432144e-02, 6.441756337881088e-02, 6.394293904304504e-02, 6.426961719989777e-02, 6.35286346077919e-02, 6.486935913562773e-02, 5.472339317202568e-02, 2.853796631097794e-02, 7.90499709546566e-03, 3.105814976152033e-04, 1.023521024878793e-11, 6.385551375859277e-12, -1.283576196720038e-11, -1.824854720458569e-12, 2.29936837799205e-13, -5.877989067704092e-12, 2.536703702996079e-12, 8.6951314204331e-12, 1.167447388761289e-11, 1.444698440739023e-11, 1.680517530688874e-11, 9.143815045409287e-12, 3.303197992909901e-12, 1.643242313054127e-11, 2.177656839574826e-11, 2.227709162971878e-11, 1.621404399632073e-11, -5.701104085348164e-12, -1.00822379958676e-11, -7.308370054970315e-12, 3.758341901582973e-11, 1.813584699084103e-11, 2.146030601579696e-05, 2.101588870573323e-05, 2.052985291811638e-05, 2.029206552833784e-05, 2.025915455305949e-05, 1.923999298014678e-05, 1.58045768330339e-05, 1.635717926546896e-03, 7.813468575477536e-03, 1.587350480258465e-02, 3.001379407942295e-02, 4.481790214776993e-02, 5.094455927610397e-02, 5.664371326565742e-02, 5.36772757768631e-02, 6.180742010474205e-02, 8.023977279663086e-02, 6.588202714920044e-02, 5.999387055635452e-02, 5.900051072239876e-02, 6.332765519618988e-02, 7.173220068216324e-02, 7.079672068357468e-02, 7.711956650018692e-02, 5.912196263670921e-02, 2.287891879677773e-02, 8.347717113792896e-03, 2.735080197453499e-03, -2.049813443982806e-11, -1.765394080921467e-11, -1.52157921678997e-11, -1.698582247078306e-11, -2.20683315371728e-11, -2.877004884327405e-11, -3.601770964811735e-11, -3.630695136896955e-12, -2.397463017974016e-15, 6.250358303844239e-12, 1.914968704441744e-11] -nor.vavCol.m_flow=[0e+00, 7.329654244658812e-12, 9.982565121746667e-12, 1.70638000257517e-11, 2.369733922980011e-11, 1.95396979846274e-11, 1.691327633501771e-11, 2.173166334384913e-11, 2.543713850666762e-11, 2.730104337045347e-11, 2.729494755215889e-11, 2.36258373975673e-11, 4.995351628167555e-05, 5.043212513555773e-05, 5.038175004301593e-05, 5.032516128267162e-05, 5.011125904275104e-05, 4.836136577068827e-05, 4.175613867118955e-05, 3.447144626989029e-05, 3.199514685547911e-05, 2.991979818034451e-05, 4.289933713153005e-05, 9.038862772285938e-04, 1.299784705042839e-02, 3.27455997467041e-02, 3.89222726225853e-02, 5.423244833946228e-02, 9.976805001497278e-02, 1.163126304745674e-01, 1.201290041208267e-01, 1.232695281505585e-01, 1.254090517759323e-01, 1.267803758382797e-01, 1.290054917335511e-01, 1.328490227460861e-01, 1.208523139357567e-01, 8.529742807149887e-02, 5.138285458087921e-02, 2.277560904622078e-02, 1.86427297210745e-11, 9.164806934192082e-12, 4.593101940453259e-12, -5.007818378727213e-12, 2.757068661915496e-13, 1.46485653468309e-11, 1.521034166673818e-11, 1.435443344049991e-11, 1.346460963558282e-11, 1.03913709234571e-11, 1.102698401339586e-11, 8.974711598885854e-12, 6.77996851369822e-12, 2.115463880458801e-11, 1.480966217715096e-11, 1.649004023607234e-11, 1.661784945761165e-11, 2.37462805495462e-12, 1.924900690231102e-11, 2.437432200519396e-11, 5.896174520847453e-11, 5.766682704272386e-12, 4.143091791775078e-05, 4.057294063386507e-05, 3.963461131206714e-05, 3.917554931831546e-05, 3.91120120184496e-05, 3.714445119840093e-05, 4.222779534757358e-03, 4.490312561392761e-02, 6.845515966415386e-02, 8.902648091316223e-02, 1.148308962583542e-01, 1.378085166215897e-01, 1.47323951125145e-01, 1.546235382556915e-01, 1.503812074661255e-01, 1.573235094547272e-01, 1.665007770061493e-01, 1.453560590744019e-01, 1.414669305086136e-01, 1.431829184293747e-01, 1.512663215398788e-01, 1.609672158956528e-01, 1.629127264022827e-01, 1.571556329727173e-01, 1.380631625652313e-01, 1.053840070962906e-01, 9.17467474937439e-02, 8.343920111656189e-02, 4.02817709743708e-11, 3.879034246589974e-11, 3.969410217186109e-11, 5.890084253667993e-11, 6.261843821242508e-11, 3.248997945681786e-11, -2.239877901211162e-11, -1.234838446773079e-11, -4.647011213467856e-15, 1.35822022032106e-11, -3.054690181358843e-11] -wes.vavCol.m_flow=[0e+00, -1.963349274824999e-11, -1.96247549461015e-11, -2.078688436657483e-11, -1.947683507530495e-11, -1.809065050539793e-11, -1.25912197335154e-11, -1.107533596084176e-11, -1.32548147804834e-11, -1.353209037879832e-11, -1.677202474126283e-11, -1.496890632279868e-11, 2.87498678517295e-05, 2.902532469306607e-05, 2.899633182096295e-05, 2.896376645367127e-05, 2.884065725083929e-05, 2.783353011182043e-05, 2.403198595857248e-05, 1.983939000638202e-05, 1.841418816184159e-05, 1.721975058899261e-05, 1.60991694428958e-05, 1.474307191529078e-05, 8.505360165145248e-05, 1.058599795214832e-03, 2.041094470769167e-03, 7.202201522886753e-03, 3.393583744764335e-02, 4.91577684879303e-02, 5.903229862451553e-02, 6.610053777694702e-02, 6.97300136089325e-02, 7.253042608499527e-02, 7.36820250749588e-02, 7.46411085128784e-02, 6.522427499294281e-02, 3.954949975013733e-02, 1.733718626201153e-02, 3.487564390525222e-03, 2.041970065258525e-11, 1.573975672020111e-11, 9.924856075871347e-12, 3.131656988852177e-13, 2.817417794290927e-13, 5.180388236436517e-12, 2.292609331544515e-11, 1.906471161494672e-11, 1.23242692093295e-11, 8.044127863815476e-12, 6.041078227936314e-12, 8.474746945874578e-12, 1.285632277719939e-11, 1.575038537093842e-11, -1.203026827462095e-12, 3.796486562623948e-12, 1.285970115116875e-11, 1.447072323079719e-11, 8.210987445522733e-12, 1.650340974990172e-11, 4.388412896960681e-11, -7.601442912619216e-12, 2.38448083109688e-05, 2.335101271455642e-05, 2.281097295053769e-05, 2.254676473967265e-05, 2.251019759569317e-05, 2.137779665645212e-05, 1.561600802233593e-04, 1.248994469642625e-02, 2.768030390143382e-02, 4.124344140291214e-02, 5.683040991425514e-02, 6.965647637844086e-02, 7.7895887196064e-02, 8.579154312610626e-02, 8.297940343618393e-02, 9.273543208837509e-02, 1.114434748888016e-01, 1.021503657102585e-01, 9.873641282320023e-02, 9.800504148006439e-02, 1.038849279284477e-01, 1.140491813421249e-01, 1.152431219816208e-01, 1.288645714521408e-01, 1.064357757568359e-01, 6.248107925057411e-02, 4.176655411720276e-02, 3.207093104720116e-02, 2.077254687704588e-11, 2.34208104299416e-11, 2.641097063271758e-11, 2.88371288653666e-11, 2.278758431950578e-11, 5.747219540552795e-12, -1.06420055059897e-11, 2.543596409887439e-12, -2.692698681080108e-15, 1.183328868920031e-11, -6.519881422945017e-12] +fanSupHot.m_flow=[-0e+00, 4.331284664260693e-09, -5.267778657724875e-09, 7.878255559035097e-08, 6.040386324457359e-08, 1.493707912914033e-07, 5.899912025597587e-08, -5.677494741007653e-08, -2.516827457554882e-08, -5.72431950729424e-08, -1.15891127805412e-08, 6.590575907239327e-08, 2.05699896812439e+00, 2.066989183425903e+00, 2.066100597381592e+00, 2.064996480941772e+00, 2.060624122619629e+00, 2.024822473526001e+00, 1.933391928672791e+00, 1.876869559288025e+00, 1.860786199569702e+00, 1.847906351089478e+00, 1.836134672164917e+00, 1.822400093078613e+00, 1.810734152793884e+00, 1.800402641296387e+00, 1.802572846412659e+00, 1.797945618629456e+00, 1.774783134460449e+00, 1.767799496650696e+00, 1.765113353729248e+00, 1.763660907745361e+00, 1.763300657272339e+00, 1.763015627861023e+00, 1.762810945510864e+00, 1.76198422908783e+00, 1.769245743751526e+00, 1.791819334030151e+00, 1.816742300987244e+00, 1.845675706863403e+00, -3.290605548045278e-07, 9.997073391332378e-08, 4.314895818424702e-07, 8.838161846824732e-08, -1.498390389542692e-08, -2.155106670898022e-07, -1.197541621422715e-07, -1.017266555436436e-07, 4.214222748544216e-09, 6.309628020062519e-08, 2.563652223841473e-08, 1.127304614101377e-07, 4.659057495359775e-08, -3.026046044851682e-07, 1.247878174126527e-07, -5.677494741007713e-08, -1.176470547647922e-07, 3.376060817572596e-07, -2.423178102617385e-08, -1.75124370116464e-07, -1.266256845156022e-06, 5.670470955010387e-07, 1.930251002311707e+00, 1.922651886940002e+00, 1.914786577224731e+00, 1.911070585250854e+00, 1.91057026386261e+00, 1.895350456237793e+00, 1.85087764263153e+00, 1.816775560379029e+00, 1.807362675666809e+00, 1.799268245697021e+00, 1.789124608039856e+00, 1.779956698417664e+00, 1.77491283416748e+00, 1.769631266593933e+00, 1.772627353668213e+00, 1.766901254653931e+00, 1.749285578727722e+00, 1.755917429924011e+00, 1.758516192436218e+00, 1.758437991142273e+00, 1.754793286323547e+00, 1.747465014457703e+00, 1.743957281112671e+00, 1.742840528488159e+00, 1.754167437553406e+00, 1.784692883491516e+00, 1.804460644721985e+00, 1.81829845905304e+00, 7.035411186961937e-08, 2.610476990128063e-08, -5.045361106681412e-08, -3.863037534301839e-07, -3.657008846857934e-07, 1.671641740585983e-07, 1.106467607314698e-06, 1.648229357442688e-07, -1.170617491830228e-10, -4.190810614090879e-07, -6.649106865097565e-08] +fanSupCol.m_flow=[-0e+00, 6.672519425876544e-09, -8.311383581371956e-09, 1.206906574680033e-07, 9.212759266574722e-08, 2.282704087974707e-07, 9.013754720399447e-08, -8.697687547964966e-08, -3.863037534301839e-08, -8.732806122679904e-08, -1.76763244041922e-08, 1.006730983021953e-07, 1.613167971372604e-01, 1.381924599409103e-01, 1.413261145353317e-01, 1.444035172462463e-01, 1.55160516500473e-01, 2.43840783834458e-01, 5.330123901367188e-01, 7.98282265663147e-01, 8.837593197822571e-01, 9.535703063011169e-01, 1.017924189567566e+00, 1.094253420829773e+00, 1.159693479537964e+00, 1.218798160552979e+00, 1.205705523490906e+00, 1.231910586357117e+00, 1.367337226867676e+00, 1.408448338508606e+00, 1.42376983165741e+00, 1.431439995765686e+00, 1.432526469230652e+00, 1.433303475379944e+00, 1.433817863464355e+00, 1.438111066818237e+00, 1.396190404891968e+00, 1.264515399932861e+00, 1.120070934295654e+00, 9.569445252418518e-01, -5.026631129112502e-07, 1.526485107206099e-07, 6.595258810193627e-07, 1.352063208059917e-07, -2.270997789821649e-08, -3.294117618679593e-07, -1.832016351954735e-07, -1.553409418875162e-07, 6.672519425876544e-09, 9.634181452611301e-08, 3.921568492160077e-08, 1.725490079707015e-07, 7.117353817420735e-08, -4.627450778116327e-07, 1.909277074219062e-07, -8.674275164821763e-08, -1.799239015553967e-07, 5.160081855137858e-07, -3.710857399141787e-08, -2.680714032976539e-07, -1.935615955517278e-06, 8.666081043884333e-07, 5.413551330566406e-01, 5.744805335998535e-01, 6.096721291542053e-01, 6.26608669757843e-01, 6.290035247802734e-01, 7.005112767219543e-01, 9.305710196495075e-01, 1.12033200263977e+00, 1.173097968101501e+00, 1.219479560852051e+00, 1.278664708137512e+00, 1.332989096641541e+00, 1.361140608787537e+00, 1.388567328453064e+00, 1.368924617767334e+00, 1.397021293640137e+00, 1.477252721786499e+00, 1.435345530509949e+00, 1.424727439880371e+00, 1.427991509437561e+00, 1.447827816009521e+00, 1.480063438415527e+00, 1.486321568489075e+00, 1.481204032897949e+00, 1.418199419975281e+00, 1.278202533721924e+00, 1.185197353363037e+00, 1.112020015716553e+00, 1.074626823083236e-07, 3.980099450018315e-08, -7.702662685460382e-08, -5.904594218009152e-07, -5.589698162111745e-07, 2.554287164002744e-07, 1.691073975962354e-06, 2.520339421607787e-07, 3.511852475490684e-10, -6.404447958630044e-07, -1.017266555436436e-07] +fanRet.m_flow=[-0e+00, -4.145741741012898e-07, -4.527362875705876e-07, -1.473612201152719e-07, -1.476148554502288e-07, 2.15218022958652e-07, 1.004779992541671e-08, -3.677884876651662e-07, -3.068188334509614e-07, -4.197053726784361e-07, -3.220953885829658e-07, -2.038825464012461e-08, 3.265579462051392e+00, 3.252819061279297e+00, 3.254232883453369e+00, 3.25580358505249e+00, 3.262217998504639e+00, 3.311346769332886e+00, 3.493974208831787e+00, 3.685632944107056e+00, 3.746533393859863e+00, 3.798040390014648e+00, 3.845422983169556e+00, 3.902276515960693e+00, 3.952301263809204e+00, 3.997589588165283e+00, 3.988261461257935e+00, 4.008887767791748e+00, 4.112007617950439e+00, 4.143247604370117e+00, 4.155638217926025e+00, 4.162433624267578e+00, 4.164504051208496e+00, 4.1660475730896e+00, 4.166678905487061e+00, 4.170088768005371e+00, 4.138514041900635e+00, 4.0387864112854e+00, 3.929287672042847e+00, 3.805672883987427e+00, -1.367437221233558e-06, -9.778558052175867e-08, 1.186518375106971e-06, 2.653399633345543e-07, -4.832699218582093e-08, -8.416349146500579e-07, -7.062139957270119e-07, -7.326504487537022e-07, -4.487561966470821e-07, -2.138718144806262e-07, -3.031314008694608e-07, -3.902058232085892e-09, -9.035215953190345e-08, -1.401989948135451e-06, -4.865866642944638e-08, -6.033362183188753e-07, -8.424738666689923e-07, 8.204272603507011e-07, -2.521510111819225e-07, -7.53409381104575e-07, -5.105843229102902e-06, 1.224621883011423e-06, 3.498841524124146e+00, 3.522596120834351e+00, 3.548017263412476e+00, 3.560451030731201e+00, 3.562177419662476e+00, 3.613662481307983e+00, 3.783156156539918e+00, 3.925339221954345e+00, 3.965399980545044e+00, 4.000597476959229e+00, 4.045319080352783e+00, 4.086267948150635e+00, 4.108850479125977e+00, 4.130632877349854e+00, 4.116339206695557e+00, 4.137110710144043e+00, 4.1941237449646e+00, 4.160271644592285e+00, 4.153421401977539e+00, 4.156753540039062e+00, 4.170794486999512e+00, 4.191793918609619e+00, 4.191239833831787e+00, 4.174956321716309e+00, 4.129252910614014e+00, 4.041847705841064e+00, 3.975562810897827e+00, 3.920905590057373e+00, -1.700516918390349e-07, -2.750365695192158e-07, -5.272656267152342e-07, -1.732826035549806e-06, -1.983084530365886e-06, -3.802360595273058e-07, 2.953448301923345e-06, 4.754072620016814e-07, 1.2876791855021e-09, -1.41851523949299e-06, -4.313139925216092e-07] +fanSupHot.dp=[0e+00, 2.473825588822365e-10, -3.055902197957039e-10, 4.43833414465189e-09, 3.390596248209476e-09, 8.396455086767673e-09, 3.332388587296009e-09, -3.201421350240709e-09, -1.426087692379951e-09, -3.215973265469074e-09, -6.402842700481415e-10, 3.710738383233547e-09, 4.803311920166016e+01, 4.849896240234375e+01, 4.845751953125e+01, 4.840602493286133e+01, 4.820210266113281e+01, 4.653255081176756e+01, 3.752121734619141e+01, 2.480874252319336e+01, 2.028070640563965e+01, 1.642612266540527e+01, 1.279490280151367e+01, 8.374890327453613e+00, 4.46877384185791e+00, 8.593279123306274e-01, 1.622666358947754e+00, -4.962821025401354e-03, -8.49209308624269e+00, -1.114374446868896e+01, -1.214656257629395e+01, -1.265773773193359e+01, -1.274607276916504e+01, -1.280850315093994e+01, -1.284023761749268e+01, -1.311553764343262e+01, -1.042807769775391e+01, -2.135605812072754e+00, 6.623075008392334e+00, 1.603872680664062e+01, -1.855369191616774e-08, 5.631591193377972e-09, 2.428714651614428e-08, 4.976755008101463e-09, -8.294591680169106e-10, -1.213629730045795e-08, -6.737536750733852e-09, -5.718902684748173e-09, 2.473825588822365e-10, 3.550667315721512e-09, 1.455191522836685e-09, 6.344635039567947e-09, 2.619344741106033e-09, -1.704029273241758e-08, 7.028575055301189e-09, -3.201421350240743e-09, -6.635673344134714e-09, 1.90048012882472e-08, -1.367880031466484e-09, -9.866198524832726e-09, -7.130438461899757e-08, 3.192690201103687e-08, 3.690817260742188e+01, 3.548099517822266e+01, 3.388538360595703e+01, 3.309414291381836e+01, 3.298497009277344e+01, 2.954608917236328e+01, 1.748434257507314e+01, 6.629175186157271e+00, 3.479616641998316e+00, 6.614301204681396e-01, -2.998148202896118e+00, -6.410353183746338e+00, -8.207045555114746e+00, -9.936859130859375e+00, -8.673020362854004e+00, -1.038992023468018e+01, -1.521238327026367e+01, -1.237914848327637e+01, -1.175177383422852e+01, -1.200098609924316e+01, -1.324934673309326e+01, -1.516418838500977e+01, -1.529457378387451e+01, -1.454196643829346e+01, -1.054932117462158e+01, -2.554690599441528e+00, 2.803744554519653e+00, 7.069069862365723e+00, 3.958120942115784e-09, 1.455191522836685e-09, -2.837623469531536e-09, -2.174056135118008e-08, -2.057640813291073e-08, 9.400537237524986e-09, 6.229674909263849e-08, 9.284121915698051e-09, 2.91038304567337e-11, -2.358865458518267e-08, -3.754394128918648e-09] +fanSupCol.dp=[0e+00, 1.01863406598568e-10, -1.164153218269348e-10, 1.935404725372791e-09, 1.498847268521786e-09, 3.667082637548447e-09, 1.469743438065052e-09, -1.396983861923219e-09, -6.111804395914078e-10, -1.426087692379951e-09, -2.764863893389702e-10, 1.644366420805454e-09, -4.574063873291016e+01, -4.606451797485352e+01, -4.60206298828125e+01, -4.59775276184082e+01, -4.582686233520508e+01, -4.458475494384765e+01, -4.053398513793945e+01, -3.681716156005859e+01, -3.561929702758789e+01, -3.464089202880859e+01, -3.373891067504883e+01, -3.266899871826172e+01, -3.175164604187012e+01, -3.092303466796875e+01, -3.110661506652832e+01, -3.073922538757324e+01, -2.884042930603027e+01, -2.826395606994629e+01, -2.804919242858887e+01, -2.794150161743164e+01, -2.792627906799316e+01, -2.791542434692383e+01, -2.79082145690918e+01, -2.784801864624023e+01, -2.843586540222168e+01, -3.028211975097656e+01, -3.230710601806641e+01, -3.459361267089844e+01, -8.221832104027271e-09, 2.502929419279099e-09, 1.06665538623929e-08, 2.182787284255028e-09, -3.783497959375381e-10, -5.369656719267368e-09, -2.954038791358471e-09, -2.502929419279099e-09, 8.731149137020111e-11, 1.557054929435253e-09, 6.402842700481415e-10, 2.764863893389702e-09, 1.164153218269348e-09, -7.479684427380562e-09, 3.070454113185406e-09, -1.396983861923234e-09, -2.910383045673121e-09, 8.352799341082614e-09, -5.966285243630409e-10, -4.321918822824955e-09, -3.133027348667383e-08, 1.405715011060238e-08, -4.041709518432617e+01, -3.99530029296875e+01, -3.94599494934082e+01, -3.922265625e+01, -3.918911361694336e+01, -3.81871223449707e+01, -3.496319580078122e+01, -3.230341339111329e+01, -3.156371688842774e+01, -3.091348075866699e+01, -3.008370780944824e+01, -2.932214736938477e+01, -2.892727661132812e+01, -2.854268646240234e+01, -2.881817245483398e+01, -2.842419815063477e+01, -2.729917907714844e+01, -2.788684272766113e+01, -2.803574371337891e+01, -2.79899730682373e+01, -2.771181488037109e+01, -2.725977325439453e+01, -2.717204856872559e+01, -2.724380683898926e+01, -2.812729072570801e+01, -3.00902271270752e+01, -3.139411926269531e+01, -3.24199333190918e+01, 1.731677912175655e-09, 6.402842700481415e-10, -1.222360879182816e-09, -9.575160220265388e-09, -9.036739356815815e-09, 4.132743924856186e-09, 2.738670445978642e-08, 4.089088179171085e-09, 1.455191522836685e-11, -1.037551555782557e-08, -1.644366420805454e-09] +fanRet.dp=[0e+00, -1.207808963954449e-09, -1.324224285781384e-09, -4.511093720793724e-10, -4.511093720793724e-10, 5.820766091346741e-10, 1.455191522836685e-11, -1.047737896442414e-09, -8.87666828930378e-10, -1.207808963954449e-09, -9.313225746154785e-10, -8.731149137020111e-11, -1.618834228515625e+02, -1.620323028564453e+02, -1.620158081054688e+02, -1.619974822998047e+02, -1.619226531982422e+02, -1.613494415283203e+02, -1.592187347412109e+02, -1.569827423095703e+02, -1.562722778320312e+02, -1.556714019775391e+02, -1.551186370849609e+02, -1.544554138183594e+02, -1.538718566894531e+02, -1.533435516357422e+02, -1.534523620605469e+02, -1.532117462158203e+02, -1.520088500976562e+02, -1.516444396972656e+02, -1.514999084472656e+02, -1.514206390380859e+02, -1.513964996337891e+02, -1.513784942626953e+02, -1.513711242675781e+02, -1.513313446044922e+02, -1.516996612548828e+02, -1.528629760742188e+02, -1.541403198242188e+02, -1.555823516845703e+02, -3.870809450745583e-09, -3.201421350240707e-10, 3.317836672067642e-09, 7.421476766467094e-10, -1.309672370553017e-10, -2.386514097452164e-09, -2.022716216742992e-09, -2.095475792884827e-09, -1.309672370553017e-09, -6.402842700481415e-10, -8.87666828930378e-10, -4.365574568510056e-11, -2.764863893389702e-10, -3.987224772572517e-09, -1.891748979687691e-10, -1.746229827404029e-09, -2.415617927908807e-09, 2.284650690853604e-09, -7.275957614183426e-10, -2.139131538569927e-09, -1.446460373699665e-08, 3.37604433298111e-09, -1.591619262695312e+02, -1.588847961425781e+02, -1.585882110595703e+02, -1.584431457519531e+02, -1.584230194091797e+02, -1.578223724365234e+02, -1.558450317382812e+02, -1.541863708496094e+02, -1.537190551757812e+02, -1.533084564208984e+02, -1.527867736816406e+02, -1.523090972900391e+02, -1.520456848144531e+02, -1.517915802001953e+02, -1.519583129882812e+02, -1.517160186767578e+02, -1.510509796142578e+02, -1.514458618164062e+02, -1.515257720947266e+02, -1.514869079589844e+02, -1.513231201171875e+02, -1.510781707763672e+02, -1.510846252441406e+02, -1.512745666503906e+02, -1.518076934814453e+02, -1.528272705078125e+02, -1.536004943847656e+02, -1.542380828857422e+02, -5.238689482212067e-10, -8.149072527885437e-10, -1.513399183750153e-09, -4.918547347187996e-09, -5.660695023834705e-09, -1.164153218269348e-09, 8.236384019255638e-09, 1.324224285781384e-09, 0e+00, -4.001776687800884e-09, -1.236912794411182e-09] +flo.sou.air.vol.T=[2.931499938964844e+02, 2.923798828125e+02, 2.922748107910156e+02, 2.92197265625e+02, 2.920619812011719e+02, 2.919623107910156e+02, 2.91901611328125e+02, 2.918099060058594e+02, 2.916726684570312e+02, 2.915941772460938e+02, 2.915897216796875e+02, 2.914867858886719e+02, 2.917958679199219e+02, 2.917720947265625e+02, 2.917473449707031e+02, 2.91730224609375e+02, 2.917517700195312e+02, 2.9187255859375e+02, 2.921646728515625e+02, 2.925000915527344e+02, 2.927260437011719e+02, 2.930013732910156e+02, 2.932998657226562e+02, 2.934720153808594e+02, 2.935246887207031e+02, 2.935531005859375e+02, 2.935481567382812e+02, 2.935529479980469e+02, 2.9359130859375e+02, 2.936058044433594e+02, 2.936098327636719e+02, 2.936082458496094e+02, 2.936021728515625e+02, 2.93596435546875e+02, 2.935915222167969e+02, 2.935892639160156e+02, 2.935680847167969e+02, 2.935191345214844e+02, 2.934638366699219e+02, 2.933778686523438e+02, 2.931738586425781e+02, 2.930021667480469e+02, 2.930055541992188e+02, 2.931878356933594e+02, 2.931780395507812e+02, 2.931076049804688e+02, 2.927682495117188e+02, 2.926715698242188e+02, 2.925883483886719e+02, 2.925302429199219e+02, 2.924788818359375e+02, 2.924265747070312e+02, 2.923993225097656e+02, 2.922847595214844e+02, 2.921907653808594e+02, 2.921548767089844e+02, 2.921087341308594e+02, 2.921165771484375e+02, 2.922020568847656e+02, 2.921539001464844e+02, 2.919152526855469e+02, 2.918958435058594e+02, 2.926463623046875e+02, 2.926667175292969e+02, 2.926925964355469e+02, 2.927070617675781e+02, 2.926981506347656e+02, 2.927467651367188e+02, 2.929585571289062e+02, 2.932079467773438e+02, 2.93317138671875e+02, 2.93387451171875e+02, 2.934446105957031e+02, 2.934825134277344e+02, 2.935040893554688e+02, 2.935240173339844e+02, 2.935224304199219e+02, 2.935375671386719e+02, 2.935700988769531e+02, 2.935407409667969e+02, 2.935316162109375e+02, 2.935311584472656e+02, 2.935405578613281e+02, 2.935588989257812e+02, 2.935592651367188e+02, 2.935302429199219e+02, 2.934898071289062e+02, 2.934228515625e+02, 2.933248901367188e+02, 2.932285766601562e+02, 2.928051452636719e+02, 2.926777038574219e+02, 2.926159973144531e+02, 2.925821228027344e+02, 2.925918273925781e+02, 2.926997375488281e+02, 2.927720031738281e+02, 2.927593383789062e+02, 2.9275634765625e+02, 2.926831970214844e+02, 2.926347961425781e+02] +flo.eas.air.vol.T=[2.931499938964844e+02, 2.924093627929688e+02, 2.923101501464844e+02, 2.922389526367188e+02, 2.921715393066406e+02, 2.921040344238281e+02, 2.920500793457031e+02, 2.9199072265625e+02, 2.919149475097656e+02, 2.918481140136719e+02, 2.917957763671875e+02, 2.917437438964844e+02, 2.922334899902344e+02, 2.922268981933594e+02, 2.922157897949219e+02, 2.921989135742188e+02, 2.922157287597656e+02, 2.923356018066406e+02, 2.9259521484375e+02, 2.92886962890625e+02, 2.931142272949219e+02, 2.93290283203125e+02, 2.934257202148438e+02, 2.934559020996094e+02, 2.934604797363281e+02, 2.934777221679688e+02, 2.934720153808594e+02, 2.934814147949219e+02, 2.935323181152344e+02, 2.935464782714844e+02, 2.935495300292969e+02, 2.935505676269531e+02, 2.935502014160156e+02, 2.9355078125e+02, 2.935499572753906e+02, 2.935523376464844e+02, 2.935323791503906e+02, 2.934750061035156e+02, 2.933950805664062e+02, 2.9325e+02, 2.930241088867188e+02, 2.928969116210938e+02, 2.927845458984375e+02, 2.928061218261719e+02, 2.928373718261719e+02, 2.926885375976562e+02, 2.927025756835938e+02, 2.926611633300781e+02, 2.926103820800781e+02, 2.925675659179688e+02, 2.925291442871094e+02, 2.924841918945312e+02, 2.924306640625e+02, 2.923881530761719e+02, 2.923522644042969e+02, 2.923189086914062e+02, 2.922794189453125e+02, 2.922400512695312e+02, 2.920967102050781e+02, 2.920833435058594e+02, 2.921721801757812e+02, 2.921527709960938e+02, 2.928076477050781e+02, 2.928250427246094e+02, 2.928464050292969e+02, 2.928581848144531e+02, 2.928551330566406e+02, 2.929041137695312e+02, 2.931005554199219e+02, 2.933278503417969e+02, 2.934006958007812e+02, 2.934400024414062e+02, 2.934812622070312e+02, 2.9351171875e+02, 2.935237121582031e+02, 2.935348815917969e+02, 2.935284118652344e+02, 2.935423278808594e+02, 2.935753173828125e+02, 2.935517883300781e+02, 2.935433654785156e+02, 2.935428466796875e+02, 2.935515747070312e+02, 2.935668334960938e+02, 2.935661315917969e+02, 2.935715942382812e+02, 2.935385437011719e+02, 2.934630737304688e+02, 2.934028625488281e+02, 2.933465576171875e+02, 2.928524475097656e+02, 2.9275537109375e+02, 2.927323913574219e+02, 2.926369934082031e+02, 2.925575561523438e+02, 2.925445861816406e+02, 2.925867919921875e+02, 2.927549133300781e+02, 2.927884826660156e+02, 2.927463684082031e+02, 2.926811828613281e+02] +flo.nor.air.vol.T=[2.931499938964844e+02, 2.923794860839844e+02, 2.922746276855469e+02, 2.921984558105469e+02, 2.921272583007812e+02, 2.920550842285156e+02, 2.919956970214844e+02, 2.919320678710938e+02, 2.9185302734375e+02, 2.917828063964844e+02, 2.917273864746094e+02, 2.916712646484375e+02, 2.924042663574219e+02, 2.924022521972656e+02, 2.923902893066406e+02, 2.923794555664062e+02, 2.923873291015625e+02, 2.924390869140625e+02, 2.925938720703125e+02, 2.927955322265625e+02, 2.929274597167969e+02, 2.930625305175781e+02, 2.931655883789062e+02, 2.932762451171875e+02, 2.933931884765625e+02, 2.934432678222656e+02, 2.934514770507812e+02, 2.934724426269531e+02, 2.935254211425781e+02, 2.935419311523438e+02, 2.935467224121094e+02, 2.935499267578125e+02, 2.935514221191406e+02, 2.935523986816406e+02, 2.935538024902344e+02, 2.935568237304688e+02, 2.935421752929688e+02, 2.935021057128906e+02, 2.934593811035156e+02, 2.934064331054688e+02, 2.928337707519531e+02, 2.926850280761719e+02, 2.926392211914062e+02, 2.926010131835938e+02, 2.926217346191406e+02, 2.925672912597656e+02, 2.925001525878906e+02, 2.924515991210938e+02, 2.924008178710938e+02, 2.92357421875e+02, 2.923189392089844e+02, 2.922754821777344e+02, 2.9222265625e+02, 2.921795959472656e+02, 2.921429443359375e+02, 2.921103820800781e+02, 2.920726318359375e+02, 2.920437316894531e+02, 2.920220336914062e+02, 2.9200634765625e+02, 2.9197705078125e+02, 2.919556579589844e+02, 2.929535827636719e+02, 2.929955444335938e+02, 2.930335388183594e+02, 2.930606079101562e+02, 2.930682067871094e+02, 2.931282348632812e+02, 2.933328247070312e+02, 2.934533081054688e+02, 2.934812927246094e+02, 2.9350146484375e+02, 2.935243835449219e+02, 2.935438232421875e+02, 2.935588989257812e+02, 2.935806274414062e+02, 2.935845336914062e+02, 2.936095886230469e+02, 2.936687927246094e+02, 2.936532592773438e+02, 2.936417236328125e+02, 2.936377563476562e+02, 2.936484069824219e+02, 2.936759338378906e+02, 2.936953735351562e+02, 2.93701171875e+02, 2.936682739257812e+02, 2.935853271484375e+02, 2.935208740234375e+02, 2.934878234863281e+02, 2.929984741210938e+02, 2.928632507324219e+02, 2.928160400390625e+02, 2.92775634765625e+02, 2.927406921386719e+02, 2.927217102050781e+02, 2.927141723632812e+02, 2.926505432128906e+02, 2.926962280273438e+02, 2.926616821289062e+02, 2.924244384765625e+02] +flo.wes.air.vol.T=[2.931499938964844e+02, 2.920982055664062e+02, 2.919955444335938e+02, 2.919284973144531e+02, 2.918799438476562e+02, 2.91847412109375e+02, 2.918505859375e+02, 2.917947082519531e+02, 2.916957092285156e+02, 2.916235656738281e+02, 2.915434875488281e+02, 2.915193786621094e+02, 2.923622131347656e+02, 2.92366455078125e+02, 2.92365234375e+02, 2.923666381835938e+02, 2.923719482421875e+02, 2.924175720214844e+02, 2.925592346191406e+02, 2.927352294921875e+02, 2.928243713378906e+02, 2.929038391113281e+02, 2.930043640136719e+02, 2.931120910644531e+02, 2.932129211425781e+02, 2.933105773925781e+02, 2.933368530273438e+02, 2.933957824707031e+02, 2.934916687011719e+02, 2.935204772949219e+02, 2.935351867675781e+02, 2.935444030761719e+02, 2.935484313964844e+02, 2.935514831542969e+02, 2.935527038574219e+02, 2.935544738769531e+02, 2.935370788574219e+02, 2.934883422851562e+02, 2.934299926757812e+02, 2.933441467285156e+02, 2.929341735839844e+02, 2.928047485351562e+02, 2.927601928710938e+02, 2.927379760742188e+02, 2.927425537109375e+02, 2.926915588378906e+02, 2.926274719238281e+02, 2.92579833984375e+02, 2.925291748046875e+02, 2.924864807128906e+02, 2.924486389160156e+02, 2.9240771484375e+02, 2.923594665527344e+02, 2.923167724609375e+02, 2.92276611328125e+02, 2.922459411621094e+02, 2.922117004394531e+02, 2.921864318847656e+02, 2.921617126464844e+02, 2.921459655761719e+02, 2.921171875e+02, 2.920899353027344e+02, 2.928833312988281e+02, 2.929143981933594e+02, 2.929468994140625e+02, 2.929692687988281e+02, 2.929745788574219e+02, 2.930293579101562e+02, 2.932272644042969e+02, 2.934154663085938e+02, 2.934609680175781e+02, 2.934879760742188e+02, 2.935140991210938e+02, 2.935340881347656e+02, 2.935459289550781e+02, 2.935571899414062e+02, 2.935516967773438e+02, 2.935644836425781e+02, 2.936018981933594e+02, 2.935812683105469e+02, 2.93572998046875e+02, 2.935731506347656e+02, 2.935818176269531e+02, 2.936008911132812e+02, 2.936155090332031e+02, 2.936527404785156e+02, 2.936394653320312e+02, 2.935267333984375e+02, 2.9348486328125e+02, 2.934638977050781e+02, 2.93077880859375e+02, 2.929617309570312e+02, 2.929166564941406e+02, 2.928750305175781e+02, 2.928388671875e+02, 2.928214111328125e+02, 2.92818115234375e+02, 2.928062438964844e+02, 2.92803466796875e+02, 2.927695617675781e+02, 2.92578857421875e+02] +flo.cor.air.vol.T=[2.931499938964844e+02, 2.928847045898438e+02, 2.928187866210938e+02, 2.927740478515625e+02, 2.927292175292969e+02, 2.926865844726562e+02, 2.92657958984375e+02, 2.926190490722656e+02, 2.925611267089844e+02, 2.925127563476562e+02, 2.924782104492188e+02, 2.924395141601562e+02, 2.934700622558594e+02, 2.934616394042969e+02, 2.934630126953125e+02, 2.934643249511719e+02, 2.934688415527344e+02, 2.935001220703125e+02, 2.935715637207031e+02, 2.936483459472656e+02, 2.936839294433594e+02, 2.937189636230469e+02, 2.937543029785156e+02, 2.937924194335938e+02, 2.938347778320312e+02, 2.938778686523438e+02, 2.938526306152344e+02, 2.938742370605469e+02, 2.940225524902344e+02, 2.940642700195312e+02, 2.940862121582031e+02, 2.9410302734375e+02, 2.941147766113281e+02, 2.941253967285156e+02, 2.941351013183594e+02, 2.9414697265625e+02, 2.940922546386719e+02, 2.939339904785156e+02, 2.937893981933594e+02, 2.937063598632812e+02, 2.93652099609375e+02, 2.935315246582031e+02, 2.934906921386719e+02, 2.93479248046875e+02, 2.934794311523438e+02, 2.934385070800781e+02, 2.933780822753906e+02, 2.933390197753906e+02, 2.932982788085938e+02, 2.932626647949219e+02, 2.93230224609375e+02, 2.931983642578125e+02, 2.931657409667969e+02, 2.931271667480469e+02, 2.930885925292969e+02, 2.930613098144531e+02, 2.930312805175781e+02, 2.930091552734375e+02, 2.9298583984375e+02, 2.929671630859375e+02, 2.929290161132812e+02, 2.929043579101562e+02, 2.935722351074219e+02, 2.935806884765625e+02, 2.935894775390625e+02, 2.935938110351562e+02, 2.935944213867188e+02, 2.936157836914062e+02, 2.937070617675781e+02, 2.938513488769531e+02, 2.938984680175781e+02, 2.939359741210938e+02, 2.939811096191406e+02, 2.940242004394531e+02, 2.940473327636719e+02, 2.9407275390625e+02, 2.940319213867188e+02, 2.940568237304688e+02, 2.941947021484375e+02, 2.9416015625e+02, 2.941596374511719e+02, 2.941721801757812e+02, 2.941994934082031e+02, 2.942413940429688e+02, 2.942535095214844e+02, 2.942475891113281e+02, 2.941630859375e+02, 2.939931945800781e+02, 2.938756713867188e+02, 2.937799987792969e+02, 2.937504577636719e+02, 2.936438293457031e+02, 2.936043395996094e+02, 2.935636291503906e+02, 2.935306701660156e+02, 2.935233459472656e+02, 2.935277709960938e+02, 2.935269165039062e+02, 2.935289001464844e+02, 2.935016479492188e+02, 2.934232788085938e+02] +cor.vavHot.m_flow=[2.044842379814522e-18, -3.399168153981474e-13, -2.991435495581368e-13, -1.430158075299559e-12, -1.349937522876488e-12, -2.163136857136205e-12, -1.064639695846914e-12, 1.458221157756362e-13, -1.678320839509223e-13, 1.059772454796611e-13, -5.596717750702696e-13, -1.109362710201289e-12, 6.440092325210571e-01, 6.471759676933289e-01, 6.468926072120667e-01, 6.465417146682739e-01, 6.451547741889954e-01, 6.338188648223876e-01, 6.048742532730103e-01, 5.868256688117981e-01, 5.816182494163513e-01, 5.774564146995544e-01, 5.737212896347046e-01, 5.69413423538208e-01, 5.656660795211792e-01, 5.62267541885376e-01, 5.631328821182251e-01, 5.615998506546021e-01, 5.533218383789062e-01, 5.507831573486328e-01, 5.497278571128845e-01, 5.490984916687012e-01, 5.488478541374207e-01, 5.486299395561218e-01, 5.484454035758972e-01, 5.480454564094543e-01, 5.50866961479187e-01, 5.592693686485291e-01, 5.679102540016174e-01, 5.772133469581604e-01, 3.830267700233314e-12, -4.293298843608545e-13, -4.57542337350958e-12, -8.09591814161098e-13, 1.568278384760091e-13, 1.75795760327252e-12, 1.602849038391529e-12, 1.614449676376473e-12, 5.495091144266939e-13, 2.044656727728713e-14, 4.036159427511787e-13, -6.483971345949691e-13, -9.777695011070273e-14, 3.667812581431562e-12, -6.44739036465003e-13, 1.254200085801246e-12, 1.868812179658846e-12, -3.177692050465596e-12, -3.439752280752495e-13, 1.3459090612844e-12, 1.400615040614284e-11, -5.060239553766888e-12, 6.038814783096313e-01, 6.014661192893982e-01, 5.989639759063721e-01, 5.977806448936462e-01, 5.976206064224243e-01, 5.927663445472717e-01, 5.785635113716124e-01, 5.673350095748901e-01, 5.642030835151672e-01, 5.61485230922699e-01, 5.580428242683411e-01, 5.548598170280457e-01, 5.5318284034729e-01, 5.515172481536865e-01, 5.530171394348145e-01, 5.51372766494751e-01, 5.455190539360046e-01, 5.481711030006409e-01, 5.486608743667603e-01, 5.482712984085083e-01, 5.468554496765137e-01, 5.445980429649353e-01, 5.441827178001404e-01, 5.448151826858521e-01, 5.493663549423218e-01, 5.581247210502625e-01, 5.638374090194702e-01, 5.683374404907227e-01, -1.807195452313559e-12, -1.172074373320675e-12, -2.661589752848276e-13, 2.649765606585475e-12, 2.146923264167988e-12, -3.029906403897997e-12, -1.182918520081788e-11, -1.385995810308793e-12, -3.937940451563494e-15, 4.395031213966227e-12, 2.081505974527165e-12] +sou.vavHot.m_flow=[-0e+00, 3.007232050183939e-12, 2.432101395277719e-12, -4.658328844192594e-13, -2.841969931957622e-12, -3.967047610548002e-12, -3.376470544130816e-12, -3.775073136036424e-12, -5.93782488456096e-12, -5.676141848209859e-12, -4.241565432216987e-12, -6.615110369201371e-12, 3.626723289489746e-01, 3.644280731678009e-01, 3.642722964286804e-01, 3.640784621238708e-01, 3.633102178573608e-01, 3.570147156715393e-01, 3.409328460693359e-01, 3.310301899909973e-01, 3.282304704189301e-01, 3.260280787944794e-01, 3.238406479358673e-01, 3.212016522884369e-01, 3.191606104373932e-01, 3.174010515213013e-01, 3.177624940872192e-01, 3.170065879821777e-01, 3.132149577140808e-01, 3.120775520801544e-01, 3.11661958694458e-01, 3.114665448665619e-01, 3.114574253559113e-01, 3.114569783210754e-01, 3.114657998085022e-01, 3.113670647144318e-01, 3.125228881835938e-01, 3.161803781986237e-01, 3.203752040863037e-01, 3.254396021366119e-01, -7.422728230677134e-12, -1.164989112123482e-11, -9.758713802321406e-12, -1.001200194256611e-13, 9.466817656395357e-14, 1.02134858730174e-12, -9.561393343737734e-12, -1.036622090250239e-11, -1.129914998371229e-11, -1.13343301758051e-11, -1.087511244252104e-11, -1.052121150618701e-11, -7.976437219059385e-12, -9.179320498153842e-12, -1.342747180804738e-11, -1.158644187537749e-11, -1.080534793584947e-11, -1.083468210982823e-11, -3.840263610582761e-12, -5.43049329462808e-12, -8.496814363212479e-12, -1.754099296369382e-11, 3.403806388378143e-01, 3.390461802482605e-01, 3.376657664775848e-01, 3.370138108730316e-01, 3.36925745010376e-01, 3.342592418193817e-01, 3.265995681285858e-01, 3.208816647529602e-01, 3.192000389099121e-01, 3.177583813667297e-01, 3.159908950328827e-01, 3.144233226776123e-01, 3.136070370674133e-01, 3.12830775976181e-01, 3.133447766304016e-01, 3.125849664211273e-01, 3.105750977993011e-01, 3.117893934249878e-01, 3.120765388011932e-01, 3.119856119155884e-01, 3.114604651927948e-01, 3.106499314308167e-01, 3.105985820293427e-01, 3.109886944293976e-01, 3.127201199531555e-01, 3.162394464015961e-01, 3.188597559928894e-01, 3.210545480251312e-01, -1.211165629594335e-11, -1.254881702023036e-11, -1.285008210949456e-11, -1.057148639460603e-11, -8.078655799881318e-12, -4.005270941298544e-12, -2.665125065082208e-12, 1.002811860786011e-13, -2.227279487552287e-15, -2.526126551861962e-13, 5.791454121828465e-12] +eas.vavHot.m_flow=[0e+00, 1.474781668314717e-12, 1.536832076529104e-12, 9.876143956463745e-13, 1.427354545321946e-12, 1.182021602992578e-12, 1.46033933643569e-12, 2.545743997550699e-12, 3.590682222040509e-12, 3.633776656311594e-12, 2.413493450231785e-12, 3.293036850149367e-12, 2.582519352436066e-01, 2.595021724700928e-01, 2.593912780284882e-01, 2.592532336711884e-01, 2.587061524391174e-01, 2.542232275009155e-01, 2.427710294723511e-01, 2.35718846321106e-01, 2.337251305580139e-01, 2.319910526275635e-01, 2.303935885429382e-01, 2.287394553422928e-01, 2.273859977722168e-01, 2.261639833450317e-01, 2.26422443985939e-01, 2.258772850036621e-01, 2.231617122888565e-01, 2.223561406135559e-01, 2.220633924007416e-01, 2.219185531139374e-01, 2.218983620405197e-01, 2.21883237361908e-01, 2.218796461820602e-01, 2.217989414930344e-01, 2.226163297891617e-01, 2.252306491136551e-01, 2.282510846853256e-01, 2.319211214780807e-01, 3.069843207761935e-12, 1.916288525430354e-12, -3.849861401894472e-12, -5.477129166875372e-13, 6.847168367235881e-14, -1.691863554635631e-12, 7.885919022822263e-13, 2.608330652159596e-12, 3.503842398513979e-12, 4.324939278238515e-12, 5.042076131611672e-12, 2.746070515077803e-12, 9.910505575916329e-13, 4.928008088406211e-12, 6.532000201148191e-12, 6.682941960239878e-12, 4.794243561173567e-12, -1.709688814133208e-12, -3.022975966771035e-12, -2.191550109789664e-12, 1.008396578044968e-11, 5.441792849669724e-12, 2.42377832531929e-01, 2.41427481174469e-01, 2.404444217681885e-01, 2.399801015853882e-01, 2.399173825979233e-01, 2.380184084177017e-01, 2.325675785541534e-01, 2.283439189195633e-01, 2.271710336208344e-01, 2.261820584535599e-01, 2.249434292316437e-01, 2.238368988037109e-01, 2.232746332883835e-01, 2.227441519498825e-01, 2.231248021125793e-01, 2.225949019193649e-01, 2.211927622556686e-01, 2.220513075590134e-01, 2.222466468811035e-01, 2.221768349409103e-01, 2.218052744865417e-01, 2.21249133348465e-01, 2.212379276752472e-01, 2.214671224355698e-01, 2.226874828338623e-01, 2.251600921154022e-01, 2.269473969936371e-01, 2.284651547670364e-01, -6.149309794006852e-12, -5.296138094051939e-12, -4.564832453007872e-12, -5.096225958595157e-12, -6.622504628017722e-12, -8.630783587815216e-12, -1.083315815525454e-11, -1.088867819694361e-12, -1.591603177615445e-15, 1.912484710528406e-12, 5.738378956038348e-12] +nor.vavHot.m_flow=[-0e+00, 2.19891184254084e-12, 2.994748546369941e-12, 5.119432655575906e-12, 7.109427629936604e-12, 5.862458088423672e-12, 5.074202776705894e-12, 6.519295086410139e-12, 7.631062448609782e-12, 8.190114385298042e-12, 8.188449918122842e-12, 7.087998157156994e-12, 4.984344840049744e-01, 5.008472800254822e-01, 5.006332993507385e-01, 5.003669261932373e-01, 4.993111193180084e-01, 4.906593561172485e-01, 4.685563445091248e-01, 4.549449980258942e-01, 4.510968029499054e-01, 4.480719864368439e-01, 4.45372998714447e-01, 4.420265555381775e-01, 4.390898644924164e-01, 4.366236925125122e-01, 4.370729029178619e-01, 4.35980498790741e-01, 4.30734783411026e-01, 4.291706681251526e-01, 4.285989999771118e-01, 4.283104240894318e-01, 4.282636940479279e-01, 4.282326400279999e-01, 4.282163381576538e-01, 4.28057461977005e-01, 4.296143054962158e-01, 4.345982372760773e-01, 4.403127133846283e-01, 4.471666812896729e-01, 5.591447443942243e-12, 2.750646281926561e-12, 1.380188172951657e-12, -1.5019944923228e-12, 8.172656345076246e-14, 4.53261126548421e-12, 4.616572315402356e-12, 4.305928877346155e-12, 4.042185856867331e-12, 3.099850237608948e-12, 3.308474588042953e-12, 2.698056405028848e-12, 2.034165804548627e-12, 6.343029834016134e-12, 4.442223932449307e-12, 4.946734428329373e-12, 4.850609497397612e-12, 7.136293509249259e-13, 5.777955371100152e-12, 7.314167500827029e-12, 1.537803218099043e-11, 1.732059482818793e-12, 4.677973985671997e-01, 4.659631550312042e-01, 4.640657901763916e-01, 4.631696343421936e-01, 4.630485773086548e-01, 4.593834280967712e-01, 4.484222829341887e-01, 4.403049945831299e-01, 4.381615519523621e-01, 4.363082051277161e-01, 4.339752495288849e-01, 4.318743944168091e-01, 4.305269420146942e-01, 4.288077354431152e-01, 4.289735853672028e-01, 4.267614781856537e-01, 4.20155793428421e-01, 4.209895431995392e-01, 4.22311544418335e-01, 4.228712618350983e-01, 4.219541549682617e-01, 4.189726710319519e-01, 4.163227677345276e-01, 4.148092269897461e-01, 4.183033406734467e-01, 4.290153384208679e-01, 4.36475396156311e-01, 4.404689371585846e-01, 1.208480277653523e-11, 1.163721289471065e-11, 1.190806481199402e-11, 1.766844483219732e-11, 1.878158739643254e-11, 9.747288913508623e-12, -6.773878766935804e-12, -3.703844089070207e-12, -3.090125057624168e-15, 4.14700608922236e-12, -9.173117127003749e-12] +wes.vavHot.m_flow=[0e+00, -5.890039758010834e-12, -5.887438973839476e-12, -6.235898082629365e-12, -5.84292206631809e-12, -5.426881166670228e-12, -3.777240239338786e-12, -3.322719920387241e-12, -3.976492746193827e-12, -4.059744294210299e-12, -5.031630060520209e-12, -4.490531644446571e-12, 2.936310768127441e-01, 2.950356900691986e-01, 2.94911116361618e-01, 2.947560846805573e-01, 2.941414415836334e-01, 2.891064584255218e-01, 2.762553095817566e-01, 2.683488428592682e-01, 2.66114354133606e-01, 2.643582224845886e-01, 2.628053426742554e-01, 2.610187530517578e-01, 2.594316601753235e-01, 2.579494118690491e-01, 2.581815421581268e-01, 2.57481187582016e-01, 2.543492019176483e-01, 2.53411740064621e-01, 2.530543208122253e-01, 2.528706789016724e-01, 2.528365254402161e-01, 2.528128623962402e-01, 2.528036236763e-01, 2.527145743370056e-01, 2.536261677742004e-01, 2.565420866012573e-01, 2.598941922187805e-01, 2.639346122741699e-01, 6.125200607137726e-12, 4.722620298297509e-12, 2.979198051450416e-12, 9.424899689901636e-14, 8.395306747965153e-14, 1.633419202846931e-12, 6.908638591762717e-12, 5.71918640918101e-12, 3.69822054924196e-12, 2.402981459648235e-12, 1.81224436499039e-12, 2.545679162260783e-12, 3.856996753232034e-12, 4.723195359129795e-12, -3.610990629773769e-13, 1.138802268631243e-12, 3.779940336429116e-12, 4.341930894685695e-12, 2.465050082459119e-12, 4.952253884749069e-12, 1.183885108002602e-11, -2.279262065543741e-12, 2.758142948150635e-01, 2.747485637664795e-01, 2.736462652683258e-01, 2.731256783008575e-01, 2.73055374622345e-01, 2.7092644572258e-01, 2.647224366664886e-01, 2.599093019962311e-01, 2.586268782615662e-01, 2.575345039367676e-01, 2.561715841293335e-01, 2.549516260623932e-01, 2.543231844902039e-01, 2.537346184253693e-01, 2.541662752628326e-01, 2.535869777202606e-01, 2.518424391746521e-01, 2.529175579547882e-01, 2.532210946083069e-01, 2.531330585479736e-01, 2.52717137336731e-01, 2.519949674606323e-01, 2.516147494316101e-01, 2.507625222206116e-01, 2.510966956615448e-01, 2.561563551425934e-01, 2.583414614200592e-01, 2.599737048149109e-01, 6.231917759613737e-12, 7.026304017776486e-12, 7.923193351411228e-12, 8.65012922401931e-12, 6.834006451017505e-12, 1.724348745388293e-12, -3.223040974734137e-12, 7.635265033070771e-13, -1.773906161325607e-15, 3.59136310100483e-12, -1.962298596183687e-12] +cor.vavCol.m_flow=[6.816127479704864e-18, -1.133127988141303e-12, -9.970596397124165e-13, -4.768427840085021e-12, -4.500734420570529e-12, -7.212785490401386e-12, -3.54973472491138e-12, 4.869736883704467e-13, -5.590547014037994e-13, 3.541581632994506e-13, -1.865390654443022e-12, -3.698912270228005e-12, 1.611668765544891e-01, 1.380501389503479e-01, 1.411841660737991e-01, 1.442618072032928e-01, 1.550200581550598e-01, 2.437180876731878e-01, 5.329163074493408e-01, 7.981922030448914e-01, 8.836752772331238e-01, 9.527294039726257e-01, 1.001390218734741e+00, 1.021092057228088e+00, 1.021737575531006e+00, 1.017354369163513e+00, 1.005131483078003e+00, 1.004091858863831e+00, 1.007927536964417e+00, 9.973670840263367e-01, 9.966617226600647e-01, 9.99963104724884e-01, 1.006814360618591e+00, 1.013216614723206e+00, 1.019433856010437e+00, 1.022670745849609e+00, 1.032216668128967e+00, 1.030581474304199e+00, 1.002837657928467e+00, 9.210016131401062e-01, 1.277271864663643e-11, -1.432668328589515e-12, -1.525818013603519e-11, -2.700033122429724e-12, 5.229942455671488e-13, 5.86324391815829e-12, 5.344712086102765e-12, 5.383087205157455e-12, 1.831623394621396e-12, 6.714964142454788e-14, 1.344948024478709e-12, -2.16308936908105e-12, -3.266588388672886e-13, 1.223079016537953e-11, -2.151105899309003e-12, 4.18154183154387e-12, 6.23121216083953e-12, -1.05976095954308e-11, -1.146196419027357e-12, 4.489114375366698e-12, 4.670704101261691e-11, -1.687639264447149e-11, 5.412346124649048e-01, 5.743693709373474e-01, 6.095621585845947e-01, 6.264984607696533e-01, 6.288923025131226e-01, 7.004258632659912e-01, 9.261730313301103e-01, 1.06121289730072e+00, 1.067490100860596e+00, 1.065546989440918e+00, 1.054963827133179e+00, 1.041255116462708e+00, 1.031960725784302e+00, 1.023486256599426e+00, 1.012732982635498e+00, 1.003807187080383e+00, 1.013221502304077e+00, 1.042054057121277e+00, 1.052953839302063e+00, 1.057376980781555e+00, 1.052707195281982e+00, 1.04218578338623e+00, 1.045917630195618e+00, 1.054772734642029e+00, 1.07496702671051e+00, 1.07206130027771e+00, 1.041181445121765e+00, 9.935709834098816e-01, -6.025078439636511e-12, -3.907322382312728e-12, -8.864053696773511e-13, 8.838637287345019e-12, 7.162157585755002e-12, -1.010231221593161e-11, -3.944800736066512e-11, -4.622590504821389e-12, -1.313172457600466e-14, 1.465669252631585e-11, 6.939381794884847e-12] +sou.vavCol.m_flow=[0e+00, 1.002404843158944e-11, 8.107039345395251e-12, -1.553471652530891e-12, -9.473756848454862e-12, -1.322479452336989e-11, -1.125540459445684e-11, -1.258304918594356e-11, -1.979249056316412e-11, -1.891994373670602e-11, -1.413842914271823e-11, -2.205091664819747e-11, 3.633027517935261e-05, 3.6677869502455e-05, 3.664123869384639e-05, 3.660004585981369e-05, 3.644451498985291e-05, 3.517184813972562e-05, 3.036800444533583e-05, 2.507007593521848e-05, 2.326911999261938e-05, 2.17599153984338e-05, 1.207661000080407e-03, 4.663349688053131e-02, 9.950342029333115e-02, 1.362598538398743e-01, 1.305175870656967e-01, 1.335978209972382e-01, 1.685599684715272e-01, 1.815342009067535e-01, 1.832906305789948e-01, 1.776879876852036e-01, 1.666321754455566e-01, 1.565071195363998e-01, 1.481688767671585e-01, 1.430815011262894e-01, 1.231657937169075e-01, 8.054440468549728e-02, 4.059415683150291e-02, 9.354786947369576e-03, -2.473946915382275e-11, -3.883379381952601e-11, -3.253282018778059e-11, -3.345196840885689e-13, 3.156978801641119e-13, 3.406409702921831e-12, -3.187020439221477e-11, -3.45531138423727e-11, -3.766381997949431e-11, -3.778160423406618e-11, -3.625054770250991e-11, -3.507165738381168e-11, -2.658850743741947e-11, -3.059499875668337e-11, -4.475927961600235e-11, -3.862091549344801e-11, -3.601672085573621e-11, -3.611853524598822e-11, -1.280064162306749e-11, -1.810005097191425e-11, -2.831145561044135e-11, -5.84749193510703e-11, 3.013220884895418e-05, 2.950754787889309e-05, 2.88251212623436e-05, 2.849124211934395e-05, 2.844496884790715e-05, 2.701408266148064e-05, 2.219168527517464e-05, 9.600034536560729e-05, 1.671867910772536e-03, 7.794866338372231e-03, 2.203254960477352e-02, 3.945246711373329e-02, 5.302058160305023e-02, 6.802356243133545e-02, 6.915769726037979e-02, 8.135104179382324e-02, 1.058432832360268e-01, 7.990385591983795e-02, 7.157725840806961e-02, 7.042745500802994e-02, 7.664495706558228e-02, 9.113006293773651e-02, 9.14510115981102e-02, 6.329414993524551e-02, 3.960515186190605e-02, 1.541188452392817e-02, 2.148720901459455e-03, 1.965785777429119e-04, -4.037274334289798e-11, -4.182956064857635e-11, -4.283309124053503e-11, -3.523481853506816e-11, -2.692557808658957e-11, -1.335236695515496e-11, -8.893549958977065e-12, 3.328068614964763e-13, -7.433685658946986e-15, -8.383281048518487e-13, 1.930540276251502e-11] +eas.vavCol.m_flow=[-0e+00, 4.915909693203879e-12, 5.122800187523646e-12, 3.291546505843068e-12, 4.757458316184682e-12, 3.939128103563894e-12, 4.867421136284245e-12, 8.486160558984773e-12, 1.19690767713676e-11, 1.211293045033646e-11, 8.045040328363839e-12, 1.097635871083469e-11, 2.58752224908676e-05, 2.612278876767959e-05, 2.609670264064334e-05, 2.606736052257475e-05, 2.595658952486701e-05, 2.505016527720726e-05, 2.162876080546994e-05, 1.785545646271203e-05, 1.657277971389703e-05, 7.771230884827673e-04, 1.527375262230635e-02, 2.561420574784279e-02, 2.53774132579565e-02, 3.138912096619606e-02, 2.909471653401852e-02, 3.278911486268044e-02, 5.71507997810841e-02, 6.407920271158218e-02, 6.465181708335876e-02, 6.441745907068253e-02, 6.394249200820923e-02, 6.426897644996643e-02, 6.352805346250534e-02, 6.486876308917998e-02, 5.472205206751823e-02, 2.853660471737385e-02, 7.904611527919769e-03, 3.105523937847465e-04, 1.023488151868923e-11, 6.386987293216517e-12, -1.283558502540583e-11, -1.826265267484972e-12, 2.283309446463738e-13, -5.638180027023321e-12, 2.629381521540575e-12, 8.695057694685371e-12, 1.167942825786028e-11, 1.441604474683444e-11, 1.680673482329365e-11, 9.152837342207842e-12, 3.303199077112073e-12, 1.642857551387156e-11, 2.177251434698491e-11, 2.227679846145134e-11, 1.598153380466514e-11, -5.701090207560356e-12, -1.007643100903177e-11, -7.304056665047298e-12, 3.362115447158587e-11, 1.8135704743516e-11, 2.146082078979816e-05, 2.10159232665319e-05, 2.052988202194683e-05, 2.029208553722128e-05, 2.025912908720784e-05, 1.924002026498783e-05, 1.580460775585376e-05, 1.635604538023436e-03, 7.812316995114025e-03, 1.587310992181301e-02, 3.001337312161922e-02, 4.481791704893112e-02, 5.094430968165398e-02, 5.664359033107758e-02, 5.367714166641235e-02, 6.18070662021637e-02, 8.0239437520504e-02, 6.588147580623627e-02, 5.999357625842094e-02, 5.900023505091667e-02, 6.33273720741272e-02, 7.17320516705513e-02, 7.079660892486572e-02, 7.711931318044662e-02, 5.912147834897041e-02, 2.287443913519382e-02, 8.347587659955025e-03, 2.73501337505877e-03, -2.049812229676373e-11, -1.765394774810858e-11, -1.521578175955884e-11, -1.698497592572679e-11, -2.207269783616184e-11, -2.877031078651893e-11, -3.611746665632687e-11, -3.630591487169266e-12, -5.307670654304845e-15, 6.377584658295854e-12, 1.912833259842817e-11] +nor.vavCol.m_flow=[0e+00, 7.329654244658812e-12, 9.982565121746667e-12, 1.70638000257517e-11, 2.369733922980011e-11, 1.95396979846274e-11, 1.691327633501771e-11, 2.173166334384913e-11, 2.543713850666762e-11, 2.730104337045347e-11, 2.729494755215889e-11, 2.36258373975673e-11, 4.995422204956412e-05, 5.04321651533246e-05, 5.038180097471923e-05, 5.032515764469281e-05, 5.011130633647554e-05, 4.836139487451872e-05, 4.175613503321074e-05, 3.44715008395724e-05, 3.199519778718241e-05, 2.991978180943988e-05, 4.290121796657331e-05, 9.038813295774162e-04, 1.299751177430153e-02, 3.274278342723846e-02, 3.892234712839127e-02, 5.423255637288094e-02, 9.97680053114892e-02, 1.163127273321152e-01, 1.201286911964417e-01, 1.232723072171211e-01, 1.254097521305084e-01, 1.267805695533752e-01, 1.290049254894257e-01, 1.328490376472473e-01, 1.208518892526627e-01, 8.529208600521088e-02, 5.138291418552399e-02, 2.277547866106033e-02, 1.864211736368748e-11, 9.167584226477121e-12, 4.59535664729116e-12, -5.007718632127345e-12, 2.726035814182987e-13, 1.511131671183552e-11, 1.539000524242162e-11, 1.435429119317488e-11, 1.34738721915828e-11, 1.03320503194726e-11, 1.102789561058248e-11, 8.992129957308137e-12, 6.77996851369822e-12, 2.114708928802056e-11, 1.4805868336909e-11, 1.6489776558104e-11, 1.617009824650382e-11, 2.374643884306338e-12, 1.926010739783379e-11, 2.438266775983688e-11, 5.127543528660183e-11, 5.766603774354229e-12, 4.143191108596511e-05, 4.05730061174836e-05, 3.963467315770686e-05, 3.917558569810353e-05, 3.911196108674631e-05, 3.714450213010423e-05, 4.222608637064915e-03, 4.490323364734626e-02, 6.845059245824794e-02, 8.902613818645477e-02, 1.148307472467422e-01, 1.378017216920853e-01, 1.473235487937927e-01, 1.546270400285721e-01, 1.503820270299911e-01, 1.573233306407928e-01, 1.665004044771194e-01, 1.453550159931183e-01, 1.414667814970016e-01, 1.431828439235687e-01, 1.512660384178162e-01, 1.609680652618408e-01, 1.629124283790588e-01, 1.571559458971024e-01, 1.380624622106552e-01, 1.053705886006355e-01, 9.174714237451553e-02, 8.343894779682159e-02, 4.02817709743708e-11, 3.879033552700584e-11, 3.969410564130804e-11, 5.889945475789915e-11, 6.260966745053054e-11, 3.248887964213409e-11, -2.259304722473932e-11, -1.234814160644415e-11, -1.030561693518258e-14, 1.382844706798725e-11, -3.057621170143854e-11] +wes.vavCol.m_flow=[0e+00, -1.963349274824999e-11, -1.96247549461015e-11, -2.078688436657483e-11, -1.947683507530495e-11, -1.809065050539793e-11, -1.25912197335154e-11, -1.107533596084176e-11, -1.32548147804834e-11, -1.353209037879832e-11, -1.677202474126283e-11, -1.496890632279868e-11, 2.87502734863665e-05, 2.902534833992831e-05, 2.899636274378281e-05, 2.896376281569246e-05, 2.884068453568034e-05, 2.783354648272506e-05, 2.403198413958307e-05, 1.983942092920188e-05, 1.841421908466145e-05, 1.721974149404559e-05, 1.609920036571566e-05, 1.47431301229517e-05, 8.504762081429362e-05, 1.058349153026938e-03, 2.041046041995287e-03, 7.202011533081532e-03, 3.393561765551574e-02, 4.915741086006165e-02, 5.903197824954987e-02, 6.610333919525146e-02, 6.973040848970413e-02, 7.253028452396393e-02, 7.368199527263641e-02, 7.464105635881423e-02, 6.522345542907715e-02, 3.954771906137466e-02, 1.733704656362534e-02, 3.487510373815894e-03, 2.041962259002883e-11, 1.574135786996944e-11, 9.927630766071172e-12, 3.135447359647187e-13, 2.799466658921085e-13, 5.446237644896046e-12, 2.302962334721492e-11, 1.906464569545463e-11, 1.232735875184021e-11, 8.009489772808909e-12, 6.040617658853442e-12, 8.484799668417864e-12, 1.285632277719939e-11, 1.574609539978233e-11, -1.204549047312264e-12, 3.796392887556245e-12, 1.260061065905251e-11, 1.447073190441457e-11, 8.216987854026137e-12, 1.650873188152602e-11, 3.947167245832439e-11, -7.601524444622587e-12, 2.384538129263092e-05, 2.335105091333389e-05, 2.281100569234695e-05, 2.25467865675455e-05, 2.251017031085212e-05, 2.137782757927198e-05, 1.561512472108156e-04, 1.248982362449155e-02, 2.767800912260996e-02, 4.124318063259125e-02, 5.683021619915962e-02, 6.965631991624832e-02, 7.789567857980728e-02, 8.579239994287491e-02, 8.297660946846008e-02, 9.273527562618256e-02, 1.114432811737061e-01, 1.021499112248421e-01, 9.873609989881516e-02, 9.800494462251663e-02, 1.038848012685776e-01, 1.140493676066399e-01, 1.152426302433014e-01, 1.288632750511169e-01, 1.06436088681221e-01, 6.247654184699059e-02, 4.176658764481544e-02, 3.20708304643631e-02, 2.077255034649284e-11, 2.342080696049464e-11, 2.641097930633496e-11, 2.883645232321097e-11, 2.278255882559588e-11, 5.746640142911819e-12, -1.075121762450504e-11, 2.543936198848296e-12, -5.916052915703194e-15, 1.197414563336441e-11, -6.540519428138714e-12] weaDat.weaBus.TDryBul=[2.609500122070312e+02, 2.608676452636719e+02, 2.609342651367188e+02, 2.61153564453125e+02, 2.614064331054688e+02, 2.616917419433594e+02, 2.619866027832031e+02, 2.621011047363281e+02, 2.620299682617188e+02, 2.62211181640625e+02, 2.625067138671875e+02, 2.625499877929688e+02, 2.625499877929688e+02, 2.625499877929688e+02, 2.625499877929688e+02, 2.625875549316406e+02, 2.628901062011719e+02, 2.632776489257812e+02, 2.637460632324219e+02, 2.6446923828125e+02, 2.655892028808594e+02, 2.665859985351562e+02, 2.674020080566406e+02, 2.682179870605469e+02, 2.690339965820312e+02, 2.698500061035156e+02, 2.704558715820312e+02, 2.709069213867188e+02, 2.715532531738281e+02, 2.720364685058594e+02, 2.720499877929688e+02, 2.720499877929688e+02, 2.720499877929688e+02, 2.720499877929688e+02, 2.720499877929688e+02, 2.720499877929688e+02, 2.719675598144531e+02, 2.716164855957031e+02, 2.713160400390625e+02, 2.71072998046875e+02, 2.710076599121094e+02, 2.717365112304688e+02, 2.720211181640625e+02, 2.716227111816406e+02, 2.714859924316406e+02, 2.718775329589844e+02, 2.7202783203125e+02, 2.717281494140625e+02, 2.714362182617188e+02, 2.714474182128906e+02, 2.714500122070312e+02, 2.704067077636719e+02, 2.692704162597656e+02, 2.696753845214844e+02, 2.703369750976562e+02, 2.701487121582031e+02, 2.698616027832031e+02, 2.69929931640625e+02, 2.702106018066406e+02, 2.708657531738281e+02, 2.718394165039062e+02, 2.721007690429688e+02, 2.720183410644531e+02, 2.721641845703125e+02, 2.724365844726562e+02, 2.725657043457031e+02, 2.72480224609375e+02, 2.7264599609375e+02, 2.729339904785156e+02, 2.732219848632812e+02, 2.73510009765625e+02, 2.738106079101562e+02, 2.744635620117188e+02, 2.748500061035156e+02, 2.748500061035156e+02, 2.748500061035156e+02, 2.748500061035156e+02, 2.748500061035156e+02, 2.742786560058594e+02, 2.732598266601562e+02, 2.727458801269531e+02, 2.725348205566406e+02, 2.729032287597656e+02, 2.736190795898438e+02, 2.73848876953125e+02, 2.738165588378906e+02, 2.734445495605469e+02, 2.726629028320312e+02, 2.727448425292969e+02, 2.734616394042969e+02, 2.738507690429688e+02, 2.740790100097656e+02, 2.743446655273438e+02, 2.746334838867188e+02, 2.749204406738281e+02, 2.751761474609375e+02, 2.753359069824219e+02, 2.740944213867188e+02, 2.731499938964844e+02, 2.731499938964844e+02, 2.731499938964844e+02] weaDat.weaBus.HGloHor=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.802299890384269e-16, 3.419684171676636e+00, 2.249310874938965e+01, 7.238067626953138e+01, 1.324998474121094e+02, 1.955897369384766e+02, 2.557314453125e+02, 3.044623718261719e+02, 3.458858337402344e+02, 3.703623657226562e+02, 3.628850402832031e+02, 2.981751403808594e+02, 2.322208404541016e+02, 2.079606781005859e+02, 1.835730590820311e+02, 1.543350830078125e+02, 1.243963775634766e+02, 9.180991363525391e+01, 5.740960693359375e+01, 2.763039588928223e+01, 8.266829490661578e+00, 2.312187433242813e+00, 2.066075056791306e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.964398443698883e-01, 4.345361709594727e+00, 1.150661659240723e+01, 2.939430809020996e+01, 5.460244750976594e+01, 9.662947845458947e+01, 1.262883834838866e+02, 1.288179473876953e+02, 1.350611572265625e+02, 1.572942962646484e+02, 1.765086517333984e+02, 1.851353454589844e+02, 1.861397705078125e+02, 1.800178680419922e+02, 1.679496307373047e+02, 1.502548217773438e+02, 1.274680023193359e+02, 9.702375793457031e+01, 6.269397354125977e+01, 3.512522506713867e+01, 1.464144802093506e+01, 4.900000095367432e+00, 4.839999973773956e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] weaDat.weaBus.HDifHor=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.18344348669057e-01, 4.644347667694092e+00, 1.503497886657715e+01, 3.449338150024418e+01, 5.088907623291016e+01, 6.271455001831055e+01, 7.274771881103516e+01, 7.534196472167969e+01, 8.180593109130859e+01, 1.134208297729492e+02, 1.447617645263672e+02, 1.593369750976562e+02, 1.67761474609375e+02, 1.717010498046875e+02, 1.635293426513671e+02, 1.340671234130859e+02, 9.878334808349609e+01, 7.318860626220703e+01, 4.95115852355957e+01, 2.715276718139648e+01, 8.81437397003169e+00, 1.758235335350053e+00, 6.434352695941925e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.067480206489563e-01, 4.385499954223633e+00, 1.141065120697021e+01, 2.876775169372559e+01, 5.352061843872102e+01, 9.560803985595666e+01, 1.25285919189453e+02, 1.283971557617188e+02, 1.350645446777344e+02, 1.574091339111328e+02, 1.764910888671875e+02, 1.845002899169922e+02, 1.851361541748047e+02, 1.793896179199219e+02, 1.678938293457031e+02, 1.504030456542969e+02, 1.274956817626953e+02, 9.698798370361328e+01, 6.268984603881836e+01, 3.512522506713867e+01, 1.464144802093506e+01, 4.900000095367432e+00, 4.839999973773956e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] conEco.VOut_flow_min=[2.145179271697998e+00, 2.145179271697998e+00] -conEco.VOut_flow=[0e+00, 1.784749343869407e-07, 1.814494794416532e-07, 1.666890767637597e-07, 1.419245023726035e-07, 1.095391013450353e-07, 7.470210050541937e-08, 7.737187246448231e-08, 9.397107447739472e-08, 9.859246574706049e-08, 1.188681437724881e-07, 9.649224352870078e-08, 1.1614670753479e+00, 1.015336632728577e+00, 9.729108214378357e-01, 9.612127542495728e-01, 9.689306020736694e-01, 1.005343437194824e+00, 1.115570902824402e+00, 1.245317459106445e+00, 1.329725861549377e+00, 1.411059379577637e+00, 1.486488461494446e+00, 1.570356845855713e+00, 1.653354167938232e+00, 1.737973213195801e+00, 1.777789354324341e+00, 1.827941417694092e+00, 1.949924111366272e+00, 2.016789197921753e+00, 2.034569501876831e+00, 2.041953325271606e+00, 2.043696641921997e+00, 2.04454493522644e+00, 2.045010328292847e+00, 2.047451734542847e+00, 2.018896341323853e+00, 1.921223878860474e+00, 1.819364547729492e+00, 1.714358448982239e+00, 1.300116849733968e-07, 1.742346285027452e-07, 8.152041175435443e-08, 7.548868197204683e-09, 3.356243893914979e-10, 6.273306496495934e-08, 1.34499103410235e-07, 1.696176639143232e-07, 1.928596873312927e-07, 1.732880292593109e-07, 1.606518793551004e-07, 1.521544561455812e-07, 9.986618465518404e-08, 1.80234422941794e-07, 1.868958179329638e-07, 1.756105234562712e-07, 1.938470575169049e-07, 1.08689647504435e-07, 7.254796940969754e-08, 7.998132645070655e-08, 4.374370234927483e-07, 2.46615002197359e-07, 1.766360878944397e+00, 1.673187375068665e+00, 1.658385038375854e+00, 1.658555150032043e+00, 1.648897051811218e+00, 1.693396091461182e+00, 1.839263439178468e+00, 1.970973014831542e+00, 2.028002977371215e+00, 2.083914279937744e+00, 2.176102876663208e+00, 2.256206750869751e+00, 2.286760330200195e+00, 2.309592247009277e+00, 2.300173997879028e+00, 2.318355560302734e+00, 2.323167562484741e+00, 2.202203273773193e+00, 2.1323082447052e+00, 2.100508689880371e+00, 2.129010915756226e+00, 2.205234050750732e+00, 2.238372325897217e+00, 2.240304946899414e+00, 2.178190469741821e+00, 2.035534381866455e+00, 1.975825190544128e+00, 1.983481526374817e+00, 1.647038203600459e-07, 1.492342818210091e-07, 1.524460060409183e-07, 2.064691102532379e-07, 3.384131730399531e-07, 3.814303681792808e-07, 2.460368193624163e-07, 2.206910920676819e-08, 5.760784915504608e-14, 3.175304996716477e-08, 9.084855889796017e-08] -conEco.yOA=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 6.384451389312744e-01, 6.129375696182251e-01, 6.054095029830933e-01, 6.032661199569702e-01, 6.040062308311462e-01, 6.054506897926331e-01, 6.063567399978638e-01, 6.091545224189758e-01, 6.160288453102112e-01, 6.234479546546936e-01, 6.303443908691406e-01, 6.376588940620422e-01, 6.457245349884033e-01, 6.546788811683655e-01, 6.626437306404114e-01, 6.691246032714844e-01, 6.78101658821106e-01, 6.864858269691467e-01, 6.883116960525513e-01, 6.889558434486389e-01, 6.892253160476685e-01, 6.893458366394043e-01, 6.894022226333618e-01, 6.894280314445496e-01, 6.883832216262817e-01, 6.834961771965027e-01, 6.79007351398468e-01, 6.756137013435364e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.52215564250946e-01, 7.151904702186584e-01, 7.058121562004089e-01, 7.034455537796021e-01, 7.006062269210815e-01, 7.020988464355469e-01, 7.065302133560181e-01, 7.122920155525208e-01, 7.18997836112976e-01, 7.265589237213135e-01, 7.427299618721008e-01, 7.575665712356567e-01, 7.621151804924011e-01, 7.643154263496399e-01, 7.654044032096863e-01, 7.659077048301697e-01, 7.519845962524414e-01, 7.251958250999451e-01, 7.097583413124084e-01, 7.022457122802734e-01, 7.060427069664001e-01, 7.195921540260315e-01, 7.272921204566956e-01, 7.287666797637939e-01, 7.223225235939026e-01, 7.067428827285767e-01, 7.047312259674072e-01, 7.166983485221863e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -conEco.yOATFre.y=[8.00000011920929e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 6.384451389312744e-01, 6.129375696182251e-01, 6.054095029830933e-01, 6.032661199569702e-01, 6.040062308311462e-01, 6.054506897926331e-01, 6.063567399978638e-01, 6.091545224189758e-01, 6.160288453102112e-01, 6.234479546546936e-01, 6.303443908691406e-01, 6.376588940620422e-01, 6.457245349884033e-01, 6.546788811683655e-01, 6.626437306404114e-01, 6.691246032714844e-01, 6.78101658821106e-01, 6.864858269691467e-01, 6.883116960525513e-01, 6.889558434486389e-01, 6.892253160476685e-01, 6.893458366394043e-01, 6.894022226333618e-01, 6.894280314445496e-01, 6.883832216262817e-01, 6.834961771965027e-01, 6.79007351398468e-01, 6.756137013435364e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 7.52215564250946e-01, 7.151904702186584e-01, 7.058121562004089e-01, 7.034455537796021e-01, 7.006062269210815e-01, 7.020988464355469e-01, 7.065302133560181e-01, 7.122920155525208e-01, 7.18997836112976e-01, 7.265589237213135e-01, 7.427299618721008e-01, 7.575665712356567e-01, 7.621151804924011e-01, 7.643154263496399e-01, 7.654044032096863e-01, 7.659077048301697e-01, 7.519845962524414e-01, 7.251958250999451e-01, 7.097583413124084e-01, 7.022457122802734e-01, 7.060427069664001e-01, 7.195921540260315e-01, 7.272921204566956e-01, 7.287666797637939e-01, 7.223225235939026e-01, 7.067428827285767e-01, 7.047312259674072e-01, 7.166983485221863e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] -conEco.conV_flow.y=[5.000000074505806e-02, 1.219999864697456e-01, 1.939999908208847e-01, 2.65999972820282e-01, 3.379999697208405e-01, 4.099999666213989e-01, 4.819999635219574e-01, 5.53999960422516e-01, 6.259999871253967e-01, 6.979999542236328e-01, 7.699999809265137e-01, 8.419999480247498e-01, 8.711228966712952e-01, 9.105151891708374e-01, 9.502784609794618e-01, 9.901471138000488e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.990045428276062e-01, 9.94556188583374e-01, 9.895697832107544e-01, 9.838880896568298e-01, 9.791141748428345e-01, 9.731817245483398e-01, 9.662320613861084e-01, 9.651428461074829e-01, 9.661420583724976e-01, 9.67968761920929e-01, 9.685609340667725e-01, 9.660412669181824e-01, 9.625524878501892e-01, 9.59313690662384e-01, 9.581633806228638e-01, 9.628520011901855e-01, 9.692568182945251e-01, 9.746533036231995e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] -conEco.uOATSup=[3.499999940395355e-01, 8.539738059043884e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.718921780586243e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.757252752780914e-01, 4.909626245498657e-01, 7.062004804611206e-01, 9.214329719543457e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1.776254773139954e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.046388924121857e-01, 5.466458201408386e-01, 7.886531949043274e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] +conEco.VOut_flow=[0e+00, 1.784749343869407e-07, 1.814494794416532e-07, 1.666890767637597e-07, 1.419245023726035e-07, 1.095391013450353e-07, 7.470210050541937e-08, 7.737187246448231e-08, 9.397107447739472e-08, 9.859246574706049e-08, 1.188681437724881e-07, 9.649224352870078e-08, 1.161455154418945e+00, 1.015335917472839e+00, 9.729099869728088e-01, 9.612628221511841e-01, 9.689300060272217e-01, 1.005343079566956e+00, 1.115570902824402e+00, 1.245316624641418e+00, 1.32972514629364e+00, 1.411059498786926e+00, 1.486487627029419e+00, 1.570355296134949e+00, 1.653352975845337e+00, 1.73797345161438e+00, 1.777788400650024e+00, 1.827943205833435e+00, 1.949922800064087e+00, 2.016787528991699e+00, 2.034568786621094e+00, 2.04195499420166e+00, 2.043696641921997e+00, 2.044544458389282e+00, 2.045009851455688e+00, 2.047451257705688e+00, 2.01889443397522e+00, 1.921221256256104e+00, 1.819362878799438e+00, 1.714358329772949e+00, 1.300116849733968e-07, 1.742346142918905e-07, 8.152031227837142e-08, 7.548956126868234e-09, 3.355933031468084e-10, 6.272644981208941e-08, 1.344975828487804e-07, 1.696176923360326e-07, 1.928701180986536e-07, 1.732940688725648e-07, 1.606520640962117e-07, 1.521540582416492e-07, 9.986617754975669e-08, 1.802339824052979e-07, 1.868958463546733e-07, 1.756105234562712e-07, 1.938653610977781e-07, 1.08689647504435e-07, 7.254681122503825e-08, 7.998102091733017e-08, 4.374184356947808e-07, 2.46615002197359e-07, 1.766332030296326e+00, 1.673183917999268e+00, 1.658383011817932e+00, 1.658554077148438e+00, 1.648897886276245e+00, 1.693394899368286e+00, 1.839262247085573e+00, 1.970972537994384e+00, 2.028000831604003e+00, 2.083913326263428e+00, 2.176101684570312e+00, 2.256202459335327e+00, 2.2867591381073e+00, 2.309592008590698e+00, 2.300172567367554e+00, 2.318354368209839e+00, 2.323166847229004e+00, 2.202201843261719e+00, 2.132307291030884e+00, 2.100508213043213e+00, 2.129010438919067e+00, 2.205233812332153e+00, 2.238371849060059e+00, 2.240303993225098e+00, 2.178189992904663e+00, 2.035523176193237e+00, 1.97582483291626e+00, 1.983481287956238e+00, 1.647038203600459e-07, 1.492342818210091e-07, 1.524460344626277e-07, 2.064690818315285e-07, 3.384132583050814e-07, 3.814303681792808e-07, 2.460568566675647e-07, 2.206928328973845e-08, 1.196206762116292e-13, 3.174452345433565e-08, 9.084337904141648e-08] +conEco.yOA=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 6.38445258140564e-01, 6.129375100135803e-01, 6.054095029830933e-01, 6.032572388648987e-01, 6.04006290435791e-01, 6.054506897926331e-01, 6.063567399978638e-01, 6.091545224189758e-01, 6.160288453102112e-01, 6.234479546546936e-01, 6.303443908691406e-01, 6.376588940620422e-01, 6.457245349884033e-01, 6.546788811683655e-01, 6.626437306404114e-01, 6.691243648529053e-01, 6.78101658821106e-01, 6.864867806434631e-01, 6.883116960525513e-01, 6.889559030532837e-01, 6.892253160476685e-01, 6.893458366394043e-01, 6.894022226333618e-01, 6.894280314445496e-01, 6.883832216262817e-01, 6.834961771965027e-01, 6.79007351398468e-01, 6.756137013435364e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.522169947624207e-01, 7.151898145675659e-01, 7.058119177818298e-01, 7.034454345703125e-01, 7.006061673164368e-01, 7.020987868309021e-01, 7.065302133560181e-01, 7.122920155525208e-01, 7.18997836112976e-01, 7.265588641166687e-01, 7.427299618721008e-01, 7.575663924217224e-01, 7.621151804924011e-01, 7.643154263496399e-01, 7.654044032096863e-01, 7.659077048301697e-01, 7.519846558570862e-01, 7.251958250999451e-01, 7.097583413124084e-01, 7.022457122802734e-01, 7.060427665710449e-01, 7.195922136306763e-01, 7.272921800613403e-01, 7.287666797637939e-01, 7.223225235939026e-01, 7.067429423332214e-01, 7.047312259674072e-01, 7.166982889175415e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +conEco.yOATFre.y=[8.00000011920929e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 6.38445258140564e-01, 6.129375100135803e-01, 6.054095029830933e-01, 6.032572388648987e-01, 6.04006290435791e-01, 6.054506897926331e-01, 6.063567399978638e-01, 6.091545224189758e-01, 6.160288453102112e-01, 6.234479546546936e-01, 6.303443908691406e-01, 6.376588940620422e-01, 6.457245349884033e-01, 6.546788811683655e-01, 6.626437306404114e-01, 6.691243648529053e-01, 6.78101658821106e-01, 6.864867806434631e-01, 6.883116960525513e-01, 6.889559030532837e-01, 6.892253160476685e-01, 6.893458366394043e-01, 6.894022226333618e-01, 6.894280314445496e-01, 6.883832216262817e-01, 6.834961771965027e-01, 6.79007351398468e-01, 6.756137013435364e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 7.522169947624207e-01, 7.151898145675659e-01, 7.058119177818298e-01, 7.034454345703125e-01, 7.006061673164368e-01, 7.020987868309021e-01, 7.065302133560181e-01, 7.122920155525208e-01, 7.18997836112976e-01, 7.265588641166687e-01, 7.427299618721008e-01, 7.575663924217224e-01, 7.621151804924011e-01, 7.643154263496399e-01, 7.654044032096863e-01, 7.659077048301697e-01, 7.519846558570862e-01, 7.251958250999451e-01, 7.097583413124084e-01, 7.022457122802734e-01, 7.060427665710449e-01, 7.195922136306763e-01, 7.272921800613403e-01, 7.287666797637939e-01, 7.223225235939026e-01, 7.067429423332214e-01, 7.047312259674072e-01, 7.166982889175415e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] +conEco.conV_flow.y=[5.000000074505806e-02, 1.219999864697456e-01, 1.939999908208847e-01, 2.65999972820282e-01, 3.379999697208405e-01, 4.099999666213989e-01, 4.819999635219574e-01, 5.53999960422516e-01, 6.259999871253967e-01, 6.979999542236328e-01, 7.699999809265137e-01, 8.419999480247498e-01, 8.711229562759399e-01, 9.105150103569031e-01, 9.502783417701722e-01, 9.901458024978638e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.990045428276062e-01, 9.945563077926636e-01, 9.895698428153992e-01, 9.838881492614746e-01, 9.791143536567688e-01, 9.731819033622742e-01, 9.662322998046875e-01, 9.65143084526062e-01, 9.661423563957214e-01, 9.679690599441528e-01, 9.685611724853516e-01, 9.660415053367615e-01, 9.625527262687683e-01, 9.593139290809631e-01, 9.581636190414429e-01, 9.628524780273438e-01, 9.692570567131042e-01, 9.746536612510681e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] +conEco.uOATSup=[3.499999940395355e-01, 8.539738059043884e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.718920290470123e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.757957577705383e-01, 4.910977780818939e-01, 7.064000964164734e-01, 9.217017292976379e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1.776269525289536e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.047015070915222e-01, 5.467649102210999e-01, 7.888287901878357e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Examples_ScalableBenchmarks_BuildingVAV_Examples_OneFloor_OneZone.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Examples_ScalableBenchmarks_BuildingVAV_Examples_OneFloor_OneZone.txt index b39aea85028..a025282d928 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Examples_ScalableBenchmarks_BuildingVAV_Examples_OneFloor_OneZone.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Examples_ScalableBenchmarks_BuildingVAV_Examples_OneFloor_OneZone.txt @@ -1,4 +1,4 @@ -last-generated=2021-01-06 +last-generated=2021-02-17 statistics-initialization= { "linear": "0", @@ -16,10 +16,10 @@ time=[0e+00, 6.048e+05] weaDat.weaBus.TDryBul=[2.609500122070312e+02, 2.612774658203125e+02, 2.621011047363281e+02, 2.625499877929688e+02, 2.625499877929688e+02, 2.634906005859375e+02, 2.665859985351562e+02, 2.694419860839844e+02, 2.715532531738281e+02, 2.720499877929688e+02, 2.720499877929688e+02, 2.711899108886719e+02, 2.720211181640625e+02, 2.720336303710938e+02, 2.714474182128906e+02, 2.693314514160156e+02, 2.698616027832031e+02, 2.713856811523438e+02, 2.721641845703125e+02, 2.72510986328125e+02, 2.73510009765625e+02, 2.748500061035156e+02, 2.748500061035156e+02, 2.725921325683594e+02, 2.73848876953125e+02, 2.725499877929688e+02, 2.740790100097656e+02, 2.75053955078125e+02, 2.731499938964844e+02, 2.731499938964844e+02, 2.733664245605469e+02, 2.7306201171875e+02, 2.712139892578125e+02, 2.697578430175781e+02, 2.687122497558594e+02, 2.691380004882812e+02, 2.701607055664062e+02, 2.703500061035156e+02, 2.703500061035156e+02, 2.703500061035156e+02, 2.703500061035156e+02, 2.703500061035156e+02, 2.703500061035156e+02, 2.703500061035156e+02, 2.703500061035156e+02, 2.700260009765625e+02, 2.698500061035156e+02, 2.703376159667969e+02, 2.707337341308594e+02, 2.714786071777344e+02, 2.720499877929688e+02, 2.726159973144531e+02, 2.7205712890625e+02, 2.703059997558594e+02, 2.684580078125e+02, 2.684077453613281e+02, 2.6806201171875e+02, 2.662139892578125e+02, 2.661690368652344e+02, 2.658251953125e+02, 2.615640869140625e+02, 2.582152099609375e+02, 2.592766723632812e+02, 2.610854797363281e+02, 2.64716796875e+02, 2.666700134277344e+02, 2.690650634765625e+02, 2.692225952148438e+02, 2.680060119628906e+02, 2.665409545898438e+02, 2.646900024414062e+02, 2.639419860839844e+02, 2.62093994140625e+02, 2.614129638671875e+02, 2.591625671386719e+02, 2.5875e+02, 2.582370910644531e+02, 2.594412841796875e+02, 2.609939880371094e+02, 2.616118469238281e+02, 2.618193054199219e+02, 2.608738708496093e+02, 2.578509826660156e+02, 2.558468933105469e+02, 2.543108673095703e+02, 2.552683868408203e+02, 2.542709197998047e+02, 2.536540069580078e+02, 2.5264599609375e+02, 2.515209808349609e+02, 2.503481140136719e+02, 2.545215454101562e+02, 2.581070861816406e+02, 2.589879760742188e+02, 2.603697204589844e+02, 2.595094604492188e+02, 2.568208923339844e+02, 2.548866882324219e+02, 2.541324615478516e+02, 2.532756500244141e+02, 2.531499938964844e+02] weaDat.weaBus.HDirNor=[0e+00, 0e+00, 0e+00, 0e+00, 4.790056943893433e-01, 3.686282958984375e+02, 6.625081787109375e+02, 4.312069091796866e+02, 5.411502075195312e+01, 5.657868957519531e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.905120015144348e+00, 9.585999846458435e-01, 1.779999971389771e+00, 1.813752055168152e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.721466660499488e-01, 2.894999980926514e-01, 1e+00, 1e+00, 7.318080067634583e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.331199988722801e-02, 1e+00, 5.416666865348816e-01, 8.741199970245361e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.880619812011719e+02, 7.751649169921875e+02, 8.5933056640625e+02, 7.74879638671875e+02, 4.252257690429688e+02, 5.739785385131836e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.404290771484375e+01, 6.168316650390625e+02, 2.696745910644531e+02, 7.800930023193359e+01, 9.641504669189453e+01, 6.644139099121031e+01, 2.897682094271659e-14, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.037647857666016e+02, 7.07604736328125e+02, 8.80940673828125e+02, 9.020025024414062e+02, 8.423399658203125e+02, 5.655880126953125e+02, 8.352803230285645e+00, 0e+00, 0e+00, 0e+00, 0e+00] weaDat.weaBus.HGloHor=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.025815353393555e+02, 3.044623718261719e+02, 3.372630615234372e+02, 1.835730590820312e+02, 7.442298889160156e+01, 2.312187433242798e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.92087574005127e+01, 1.262883834838867e+02, 1.684425354003906e+02, 1.800178680419922e+02, 1.135551300048828e+02, 1.464144802093506e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.767200088500977e+01, 1.347597351074226e+02, 2.175667419433594e+02, 2.160484008789062e+02, 1.723790588378906e+02, 5.32529296875e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.804630994796753e+00, 8.430634307861328e+01, 1.744434356689453e+02, 1.952538757324219e+02, 1.509707641601562e+02, 6.984014129638672e+01, 3.095707893371582e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.068932342529297e+01, 3.121475524902344e+02, 4.365852966308594e+02, 3.753271484375e+02, 1.862212524414062e+02, 1.553165531158447e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.503750610351562e+01, 2.373762969970703e+02, 2.670227966308594e+02, 2.172436370849609e+02, 1.543636322021484e+02, 4.700918960571176e+01, 2.171873791922962e-15, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.274240970611572e+01, 1.940768432617188e+02, 3.971203918457031e+02, 4.48487060546875e+02, 3.378170471191406e+02, 1.110259704589844e+02, 1.055006146430969e+00, 0e+00, 0e+00, 0e+00, 0e+00] -buiZon.theZon[1, 1].roo.heaPorAir.T=[2.931499938964844e+02, 2.876610107421875e+02, 2.867509155273438e+02, 2.859832763671875e+02, 2.864618530273438e+02, 2.913223876953125e+02, 2.931828002929688e+02, 2.935181274414062e+02, 2.931416320800781e+02, 2.931354675292969e+02, 2.93148193359375e+02, 2.939823608398438e+02, 2.908024597167969e+02, 2.901833801269531e+02, 2.894712524414062e+02, 2.886472473144531e+02, 2.881197509765625e+02, 2.877435302734375e+02, 2.874563293457031e+02, 2.924794921875e+02, 2.931651916503906e+02, 2.931587524414062e+02, 2.931559143066406e+02, 2.931436157226562e+02, 2.93146484375e+02, 2.93149658203125e+02, 2.895938110351562e+02, 2.890087280273438e+02, 2.884996948242188e+02, 2.879338989257812e+02, 2.874670104980469e+02, 2.870542297363281e+02, 2.863774719238281e+02, 2.857376708984375e+02, 2.931943664550781e+02, 2.931590576171875e+02, 2.93156005859375e+02, 2.931473693847656e+02, 2.931461181640625e+02, 2.931492309570312e+02, 2.890971984863281e+02, 2.880303955078125e+02, 2.873553771972656e+02, 2.868233032226562e+02, 2.863357543945312e+02, 2.858385009765625e+02, 2.861576843261719e+02, 2.861317443847656e+02, 2.942633361816406e+02, 2.931622924804688e+02, 2.931570739746094e+02, 2.931502075195312e+02, 2.931442565917969e+02, 2.93143310546875e+02, 2.893340454101562e+02, 2.872724914550781e+02, 2.865113830566406e+02, 2.856424560546875e+02, 2.90790771484375e+02, 2.865152893066406e+02, 2.90548828125e+02, 2.894243774414062e+02, 2.893218078613281e+02, 2.932080078125e+02, 2.939972229003906e+02, 2.955700073242188e+02, 2.948660583496094e+02, 2.931363220214844e+02, 2.944810485839844e+02, 2.91670654296875e+02, 2.904403686523438e+02, 2.894758911132812e+02, 2.883980407714844e+02, 2.874942932128906e+02, 2.863720092773438e+02, 2.905792541503906e+02, 2.898553466796875e+02, 2.932001037597656e+02, 2.931188659667969e+02, 2.931329650878906e+02, 2.931630554199219e+02, 2.931336059570312e+02, 2.9314208984375e+02, 2.880422058105469e+02, 2.865154113769531e+02, 2.906119689941406e+02, 2.8740380859375e+02, 2.873063659667969e+02, 2.885794677734375e+02, 2.891452026367188e+02, 2.870108642578125e+02, 2.932727966308594e+02, 2.931601867675781e+02, 2.949364013671875e+02, 2.960448608398438e+02, 2.948863525390625e+02, 2.931245422363281e+02, 2.918524780273438e+02, 2.901273498535156e+02, 2.887492370605469e+02, 2.876906433105469e+02] -buiZon.theZon[1, 1].heaCooPow=[0e+00, 5.759591294918209e-05, 6.717658834531903e-05, 7.525895489379764e-05, 1.454834564356133e-04, 2.10853076171875e+03, -9.30233642578125e+02, -1.580391845703125e+03, -8.427483520507812e+02, -6.0670654296875e+02, -3.474028625488281e+02, -9.356890222989023e-05, -6.009206117596477e-05, -5.357339614420198e-05, -4.607554728863759e-05, -3.739946259884164e-05, -3.184556771884672e-05, -2.788457641145214e-05, -2.486061021045316e-05, 1.569405639648438e+03, 2.155901641845703e+02, -3.148949432373047e+01, -2.615747375488281e+02, -1.20486328125e+02, 5.104559421539307e+00, 9.9289794921875e+01, -5.206240530242212e-05, -4.590214302879758e-05, -4.0542956412537e-05, -3.458500214037485e-05, -2.966971987916622e-05, -2.532353755668737e-05, -1.819799581426196e-05, -1.146157137554837e-05, 6.536481933593715e+02, 2.278037872314453e+02, 4.347542572021484e+01, -3.810592269897461e+01, 5.200354766845703e+01, 2.136913604736328e+02, -4.206481753499247e-05, -3.083208139287312e-05, -2.372489507251885e-05, -1.812221307773143e-05, -1.298914685321506e-05, -7.753379577479791e-06, 1.518604985903949e-04, 1.494910247856751e-04, 1.548394287109375e+03, 3.591097106933594e+02, 1.430897674560547e+02, 4.036322402954102e+01, 1.149474945068359e+02, 3.084667663574219e+02, -4.480084317037836e-05, -2.309436240466312e-05, -1.50804162331041e-05, -5.931462055741665e-06, 1.6528349609375e+03, 1.433554862160236e-04, 1.70067724609375e+03, 2.741035539656878e-03, -2.339760131835938e+02, -4.900359802246094e+02, -1.663210815429688e+03, -1.972067626953125e+03, -1.84293359375e+03, -1.04166064453125e+03, -9.884386236080913e-05, -6.92531830281952e-05, -5.62996392545756e-05, -4.614450153894722e-05, -3.479534643702209e-05, -2.527993819967378e-05, -1.346319822914666e-05, 1.699453491210938e+03, 1.6450703125e+03, -1.187788314819336e+02, -7.403829956054688e+02, -3.505661315917969e+02, -1.329005889892578e+02, 2.162257194519576e+01, 4.541195373535137e+02, -3.134423968731426e-05, -1.52686916408129e-05, 1.70545947265625e+03, 1.564552856445312e+03, 1.579654907226562e+03, 1.739319213867188e+03, 1.77100439453125e+03, 9.22511680983007e-05, 1.716651916503906e+02, -1.274316528320312e+03, -1.84140283203125e+03, -2.066111328125e+03, -1.860595336914062e+03, -7.068455810546875e+02, -7.125519186956808e-05, -5.309144034981728e-05, -3.858135460177436e-05, -2.74352278211154e-05] +buiZon.theZon[1, 1].roo.heaPorAir.T=[2.931499938964844e+02, 2.876610412597656e+02, 2.867508544921875e+02, 2.859832763671875e+02, 2.864617614746094e+02, 2.913222961425781e+02, 2.931828002929688e+02, 2.935183410644531e+02, 2.931416320800781e+02, 2.931354675292969e+02, 2.93148193359375e+02, 2.939823608398438e+02, 2.908024291992188e+02, 2.90183349609375e+02, 2.894712524414062e+02, 2.88647216796875e+02, 2.881197204589844e+02, 2.877434997558594e+02, 2.874563293457031e+02, 2.924794616699219e+02, 2.931651916503906e+02, 2.931587524414062e+02, 2.931559143066406e+02, 2.931436157226562e+02, 2.93146484375e+02, 2.93149658203125e+02, 2.895937805175781e+02, 2.890087280273438e+02, 2.884996948242188e+02, 2.879338684082031e+02, 2.874670104980469e+02, 2.870542602539062e+02, 2.863774719238281e+02, 2.857376708984375e+02, 2.931943664550781e+02, 2.931590576171875e+02, 2.93156005859375e+02, 2.931473693847656e+02, 2.931461181640625e+02, 2.931492309570312e+02, 2.8909716796875e+02, 2.880303649902344e+02, 2.873553771972656e+02, 2.868232727050781e+02, 2.863357543945312e+02, 2.858385009765625e+02, 2.861575927734375e+02, 2.861316833496094e+02, 2.942633666992188e+02, 2.931623229980469e+02, 2.931570434570312e+02, 2.931502380371094e+02, 2.93144287109375e+02, 2.93143310546875e+02, 2.893340454101562e+02, 2.872724914550781e+02, 2.865113830566406e+02, 2.856424560546875e+02, 2.907908630371094e+02, 2.865152587890625e+02, 2.905487976074219e+02, 2.894246520996094e+02, 2.8932177734375e+02, 2.932080078125e+02, 2.939972229003906e+02, 2.955697631835938e+02, 2.948660583496094e+02, 2.931363220214844e+02, 2.944810485839844e+02, 2.91670654296875e+02, 2.904403686523438e+02, 2.894758911132812e+02, 2.883980407714844e+02, 2.874942932128906e+02, 2.863720092773438e+02, 2.905792236328125e+02, 2.898553161621094e+02, 2.932001037597656e+02, 2.931188659667969e+02, 2.931329650878906e+02, 2.931630249023438e+02, 2.931336059570312e+02, 2.9314208984375e+02, 2.880421752929688e+02, 2.86515380859375e+02, 2.906120300292969e+02, 2.874043273925781e+02, 2.873071594238281e+02, 2.885799255371094e+02, 2.891453247070312e+02, 2.870101318359375e+02, 2.932727661132812e+02, 2.931601867675781e+02, 2.949364013671875e+02, 2.960448608398438e+02, 2.948864440917969e+02, 2.931245422363281e+02, 2.918524780273438e+02, 2.901273803710938e+02, 2.88749267578125e+02, 2.87690673828125e+02] +buiZon.theZon[1, 1].heaCooPow=[0e+00, 5.759556006523781e-05, 6.717782525811344e-05, 7.52587293391116e-05, 1.454839657526463e-04, 2.108541748046875e+03, -9.302340698242188e+02, -1.5804248046875e+03, -8.427438354492188e+02, -6.067054443359375e+02, -3.474093933105469e+02, -9.358466195408255e-05, -6.010369907016866e-05, -5.358520866138861e-05, -4.608695962815544e-05, -3.741130058187991e-05, -3.185722744092345e-05, -2.789578684314619e-05, -2.487193887645844e-05, 1.569416748046875e+03, 2.155904846191406e+02, -3.148893356323242e+01, -2.615747680664062e+02, -1.204836349487305e+02, 5.108852386474609e+00, 9.929434204101562e+01, -5.20601897733286e-05, -4.590012031258084e-05, -4.054078453918916e-05, -3.458285209489986e-05, -2.966738611576147e-05, -2.532161488488782e-05, -1.819584213080816e-05, -1.145958049164619e-05, 6.536619262695277e+02, 2.278039245605469e+02, 4.347537994384766e+01, -3.810301208496094e+01, 5.199753189086914e+01, 2.136841430664062e+02, -4.2063958971994e-05, -3.083130650338721e-05, -2.37238946283469e-05, -1.8121580069419e-05, -1.298852021136554e-05, -7.752930287097115e-06, 1.51863758219406e-04, 1.494918251410127e-04, 1.548429443359375e+03, 3.590495300292969e+02, 1.431064605712891e+02, 4.052933883666992e+01, 1.148546447753906e+02, 3.084882202148438e+02, -4.480041752685793e-05, -2.309413503098767e-05, -1.507986326032542e-05, -5.931010491622234e-06, 1.652833129882812e+03, 1.43355835461989e-04, 1.7006767578125e+03, 3.863541409373283e-03, -2.339450225830078e+02, -4.900355529785156e+02, -1.663210693359375e+03, -1.97201513671875e+03, -1.842935424804688e+03, -1.041665893554688e+03, -9.884489554679035e-05, -6.925361230969444e-05, -5.630006489809602e-05, -4.614475255948491e-05, -3.479603401501663e-05, -2.528036202420481e-05, -1.346362114418298e-05, 1.699449096679688e+03, 1.645055786132812e+03, -1.187815093994141e+02, -7.403841552734375e+02, -3.505338439941406e+02, -1.328882141113281e+02, 2.16130294799858e+01, 4.541239318847637e+02, -3.134432699880563e-05, -1.526841151644476e-05, 1.705453735351562e+03, 1.564604125976562e+03, 1.579752563476562e+03, 1.739313232421875e+03, 1.771006713867188e+03, 1.235599047504365e-04, 1.716786651611328e+02, -1.274314819335938e+03, -1.84140234375e+03, -2.066111083984375e+03, -1.860611572265625e+03, -7.068501586914062e+02, -7.125506090233102e-05, -5.309179687174037e-05, -3.858136551571079e-05, -2.74355861620279e-05] conEco[1].VOut_flow_min=[7.559999823570251e-02, 7.559999823570251e-02] -conEco[1].VOut_flow=[0e+00, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 6.835759431123734e-02, 7.559995353221893e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 7.463576707777975e-07, 7.559896260499954e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 7.555810362100601e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 7.432201504707336e-02, 7.559999078512192e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 1.353726133856981e-06, 8.7491429212605e-07, 1.353726133856981e-06, 8.749148037168197e-07, 2.965555898845196e-02, 7.559974491596222e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 4.8584399792162e-07, 1.353726133856981e-06, 7.55922794342041e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 8.7491429212605e-07, 8.7491429212605e-07, 7.580950409646903e-07, 1.353726133856981e-06, 1.353726133856981e-06, 1.353726133856981e-06, 1.353726133856981e-06, 8.7491429212605e-07, 7.536766678094864e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07] -conEco[1].yOA=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.161989331245422e-01, 5.462970733642578e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.46292781829834e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.461182594299316e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.40849506855011e-01, 5.462971925735474e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.665456175804138e-01, 5.462961792945862e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.462642908096313e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.453047752380371e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 0e+00, 0e+00, 0e+00, 0e+00] -conEco[1].conV_flow.y=[1.000000014901161e-01, 1e+00, 1e+00, 1e+00, 1e+00, 5.161989331245422e-01, 5.462970733642578e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 5.46292781829834e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 5.461182594299316e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 5.40849506855011e-01, 5.462971925735474e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 3.665456175804138e-01, 5.462961792945862e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 5.462642908096313e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 5.453047752380371e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 1e+00, 1e+00, 1e+00, 1e+00] -conEco[1].uOATSup=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.232289254665375e-01, 3.936317265033722e-01, 2.334688454866409e-01, 1.889236718416214e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +conEco[1].VOut_flow=[0e+00, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 6.835759431123734e-02, 7.559995353221893e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 7.459151447619661e-07, 7.559896260499954e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 7.555810362100601e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 7.432201504707336e-02, 7.559999078512192e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 1.353726133856981e-06, 8.7491429212605e-07, 1.353726133856981e-06, 8.749148605602386e-07, 2.965558134019375e-02, 7.559974491596222e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 4.861018396695727e-07, 1.353726133856981e-06, 7.55922794342041e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 8.7491429212605e-07, 8.7491429212605e-07, 7.58111070808809e-07, 1.353726133856981e-06, 1.353726133856981e-06, 1.353726133856981e-06, 1.353726133856981e-06, 8.7491429212605e-07, 7.536766678094864e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 7.559999823570251e-02, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07, 8.7491429212605e-07] +conEco[1].yOA=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.161989331245422e-01, 5.462970733642578e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.46292781829834e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.461182594299316e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.40849506855011e-01, 5.462971925735474e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.665456771850586e-01, 5.462961792945862e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.462642908096313e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.453047752380371e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 0e+00, 0e+00, 0e+00, 0e+00] +conEco[1].conV_flow.y=[1.000000014901161e-01, 1e+00, 1e+00, 1e+00, 1e+00, 5.161989331245422e-01, 5.462970733642578e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 5.46292781829834e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 5.461182594299316e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 5.40849506855011e-01, 5.462971925735474e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 3.665456771850586e-01, 5.462961792945862e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 5.462642908096313e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 5.453047752380371e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 5.462972521781921e-01, 1e+00, 1e+00, 1e+00, 1e+00] +conEco[1].uOATSup=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.232470452785492e-01, 3.936440050601959e-01, 2.334922701120377e-01, 1.889470964670181e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Examples_ScalableBenchmarks_BuildingVAV_Examples_TwoFloor_TwoZone.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Examples_ScalableBenchmarks_BuildingVAV_Examples_TwoFloor_TwoZone.txt index 89c2a10b2b3..10dda36d897 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Examples_ScalableBenchmarks_BuildingVAV_Examples_TwoFloor_TwoZone.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Examples_ScalableBenchmarks_BuildingVAV_Examples_TwoFloor_TwoZone.txt @@ -1,4 +1,4 @@ -last-generated=2021-01-06 +last-generated=2021-02-17 statistics-initialization= { "linear": "0, 0", @@ -16,7 +16,7 @@ time=[0e+00, 6.048e+05] weaDat.weaBus.TDryBul=[2.609500122070312e+02, 2.612774658203125e+02, 2.621011047363281e+02, 2.625499877929688e+02, 2.625499877929688e+02, 2.634906005859375e+02, 2.665859985351562e+02, 2.694419860839844e+02, 2.715532531738281e+02, 2.720499877929688e+02, 2.720499877929688e+02, 2.711899108886719e+02, 2.720211181640625e+02, 2.720336303710938e+02, 2.714474182128906e+02, 2.693314514160156e+02, 2.698616027832031e+02, 2.713856811523438e+02, 2.721641845703125e+02, 2.72510986328125e+02, 2.73510009765625e+02, 2.748500061035156e+02, 2.748500061035156e+02, 2.725921325683594e+02, 2.73848876953125e+02, 2.725499877929688e+02, 2.740790100097656e+02, 2.75053955078125e+02, 2.731499938964844e+02, 2.731499938964844e+02, 2.733664245605469e+02, 2.7306201171875e+02, 2.712139892578125e+02, 2.697578430175781e+02, 2.687122497558594e+02, 2.691380004882812e+02, 2.701607055664062e+02, 2.703500061035156e+02, 2.703500061035156e+02, 2.703500061035156e+02, 2.703500061035156e+02, 2.703500061035156e+02, 2.703500061035156e+02, 2.703500061035156e+02, 2.703500061035156e+02, 2.700260009765625e+02, 2.698500061035156e+02, 2.703376159667969e+02, 2.707337341308594e+02, 2.714786071777344e+02, 2.720499877929688e+02, 2.726159973144531e+02, 2.7205712890625e+02, 2.703059997558594e+02, 2.684580078125e+02, 2.684077453613281e+02, 2.6806201171875e+02, 2.662139892578125e+02, 2.661690368652344e+02, 2.658251953125e+02, 2.615640869140625e+02, 2.582152099609375e+02, 2.592766723632812e+02, 2.610854797363281e+02, 2.64716796875e+02, 2.666700134277344e+02, 2.690650634765625e+02, 2.692225952148438e+02, 2.680060119628906e+02, 2.665409545898438e+02, 2.646900024414062e+02, 2.639419860839844e+02, 2.62093994140625e+02, 2.614129638671875e+02, 2.591625671386719e+02, 2.5875e+02, 2.582370910644531e+02, 2.594412841796875e+02, 2.609939880371094e+02, 2.616118469238281e+02, 2.618193054199219e+02, 2.608738708496093e+02, 2.578509826660156e+02, 2.558468933105469e+02, 2.543108673095703e+02, 2.552683868408203e+02, 2.542709197998047e+02, 2.536540069580078e+02, 2.5264599609375e+02, 2.515209808349609e+02, 2.503481140136719e+02, 2.545215454101562e+02, 2.581070861816406e+02, 2.589879760742188e+02, 2.603697204589844e+02, 2.595094604492188e+02, 2.568208923339844e+02, 2.548866882324219e+02, 2.541324615478516e+02, 2.532756500244141e+02, 2.531499938964844e+02] weaDat.weaBus.HDirNor=[0e+00, 0e+00, 0e+00, 0e+00, 4.790056943893433e-01, 3.686282958984375e+02, 6.625081787109375e+02, 4.312069091796866e+02, 5.411502075195312e+01, 5.657868957519531e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.905120015144348e+00, 9.585999846458435e-01, 1.779999971389771e+00, 1.813752055168152e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.721466660499488e-01, 2.894999980926514e-01, 1e+00, 1e+00, 7.318080067634583e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.331199988722801e-02, 1e+00, 5.416666865348816e-01, 8.741199970245361e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.880619812011719e+02, 7.751649169921875e+02, 8.5933056640625e+02, 7.74879638671875e+02, 4.252257690429688e+02, 5.739785385131836e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.404290771484375e+01, 6.168316650390625e+02, 2.696745910644531e+02, 7.800930023193359e+01, 9.641504669189453e+01, 6.644139099121031e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.037647857666016e+02, 7.07604736328125e+02, 8.80940673828125e+02, 9.020025024414062e+02, 8.423399658203125e+02, 5.655880126953125e+02, 8.352803230285645e+00, 0e+00, 0e+00, 0e+00, 0e+00] weaDat.weaBus.HGloHor=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.025815353393555e+02, 3.044623718261719e+02, 3.372630615234372e+02, 1.835730590820312e+02, 7.442298889160156e+01, 2.312187433242798e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.92087574005127e+01, 1.262883834838867e+02, 1.684425354003906e+02, 1.800178680419922e+02, 1.135551300048828e+02, 1.464144802093506e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.767200088500977e+01, 1.347597351074226e+02, 2.175667419433594e+02, 2.160484008789062e+02, 1.723790588378906e+02, 5.32529296875e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.804630994796753e+00, 8.430634307861328e+01, 1.744434356689453e+02, 1.952538757324219e+02, 1.509707641601562e+02, 6.984014129638672e+01, 3.095707893371582e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.068932342529297e+01, 3.121475524902344e+02, 4.365852966308594e+02, 3.753271484375e+02, 1.862212524414062e+02, 1.553165531158447e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.503750610351562e+01, 2.373762969970703e+02, 2.670227966308594e+02, 2.172436370849609e+02, 1.543636322021484e+02, 4.700918960571176e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.274240970611572e+01, 1.940768432617188e+02, 3.971203918457031e+02, 4.48487060546875e+02, 3.378170471191406e+02, 1.110259704589844e+02, 1.055006146430969e+00, 0e+00, 0e+00, 0e+00, 0e+00] -buiZon.theZon[1, 1].roo.heaPorAir.T=[2.931499938964844e+02, 2.871369018554688e+02, 2.85977294921875e+02, 2.86427001953125e+02, 2.873332824707031e+02, 2.915032958984375e+02, 2.932012939453125e+02, 2.931300354003906e+02, 2.931391296386719e+02, 2.931307983398438e+02, 2.9314453125e+02, 2.909333190917969e+02, 2.896257934570312e+02, 2.888675231933594e+02, 2.879873046875e+02, 2.870063171386719e+02, 2.863508911132812e+02, 2.858697204589844e+02, 2.919923095703125e+02, 2.9156787109375e+02, 2.931993103027344e+02, 2.931704406738281e+02, 2.931600952148438e+02, 2.931394653320312e+02, 2.931402587890625e+02, 2.931465759277344e+02, 2.880537719726562e+02, 2.874492797851562e+02, 2.868123168945312e+02, 2.861320190429688e+02, 2.911620178222656e+02, 2.905725402832031e+02, 2.878668518066406e+02, 2.907159118652344e+02, 2.935549926757812e+02, 2.931681518554688e+02, 2.931615600585938e+02, 2.931475219726562e+02, 2.931413269042969e+02, 2.931455993652344e+02, 2.877864074707031e+02, 2.867525634765625e+02, 2.859108276367188e+02, 2.860478515625e+02, 2.894939880371094e+02, 2.87157470703125e+02, 2.909855346679688e+02, 2.883717041015625e+02, 2.930700988769531e+02, 2.93188232421875e+02, 2.931641235351562e+02, 2.931480407714844e+02, 2.931355895996094e+02, 2.931296081542969e+02, 2.876998291015625e+02, 2.861793518066406e+02, 2.885590515136717e+02, 2.893196105957029e+02, 2.869384765625e+02, 2.858136901855469e+02, 2.863480529785156e+02, 2.885943298339844e+02, 2.889335327148438e+02, 2.932324523925781e+02, 2.931586303710938e+02, 2.943199462890625e+02, 2.936247863769531e+02, 2.931235656738281e+02, 2.923123779296875e+02, 2.905668029785156e+02, 2.890538940429688e+02, 2.877927856445312e+02, 2.864603271484375e+02, 2.911054077148438e+02, 2.885631103515625e+02, 2.884325866699219e+02, 2.8941943359375e+02, 2.932567749023438e+02, 2.931072998046875e+02, 2.931310119628906e+02, 2.9317578125e+02, 2.931231384277344e+02, 2.931248168945312e+02, 2.863994750976562e+02, 2.856288146972656e+02, 2.863595581054688e+02, 2.884967956542969e+02, 2.891989440917969e+02, 2.86403564453125e+02, 2.877606201171875e+02, 2.883735046386719e+02, 2.938997802734375e+02, 2.93190673828125e+02, 2.934543151855469e+02, 2.94697998046875e+02, 2.934730224609375e+02, 2.931134948730469e+02, 2.905335083007812e+02, 2.886019897460938e+02, 2.868400268554688e+02, 2.897676696777344e+02] -buiZon.theZon[2, 1].roo.heaPorAir.T=[2.931499938964844e+02, 2.877391052246094e+02, 2.867710571289062e+02, 2.873143920898438e+02, 2.88149169921875e+02, 2.912269897460938e+02, 2.931919860839844e+02, 2.935481262207031e+02, 2.931408386230469e+02, 2.931364135742188e+02, 2.931473083496094e+02, 2.939234008789062e+02, 2.908420715332031e+02, 2.901850280761719e+02, 2.894402465820312e+02, 2.885865783691406e+02, 2.880168151855469e+02, 2.875975952148438e+02, 2.925780029296875e+02, 2.923069458007812e+02, 2.931694641113281e+02, 2.931579895019531e+02, 2.931559143066406e+02, 2.931439514160156e+02, 2.931463928222656e+02, 2.931496276855469e+02, 2.894878845214844e+02, 2.888533935546875e+02, 2.883095397949219e+02, 2.877173767089844e+02, 2.914110107421875e+02, 2.913648986816406e+02, 2.890591125488281e+02, 2.914981689453125e+02, 2.931736450195312e+02, 2.9315869140625e+02, 2.931553649902344e+02, 2.931478881835938e+02, 2.931458740234375e+02, 2.931484069824219e+02, 2.892870178222656e+02, 2.88159912109375e+02, 2.8744140625e+02, 2.875552368164062e+02, 2.90489501953125e+02, 2.885069580078125e+02, 2.917939147949219e+02, 2.895290832519531e+02, 2.943562622070312e+02, 2.931606750488281e+02, 2.931563415527344e+02, 2.931468200683594e+02, 2.931434326171875e+02, 2.931429443359375e+02, 2.896921081542969e+02, 2.876151733398438e+02, 2.894663696289061e+02, 2.902691650390623e+02, 2.882835083007812e+02, 2.872738647460938e+02, 2.876546936035156e+02, 2.894559631347656e+02, 2.89541015625e+02, 2.932078247070312e+02, 2.939923706054688e+02, 2.956226501464844e+02, 2.950530395507812e+02, 2.931511840820312e+02, 2.945491333007812e+02, 2.91862548828125e+02, 2.905929565429688e+02, 2.895740966796875e+02, 2.884492797851562e+02, 2.920081481933594e+02, 2.900201110839844e+02, 2.898807983398438e+02, 2.905780944824219e+02, 2.932019958496094e+02, 2.931281127929688e+02, 2.931402282714844e+02, 2.931627197265625e+02, 2.931357727050781e+02, 2.931410217285156e+02, 2.882460327148438e+02, 2.874009399414062e+02, 2.880416870117188e+02, 2.897854614257812e+02, 2.902626647949219e+02, 2.878049011230469e+02, 2.889437866210938e+02, 2.8930810546875e+02, 2.934115905761719e+02, 2.931624450683594e+02, 2.948594970703125e+02, 2.96019775390625e+02, 2.949902038574219e+02, 2.931239929199219e+02, 2.920033874511719e+02, 2.902220153808594e+02, 2.887874450683594e+02, 2.909063110351562e+02] -buiZon.theZon[1, 1].heaCooPow=[0e+00, 6.308244337560609e-05, 7.52902269596234e-05, 1.809120483398438e+03, 1.331775420112535e-04, 2.120924560546875e+03, -1.351018676757812e+02, -9.171185302734364e+02, -8.258139801025391e+01, 1.705374603271484e+02, 4.774459533691406e+02, -6.318061059573665e-05, -4.941340739605948e-05, -4.142941543250345e-05, -3.216158074792472e-05, -2.183279866585508e-05, -1.493188665335765e-05, -9.865433639788529e-06, 1.669758422851562e+03, 1.67486083984375e+03, 1.225527954101562e+03, 9.050904541015625e+02, 6.453770141601562e+02, 7.62979736328125e+02, 9.137302856445312e+02, 1.040914428710938e+03, -3.760711115319282e-05, -3.124229988316074e-05, -2.45356695813825e-05, -1.73730768437963e-05, 1.654029052734375e+03, 1.6855537109375e+03, 1.326469937339425e-04, 1.705564819335938e+03, 1.62756274414062e+03, 1.07951708984375e+03, 8.800984497070312e+02, 7.890867309570312e+02, 8.774882202148438e+02, 1.112265258789062e+03, -2.992764893861022e-05, -1.904205601022118e-05, -1.017948488879483e-05, 1.529999281046912e-04, 1.721336669921875e+03, 1.396061124978587e-04, 1.71430126953125e+03, 1.7067158203125e+03, 1.910787719726562e+03, 1.206800903320312e+03, 9.3721826171875e+02, 8.132634887695312e+02, 9.11698974609375e+02, 1.183606811523438e+03, -2.923974352597725e-05, -1.323041396972258e-05, 1.251357607543486e-04, 1.74395947265625e+03, 1.67828125e+03, 1.499608479207382e-04, 1.662159545898438e+03, 1.8207041015625e+03, -2.714910888671875e+02, 3.078205261230469e+02, -1.288077514648438e+03, -1.734712158203125e+03, -1.605624633789062e+03, -2.570055236816406e+02, -7.764011388644553e-05, -5.926044832449423e-05, -4.333124525146559e-05, -3.005292819580063e-05, -1.602328848093748e-05, 1.737060913085938e+03, 1.77054443359375e+03, 1.797151489257812e+03, 1.784216430664062e+03, 8.304385375976562e+02, 2.170641021728516e+02, 5.75738037109375e+02, 7.908214111328125e+02, 9.421787109375049e+02, 1.41520568847656e+03, -1.553389847686049e-05, 1.518047065474093e-04, 1.685923706054688e+03, 1.840745483398438e+03, 1.846191162109375e+03, 1.315383851760998e-04, 1.895371948242188e+03, 1.889335083007812e+03, 1.753140625e+03, -3.995433349609375e+02, -1.560693115234375e+03, -1.809988891601562e+03, -1.593087646484375e+03, 2.013356170654297e+02, -5.884644633624703e-05, -3.850901339319535e-05, -1.995707316382322e-05, 1.780980102539062e+03] -buiZon.theZon[2, 1].heaCooPow=[0e+00, 5.67415336263366e-05, 6.693265459034592e-05, 1.6436044921875e+03, 1.245869789272547e-04, 2.173078369140625e+03, -8.525125732421875e+02, -1.58624609375e+03, -8.84685546875e+02, -6.387846069335938e+02, -3.562514343261719e+02, -9.466389019507915e-05, -6.221978401299566e-05, -5.530140697374009e-05, -4.745998376165515e-05, -3.847158950520679e-05, -3.247274798923172e-05, -2.805855365295428e-05, 1.559940795898438e+03, 1.5370146484375e+03, 2.498417053222656e+02, 1.475272369384766e+01, -2.140038909912109e+02, -8.693919372558594e+01, 3.062441825866699e+01, 1.298108367919922e+02, -5.270736437523738e-05, -4.602678382070735e-05, -4.030000127386299e-05, -3.406537871342152e-05, 1.606874633789062e+03, 1.537760620117188e+03, 1.200930855702609e-04, 1.559656860351562e+03, 5.870009765624968e+02, 1.947863464355469e+02, 2.296415901184082e+01, -5.741599273681641e+01, 3.517676162719727e+01, 2.066407928466797e+02, -4.572793841362e-05, -3.386057505849753e-05, -2.629532173159532e-05, 1.371282560285181e-04, 1.535653564453125e+03, 1.25397345982492e-04, 1.563523315429688e+03, 1.49084375e+03, 1.50155810546875e+03, 2.672919616699219e+02, 6.734165191650391e+01, -4.196898651123047e+01, 5.053185653686523e+01, 2.627627563476562e+02, -5.021674951422028e-05, -2.834838414855767e-05, 1.155822828877732e-04, 1.566850708007805e+03, 1.427407836914062e+03, 1.345864293398336e-04, 1.418450073242188e+03, 1.659989624023438e+03, -3.867631530761719e+02, -4.6667724609375e+02, -1.666109252929688e+03, -1.981927734375e+03, -1.876666748046875e+03, -1.146541259765625e+03, -1.011912172543818e-04, -7.290359644684955e-05, -5.953639629296958e-05, -4.880853521171957e-05, -3.696528438013047e-05, 1.567415283203125e+03, 1.49878564453125e+03, 1.52703564453125e+03, 1.56810302734375e+03, -9.194184112548828e+01, -8.60850341796875e+02, -4.25725830078125e+02, -1.596543579101562e+02, -2.990160369872516e+01, 4.233721313476541e+02, -3.497657235129736e-05, 1.331456005573273e-04, 1.372176635742188e+03, 1.600383178710938e+03, 1.647788330078125e+03, 1.167833979707211e-04, 1.674689453125e+03, 1.715012451171875e+03, 2.451611175537109e+02, -1.253262573242188e+03, -1.827355712890625e+03, -2.060823974609375e+03, -1.881009765625e+03, -7.678030395507812e+02, -7.432299753418192e-05, -5.556644464377314e-05, -4.046148751513101e-05, 1.564860473632812e+03] +buiZon.theZon[1, 1].roo.heaPorAir.T=[2.931499938964844e+02, 2.871368713378906e+02, 2.85977294921875e+02, 2.864270935058594e+02, 2.87333251953125e+02, 2.915036010742188e+02, 2.932012939453125e+02, 2.931300354003906e+02, 2.931391296386719e+02, 2.931305541992188e+02, 2.931439514160156e+02, 2.909333190917969e+02, 2.896257934570312e+02, 2.888675231933594e+02, 2.879873046875e+02, 2.870063171386719e+02, 2.863508911132812e+02, 2.858697204589844e+02, 2.919924011230469e+02, 2.915680847167969e+02, 2.931992797851562e+02, 2.931704406738281e+02, 2.931600646972656e+02, 2.931394653320312e+02, 2.931402587890625e+02, 2.931465759277344e+02, 2.880537719726562e+02, 2.874492797851562e+02, 2.868123168945312e+02, 2.861320190429688e+02, 2.911620178222656e+02, 2.90572509765625e+02, 2.878667907714844e+02, 2.907158508300781e+02, 2.935549926757812e+02, 2.931681518554688e+02, 2.931615600585938e+02, 2.931475219726562e+02, 2.93141357421875e+02, 2.931455993652344e+02, 2.877864074707031e+02, 2.867525634765625e+02, 2.859108276367188e+02, 2.860478515625e+02, 2.894938354492188e+02, 2.871576232910156e+02, 2.909855041503906e+02, 2.883714904785156e+02, 2.930700988769531e+02, 2.93188232421875e+02, 2.931639404296875e+02, 2.931478576660156e+02, 2.931354370117188e+02, 2.931296081542969e+02, 2.876998291015625e+02, 2.861793518066406e+02, 2.885590209960936e+02, 2.893196716308591e+02, 2.869385070800781e+02, 2.858136901855469e+02, 2.863480834960938e+02, 2.885944213867188e+02, 2.889335632324219e+02, 2.932324523925781e+02, 2.931586303710938e+02, 2.9431982421875e+02, 2.936248168945312e+02, 2.931235656738281e+02, 2.923123168945312e+02, 2.905668029785156e+02, 2.890538940429688e+02, 2.877927856445312e+02, 2.864603271484375e+02, 2.911053161621094e+02, 2.885636901855469e+02, 2.884326782226562e+02, 2.894194641113281e+02, 2.932567749023438e+02, 2.931072998046875e+02, 2.931310119628906e+02, 2.9317578125e+02, 2.931231384277344e+02, 2.931248168945312e+02, 2.863994750976562e+02, 2.856288146972656e+02, 2.863588256835938e+02, 2.884964599609375e+02, 2.891988525390625e+02, 2.864031677246094e+02, 2.877606506347656e+02, 2.883733215332031e+02, 2.938997497558594e+02, 2.93190673828125e+02, 2.934543151855469e+02, 2.94697998046875e+02, 2.934729919433594e+02, 2.931134948730469e+02, 2.905335388183594e+02, 2.886020202636719e+02, 2.868400573730469e+02, 2.897675170898438e+02] +buiZon.theZon[2, 1].roo.heaPorAir.T=[2.931499938964844e+02, 2.877391052246094e+02, 2.867710571289062e+02, 2.873144836425781e+02, 2.881491394042969e+02, 2.912273559570312e+02, 2.931919860839844e+02, 2.935481262207031e+02, 2.931408386230469e+02, 2.931361083984375e+02, 2.931466064453125e+02, 2.939233703613281e+02, 2.908420715332031e+02, 2.901849975585938e+02, 2.894402465820312e+02, 2.885865478515625e+02, 2.880168151855469e+02, 2.875975952148438e+02, 2.925780944824219e+02, 2.9230712890625e+02, 2.931694641113281e+02, 2.931579895019531e+02, 2.931559143066406e+02, 2.931439514160156e+02, 2.931463928222656e+02, 2.931496276855469e+02, 2.894878845214844e+02, 2.888533935546875e+02, 2.883095397949219e+02, 2.877173767089844e+02, 2.914109497070312e+02, 2.913648986816406e+02, 2.8905908203125e+02, 2.914981384277344e+02, 2.931736450195312e+02, 2.9315869140625e+02, 2.931553649902344e+02, 2.931478881835938e+02, 2.931458740234375e+02, 2.931484069824219e+02, 2.892870178222656e+02, 2.881599426269531e+02, 2.8744140625e+02, 2.875552673339844e+02, 2.904894104003906e+02, 2.885070495605469e+02, 2.917938842773438e+02, 2.895289001464844e+02, 2.943562622070312e+02, 2.931606750488281e+02, 2.931561584472656e+02, 2.931466674804688e+02, 2.931432189941406e+02, 2.931429443359375e+02, 2.896921081542969e+02, 2.876151733398438e+02, 2.89466339111328e+02, 2.902691955566405e+02, 2.882835083007812e+02, 2.872738647460938e+02, 2.876546936035156e+02, 2.894560546875e+02, 2.895410461425781e+02, 2.932078247070312e+02, 2.939923706054688e+02, 2.9562255859375e+02, 2.950530700683594e+02, 2.931511840820312e+02, 2.94549072265625e+02, 2.91862548828125e+02, 2.905929565429688e+02, 2.895740966796875e+02, 2.884493103027344e+02, 2.920081176757812e+02, 2.900206298828125e+02, 2.89880859375e+02, 2.90578125e+02, 2.932019958496094e+02, 2.931281127929688e+02, 2.931402282714844e+02, 2.931627197265625e+02, 2.931357727050781e+02, 2.931410217285156e+02, 2.882460327148438e+02, 2.874009399414062e+02, 2.88041015625e+02, 2.897851867675781e+02, 2.902625732421875e+02, 2.878046264648438e+02, 2.889438171386719e+02, 2.893079528808594e+02, 2.934115905761719e+02, 2.931624450683594e+02, 2.948594970703125e+02, 2.96019775390625e+02, 2.949902038574219e+02, 2.931239929199219e+02, 2.920033874511719e+02, 2.902220153808594e+02, 2.887874450683594e+02, 2.909061279296875e+02] +buiZon.theZon[1, 1].heaCooPow=[0e+00, 6.308340380201116e-05, 7.529011054430157e-05, 1.8090517578125e+03, 1.331786043010652e-04, 2.12087744140625e+03, -1.350994262695312e+02, -9.171153564453114e+02, -8.251597595214844e+01, 1.725296325683594e+02, 4.73723388671875e+02, -6.315890641417354e-05, -4.939232530887239e-05, -4.140852979617193e-05, -3.214057869627138e-05, -2.181184390792623e-05, -1.491079365223413e-05, -9.84458620223449e-06, 1.669753295898438e+03, 1.674863525390625e+03, 1.22552685546875e+03, 9.050906982421875e+02, 6.453792724609375e+02, 7.629793090820312e+02, 9.137293090820312e+02, 1.040913818359375e+03, -3.760667459573597e-05, -3.124228896922432e-05, -2.453565866744608e-05, -1.737306411087047e-05, 1.65401806640625e+03, 1.685553955078125e+03, 1.326508645433933e-04, 1.705565307617188e+03, 1.627564575195307e+03, 1.079518310546875e+03, 8.80091796875e+02, 7.89085205078125e+02, 8.774803466796875e+02, 1.112266967773438e+03, -2.992761073983274e-05, -1.904210330394567e-05, -1.017946306092199e-05, 1.530128211015835e-04, 1.721335693359375e+03, 1.396053266944364e-04, 1.7143037109375e+03, 1.706712280273438e+03, 1.910785278320312e+03, 1.206800903320312e+03, 9.354931640625e+02, 8.373017578125e+02, 9.193497924804688e+02, 1.183614013671875e+03, -2.924003638327122e-05, -1.323066771874437e-05, 1.25133810797708e-04, 1.74395849609375e+03, 1.67825341796875e+03, 1.49959305417724e-04, 1.66216259765625e+03, 1.820702514648438e+03, -2.715156860351562e+02, 3.078197326660156e+02, -1.288078369140625e+03, -1.734688720703125e+03, -1.60563037109375e+03, -2.570058898925781e+02, -7.76393280830232e-05, -5.926071389694714e-05, -4.333109245635569e-05, -3.0052911824896e-05, -1.602319025550969e-05, 1.7370478515625e+03, 1.770589721679688e+03, 1.797155883789062e+03, 1.784216430664062e+03, 8.304388427734375e+02, 2.170666198730469e+02, 5.757390747070312e+02, 7.908222045898438e+02, 9.421793212890674e+02, 1.415206054687498e+03, -1.553384026919957e-05, 1.518050121376291e-04, 1.684664306640625e+03, 1.840756103515625e+03, 1.8461923828125e+03, 1.315418194280937e-04, 1.895364990234375e+03, 1.889338134765625e+03, 1.75314208984375e+03, -3.995402221679688e+02, -1.560691772460938e+03, -1.809987548828125e+03, -1.593083129882812e+03, 2.013257293701172e+02, -5.884663187316619e-05, -3.850947177852504e-05, -1.995729689951986e-05, 1.780978637695312e+03] +buiZon.theZon[2, 1].heaCooPow=[0e+00, 5.674243948305957e-05, 6.693259638268501e-05, 1.64353662109375e+03, 1.245879830094054e-04, 2.17302197265625e+03, -8.525097045898438e+02, -1.586245483398437e+03, -8.845999755859375e+02, -6.364600219726562e+02, -3.606336975097656e+02, -9.464150207350031e-05, -6.219864008016884e-05, -5.528050314751454e-05, -4.743890531244686e-05, -3.845055107376538e-05, -3.245136758778244e-05, -2.80376807495486e-05, 1.559935913085938e+03, 1.5370185546875e+03, 2.498404083251953e+02, 1.475036716461182e+01, -2.140020141601562e+02, -8.694037628173828e+01, 3.062368583679199e+01, 1.298103485107422e+02, -5.270676410873421e-05, -4.602678018272854e-05, -4.029999763588418e-05, -3.406537143746391e-05, 1.606875e+03, 1.5377607421875e+03, 1.2009653437417e-04, 1.559655517578125e+03, 5.869977416992156e+02, 1.947854766845703e+02, 2.295716285705566e+01, -5.741794967651367e+01, 3.517247009277344e+01, 2.066315460205078e+02, -4.572792022372596e-05, -3.386070602573458e-05, -2.629518530739006e-05, 1.371410180581734e-04, 1.535646240234375e+03, 1.253966765943915e-04, 1.563524780273438e+03, 1.490831909179688e+03, 1.501528442382812e+03, 2.672916870117188e+02, 6.525423431396484e+01, -1.292873954772949e+01, 5.982477569580078e+01, 2.62775146484375e+02, -5.021708420827053e-05, -2.834871702361852e-05, 1.155805366579458e-04, 1.566852172851555e+03, 1.427381469726562e+03, 1.345850323559716e-04, 1.418454345703125e+03, 1.659989990234375e+03, -3.867920837402344e+02, -4.666781616210938e+02, -1.666109619140625e+03, -1.98190576171875e+03, -1.876674194335938e+03, -1.146492431640625e+03, -1.011904314509594e-04, -7.290398934856072e-05, -5.953628715360537e-05, -4.880862979916856e-05, -3.696518979268149e-05, 1.56739013671875e+03, 1.498841918945312e+03, 1.527043212890625e+03, 1.568103149414062e+03, -9.194252014160156e+01, -8.608489990234375e+02, -4.257261657714844e+02, -1.5965478515625e+02, -2.990199851989216e+01, 4.233717956542948e+02, -3.497654688544571e-05, 1.33145964355208e-04, 1.370905151367188e+03, 1.600384155273438e+03, 1.647786254882812e+03, 1.167856898973696e-04, 1.674679443359375e+03, 1.71501220703125e+03, 2.452079010009766e+02, -1.253255615234375e+03, -1.82735302734375e+03, -2.06082177734375e+03, -1.881004272460938e+03, -7.678119506835938e+02, -7.432307756971568e-05, -5.556692849495448e-05, -4.046169851790182e-05, 1.564864013671875e+03] diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Examples_Tutorial_SpaceCooling_System3.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Examples_Tutorial_SpaceCooling_System3.txt index b34de20b211..fa50d4d9ded 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Examples_Tutorial_SpaceCooling_System3.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Examples_Tutorial_SpaceCooling_System3.txt @@ -1,4 +1,4 @@ -last-generated=2019-12-20 +last-generated=2021-02-17 statistics-initialization= { "linear": "0, 0", @@ -12,9 +12,9 @@ statistics-simulation= "number of continuous time states": "24", "numerical Jacobians": "0" } -cooCoi.sta_a2.T=[2.931499938964844e+02, 2.939740600585938e+02, 2.939687194824219e+02, 2.938246154785156e+02, 2.936032104492188e+02, 2.933628234863281e+02, 2.931128234863281e+02, 2.928571166992188e+02, 2.925980224609375e+02, 2.92317138671875e+02, 2.919302368164062e+02, 2.914390563964844e+02, 2.909124755859375e+02, 2.904523010253906e+02, 2.901116638183594e+02, 2.898766479492188e+02, 2.897008056640625e+02, 2.895181274414062e+02, 2.89267578125e+02, 2.889412536621094e+02, 2.885704650878906e+02, 2.882096557617188e+02, 2.879315490722656e+02, 2.878057556152344e+02, 2.878886413574219e+02, 2.882293090820312e+02, 2.889196472167969e+02, 2.900181274414062e+02, 2.914165344238281e+02, 2.92913818359375e+02, 2.943167724609375e+02, 2.956068725585938e+02, 2.967554321289062e+02, 2.96435302734375e+02, 2.971579284667969e+02, 2.968460388183594e+02, 2.959851989746094e+02, 2.962182922363281e+02, 2.966642456054688e+02, 2.96683837890625e+02, 2.96788330078125e+02, 2.964874572753906e+02, 2.968433227539062e+02, 2.974552917480469e+02, 2.977440490722656e+02, 2.978112487792969e+02, 2.977487487792969e+02, 2.976324462890625e+02, 2.974941101074219e+02, 2.973453979492188e+02, 2.971952819824219e+02, 2.971346130371094e+02, 2.972048645019531e+02, 2.973582153320312e+02, 2.97578125e+02, 2.978346862792969e+02, 2.980923461914062e+02, 2.9780224609375e+02, 2.974970397949219e+02, 2.972588195800781e+02, 2.973114013671875e+02, 2.975160827636719e+02, 2.97807373046875e+02, 2.980652465820312e+02, 2.978377685546875e+02, 2.971133117675781e+02, 2.960098266601562e+02, 2.964172058105469e+02, 2.970088195800781e+02, 2.96608642578125e+02, 2.967178039550781e+02, 2.968576049804688e+02, 2.969032287597656e+02, 2.969197692871094e+02, 2.969190673828125e+02, 2.97021484375e+02, 2.973594360351562e+02, 2.965105285644531e+02, 2.967676086425781e+02, 2.965289611816406e+02, 2.961353454589844e+02, 2.956807861328125e+02, 2.952375793457031e+02, 2.948725280761719e+02, 2.94635986328125e+02, 2.945036010742188e+02, 2.944371032714844e+02, 2.943985290527344e+02, 2.943525390625e+02, 2.942949829101562e+02, 2.942314147949219e+02, 2.941643676757812e+02, 2.940953979492188e+02, 2.940252380371094e+02, 2.939542846679688e+02, 2.938828735351562e+02, 2.938110961914062e+02, 2.937391357421875e+02, 2.936671142578125e+02, 2.935950317382812e+02, 2.935229187011719e+02] -TOut.T=[2.914500122070312e+02, 2.913385009765625e+02, 2.910647583007812e+02, 2.907200927734375e+02, 2.903956909179688e+02, 2.901300048828125e+02, 2.898659973144531e+02, 2.896019897460938e+02, 2.893380126953125e+02, 2.89004150390625e+02, 2.884479370117188e+02, 2.878096618652344e+02, 2.872500610351562e+02, 2.869119262695312e+02, 2.867525024414062e+02, 2.866704406738281e+02, 2.865716247558594e+02, 2.86362060546875e+02, 2.860019836425781e+02, 2.855647583007812e+02, 2.851369323730469e+02, 2.848055419921875e+02, 2.84671142578125e+02, 2.847913513183594e+02, 2.852047729492188e+02, 2.859500122070312e+02, 2.872088317871094e+02, 2.889144592285156e+02, 2.907325744628906e+02, 2.923289794921875e+02, 2.935801696777344e+02, 2.946938171386719e+02, 2.956173706054688e+02, 2.962911987304688e+02, 2.964541015625e+02, 2.957337341308594e+02, 2.947459106445312e+02, 2.941705322265625e+02, 2.945262451171875e+02, 2.952189331054688e+02, 2.959844055175781e+02, 2.966857299804688e+02, 2.972068786621094e+02, 2.977020874023438e+02, 2.981768493652344e+02, 2.985576171875e+02, 2.987735900878906e+02, 2.989007568359375e+02, 2.990133361816406e+02, 2.991251220703125e+02, 2.9925e+02, 2.993937683105469e+02, 2.99545654296875e+02, 2.996946411132812e+02, 2.998296203613281e+02, 2.999126586914062e+02, 2.999144897460938e+02, 2.99878662109375e+02, 2.998501281738281e+02, 2.99885009765625e+02, 3.0001416015625e+02, 3.001783142089844e+02, 3.003133850097656e+02, 3.001267700195312e+02, 2.985876770019531e+02, 2.964372253417969e+02, 2.946898803710938e+02, 2.943067016601562e+02, 2.951251831054688e+02, 2.964444274902344e+02, 2.976576538085938e+02, 2.981753234863281e+02, 2.982959289550781e+02, 2.982947082519531e+02, 2.980774841308594e+02, 2.975499877929688e+02, 2.9660986328125e+02, 2.953994445800781e+02, 2.94191650390625e+02, 2.932594299316406e+02, 2.926542053222656e+02, 2.921209716796875e+02, 2.917095031738281e+02, 2.914774780273438e+02, 2.91437255859375e+02, 2.914543151855469e+02, 2.914801330566406e+02, 2.914757385253906e+02, 2.914140014648438e+02, 2.913420104980469e+02, 2.912699890136719e+02, 2.91197998046875e+02, 2.911260070800781e+02, 2.910539855957031e+02, 2.909819946289062e+02, 2.909100036621094e+02, 2.908380126953125e+02, 2.907659912109375e+02, 2.906940002441406e+02, 2.906220092773438e+02, 2.905499877929688e+02] -cooCoi.sta_b2.T=[2.931499938964844e+02, 2.939472351074219e+02, 2.939783630371094e+02, 2.938583068847656e+02, 2.936481018066406e+02, 2.934100341796875e+02, 2.931617126464844e+02, 2.929069519042969e+02, 2.926484069824219e+02, 2.923759765625e+02, 2.920118103027344e+02, 2.915382995605469e+02, 2.910135498046875e+02, 2.905353698730469e+02, 2.901713562011719e+02, 2.899177551269531e+02, 2.89733642578125e+02, 2.895562744140625e+02, 2.893206481933594e+02, 2.890080261230469e+02, 2.886433410644531e+02, 2.882771301269531e+02, 2.87978759765625e+02, 2.878201293945312e+02, 2.878597106933594e+02, 2.881478881835938e+02, 2.887628784179688e+02, 2.897854309082031e+02, 2.911351013183594e+02, 2.926262512207031e+02, 2.940511474609375e+02, 2.953642578125e+02, 2.965423278808594e+02, 2.943297729492188e+02, 2.895846252441406e+02, 2.965929870605469e+02, 2.935411987304688e+02, 2.961192321777344e+02, 2.965715637207031e+02, 2.893576354980469e+02, 2.964923706054688e+02, 2.945772399902344e+02, 2.892663879394531e+02, 2.892762145996094e+02, 2.906957702636719e+02, 2.900926513671875e+02, 2.892872314453125e+02, 2.892779846191406e+02, 2.8927587890625e+02, 2.89273681640625e+02, 2.892713928222656e+02, 2.924416809082031e+02, 2.938199768066406e+02, 2.949693908691406e+02, 2.959010009765625e+02, 2.966378479003906e+02, 2.972066650390625e+02, 2.892805786132812e+02, 2.892760009765625e+02, 2.909532775878906e+02, 2.936824340820312e+02, 2.95168212890625e+02, 2.962622985839844e+02, 2.970316162109375e+02, 2.921206359863281e+02, 2.967705078125e+02, 2.953482971191406e+02, 2.963265686035156e+02, 2.968785705566406e+02, 2.959191589355469e+02, 2.936186218261719e+02, 2.924618530273438e+02, 2.918533325195312e+02, 2.912126159667969e+02, 2.895585021972656e+02, 2.893028869628906e+02, 2.970889282226562e+02, 2.961773376464844e+02, 2.967522583007812e+02, 2.965889587402344e+02, 2.962166137695312e+02, 2.957698669433594e+02, 2.953207702636719e+02, 2.949371032714844e+02, 2.946752624511719e+02, 2.945248718261719e+02, 2.944476318359375e+02, 2.944057006835938e+02, 2.943623352050781e+02, 2.943065490722656e+02, 2.942439880371094e+02, 2.941775207519531e+02, 2.9410888671875e+02, 2.940389099121094e+02, 2.939680786132812e+02, 2.938967590332031e+02, 2.938250427246094e+02, 2.937531127929688e+02, 2.936810913085938e+02, 2.936090087890625e+02, 2.935369262695312e+02] time=[1.5552e+07, 1.56384e+07] vol.T_start=[2.931499938964844e+02, 2.931499938964844e+02] -vol.T=[2.944500122070312e+02, 2.946329650878906e+02, 2.946947021484375e+02, 2.946007385253906e+02, 2.944050903320312e+02, 2.941710205078125e+02, 2.93924560546875e+02, 2.936708984375e+02, 2.934130249023438e+02, 2.931453857421875e+02, 2.928008117675781e+02, 2.923464050292969e+02, 2.918280639648438e+02, 2.913373718261719e+02, 2.909514465332031e+02, 2.906782531738281e+02, 2.904831237792969e+02, 2.9030712890625e+02, 2.90083984375e+02, 2.897853698730469e+02, 2.894288330078125e+02, 2.890606994628906e+02, 2.887466430664062e+02, 2.885594787597656e+02, 2.885598449707031e+02, 2.887994995117188e+02, 2.893478393554688e+02, 2.902944946289062e+02, 2.915878295898438e+02, 2.930602416992188e+02, 2.945011596679688e+02, 2.958353576660156e+02, 2.970401611328125e+02, 2.964714965820312e+02, 2.973341674804688e+02, 2.971241455078125e+02, 2.962951965332031e+02, 2.96730224609375e+02, 2.9719873046875e+02, 2.970500793457031e+02, 2.969893188476562e+02, 2.964378967285156e+02, 2.9675244140625e+02, 2.973935852050781e+02, 2.976358337402344e+02, 2.976246337890625e+02, 2.974925231933594e+02, 2.973153381347656e+02, 2.971141967773438e+02, 2.969003295898438e+02, 2.966815795898438e+02, 2.9656982421875e+02, 2.966196594238281e+02, 2.967741088867188e+02, 2.970152587890625e+02, 2.973150939941406e+02, 2.976365966796875e+02, 2.972828674316406e+02, 2.969085083007812e+02, 2.966021728515625e+02, 2.966357116699219e+02, 2.968505249023438e+02, 2.971808471679688e+02, 2.975495300292969e+02, 2.976499633789062e+02, 2.972825622558594e+02, 2.963400268554688e+02, 2.969449157714844e+02, 2.97479736328125e+02, 2.966496887207031e+02, 2.964828186035156e+02, 2.965281677246094e+02, 2.965549621582031e+02, 2.965759887695312e+02, 2.966294250488281e+02, 2.968893432617188e+02, 2.975468139648438e+02, 2.967882995605469e+02, 2.9741162109375e+02, 2.973463134765625e+02, 2.970056457519531e+02, 2.965707397460938e+02, 2.961195983886719e+02, 2.957212829589844e+02, 2.954356689453125e+02, 2.952659301757812e+02, 2.951763610839844e+02, 2.951292419433594e+02, 2.950871887207031e+02, 2.950334777832031e+02, 2.949720764160156e+02, 2.949062194824219e+02, 2.948378601074219e+02, 2.947680358886719e+02, 2.946973571777344e+02, 2.946261291503906e+02, 2.945545349121094e+02, 2.944826354980469e+02, 2.9441064453125e+02, 2.943385620117188e+02, 2.942664184570312e+02] +vol.T=[2.944500122070312e+02, 2.946329650878906e+02, 2.946947021484375e+02, 2.946007385253906e+02, 2.944050903320312e+02, 2.941710205078125e+02, 2.93924560546875e+02, 2.936708984375e+02, 2.934130249023438e+02, 2.931453857421875e+02, 2.928008117675781e+02, 2.923464050292969e+02, 2.918280639648438e+02, 2.913373718261719e+02, 2.909514465332031e+02, 2.906782531738281e+02, 2.904831237792969e+02, 2.9030712890625e+02, 2.90083984375e+02, 2.897853698730469e+02, 2.894288330078125e+02, 2.890606994628906e+02, 2.887466430664062e+02, 2.885594787597656e+02, 2.885598449707031e+02, 2.887994995117188e+02, 2.893478393554688e+02, 2.902944946289062e+02, 2.915878295898438e+02, 2.930602416992188e+02, 2.945011596679688e+02, 2.958353576660156e+02, 2.970401611328125e+02, 2.964715270996094e+02, 2.973340759277344e+02, 2.971241455078125e+02, 2.96295166015625e+02, 2.967302856445312e+02, 2.971987609863281e+02, 2.970498046875e+02, 2.969893798828125e+02, 2.964379272460938e+02, 2.967522888183594e+02, 2.973934326171875e+02, 2.976357116699219e+02, 2.9762451171875e+02, 2.974924011230469e+02, 2.973152160644531e+02, 2.971140747070312e+02, 2.969002380371094e+02, 2.966814880371094e+02, 2.9656982421875e+02, 2.966196899414062e+02, 2.967741394042969e+02, 2.970153198242188e+02, 2.973151550292969e+02, 2.976366577148438e+02, 2.972827758789062e+02, 2.969084167480469e+02, 2.966021423339844e+02, 2.966357421875e+02, 2.968505859375e+02, 2.971809387207031e+02, 2.975496215820312e+02, 2.9764990234375e+02, 2.972826232910156e+02, 2.963400573730469e+02, 2.969449462890625e+02, 2.97479736328125e+02, 2.966497497558594e+02, 2.964828186035156e+02, 2.965281677246094e+02, 2.965549621582031e+02, 2.96575927734375e+02, 2.966293334960938e+02, 2.9688916015625e+02, 2.975469665527344e+02, 2.967885131835938e+02, 2.974117431640625e+02, 2.973464050292969e+02, 2.970056762695312e+02, 2.965707702636719e+02, 2.9611962890625e+02, 2.957212829589844e+02, 2.954356689453125e+02, 2.952659301757812e+02, 2.951763610839844e+02, 2.951292419433594e+02, 2.95087158203125e+02, 2.95033447265625e+02, 2.949720764160156e+02, 2.949062194824219e+02, 2.948378295898438e+02, 2.947680053710938e+02, 2.946973571777344e+02, 2.946261291503906e+02, 2.945545043945312e+02, 2.944826354980469e+02, 2.9441064453125e+02, 2.943385620117188e+02, 2.942664184570312e+02] +TOut.T=[2.914500122070312e+02, 2.913385009765625e+02, 2.910647583007812e+02, 2.907200927734375e+02, 2.903956909179688e+02, 2.901300048828125e+02, 2.898659973144531e+02, 2.896019897460938e+02, 2.893380126953125e+02, 2.89004150390625e+02, 2.884479370117188e+02, 2.878096618652344e+02, 2.872500610351562e+02, 2.869119262695312e+02, 2.867525024414062e+02, 2.866704406738281e+02, 2.865716247558594e+02, 2.86362060546875e+02, 2.860019836425781e+02, 2.855647583007812e+02, 2.851369323730469e+02, 2.848055419921875e+02, 2.84671142578125e+02, 2.847913513183594e+02, 2.852047729492188e+02, 2.859500122070312e+02, 2.872088317871094e+02, 2.889144592285156e+02, 2.907325744628906e+02, 2.923289794921875e+02, 2.935801696777344e+02, 2.946938171386719e+02, 2.956173706054688e+02, 2.962911987304688e+02, 2.964541015625e+02, 2.957337341308594e+02, 2.947459106445312e+02, 2.941705322265625e+02, 2.945262451171875e+02, 2.952189331054688e+02, 2.959844055175781e+02, 2.966857299804688e+02, 2.972068786621094e+02, 2.977020874023438e+02, 2.981768493652344e+02, 2.985576171875e+02, 2.987735900878906e+02, 2.989007568359375e+02, 2.990133361816406e+02, 2.991251220703125e+02, 2.9925e+02, 2.993937683105469e+02, 2.99545654296875e+02, 2.996946411132812e+02, 2.998296203613281e+02, 2.999126586914062e+02, 2.999144897460938e+02, 2.99878662109375e+02, 2.998501281738281e+02, 2.99885009765625e+02, 3.0001416015625e+02, 3.001783142089844e+02, 3.003133850097656e+02, 3.001267700195312e+02, 2.985876770019531e+02, 2.964372253417969e+02, 2.946898803710938e+02, 2.943067016601562e+02, 2.951251831054688e+02, 2.964444274902344e+02, 2.976576538085938e+02, 2.981753234863281e+02, 2.982959289550781e+02, 2.982947082519531e+02, 2.980774841308594e+02, 2.975499877929688e+02, 2.9660986328125e+02, 2.953994445800781e+02, 2.94191650390625e+02, 2.932594299316406e+02, 2.926542053222656e+02, 2.921209716796875e+02, 2.917095031738281e+02, 2.914774780273438e+02, 2.91437255859375e+02, 2.914543151855469e+02, 2.914801330566406e+02, 2.914757385253906e+02, 2.914140014648438e+02, 2.913420104980469e+02, 2.912699890136719e+02, 2.91197998046875e+02, 2.911260070800781e+02, 2.910539855957031e+02, 2.909819946289062e+02, 2.909100036621094e+02, 2.908380126953125e+02, 2.907659912109375e+02, 2.906940002441406e+02, 2.906220092773438e+02, 2.905499877929688e+02] +cooCoi.sta_a2.T=[2.931499938964844e+02, 2.939740600585938e+02, 2.939687194824219e+02, 2.938246154785156e+02, 2.936032104492188e+02, 2.933628234863281e+02, 2.931128234863281e+02, 2.928571166992188e+02, 2.925980224609375e+02, 2.92317138671875e+02, 2.919302368164062e+02, 2.914390563964844e+02, 2.909124755859375e+02, 2.904523010253906e+02, 2.901116638183594e+02, 2.898766479492188e+02, 2.897008056640625e+02, 2.895181274414062e+02, 2.89267578125e+02, 2.889412536621094e+02, 2.885704650878906e+02, 2.882096557617188e+02, 2.879315490722656e+02, 2.878057556152344e+02, 2.878886413574219e+02, 2.882293090820312e+02, 2.889196472167969e+02, 2.900181274414062e+02, 2.914165344238281e+02, 2.92913818359375e+02, 2.943167724609375e+02, 2.956068725585938e+02, 2.967554321289062e+02, 2.964353332519531e+02, 2.971578369140625e+02, 2.968460693359375e+02, 2.959851989746094e+02, 2.962183227539062e+02, 2.966642761230469e+02, 2.966836242675781e+02, 2.967883911132812e+02, 2.964874877929688e+02, 2.968432006835938e+02, 2.974551391601562e+02, 2.977439575195312e+02, 2.978111572265625e+02, 2.977486267089844e+02, 2.976323547363281e+02, 2.974940185546875e+02, 2.973453063964844e+02, 2.971952209472656e+02, 2.971346130371094e+02, 2.972048645019531e+02, 2.973582458496094e+02, 2.975781860351562e+02, 2.978347473144531e+02, 2.980924072265625e+02, 2.978021850585938e+02, 2.974969787597656e+02, 2.972587890625e+02, 2.973114318847656e+02, 2.9751611328125e+02, 2.978074340820312e+02, 2.980653076171875e+02, 2.978377075195312e+02, 2.971133728027344e+02, 2.960098571777344e+02, 2.96417236328125e+02, 2.970088500976562e+02, 2.966086730957031e+02, 2.967178039550781e+02, 2.968576049804688e+02, 2.969031982421875e+02, 2.969197387695312e+02, 2.969190368652344e+02, 2.970213317871094e+02, 2.973595581054688e+02, 2.965106811523438e+02, 2.967677307128906e+02, 2.965289916992188e+02, 2.961354064941406e+02, 2.956808166503906e+02, 2.952376098632812e+02, 2.948725280761719e+02, 2.94635986328125e+02, 2.945036010742188e+02, 2.944371032714844e+02, 2.943985290527344e+02, 2.943525390625e+02, 2.942949829101562e+02, 2.942314147949219e+02, 2.941643676757812e+02, 2.940953979492188e+02, 2.940252075195312e+02, 2.939542846679688e+02, 2.938828735351562e+02, 2.938110656738281e+02, 2.937391357421875e+02, 2.936671142578125e+02, 2.935950317382812e+02, 2.935229187011719e+02] +cooCoi.sta_b2.T=[2.931499938964844e+02, 2.939472351074219e+02, 2.939783630371094e+02, 2.938583068847656e+02, 2.936481018066406e+02, 2.934100341796875e+02, 2.931617126464844e+02, 2.929069519042969e+02, 2.926484069824219e+02, 2.923759765625e+02, 2.920118103027344e+02, 2.915382995605469e+02, 2.910135498046875e+02, 2.905353698730469e+02, 2.901713562011719e+02, 2.899177551269531e+02, 2.89733642578125e+02, 2.895562744140625e+02, 2.893206481933594e+02, 2.890080261230469e+02, 2.886433410644531e+02, 2.882771301269531e+02, 2.87978759765625e+02, 2.878201293945312e+02, 2.878597106933594e+02, 2.881478881835938e+02, 2.887628784179688e+02, 2.897854309082031e+02, 2.911351013183594e+02, 2.926262512207031e+02, 2.940511474609375e+02, 2.953642578125e+02, 2.965423278808594e+02, 2.94329833984375e+02, 2.895846252441406e+02, 2.965930786132812e+02, 2.935417785644531e+02, 2.961192626953125e+02, 2.965715942382812e+02, 2.893576354980469e+02, 2.96492431640625e+02, 2.945775756835938e+02, 2.892663879394531e+02, 2.892762145996094e+02, 2.90688720703125e+02, 2.900888671875e+02, 2.892872009277344e+02, 2.892779846191406e+02, 2.8927587890625e+02, 2.89273681640625e+02, 2.892713928222656e+02, 2.924422302246094e+02, 2.938203735351562e+02, 2.949696960449219e+02, 2.959012145996094e+02, 2.966380004882812e+02, 2.97206787109375e+02, 2.892805786132812e+02, 2.892760009765625e+02, 2.909552612304688e+02, 2.93682861328125e+02, 2.951684875488281e+02, 2.962624816894531e+02, 2.9703173828125e+02, 2.921053771972656e+02, 2.967705993652344e+02, 2.953485107421875e+02, 2.963266296386719e+02, 2.968786010742188e+02, 2.959192504882812e+02, 2.936189270019531e+02, 2.924622192382812e+02, 2.918539733886719e+02, 2.912138061523438e+02, 2.895599060058594e+02, 2.893028869628906e+02, 2.97089111328125e+02, 2.961776123046875e+02, 2.967523803710938e+02, 2.965890808105469e+02, 2.962166442871094e+02, 2.957698974609375e+02, 2.9532080078125e+02, 2.949371337890625e+02, 2.946752624511719e+02, 2.945248718261719e+02, 2.944476318359375e+02, 2.944057006835938e+02, 2.943623352050781e+02, 2.943065490722656e+02, 2.942439880371094e+02, 2.941775207519531e+02, 2.941088562011719e+02, 2.940388793945312e+02, 2.939680786132812e+02, 2.938967590332031e+02, 2.938250122070312e+02, 2.937531127929688e+02, 2.936810913085938e+02, 2.936090087890625e+02, 2.935369262695312e+02] diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_ThermalZones_EnergyPlus_Examples_SmallOffice_ASHRAE2006Spring.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_ThermalZones_EnergyPlus_Examples_SmallOffice_ASHRAE2006Spring.txt index 48c9e760dcb..7b0d97d0fc5 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_ThermalZones_EnergyPlus_Examples_SmallOffice_ASHRAE2006Spring.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_ThermalZones_EnergyPlus_Examples_SmallOffice_ASHRAE2006Spring.txt @@ -1,4 +1,4 @@ -last-generated=2021-01-25 +last-generated=2021-02-17 statistics-initialization= { "linear": "0, 0, 0, 0, 0, 4", @@ -13,25 +13,25 @@ statistics-simulation= "numerical Jacobians": "0" } time=[7.344e+06, 7.776e+06] -flo.sou.TAir=[2.931499938964844e+02, 2.942657775878906e+02, 2.940426330566406e+02, 2.940542297363281e+02, 2.940871887207031e+02, 2.939103393554688e+02, 2.93322998046875e+02, 2.939302368164062e+02, 2.942925720214844e+02, 2.946575622558594e+02, 2.953241577148438e+02, 2.959574279785156e+02, 2.96001953125e+02, 2.95958251953125e+02, 2.949505920410156e+02, 2.942226257324219e+02, 2.947214965820312e+02, 2.952095031738281e+02, 2.949111022949219e+02, 2.947170715332031e+02, 2.94482177734375e+02, 2.943779296875e+02, 2.940663452148438e+02, 2.939312438964844e+02, 2.941107788085938e+02, 2.9403955078125e+02, 2.933768615722656e+02, 2.939945068359375e+02, 2.942165222167969e+02, 2.945242309570312e+02, 2.943448486328125e+02, 2.947107238769531e+02, 2.946186218261719e+02, 2.946759338378906e+02, 2.937327575683594e+02, 2.932139587402344e+02, 2.936885681152344e+02, 2.940595397949219e+02, 2.939363708496094e+02, 2.936837158203125e+02, 2.9364453125e+02, 2.935080871582031e+02, 2.933779907226562e+02, 2.931913452148438e+02, 2.93111328125e+02, 2.916613159179688e+02, 2.931364135742188e+02, 2.932354431152344e+02, 2.9347900390625e+02, 2.940120239257812e+02, 2.939487915039062e+02, 2.944072570800781e+02, 2.945109558105469e+02, 2.944005737304688e+02, 2.933698120117188e+02, 2.931492004394531e+02, 2.933958740234375e+02, 2.932854919433594e+02, 2.930740356445312e+02, 2.92833740234375e+02, 2.925834655761719e+02, 2.924363708496094e+02, 2.922798767089844e+02, 2.920659790039062e+02, 2.918848876953125e+02, 2.920511474609375e+02, 2.933174743652344e+02, 2.931554565429688e+02, 2.931521301269531e+02, 2.931526489257812e+02, 2.931499633789062e+02, 2.932943115234375e+02, 2.9331201171875e+02, 2.932500915527344e+02, 2.931502075195312e+02, 2.931477355957031e+02, 2.928577575683594e+02, 2.924170227050781e+02, 2.922794799804688e+02, 2.920888061523438e+02, 2.918701782226562e+02, 2.916763916015625e+02, 2.915546264648438e+02, 2.914083862304688e+02, 2.909830322265625e+02, 2.926180725097656e+02, 2.933968200683594e+02, 2.931594543457031e+02, 2.931881408691406e+02, 2.931250915527344e+02, 2.931630249023438e+02, 2.931207275390625e+02, 2.931634216308594e+02, 2.931641540527344e+02, 2.931581115722656e+02, 2.930928955078125e+02, 2.916228332519531e+02, 2.912810363769531e+02, 2.914496459960938e+02, 2.913182983398438e+02, 2.910755004882812e+02] -flo.eas.TAir=[2.931499938964844e+02, 2.947931518554688e+02, 2.94587158203125e+02, 2.945072631835938e+02, 2.944761962890625e+02, 2.944194946289062e+02, 2.932151794433594e+02, 2.935916137695312e+02, 2.944925537109375e+02, 2.948087768554688e+02, 2.947673645019531e+02, 2.95313720703125e+02, 2.95508056640625e+02, 2.955674438476562e+02, 2.94628662109375e+02, 2.939322509765625e+02, 2.944393920898438e+02, 2.949514465332031e+02, 2.947374877929688e+02, 2.94396240234375e+02, 2.946513061523438e+02, 2.946029663085938e+02, 2.944293212890625e+02, 2.938883056640625e+02, 2.93618408203125e+02, 2.935406188964844e+02, 2.931560668945312e+02, 2.933990478515625e+02, 2.935143127441406e+02, 2.943282470703125e+02, 2.940834350585938e+02, 2.942362365722656e+02, 2.944398193359375e+02, 2.941276550292969e+02, 2.935248107910156e+02, 2.931523742675781e+02, 2.935296630859375e+02, 2.939539184570312e+02, 2.938497619628906e+02, 2.937195434570312e+02, 2.935712280273438e+02, 2.934423217773438e+02, 2.933117370605469e+02, 2.931394958496094e+02, 2.93054931640625e+02, 2.914344787597656e+02, 2.931423645019531e+02, 2.931557922363281e+02, 2.931513977050781e+02, 2.932717590332031e+02, 2.931658020019531e+02, 2.935589294433594e+02, 2.939231262207031e+02, 2.939164428710938e+02, 2.931308288574219e+02, 2.931647033691406e+02, 2.9280029296875e+02, 2.925693054199219e+02, 2.924125061035156e+02, 2.921988525390625e+02, 2.919067993164062e+02, 2.91884033203125e+02, 2.918355407714844e+02, 2.913172607421875e+02, 2.910476379394531e+02, 2.915208435058594e+02, 2.93224853515625e+02, 2.931535949707031e+02, 2.931453247070312e+02, 2.931706848144531e+02, 2.931522216796875e+02, 2.931535949707031e+02, 2.931445007324219e+02, 2.931341247558594e+02, 2.931471557617188e+02, 2.9316259765625e+02, 2.920076293945312e+02, 2.914284362792969e+02, 2.913135375976562e+02, 2.912369079589844e+02, 2.910354614257812e+02, 2.907593383789062e+02, 2.905662536621094e+02, 2.903854675292969e+02, 2.904132385253906e+02, 2.923219604492188e+02, 2.933902587890625e+02, 2.932055053710938e+02, 2.931549987792969e+02, 2.931506042480469e+02, 2.931497802734375e+02, 2.931499328613281e+02, 2.931517944335938e+02, 2.931494445800781e+02, 2.931442565917969e+02, 2.931475524902344e+02, 2.925234069824219e+02, 2.919760437011719e+02, 2.917720642089844e+02, 2.915775451660156e+02, 2.9128076171875e+02] -flo.nor.TAir=[2.931499938964844e+02, 2.947066650390625e+02, 2.945147399902344e+02, 2.94439453125e+02, 2.944130859375e+02, 2.943655395507812e+02, 2.934685668945312e+02, 2.9421826171875e+02, 2.944866027832031e+02, 2.947518920898438e+02, 2.946944580078125e+02, 2.952279052734375e+02, 2.954107971191406e+02, 2.954898071289062e+02, 2.945315856933594e+02, 2.938612060546875e+02, 2.944025573730469e+02, 2.949524536132812e+02, 2.949251403808594e+02, 2.947956237792969e+02, 2.94672607421875e+02, 2.946300964355469e+02, 2.944589233398438e+02, 2.943125610351562e+02, 2.935799560546875e+02, 2.933927307128906e+02, 2.9334765625e+02, 2.939085693359375e+02, 2.939205932617188e+02, 2.941996154785156e+02, 2.941696472167969e+02, 2.943052368164062e+02, 2.9404833984375e+02, 2.945209655761719e+02, 2.936117553710938e+02, 2.931581726074219e+02, 2.935272216796875e+02, 2.940213012695312e+02, 2.939089660644531e+02, 2.937688598632812e+02, 2.936263427734375e+02, 2.932326354980469e+02, 2.933597412109375e+02, 2.929842529296875e+02, 2.931032104492188e+02, 2.916689147949219e+02, 2.931362609863281e+02, 2.93209228515625e+02, 2.934135131835938e+02, 2.936335754394531e+02, 2.937681579589844e+02, 2.9424755859375e+02, 2.943445739746094e+02, 2.942245483398438e+02, 2.931887512207031e+02, 2.931481628417969e+02, 2.932859802246094e+02, 2.925322875976562e+02, 2.922789916992188e+02, 2.920697937011719e+02, 2.917591857910156e+02, 2.917533264160156e+02, 2.915436096191406e+02, 2.912676391601562e+02, 2.910697631835938e+02, 2.915604858398438e+02, 2.934743347167969e+02, 2.93155029296875e+02, 2.931517333984375e+02, 2.931259155273438e+02, 2.931484985351562e+02, 2.931537780761719e+02, 2.931466064453125e+02, 2.931326904296875e+02, 2.931481628417969e+02, 2.931480102539062e+02, 2.923316955566406e+02, 2.919847106933594e+02, 2.922449951171875e+02, 2.920523681640625e+02, 2.917191162109375e+02, 2.915126342773438e+02, 2.915724182128906e+02, 2.914409484863281e+02, 2.913335571289062e+02, 2.929752502441406e+02, 2.93382080078125e+02, 2.931580810546875e+02, 2.931535339355469e+02, 2.931505432128906e+02, 2.931498413085938e+02, 2.931500244140625e+02, 2.931517639160156e+02, 2.931496276855469e+02, 2.931388549804688e+02, 2.931483154296875e+02, 2.926274719238281e+02, 2.921103210449219e+02, 2.918644714355469e+02, 2.916726989746094e+02, 2.913807067871094e+02] -flo.wes.TAir=[2.931499938964844e+02, 2.948869934082031e+02, 2.946950073242188e+02, 2.946287536621094e+02, 2.945686340332031e+02, 2.944975891113281e+02, 2.931981506347656e+02, 2.934246520996094e+02, 2.944217224121094e+02, 2.945358276367188e+02, 2.945745849609375e+02, 2.951211242675781e+02, 2.955634460449219e+02, 2.958639221191406e+02, 2.947843627929688e+02, 2.942661437988281e+02, 2.946343078613281e+02, 2.951006469726562e+02, 2.950693359375e+02, 2.949526977539062e+02, 2.94815673828125e+02, 2.947532348632812e+02, 2.940007019042969e+02, 2.942967529296875e+02, 2.940833129882812e+02, 2.93997802734375e+02, 2.93147705078125e+02, 2.933898620605469e+02, 2.935272827148438e+02, 2.943501892089844e+02, 2.941883239746094e+02, 2.945544738769531e+02, 2.945097045898438e+02, 2.946207885742188e+02, 2.93693359375e+02, 2.931800537109375e+02, 2.936546020507812e+02, 2.940032958984375e+02, 2.936452026367188e+02, 2.933847961425781e+02, 2.931356811523438e+02, 2.930527038574219e+02, 2.928222045898438e+02, 2.927620849609375e+02, 2.927940368652344e+02, 2.913674011230469e+02, 2.931489868164062e+02, 2.931553649902344e+02, 2.931514892578125e+02, 2.932448120117188e+02, 2.931501770019531e+02, 2.935515747070312e+02, 2.940123291015625e+02, 2.942585144042969e+02, 2.932996826171875e+02, 2.931483154296875e+02, 2.933646545410156e+02, 2.931947937011719e+02, 2.929747009277344e+02, 2.927386169433594e+02, 2.92490478515625e+02, 2.92369384765625e+02, 2.922045288085938e+02, 2.919931030273438e+02, 2.918215026855469e+02, 2.91806884765625e+02, 2.9322802734375e+02, 2.931557922363281e+02, 2.931516723632812e+02, 2.931504211425781e+02, 2.931500244140625e+02, 2.931515502929688e+02, 2.931507568359375e+02, 2.931497497558594e+02, 2.931470336914062e+02, 2.931485900878906e+02, 2.92842041015625e+02, 2.924392700195312e+02, 2.9224462890625e+02, 2.920799560546875e+02, 2.918739929199219e+02, 2.916872253417969e+02, 2.915281982421875e+02, 2.913815307617188e+02, 2.91283935546875e+02, 2.932504577636719e+02, 2.932510070800781e+02, 2.931591491699219e+02, 2.931542663574219e+02, 2.931724243164062e+02, 2.931414794921875e+02, 2.931454467773438e+02, 2.931117553710938e+02, 2.931666259765625e+02, 2.931106262207031e+02, 2.931492004394531e+02, 2.914584045410156e+02, 2.909927978515625e+02, 2.906929321289062e+02, 2.905982055664062e+02, 2.904139404296875e+02] +flo.sou.TAir=[2.931499938964844e+02, 2.942657775878906e+02, 2.940426330566406e+02, 2.940542297363281e+02, 2.940871887207031e+02, 2.939103393554688e+02, 2.93322998046875e+02, 2.939302368164062e+02, 2.942925720214844e+02, 2.946575622558594e+02, 2.953241577148438e+02, 2.959574279785156e+02, 2.96001953125e+02, 2.95958251953125e+02, 2.949505920410156e+02, 2.942226257324219e+02, 2.947214965820312e+02, 2.952095031738281e+02, 2.949111022949219e+02, 2.947170715332031e+02, 2.944822082519531e+02, 2.943779296875e+02, 2.940663452148438e+02, 2.939312438964844e+02, 2.941107788085938e+02, 2.9403955078125e+02, 2.933768615722656e+02, 2.939945068359375e+02, 2.942165222167969e+02, 2.945242309570312e+02, 2.943448486328125e+02, 2.947107238769531e+02, 2.946186218261719e+02, 2.946759338378906e+02, 2.937327575683594e+02, 2.932139587402344e+02, 2.936885681152344e+02, 2.940595397949219e+02, 2.939363708496094e+02, 2.936837158203125e+02, 2.9364453125e+02, 2.935080871582031e+02, 2.933779907226562e+02, 2.931913452148438e+02, 2.93111328125e+02, 2.916613159179688e+02, 2.931364135742188e+02, 2.932354431152344e+02, 2.9347900390625e+02, 2.940120239257812e+02, 2.939487915039062e+02, 2.944072570800781e+02, 2.945109558105469e+02, 2.944005737304688e+02, 2.933698120117188e+02, 2.931492004394531e+02, 2.933958740234375e+02, 2.932854919433594e+02, 2.930740356445312e+02, 2.92833740234375e+02, 2.925834655761719e+02, 2.924363708496094e+02, 2.922798767089844e+02, 2.920659790039062e+02, 2.918848876953125e+02, 2.920511474609375e+02, 2.933174743652344e+02, 2.931554565429688e+02, 2.931521301269531e+02, 2.931526489257812e+02, 2.931499633789062e+02, 2.932943115234375e+02, 2.9331201171875e+02, 2.932500915527344e+02, 2.931502075195312e+02, 2.931477355957031e+02, 2.928577575683594e+02, 2.924170227050781e+02, 2.922794799804688e+02, 2.920888061523438e+02, 2.918701782226562e+02, 2.916763916015625e+02, 2.915546264648438e+02, 2.914083862304688e+02, 2.909830322265625e+02, 2.926180725097656e+02, 2.933968200683594e+02, 2.931594543457031e+02, 2.931881408691406e+02, 2.931250915527344e+02, 2.931630249023438e+02, 2.931207275390625e+02, 2.931634216308594e+02, 2.931641540527344e+02, 2.931581115722656e+02, 2.930928955078125e+02, 2.91622802734375e+02, 2.912810363769531e+02, 2.914496459960938e+02, 2.913182983398438e+02, 2.910755004882812e+02] +flo.eas.TAir=[2.931499938964844e+02, 2.947931518554688e+02, 2.94587158203125e+02, 2.945072631835938e+02, 2.944761962890625e+02, 2.944194946289062e+02, 2.932151794433594e+02, 2.935916137695312e+02, 2.944925537109375e+02, 2.948087768554688e+02, 2.947673645019531e+02, 2.95313720703125e+02, 2.95508056640625e+02, 2.955674438476562e+02, 2.94628662109375e+02, 2.939322509765625e+02, 2.944393920898438e+02, 2.949514465332031e+02, 2.947374877929688e+02, 2.94396240234375e+02, 2.946513061523438e+02, 2.946029663085938e+02, 2.944293212890625e+02, 2.938883056640625e+02, 2.93618408203125e+02, 2.935406188964844e+02, 2.931560668945312e+02, 2.933990478515625e+02, 2.935143127441406e+02, 2.943282470703125e+02, 2.940834350585938e+02, 2.942362365722656e+02, 2.944398193359375e+02, 2.941276550292969e+02, 2.935248107910156e+02, 2.931523742675781e+02, 2.935296630859375e+02, 2.939539184570312e+02, 2.938497619628906e+02, 2.937195434570312e+02, 2.935712280273438e+02, 2.934423217773438e+02, 2.933117370605469e+02, 2.931394958496094e+02, 2.93054931640625e+02, 2.914344787597656e+02, 2.931423645019531e+02, 2.931557922363281e+02, 2.931513977050781e+02, 2.932717590332031e+02, 2.931658020019531e+02, 2.935589294433594e+02, 2.939231262207031e+02, 2.939164428710938e+02, 2.931308288574219e+02, 2.931647033691406e+02, 2.9280029296875e+02, 2.925693054199219e+02, 2.924125061035156e+02, 2.921988525390625e+02, 2.919067993164062e+02, 2.91884033203125e+02, 2.918355407714844e+02, 2.913172607421875e+02, 2.910476379394531e+02, 2.915208435058594e+02, 2.932248840332031e+02, 2.931535949707031e+02, 2.931453247070312e+02, 2.931706848144531e+02, 2.931522216796875e+02, 2.931535949707031e+02, 2.931445007324219e+02, 2.931341247558594e+02, 2.931471557617188e+02, 2.9316259765625e+02, 2.920076293945312e+02, 2.914284362792969e+02, 2.913135375976562e+02, 2.912369079589844e+02, 2.910354614257812e+02, 2.907593383789062e+02, 2.905662536621094e+02, 2.903854675292969e+02, 2.904132385253906e+02, 2.923219604492188e+02, 2.933902587890625e+02, 2.932055053710938e+02, 2.931549987792969e+02, 2.931506042480469e+02, 2.931497802734375e+02, 2.931499328613281e+02, 2.931517944335938e+02, 2.931494445800781e+02, 2.931442565917969e+02, 2.931475524902344e+02, 2.925234069824219e+02, 2.919760437011719e+02, 2.917720642089844e+02, 2.915775451660156e+02, 2.9128076171875e+02] +flo.nor.TAir=[2.931499938964844e+02, 2.947066650390625e+02, 2.945147399902344e+02, 2.94439453125e+02, 2.944130859375e+02, 2.943655395507812e+02, 2.934685668945312e+02, 2.9421826171875e+02, 2.944866027832031e+02, 2.947518920898438e+02, 2.946944580078125e+02, 2.952279052734375e+02, 2.954107971191406e+02, 2.954898071289062e+02, 2.945315856933594e+02, 2.938612060546875e+02, 2.944025573730469e+02, 2.949524536132812e+02, 2.949251403808594e+02, 2.947956237792969e+02, 2.94672607421875e+02, 2.946300964355469e+02, 2.944589233398438e+02, 2.943125610351562e+02, 2.935799865722656e+02, 2.933927307128906e+02, 2.9334765625e+02, 2.939085693359375e+02, 2.939205932617188e+02, 2.941996154785156e+02, 2.941696472167969e+02, 2.943052368164062e+02, 2.9404833984375e+02, 2.945209655761719e+02, 2.936117553710938e+02, 2.931581726074219e+02, 2.935272216796875e+02, 2.940213012695312e+02, 2.939089660644531e+02, 2.937688598632812e+02, 2.936263427734375e+02, 2.932326354980469e+02, 2.933597412109375e+02, 2.929842529296875e+02, 2.931032104492188e+02, 2.916689147949219e+02, 2.931362609863281e+02, 2.93209228515625e+02, 2.934135131835938e+02, 2.936335754394531e+02, 2.937681579589844e+02, 2.9424755859375e+02, 2.943445739746094e+02, 2.942245483398438e+02, 2.931887512207031e+02, 2.931481628417969e+02, 2.932859802246094e+02, 2.925322875976562e+02, 2.922789916992188e+02, 2.920697937011719e+02, 2.917591857910156e+02, 2.917533264160156e+02, 2.915436096191406e+02, 2.912676391601562e+02, 2.910697631835938e+02, 2.915604858398438e+02, 2.934743347167969e+02, 2.93155029296875e+02, 2.931517333984375e+02, 2.931259155273438e+02, 2.931484985351562e+02, 2.931537780761719e+02, 2.931466064453125e+02, 2.931326904296875e+02, 2.931481628417969e+02, 2.931480102539062e+02, 2.923316955566406e+02, 2.919847106933594e+02, 2.922449645996094e+02, 2.920523681640625e+02, 2.917191162109375e+02, 2.915126342773438e+02, 2.915724182128906e+02, 2.914409484863281e+02, 2.913335571289062e+02, 2.929752502441406e+02, 2.93382080078125e+02, 2.931580810546875e+02, 2.931535339355469e+02, 2.931505432128906e+02, 2.931498413085938e+02, 2.931500244140625e+02, 2.931517639160156e+02, 2.931496276855469e+02, 2.931388549804688e+02, 2.931483154296875e+02, 2.926274719238281e+02, 2.921103210449219e+02, 2.918644714355469e+02, 2.916726989746094e+02, 2.913807067871094e+02] +flo.wes.TAir=[2.931499938964844e+02, 2.948869934082031e+02, 2.946950073242188e+02, 2.946287536621094e+02, 2.945686340332031e+02, 2.944975891113281e+02, 2.931981506347656e+02, 2.934246520996094e+02, 2.944217224121094e+02, 2.945358276367188e+02, 2.945745849609375e+02, 2.951211242675781e+02, 2.955634460449219e+02, 2.958639221191406e+02, 2.947843627929688e+02, 2.942661437988281e+02, 2.946343078613281e+02, 2.951006469726562e+02, 2.950693359375e+02, 2.949526977539062e+02, 2.94815673828125e+02, 2.947532348632812e+02, 2.940007019042969e+02, 2.942967529296875e+02, 2.940833129882812e+02, 2.93997802734375e+02, 2.93147705078125e+02, 2.933898620605469e+02, 2.935272827148438e+02, 2.943502197265625e+02, 2.941883239746094e+02, 2.945544738769531e+02, 2.945097045898438e+02, 2.946207885742188e+02, 2.93693359375e+02, 2.931800537109375e+02, 2.936546020507812e+02, 2.940032958984375e+02, 2.936452026367188e+02, 2.933847961425781e+02, 2.931356811523438e+02, 2.930527038574219e+02, 2.928222045898438e+02, 2.927620849609375e+02, 2.927940368652344e+02, 2.913674011230469e+02, 2.931489868164062e+02, 2.931553649902344e+02, 2.931514892578125e+02, 2.932448120117188e+02, 2.931501770019531e+02, 2.935515747070312e+02, 2.940123291015625e+02, 2.942585144042969e+02, 2.932996826171875e+02, 2.931483154296875e+02, 2.933646545410156e+02, 2.931947937011719e+02, 2.929747009277344e+02, 2.927386169433594e+02, 2.92490478515625e+02, 2.92369384765625e+02, 2.922045288085938e+02, 2.919931030273438e+02, 2.918215026855469e+02, 2.91806884765625e+02, 2.9322802734375e+02, 2.931557922363281e+02, 2.931516723632812e+02, 2.931504211425781e+02, 2.931500244140625e+02, 2.931515502929688e+02, 2.931507568359375e+02, 2.931497497558594e+02, 2.931470336914062e+02, 2.931485900878906e+02, 2.92842041015625e+02, 2.924392700195312e+02, 2.9224462890625e+02, 2.920799560546875e+02, 2.918739929199219e+02, 2.916872253417969e+02, 2.915281982421875e+02, 2.913815307617188e+02, 2.91283935546875e+02, 2.932504577636719e+02, 2.932510070800781e+02, 2.931591491699219e+02, 2.931542663574219e+02, 2.931724243164062e+02, 2.931414794921875e+02, 2.931454467773438e+02, 2.931117553710938e+02, 2.931666259765625e+02, 2.931106262207031e+02, 2.931492004394531e+02, 2.914584045410156e+02, 2.909927978515625e+02, 2.906929321289062e+02, 2.905982055664062e+02, 2.904139404296875e+02] flo.cor.TAir=[2.931499938964844e+02, 2.9481689453125e+02, 2.946097717285156e+02, 2.945750122070312e+02, 2.945718383789062e+02, 2.944802856445312e+02, 2.936199951171875e+02, 2.941517944335938e+02, 2.946319885253906e+02, 2.948789367675781e+02, 2.949122619628906e+02, 2.954853820800781e+02, 2.956305847167969e+02, 2.956888732910156e+02, 2.947217407226562e+02, 2.940796508789062e+02, 2.946585998535156e+02, 2.952421264648438e+02, 2.951455078125e+02, 2.949645690917969e+02, 2.9485205078125e+02, 2.947956237792969e+02, 2.944840087890625e+02, 2.9438916015625e+02, 2.941174621582031e+02, 2.939912719726562e+02, 2.935505981445312e+02, 2.940292358398438e+02, 2.941489868164062e+02, 2.945650634765625e+02, 2.944032287597656e+02, 2.946923522949219e+02, 2.945993347167969e+02, 2.947476501464844e+02, 2.939014282226562e+02, 2.934285888671875e+02, 2.938960876464844e+02, 2.943172912597656e+02, 2.941702575683594e+02, 2.939866333007812e+02, 2.938274536132812e+02, 2.936423645019531e+02, 2.935619506835938e+02, 2.9338427734375e+02, 2.933663635253906e+02, 2.91912353515625e+02, 2.932954711914062e+02, 2.934456176757812e+02, 2.935826416015625e+02, 2.938477783203125e+02, 2.937421569824219e+02, 2.941687316894531e+02, 2.943531799316406e+02, 2.944665222167969e+02, 2.935218505859375e+02, 2.931773376464844e+02, 2.935838317871094e+02, 2.932235717773438e+02, 2.930209350585938e+02, 2.928041076660156e+02, 2.925395812988281e+02, 2.924835205078125e+02, 2.92329345703125e+02, 2.920531921386719e+02, 2.918462219238281e+02, 2.921716003417969e+02, 2.932292175292969e+02, 2.932806091308594e+02, 2.933612060546875e+02, 2.933996887207031e+02, 2.932972412109375e+02, 2.934769897460938e+02, 2.934985656738281e+02, 2.934963684082031e+02, 2.93146484375e+02, 2.931499328613281e+02, 2.929551391601562e+02, 2.925166320800781e+02, 2.924655151367188e+02, 2.923260498046875e+02, 2.920941772460938e+02, 2.918861083984375e+02, 2.917741394042969e+02, 2.916271667480469e+02, 2.914850769042969e+02, 2.932760620117188e+02, 2.93166259765625e+02, 2.931532592773438e+02, 2.932461853027344e+02, 2.933117065429688e+02, 2.931610412597656e+02, 2.933687438964844e+02, 2.934003295898438e+02, 2.934259948730469e+02, 2.931492309570312e+02, 2.931499328613281e+02, 2.924644165039062e+02, 2.920304565429688e+02, 2.919298400878906e+02, 2.91783935546875e+02, 2.915328674316406e+02] TSetRoo.setPoiHea.y=[2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02] TSetRoo.setPoiCoo.y=[3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02] fanSup.y=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.334674775600433e-01, 3.871071636676788e-01, 3.345645368099213e-01, 3.345568776130676e-01, 3.345696628093719e-01, 3.34614485502243e-01, 3.34605485200882e-01, 3.345961570739746e-01, 3.345898985862732e-01, 3.345857262611389e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.327156841754913e-01, 3.865467011928558e-01, 3.865790069103241e-01, 3.341380059719086e-01, 3.341294825077057e-01, 3.340912163257599e-01, 3.341255187988281e-01, 3.341590464115143e-01, 3.341399133205414e-01, 3.733322024345398e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.326662421226501e-01, 4.32714968919754e-01, 4.328098893165588e-01, 4.330116212368011e-01, 4.966476857662201e-01, 3.871531188488007e-01, 3.871534466743469e-01, 3.345976173877716e-01, 3.342094719409943e-01, 3.598980009555817e-01, 4.141141474246979e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.325427711009979e-01, 4.325425624847412e-01, 4.326287508010864e-01, 4.326544404029846e-01, 4.325379133224487e-01, 4.325909912586212e-01, 4.325306117534637e-01, 4.325300455093384e-01, 4.325220286846161e-01, 4.3265300989151e-01, 4.326015710830688e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.473905265331268e-01, 4.326207637786865e-01, 4.326158165931702e-01, 4.326363503932953e-01, 4.326622784137726e-01, 4.327145516872406e-01, 4.326208531856537e-01, 4.325654208660126e-01, 4.325451254844666e-01, 4.32551771402359e-01, 4.325217306613922e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -cor.vav.y_actual=[9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.914335966110229e-01, 8.197418451309204e-01, 8.138963580131531e-01, 8.143935203552246e-01, 8.135637044906616e-01, 8.106818199157715e-01, 8.112592697143555e-01, 8.118602633476257e-01, 8.122608661651611e-01, 8.125296831130981e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.862580060958862e-01, 8.162597417831421e-01, 8.166658282279968e-01, 8.125367164611816e-01, 8.124593496322632e-01, 8.131219148635864e-01, 8.129547238349915e-01, 8.120088577270508e-01, 8.126179575920105e-01, 8.147675395011902e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.860213160514832e-01, 8.861867785453796e-01, 8.865387439727783e-01, 8.870313167572021e-01, 6.742042899131775e-01, 8.168725967407227e-01, 8.168525099754333e-01, 8.125952482223511e-01, 8.131130933761597e-01, 8.148453235626221e-01, 8.185587525367737e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.893573880195618e-01, 8.895589709281921e-01, 8.866782784461975e-01, 8.857947587966919e-01, 8.898303508758545e-01, 8.879132270812988e-01, 8.900934457778931e-01, 8.900214433670044e-01, 8.901872634887695e-01, 8.858053088188171e-01, 8.879785537719727e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.513457179069519e-01, 8.871968388557434e-01, 8.878870606422424e-01, 8.88322651386261e-01, 8.89165461063385e-01, 8.904874920845032e-01, 8.897173404693604e-01, 8.905860781669617e-01, 8.903897404670715e-01, 8.890973329544067e-01, 8.902348279953003e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01] -sou.vav.y_actual=[9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.914335966110229e-01, 8.197422027587891e-01, 8.13896656036377e-01, 8.143938183784485e-01, 8.135640621185303e-01, 8.106821775436401e-01, 8.112595677375793e-01, 8.118606209754944e-01, 8.122612237930298e-01, 8.12529981136322e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.862580060958862e-01, 8.16260039806366e-01, 8.166661262512207e-01, 8.125370144844055e-01, 8.124597072601318e-01, 8.131222128868103e-01, 8.129550814628601e-01, 8.120092153549194e-01, 8.126182556152344e-01, 8.147678971290588e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.860213160514832e-01, 8.861867785453796e-01, 8.865387439727783e-01, 8.870313167572021e-01, 6.742045879364014e-01, 8.168729543685913e-01, 8.168528079986572e-01, 8.125956058502197e-01, 8.131133913993835e-01, 8.148456811904907e-01, 8.850213289260864e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.893573880195618e-01, 8.895589709281921e-01, 8.866782784461975e-01, 8.857947587966919e-01, 8.898303508758545e-01, 8.879132270812988e-01, 8.900934457778931e-01, 8.900214433670044e-01, 8.901872634887695e-01, 8.858053088188171e-01, 8.879785537719727e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.513457179069519e-01, 8.871968388557434e-01, 8.878870606422424e-01, 8.88322651386261e-01, 8.89165461063385e-01, 8.904874920845032e-01, 8.897173404693604e-01, 8.905860781669617e-01, 8.903897404670715e-01, 8.890973329544067e-01, 8.902348279953003e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01] +cor.vav.y_actual=[9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.914335966110229e-01, 8.197418451309204e-01, 8.138963580131531e-01, 8.143935203552246e-01, 8.135637044906616e-01, 8.106818199157715e-01, 8.112592697143555e-01, 8.118602633476257e-01, 8.122608661651611e-01, 8.125296831130981e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.862580060958862e-01, 8.162597417831421e-01, 8.166658282279968e-01, 8.125367164611816e-01, 8.124593496322632e-01, 8.131219148635864e-01, 8.129547238349915e-01, 8.120088577270508e-01, 8.126179575920105e-01, 8.147675395011902e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.860213160514832e-01, 8.861867785453796e-01, 8.865387439727783e-01, 8.870313167572021e-01, 6.742042303085327e-01, 8.168725967407227e-01, 8.168525099754333e-01, 8.125952482223511e-01, 8.131130933761597e-01, 8.148453235626221e-01, 8.185587525367737e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.893573880195618e-01, 8.895589709281921e-01, 8.866782784461975e-01, 8.857947587966919e-01, 8.898303508758545e-01, 8.879132270812988e-01, 8.900934457778931e-01, 8.900214433670044e-01, 8.901872634887695e-01, 8.858053088188171e-01, 8.879785537719727e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.513457179069519e-01, 8.871968388557434e-01, 8.878870606422424e-01, 8.88322651386261e-01, 8.89165461063385e-01, 8.904874920845032e-01, 8.897173404693604e-01, 8.905860781669617e-01, 8.903897404670715e-01, 8.890973329544067e-01, 8.902348279953003e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01] +sou.vav.y_actual=[9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.914335966110229e-01, 8.197422027587891e-01, 8.13896656036377e-01, 8.143938183784485e-01, 8.135640621185303e-01, 8.106821775436401e-01, 8.112595677375793e-01, 8.118606209754944e-01, 8.122612237930298e-01, 8.12529981136322e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.862580060958862e-01, 8.16260039806366e-01, 8.166661262512207e-01, 8.125370144844055e-01, 8.124597072601318e-01, 8.131222128868103e-01, 8.129550814628601e-01, 8.120092153549194e-01, 8.126182556152344e-01, 8.147678971290588e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.860213160514832e-01, 8.861867785453796e-01, 8.865387439727783e-01, 8.870313167572021e-01, 6.742045283317566e-01, 8.168729543685913e-01, 8.168528079986572e-01, 8.125956058502197e-01, 8.131133913993835e-01, 8.148456811904907e-01, 8.850213289260864e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.893573880195618e-01, 8.895589709281921e-01, 8.866782784461975e-01, 8.857947587966919e-01, 8.898303508758545e-01, 8.879132270812988e-01, 8.900934457778931e-01, 8.900214433670044e-01, 8.901872634887695e-01, 8.858053088188171e-01, 8.879785537719727e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.513457179069519e-01, 8.871968388557434e-01, 8.878870606422424e-01, 8.88322651386261e-01, 8.89165461063385e-01, 8.904874920845032e-01, 8.897173404693604e-01, 8.905860781669617e-01, 8.903897404670715e-01, 8.890973329544067e-01, 8.902348279953003e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01] eas.vav.y_actual=[9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.914335966110229e-01, 8.864182233810425e-01, 7.139631509780884e-01, 7.144065499305725e-01, 7.136661410331726e-01, 7.110812664031982e-01, 7.116008400917053e-01, 7.121407985687256e-01, 7.125001549720764e-01, 7.127410769462585e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.862580060958862e-01, 8.823274374008179e-01, 8.828010559082031e-01, 7.1274733543396e-01, 7.12678074836731e-01, 7.132712006568909e-01, 7.131216526031494e-01, 7.122741341590881e-01, 7.128201127052307e-01, 8.805963397026062e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.860213160514832e-01, 8.861867785453796e-01, 8.865387439727783e-01, 8.870313167572021e-01, 7.309426069259644e-01, 8.830426335334778e-01, 8.830191493034363e-01, 7.128022909164429e-01, 7.132632732391357e-01, 8.806861639022827e-01, 8.850213289260864e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.893573880195618e-01, 8.895589709281921e-01, 8.866782784461975e-01, 8.857947587966919e-01, 8.898303508758545e-01, 8.879132270812988e-01, 8.900934457778931e-01, 8.900214433670044e-01, 8.901872634887695e-01, 8.858053088188171e-01, 8.879785537719727e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.513457179069519e-01, 8.871968388557434e-01, 8.878870606422424e-01, 8.88322651386261e-01, 8.89165461063385e-01, 8.904874920845032e-01, 8.897173404693604e-01, 8.905860781669617e-01, 8.903897404670715e-01, 8.890973329544067e-01, 8.902348279953003e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01] nor.vav.y_actual=[9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.914335966110229e-01, 8.197422027587891e-01, 8.13896656036377e-01, 8.143938183784485e-01, 8.135640621185303e-01, 8.106821775436401e-01, 8.112595677375793e-01, 8.118606209754944e-01, 8.122612237930298e-01, 8.12529981136322e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.862580060958862e-01, 8.16260039806366e-01, 8.166661262512207e-01, 8.125370144844055e-01, 8.124597072601318e-01, 8.131222128868103e-01, 8.129550814628601e-01, 8.120092153549194e-01, 8.126182556152344e-01, 8.805963397026062e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.860213160514832e-01, 8.861867785453796e-01, 8.865387439727783e-01, 8.870313167572021e-01, 7.309426069259644e-01, 8.168729543685913e-01, 8.168528079986572e-01, 8.125956058502197e-01, 8.131133913993835e-01, 8.148456811904907e-01, 8.850213289260864e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.893573880195618e-01, 8.895589709281921e-01, 8.866782784461975e-01, 8.857947587966919e-01, 8.898303508758545e-01, 8.879132270812988e-01, 8.900934457778931e-01, 8.900214433670044e-01, 8.901872634887695e-01, 8.858053088188171e-01, 8.879785537719727e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.513457179069519e-01, 8.871968388557434e-01, 8.878870606422424e-01, 8.88322651386261e-01, 8.89165461063385e-01, 8.904874920845032e-01, 8.897173404693604e-01, 8.905860781669617e-01, 8.903897404670715e-01, 8.890973329544067e-01, 8.902348279953003e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01] wes.vav.y_actual=[9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.914335966110229e-01, 8.864182233810425e-01, 7.139631509780884e-01, 7.144065499305725e-01, 7.136661410331726e-01, 7.110812664031982e-01, 7.116008400917053e-01, 7.121407985687256e-01, 7.125001549720764e-01, 7.127410769462585e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.862580060958862e-01, 8.823274374008179e-01, 8.828010559082031e-01, 7.1274733543396e-01, 7.12678074836731e-01, 7.132712006568909e-01, 7.131216526031494e-01, 7.122741341590881e-01, 7.128201127052307e-01, 7.147397994995117e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.860213160514832e-01, 8.861867785453796e-01, 8.865387439727783e-01, 8.870313167572021e-01, 7.309426069259644e-01, 8.830426335334778e-01, 8.830191493034363e-01, 7.127998471260071e-01, 7.132632732391357e-01, 7.148090600967407e-01, 8.850213289260864e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.893573880195618e-01, 8.895589709281921e-01, 8.866782784461975e-01, 8.857947587966919e-01, 8.898303508758545e-01, 8.879132270812988e-01, 8.900934457778931e-01, 8.900214433670044e-01, 8.901872634887695e-01, 8.858053088188171e-01, 8.879785537719727e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.513457179069519e-01, 8.871968388557434e-01, 8.878870606422424e-01, 8.88322651386261e-01, 8.89165461063385e-01, 8.904874920845032e-01, 8.897173404693604e-01, 8.905860781669617e-01, 8.903897404670715e-01, 8.890973329544067e-01, 8.902348279953003e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01] eco.yOut=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 6.083031892776489e-01, 6.458715200424194e-01, 6.742962598800659e-01, 6.247590184211731e-01, 6.13703727722168e-01, 5.965299606323242e-01, 6.263746619224548e-01, 6.281744837760925e-01, 6.293572187423706e-01, 5.691688656806946e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.50790011882782e-01, 6.061810255050659e-01, 6.722010970115662e-01, 7.705901265144348e-01, 8.934680819511414e-01, 1e+00, 1e+00, 1e+00, 6.964941620826721e-01, 5.937099456787109e-01, 5.713767409324646e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.675907492637634e-01, 5.062292814254761e-01, 5.1198810338974e-01, 5.097960233688354e-01, 5.141540765762329e-01, 5.069226622581482e-01, 5.147679448127747e-01, 5.086426734924316e-01, 4.997090399265289e-01, 5.044126510620117e-01, 5.356156229972839e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.300530195236206e-01, 5.52873969078064e-01, 5.872815251350403e-01, 6.238222718238831e-01, 6.720631718635559e-01, 6.040769219398499e-01, 5.767565369606018e-01, 5.500553250312805e-01, 4.89010751247406e-01, 5.0296550989151e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -TSupSou.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931500549316406e+02, 2.851560363769531e+02, 2.851483459472656e+02, 2.851607360839844e+02, 2.851582641601562e+02, 2.851522521972656e+02, 2.851528015136719e+02, 2.851664733886719e+02, 2.851358642578125e+02, 2.851449584960938e+02, 2.851375732421875e+02, 2.851408081054688e+02, 2.851407470703125e+02, 2.851407165527344e+02, 2.851408996582031e+02, 2.85140869140625e+02, 2.851400756835938e+02, 2.851389465332031e+02, 2.851347961425781e+02, 2.851349182128906e+02, 2.851349182128906e+02, 2.851619873046875e+02, 2.851523742675781e+02, 2.851708374023438e+02, 2.851270141601562e+02, 2.851457824707031e+02, 2.851541748046875e+02, 2.846631469726562e+02, 2.850780639648438e+02, 2.852583312988281e+02, 2.863408203125e+02, 2.855759582519531e+02, 2.855759582519531e+02, 2.855756530761719e+02, 2.855753479003906e+02, 2.855751037597656e+02, 2.855743103027344e+02, 2.855744018554688e+02, 2.855743103027344e+02, 2.8557421875e+02, 2.851454772949219e+02, 2.867994995117188e+02, 2.851870422363281e+02, 2.851557006835938e+02, 2.851760559082031e+02, 2.851591186523438e+02, 2.851544189453125e+02, 2.851162719726562e+02, 2.850985412597656e+02, 2.85138671875e+02, 2.901690368652344e+02, 2.85767578125e+02, 2.857675476074219e+02, 2.857675476074219e+02, 2.857675476074219e+02, 2.85767578125e+02, 2.857674865722656e+02, 2.85767578125e+02, 2.857676086425781e+02, 2.857676391601562e+02, 2.854205932617188e+02, 2.900711059570312e+02, 2.87904052734375e+02, 2.863977966308594e+02, 2.851490173339844e+02, 2.864212646484375e+02, 2.851501770019531e+02, 2.851419982910156e+02, 2.851529541015625e+02, 2.910125732421875e+02, 2.935495910644531e+02, 2.860979309082031e+02, 2.860979309082031e+02, 2.860978393554688e+02, 2.860975952148438e+02, 2.860975952148438e+02, 2.8609765625e+02, 2.860978088378906e+02, 2.860978698730469e+02, 2.860978393554688e+02, 3.015026245117188e+02, 2.947225036621094e+02, 2.904608459472656e+02, 2.934708251953125e+02, 2.925869445800781e+02, 2.908894653320312e+02, 2.89128173828125e+02, 2.9553369140625e+02, 2.940363159179688e+02, 2.973165283203125e+02, 3.036959228515625e+02, 2.873024597167969e+02, 2.873024597167969e+02, 2.873025512695312e+02, 2.873025512695312e+02, 2.873025512695312e+02] -TSupEas.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931500244140625e+02, 2.931500549316406e+02, 2.931500854492188e+02, 2.851560363769531e+02, 2.851483459472656e+02, 2.851607055664062e+02, 2.851582641601562e+02, 2.851523132324219e+02, 2.851528015136719e+02, 2.851664733886719e+02, 2.851358642578125e+02, 2.851449584960938e+02, 2.851375427246094e+02, 2.851409301757812e+02, 2.85140869140625e+02, 2.851408386230469e+02, 2.851410217285156e+02, 2.851409606933594e+02, 2.851401672363281e+02, 2.851390380859375e+02, 2.851348266601562e+02, 2.851349487304688e+02, 2.851349487304688e+02, 2.857985229492188e+02, 2.851523742675781e+02, 2.851708374023438e+02, 2.851269836425781e+02, 2.851457824707031e+02, 2.851541748046875e+02, 2.846637573242188e+02, 2.850772399902344e+02, 2.852582702636719e+02, 2.897305908203125e+02, 2.857724609375e+02, 2.857724914550781e+02, 2.857721557617188e+02, 2.857718811035156e+02, 2.857716369628906e+02, 2.857709045410156e+02, 2.8577099609375e+02, 2.857709045410156e+02, 2.857708129882812e+02, 2.851454772949219e+02, 2.891323547363281e+02, 2.871678466796875e+02, 2.857918395996094e+02, 2.851760559082031e+02, 2.851591186523438e+02, 2.851544189453125e+02, 2.851161193847656e+02, 2.850985107421875e+02, 2.918140869140625e+02, 2.933721618652344e+02, 2.859984130859375e+02, 2.859983825683594e+02, 2.859983825683594e+02, 2.859983825683594e+02, 2.859984436035156e+02, 2.859983520507812e+02, 2.859984130859375e+02, 2.859984436035156e+02, 2.859984741210938e+02, 2.854205932617188e+02, 2.935336303710938e+02, 2.944779052734375e+02, 2.9486962890625e+02, 2.936775512695312e+02, 2.947791748046875e+02, 2.929569396972656e+02, 2.925742492675781e+02, 2.942365417480469e+02, 2.990923461914062e+02, 2.98517333984375e+02, 2.866094055175781e+02, 2.866094055175781e+02, 2.866093139648438e+02, 2.866091613769531e+02, 2.866091613769531e+02, 2.866091918945312e+02, 2.866093139648438e+02, 2.866093139648438e+02, 2.866093139648438e+02, 3.015026245117188e+02, 2.981866149902344e+02, 2.933965454101562e+02, 2.903030700683594e+02, 2.894168090820312e+02, 2.903542175292969e+02, 2.891638793945312e+02, 2.888448486328125e+02, 2.890755310058594e+02, 2.932886962890625e+02, 2.950048828125e+02, 2.862119750976562e+02, 2.862120056152344e+02, 2.862121887207031e+02, 2.862121887207031e+02, 2.862121887207031e+02] -TSupNor.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931500244140625e+02, 2.931500244140625e+02, 2.931500854492188e+02, 2.851560363769531e+02, 2.851483459472656e+02, 2.851607360839844e+02, 2.851582641601562e+02, 2.851522521972656e+02, 2.851528015136719e+02, 2.851664733886719e+02, 2.851358642578125e+02, 2.851449584960938e+02, 2.851375732421875e+02, 2.851408081054688e+02, 2.851407470703125e+02, 2.851407165527344e+02, 2.851408996582031e+02, 2.85140869140625e+02, 2.851400451660156e+02, 2.85138916015625e+02, 2.851347045898438e+02, 2.851348266601562e+02, 2.851348266601562e+02, 2.851619873046875e+02, 2.851523742675781e+02, 2.851708374023438e+02, 2.851270141601562e+02, 2.851457824707031e+02, 2.851541748046875e+02, 2.846631469726562e+02, 2.850780639648438e+02, 2.852583312988281e+02, 2.878973083496094e+02, 2.85622802734375e+02, 2.85622802734375e+02, 2.856224975585938e+02, 2.856221923828125e+02, 2.856219482421875e+02, 2.856211853027344e+02, 2.856212768554688e+02, 2.856211547851562e+02, 2.8562109375e+02, 2.851454772949219e+02, 2.867792358398438e+02, 2.851870422363281e+02, 2.851557006835938e+02, 2.851760559082031e+02, 2.851591186523438e+02, 2.851544189453125e+02, 2.851162719726562e+02, 2.850985412597656e+02, 2.85138671875e+02, 2.903494873046875e+02, 2.857615966796875e+02, 2.857615966796875e+02, 2.857615966796875e+02, 2.857615966796875e+02, 2.857616271972656e+02, 2.857615356445312e+02, 2.857616271972656e+02, 2.857616577148438e+02, 2.857616882324219e+02, 2.854205932617188e+02, 2.978800964355469e+02, 2.883027648925781e+02, 2.870172424316406e+02, 2.906809997558594e+02, 2.877416687011719e+02, 2.9083447265625e+02, 2.901897277832031e+02, 2.923477783203125e+02, 2.906375427246094e+02, 2.936889038085938e+02, 2.861214904785156e+02, 2.861215209960938e+02, 2.861213989257812e+02, 2.861211547851562e+02, 2.861211547851562e+02, 2.861212158203125e+02, 2.861213989257812e+02, 2.861214294433594e+02, 2.861213989257812e+02, 3.015026245117188e+02, 2.940028381347656e+02, 2.901988220214844e+02, 2.882339172363281e+02, 2.870195922851562e+02, 2.884574279785156e+02, 2.864664611816406e+02, 2.859732055664062e+02, 2.86228515625e+02, 2.926565246582031e+02, 2.950152587890625e+02, 2.86231201171875e+02, 2.862312316894531e+02, 2.862314147949219e+02, 2.862314147949219e+02, 2.862314147949219e+02] -TSupWes.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931500244140625e+02, 2.931500549316406e+02, 2.931500854492188e+02, 2.851560363769531e+02, 2.851483459472656e+02, 2.851607055664062e+02, 2.851582641601562e+02, 2.851523132324219e+02, 2.851528015136719e+02, 2.851664733886719e+02, 2.851358642578125e+02, 2.851449584960938e+02, 2.851375427246094e+02, 2.851409301757812e+02, 2.85140869140625e+02, 2.851408386230469e+02, 2.851410217285156e+02, 2.851409912109375e+02, 2.851401672363281e+02, 2.851390075683594e+02, 2.851348876953125e+02, 2.85135009765625e+02, 2.85135009765625e+02, 2.863263549804688e+02, 2.851523742675781e+02, 2.851708374023438e+02, 2.851269836425781e+02, 2.851457824707031e+02, 2.851541748046875e+02, 2.846637573242188e+02, 2.850772399902344e+02, 2.852582702636719e+02, 2.863404846191406e+02, 2.857453308105469e+02, 2.857453308105469e+02, 2.857450256347656e+02, 2.857447509765625e+02, 2.857445068359375e+02, 2.857437744140625e+02, 2.857438659667969e+02, 2.857437744140625e+02, 2.857436828613281e+02, 2.851454772949219e+02, 2.892883605957031e+02, 2.876552429199219e+02, 2.862181091308594e+02, 2.851760559082031e+02, 2.851808471679688e+02, 2.851544189453125e+02, 2.851161193847656e+02, 2.850985107421875e+02, 2.85138671875e+02, 2.913143920898438e+02, 2.858523254394531e+02, 2.85852294921875e+02, 2.85852294921875e+02, 2.85852294921875e+02, 2.858523559570312e+02, 2.858522644042969e+02, 2.858523254394531e+02, 2.858523864746094e+02, 2.858524169921875e+02, 2.854205932617188e+02, 2.915068054199219e+02, 2.899933471679688e+02, 2.891350708007812e+02, 2.885347595214844e+02, 2.895171203613281e+02, 2.876613464355469e+02, 2.872394714355469e+02, 2.874347839355469e+02, 2.917135009765625e+02, 2.933736572265625e+02, 2.860695190429688e+02, 2.860695495605469e+02, 2.860694274902344e+02, 2.860691833496094e+02, 2.860691833496094e+02, 2.860692443847656e+02, 2.860694274902344e+02, 2.860694580078125e+02, 2.860694274902344e+02, 3.015026245117188e+02, 2.937044677734375e+02, 2.91546875e+02, 2.901452026367188e+02, 2.890111694335938e+02, 2.928506774902344e+02, 2.937288818359375e+02, 2.921997985839844e+02, 2.95013427734375e+02, 3.002427673339844e+02, 3.017304992675781e+02, 2.870287475585938e+02, 2.870287780761719e+02, 2.870288696289062e+02, 2.870288696289062e+02, 2.870288696289062e+02] -TSupCor.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931500244140625e+02, 2.931500549316406e+02, 2.931500854492188e+02, 2.851560363769531e+02, 2.851483459472656e+02, 2.851607360839844e+02, 2.851582641601562e+02, 2.851522521972656e+02, 2.851528015136719e+02, 2.851664733886719e+02, 2.851358642578125e+02, 2.851449584960938e+02, 2.851375732421875e+02, 2.851408081054688e+02, 2.851407470703125e+02, 2.851407165527344e+02, 2.851409301757812e+02, 2.85140869140625e+02, 2.851400451660156e+02, 2.851388854980469e+02, 2.851346130371094e+02, 2.851347351074219e+02, 2.851347351074219e+02, 2.851619873046875e+02, 2.851523742675781e+02, 2.851708374023438e+02, 2.851270141601562e+02, 2.851457824707031e+02, 2.851541748046875e+02, 2.846631469726562e+02, 2.850780639648438e+02, 2.852583312988281e+02, 2.863408203125e+02, 2.851347045898438e+02, 2.851347351074219e+02, 2.851343688964844e+02, 2.85134033203125e+02, 2.851337585449219e+02, 2.851328735351562e+02, 2.851329650878906e+02, 2.851328735351562e+02, 2.851327514648438e+02, 2.851454772949219e+02, 2.851524658203125e+02, 2.851870422363281e+02, 2.851557006835938e+02, 2.851760559082031e+02, 2.851591186523438e+02, 2.851544189453125e+02, 2.851162719726562e+02, 2.850985412597656e+02, 2.85138671875e+02, 2.851442260742188e+02, 2.853792419433594e+02, 2.853792114257812e+02, 2.853792114257812e+02, 2.853792114257812e+02, 2.853792724609375e+02, 2.85379150390625e+02, 2.853792419433594e+02, 2.853793029785156e+02, 2.853793334960938e+02, 2.854205932617188e+02, 2.851492919921875e+02, 2.851490478515625e+02, 2.851497192382812e+02, 2.851492614746094e+02, 2.851501159667969e+02, 2.851501770019531e+02, 2.851419982910156e+02, 2.851529541015625e+02, 2.864939270019531e+02, 2.890791931152344e+02, 2.855856323242188e+02, 2.855856628417969e+02, 2.855855102539062e+02, 2.855852355957031e+02, 2.855852355957031e+02, 2.855853271484375e+02, 2.855855102539062e+02, 2.855855712890625e+02, 2.855855407714844e+02, 3.015026245117188e+02, 2.851460571289062e+02, 2.853564453125e+02, 2.851710510253906e+02, 2.851495361328125e+02, 2.85150634765625e+02, 2.851433715820312e+02, 2.851480712890625e+02, 2.851377868652344e+02, 2.875667419433594e+02, 2.898137817382812e+02, 2.856496887207031e+02, 2.856497192382812e+02, 2.856499328613281e+02, 2.856499328613281e+02, 2.856499328613281e+02] -res.EFan=[0e+00, -3.474818655035961e-08, -3.475317811307832e-08, -3.474992382734854e-08, -3.475455301327202e-08, -3.476382914868736e-08, 2.057585205078125e+03, 3.262070068359375e+03, 4.1226328125e+03, 4.8252529296875e+03, 5.52785546875e+03, 6.23070361328125e+03, 6.93359716796875e+03, 7.63647216796875e+03, 8.339271484375e+03, 9.0420400390625e+03, 9.62827734375e+03, 9.62827734375e+03, 9.62827734375e+03, 9.62827734375e+03, 9.62827734375e+03, 9.62827734375e+03, 9.62827734375e+03, 9.62827734375e+03, 9.62827734375e+03, 9.62827734375e+03, 1.10203740234375e+04, 1.2346197265625e+04, 1.34401689453125e+04, 1.4361220703125e+04, 1.5061283203125e+04, 1.5761244140625e+04, 1.6461216796875e+04, 1.716128515625e+04, 1.786151953125e+04, 1.8670078125e+04, 1.9769771484375e+04, 1.9769771484375e+04, 1.9769771484375e+04, 1.9769771484375e+04, 1.9769771484375e+04, 1.9769771484375e+04, 1.9769771484375e+04, 1.9769771484375e+04, 1.9769771484375e+04, 2.0391458984375e+04, 2.192864453125e+04, 2.346638671875e+04, 2.5006154296875e+04, 2.6711228515625e+04, 2.798207421875e+04, 2.9081103515625e+04, 3.014378515625e+04, 3.0845583984375e+04, 3.1624732421875e+04, 3.28784296875e+04, 3.413066015625e+04, 3.413066015625e+04, 3.413066015625e+04, 3.413066015625e+04, 3.413066015625e+04, 3.413066015625e+04, 3.413066015625e+04, 3.413066015625e+04, 3.413066015625e+04, 3.4757859375e+04, 3.629344921875e+04, 3.78294296875e+04, 3.936607421875e+04, 4.090246875e+04, 4.243814453125e+04, 4.39737734375e+04, 4.55092265625e+04, 4.7044609375e+04, 4.858025390625e+04, 5.011682421875e+04, 5.139821484375e+04, 5.139821484375e+04, 5.139821484375e+04, 5.139821484375e+04, 5.139821484375e+04, 5.139821484375e+04, 5.139821484375e+04, 5.139821484375e+04, 5.139821484375e+04, 5.208751953125e+04, 5.3626765625e+04, 5.5163234375e+04, 5.66996171875e+04, 5.823609765625e+04, 5.9773109375e+04, 6.1310109375e+04, 6.284618359375e+04, 6.438190625e+04, 6.59174375e+04, 6.745296875e+04, 6.87337265625e+04, 6.87337265625e+04, 6.87337265625e+04, 6.87337265625e+04, 6.87337265625e+04] -res.EHea=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 4.4915478515625e+03, 4.7516845703125e+03, 4.7516845703125e+03, 4.7516845703125e+03, 4.7516845703125e+03, 4.7516845703125e+03, 4.7516845703125e+03, 5.617734375e+03, 5.692259765625e+03, 7.20988916015625e+03, 2.2258720703125e+04, 2.2258720703125e+04, 2.2258720703125e+04, 2.2258720703125e+04, 2.2258720703125e+04, 2.2258720703125e+04, 2.2258720703125e+04, 2.2258720703125e+04, 2.2258720703125e+04, 2.2258720703125e+04, 6.397738671875e+04, 7.30170703125e+04, 7.6139328125e+04, 7.675328125e+04, 7.682465625e+04, 7.68246640625e+04, 7.68246640625e+04, 7.68246640625e+04, 7.84699921875e+04, 9.8878171875e+04, 1.25434265625e+05, 1.25434265625e+05, 1.25434265625e+05, 1.25434265625e+05, 1.25434265625e+05, 1.25434265625e+05, 1.25434265625e+05, 1.25434265625e+05, 1.25434265625e+05, 1.388849375e+05, 2.0409259375e+05, 2.3183725e+05, 2.5171378125e+05, 2.6890034375e+05, 2.9132890625e+05, 3.0731159375e+05, 3.2362359375e+05, 3.415206875e+05, 3.7434515625e+05, 4.204666875e+05, 4.63592375e+05, 4.63592375e+05, 4.63592375e+05, 4.63592375e+05, 4.63592375e+05, 4.63592375e+05, 4.63592375e+05, 4.63592375e+05, 4.63592375e+05, 4.842698125e+05, 5.5625225e+05, 5.920616875e+05, 6.188281875e+05, 6.406458125e+05, 6.6553e+05, 6.83134875e+05, 7.057291875e+05, 7.31911625e+05, 7.719491875e+05, 8.341868125e+05, 8.942990625e+05, 8.942990625e+05, 8.942990625e+05, 8.942990625e+05, 8.942990625e+05] -res.ECoo=[0e+00, 3.025558888912201e-01, 3.688874244689941e-01, 3.502546846866608e-01, 3.57288122177124e-01, 4.125585854053497e-01, -4.608134765625e+03, -1.21713251953125e+04, -1.932091015625e+04, -3.01792421875e+04, -5.233415625e+04, -8.39926875e+04, -1.18152890625e+05, -1.58754953125e+05, -1.90758375e+05, -2.1353475e+05, -2.2374265625e+05, -2.2374265625e+05, -2.23742640625e+05, -2.23742609375e+05, -2.23742640625e+05, -2.2374259375e+05, -2.23742546875e+05, -2.23742546875e+05, -2.2374259375e+05, -2.23742578125e+05, -2.23626890625e+05, -2.2363e+05, -2.23631703125e+05, -2.2363175e+05, -2.23633375e+05, -2.236341875e+05, -2.23588359375e+05, -2.23637125e+05, -2.2364378125e+05, -2.23740078125e+05, -2.23671296875e+05, -2.236713125e+05, -2.23671296875e+05, -2.2367128125e+05, -2.23671234375e+05, -2.2367125e+05, -2.23671203125e+05, -2.2367125e+05, -2.23671265625e+05, -2.238415625e+05, -2.2384228125e+05, -2.23845375e+05, -2.2384246875e+05, -2.23831078125e+05, -2.25906015625e+05, -2.3282265625e+05, -2.4054796875e+05, -2.408365e+05, -2.40838265625e+05, -2.4083428125e+05, -2.4087821875e+05, -2.40878203125e+05, -2.408781875e+05, -2.408781875e+05, -2.4087815625e+05, -2.4087815625e+05, -2.40878125e+05, -2.4087809375e+05, -2.40878078125e+05, -2.408528125e+05, -2.40833078125e+05, -2.4083303125e+05, -2.4083309375e+05, -2.408330625e+05, -2.4083315625e+05, -2.4083315625e+05, -2.4083240625e+05, -2.4083340625e+05, -2.4083309375e+05, -2.40833890625e+05, -2.4087965625e+05, -2.408795625e+05, -2.4087946875e+05, -2.4087946875e+05, -2.408794375e+05, -2.40879359375e+05, -2.40879234375e+05, -2.40879125e+05, -2.40879171875e+05, -2.42324890625e+05, -2.40832796875e+05, -2.4083365625e+05, -2.40835078125e+05, -2.40833125e+05, -2.40833140625e+05, -2.4083253125e+05, -2.4083296875e+05, -2.40832015625e+05, -2.4083175e+05, -2.40833140625e+05, -2.4088015625e+05, -2.40880140625e+05, -2.4088e+05, -2.40879953125e+05, -2.408799375e+05] +TSupSou.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931500549316406e+02, 2.851560363769531e+02, 2.851483459472656e+02, 2.851607360839844e+02, 2.851582641601562e+02, 2.851522521972656e+02, 2.851528015136719e+02, 2.851664733886719e+02, 2.851358642578125e+02, 2.851449584960938e+02, 2.851375732421875e+02, 2.851408081054688e+02, 2.851407470703125e+02, 2.851407165527344e+02, 2.851409606933594e+02, 2.851408996582031e+02, 2.8514013671875e+02, 2.851387023925781e+02, 2.851347045898438e+02, 2.851349487304688e+02, 2.851349487304688e+02, 2.851619873046875e+02, 2.851523742675781e+02, 2.851708374023438e+02, 2.851270141601562e+02, 2.851457824707031e+02, 2.851541748046875e+02, 2.846631469726562e+02, 2.85078369140625e+02, 2.852583312988281e+02, 2.863408203125e+02, 2.855759582519531e+02, 2.855759582519531e+02, 2.855756530761719e+02, 2.855754089355469e+02, 2.855751342773438e+02, 2.855743713378906e+02, 2.85574462890625e+02, 2.855743408203125e+02, 2.855741271972656e+02, 2.851454772949219e+02, 2.867994995117188e+02, 2.851870422363281e+02, 2.851557006835938e+02, 2.851760559082031e+02, 2.851591186523438e+02, 2.851544189453125e+02, 2.851162719726562e+02, 2.850985412597656e+02, 2.85138671875e+02, 2.901690368652344e+02, 2.85767578125e+02, 2.857675476074219e+02, 2.857675476074219e+02, 2.857675476074219e+02, 2.85767578125e+02, 2.857674865722656e+02, 2.85767578125e+02, 2.857676086425781e+02, 2.857676391601562e+02, 2.854205932617188e+02, 2.900710754394531e+02, 2.87904052734375e+02, 2.863977966308594e+02, 2.851490173339844e+02, 2.864212646484375e+02, 2.851501770019531e+02, 2.851419982910156e+02, 2.851529541015625e+02, 2.910125732421875e+02, 2.935495910644531e+02, 2.860979309082031e+02, 2.860979309082031e+02, 2.860977783203125e+02, 2.860975646972656e+02, 2.860975646972656e+02, 2.860976257324219e+02, 2.860978088378906e+02, 2.860978698730469e+02, 2.860978393554688e+02, 3.015026245117188e+02, 2.947225036621094e+02, 2.904608459472656e+02, 2.934708251953125e+02, 2.925869445800781e+02, 2.908894653320312e+02, 2.89128173828125e+02, 2.9553369140625e+02, 2.940363159179688e+02, 2.973165283203125e+02, 3.036959228515625e+02, 2.873019409179688e+02, 2.873019409179688e+02, 2.873019104003906e+02, 2.873019104003906e+02, 2.873019104003906e+02] +TSupEas.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931500244140625e+02, 2.931500549316406e+02, 2.931500854492188e+02, 2.851560363769531e+02, 2.851483459472656e+02, 2.851607055664062e+02, 2.851582641601562e+02, 2.851523132324219e+02, 2.851528015136719e+02, 2.851664733886719e+02, 2.851358642578125e+02, 2.851449584960938e+02, 2.851375427246094e+02, 2.851409301757812e+02, 2.85140869140625e+02, 2.851408386230469e+02, 2.851410827636719e+02, 2.851409912109375e+02, 2.851402282714844e+02, 2.851387634277344e+02, 2.851347351074219e+02, 2.851349792480469e+02, 2.851349792480469e+02, 2.857985229492188e+02, 2.851523742675781e+02, 2.851708374023438e+02, 2.851269836425781e+02, 2.851457824707031e+02, 2.851541748046875e+02, 2.846637573242188e+02, 2.850774841308594e+02, 2.852582702636719e+02, 2.897305908203125e+02, 2.857724609375e+02, 2.857724914550781e+02, 2.857721557617188e+02, 2.857719421386719e+02, 2.857716979980469e+02, 2.857709350585938e+02, 2.857710266113281e+02, 2.857709350585938e+02, 2.857707214355469e+02, 2.851454772949219e+02, 2.891323547363281e+02, 2.871678466796875e+02, 2.857918395996094e+02, 2.851760559082031e+02, 2.851591186523438e+02, 2.851544189453125e+02, 2.851161193847656e+02, 2.850985107421875e+02, 2.918140869140625e+02, 2.933721618652344e+02, 2.859984130859375e+02, 2.859983825683594e+02, 2.859983825683594e+02, 2.859983825683594e+02, 2.859984436035156e+02, 2.859983520507812e+02, 2.859984130859375e+02, 2.859984436035156e+02, 2.859984741210938e+02, 2.854205932617188e+02, 2.935336303710938e+02, 2.944779052734375e+02, 2.9486962890625e+02, 2.936775512695312e+02, 2.947791748046875e+02, 2.929569396972656e+02, 2.925742492675781e+02, 2.942365417480469e+02, 2.990923461914062e+02, 2.98517333984375e+02, 2.866094055175781e+02, 2.866094055175781e+02, 2.866092834472656e+02, 2.86609130859375e+02, 2.86609130859375e+02, 2.866091613769531e+02, 2.866093139648438e+02, 2.866093139648438e+02, 2.866093139648438e+02, 3.015026245117188e+02, 2.981866149902344e+02, 2.933965454101562e+02, 2.903030700683594e+02, 2.894168090820312e+02, 2.903542175292969e+02, 2.891638793945312e+02, 2.888448486328125e+02, 2.890755310058594e+02, 2.932886962890625e+02, 2.950048828125e+02, 2.862117004394531e+02, 2.862117309570312e+02, 2.86211669921875e+02, 2.862117004394531e+02, 2.862117004394531e+02] +TSupNor.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931500244140625e+02, 2.931500244140625e+02, 2.931500854492188e+02, 2.851560363769531e+02, 2.851483459472656e+02, 2.851607360839844e+02, 2.851582641601562e+02, 2.851522521972656e+02, 2.851528015136719e+02, 2.851664733886719e+02, 2.851358642578125e+02, 2.851449584960938e+02, 2.851375732421875e+02, 2.851408081054688e+02, 2.851407470703125e+02, 2.851407165527344e+02, 2.851409606933594e+02, 2.851408996582031e+02, 2.851401062011719e+02, 2.851386413574219e+02, 2.851346130371094e+02, 2.851348876953125e+02, 2.851348876953125e+02, 2.851619873046875e+02, 2.851523742675781e+02, 2.851708374023438e+02, 2.851270141601562e+02, 2.851457824707031e+02, 2.851541748046875e+02, 2.846631469726562e+02, 2.85078369140625e+02, 2.852583312988281e+02, 2.878973083496094e+02, 2.85622802734375e+02, 2.85622802734375e+02, 2.856224975585938e+02, 2.856222534179688e+02, 2.856220092773438e+02, 2.856212158203125e+02, 2.856213073730469e+02, 2.856212158203125e+02, 2.856210021972656e+02, 2.851454772949219e+02, 2.867792358398438e+02, 2.851870422363281e+02, 2.851557006835938e+02, 2.851760559082031e+02, 2.851591186523438e+02, 2.851544189453125e+02, 2.851162719726562e+02, 2.850985412597656e+02, 2.85138671875e+02, 2.903494873046875e+02, 2.857615966796875e+02, 2.857615966796875e+02, 2.857615966796875e+02, 2.857615966796875e+02, 2.857616271972656e+02, 2.857615356445312e+02, 2.857615966796875e+02, 2.857616577148438e+02, 2.857616882324219e+02, 2.854205932617188e+02, 2.978800964355469e+02, 2.883027648925781e+02, 2.870172424316406e+02, 2.906809997558594e+02, 2.877416687011719e+02, 2.9083447265625e+02, 2.901897277832031e+02, 2.923477783203125e+02, 2.906375122070312e+02, 2.936889038085938e+02, 2.861214904785156e+02, 2.861215209960938e+02, 2.86121337890625e+02, 2.861211547851562e+02, 2.861211547851562e+02, 2.861212158203125e+02, 2.861213989257812e+02, 2.861214294433594e+02, 2.861213989257812e+02, 3.015026245117188e+02, 2.940028381347656e+02, 2.901988220214844e+02, 2.882339172363281e+02, 2.870195922851562e+02, 2.884574279785156e+02, 2.864664611816406e+02, 2.859732055664062e+02, 2.86228515625e+02, 2.926565246582031e+02, 2.950152587890625e+02, 2.8623095703125e+02, 2.8623095703125e+02, 2.862309265136719e+02, 2.862309265136719e+02, 2.862309265136719e+02] +TSupWes.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931500244140625e+02, 2.931500549316406e+02, 2.931500854492188e+02, 2.851560363769531e+02, 2.851483459472656e+02, 2.851607055664062e+02, 2.851582641601562e+02, 2.851523132324219e+02, 2.851528015136719e+02, 2.851664733886719e+02, 2.851358642578125e+02, 2.851449584960938e+02, 2.851375427246094e+02, 2.851409301757812e+02, 2.85140869140625e+02, 2.851408386230469e+02, 2.851410827636719e+02, 2.851410217285156e+02, 2.851402282714844e+02, 2.851387634277344e+02, 2.851347961425781e+02, 2.851350708007812e+02, 2.851350708007812e+02, 2.863263244628906e+02, 2.851523742675781e+02, 2.851708374023438e+02, 2.851269836425781e+02, 2.851457824707031e+02, 2.851541748046875e+02, 2.846637573242188e+02, 2.850774841308594e+02, 2.852582702636719e+02, 2.863404846191406e+02, 2.857453308105469e+02, 2.857453308105469e+02, 2.857450256347656e+02, 2.857447814941406e+02, 2.857445678710938e+02, 2.857438354492188e+02, 2.857439270019531e+02, 2.857438354492188e+02, 2.857436218261719e+02, 2.851454772949219e+02, 2.892883605957031e+02, 2.876552429199219e+02, 2.862181091308594e+02, 2.851760559082031e+02, 2.851808471679688e+02, 2.851544189453125e+02, 2.851161193847656e+02, 2.850985107421875e+02, 2.85138671875e+02, 2.913143920898438e+02, 2.858523254394531e+02, 2.858523254394531e+02, 2.85852294921875e+02, 2.85852294921875e+02, 2.858523559570312e+02, 2.858522644042969e+02, 2.858523254394531e+02, 2.858523559570312e+02, 2.858524169921875e+02, 2.854205932617188e+02, 2.915068054199219e+02, 2.899933471679688e+02, 2.891350708007812e+02, 2.885347595214844e+02, 2.895171203613281e+02, 2.876613464355469e+02, 2.872394714355469e+02, 2.874347839355469e+02, 2.917135009765625e+02, 2.933736572265625e+02, 2.860695190429688e+02, 2.860695495605469e+02, 2.860693664550781e+02, 2.860691833496094e+02, 2.860691528320312e+02, 2.860692443847656e+02, 2.860694274902344e+02, 2.860694885253906e+02, 2.860694274902344e+02, 3.015026245117188e+02, 2.937044677734375e+02, 2.91546875e+02, 2.901452026367188e+02, 2.890111694335938e+02, 2.928506774902344e+02, 2.937288818359375e+02, 2.921997985839844e+02, 2.95013427734375e+02, 3.002427673339844e+02, 3.017304992675781e+02, 2.870282897949219e+02, 2.870283203125e+02, 2.870282897949219e+02, 2.870282897949219e+02, 2.870282897949219e+02] +TSupCor.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931500244140625e+02, 2.931500244140625e+02, 2.931500549316406e+02, 2.931500854492188e+02, 2.851560363769531e+02, 2.851483459472656e+02, 2.851607360839844e+02, 2.851582641601562e+02, 2.851522521972656e+02, 2.851528015136719e+02, 2.851664733886719e+02, 2.851358642578125e+02, 2.851449584960938e+02, 2.851375732421875e+02, 2.851408081054688e+02, 2.851407470703125e+02, 2.851407165527344e+02, 2.851409606933594e+02, 2.851408996582031e+02, 2.851401062011719e+02, 2.851386413574219e+02, 2.85134521484375e+02, 2.851347961425781e+02, 2.851347961425781e+02, 2.851619873046875e+02, 2.851523742675781e+02, 2.851708374023438e+02, 2.851270141601562e+02, 2.851457824707031e+02, 2.851541748046875e+02, 2.846631469726562e+02, 2.85078369140625e+02, 2.852583312988281e+02, 2.863408203125e+02, 2.851347045898438e+02, 2.851347045898438e+02, 2.851343688964844e+02, 2.851340942382812e+02, 2.851338195800781e+02, 2.851329345703125e+02, 2.851330261230469e+02, 2.851329345703125e+02, 2.851326904296875e+02, 2.851454772949219e+02, 2.851524658203125e+02, 2.851870422363281e+02, 2.851557006835938e+02, 2.851760559082031e+02, 2.851591186523438e+02, 2.851544189453125e+02, 2.851162719726562e+02, 2.850985412597656e+02, 2.85138671875e+02, 2.851442260742188e+02, 2.853792419433594e+02, 2.853792114257812e+02, 2.853792114257812e+02, 2.853792114257812e+02, 2.853792724609375e+02, 2.85379150390625e+02, 2.853792419433594e+02, 2.853792724609375e+02, 2.853793334960938e+02, 2.854205932617188e+02, 2.851492919921875e+02, 2.851490478515625e+02, 2.851497192382812e+02, 2.851492614746094e+02, 2.851501159667969e+02, 2.851501770019531e+02, 2.851419982910156e+02, 2.851529541015625e+02, 2.864939270019531e+02, 2.890791931152344e+02, 2.855856323242188e+02, 2.855856628417969e+02, 2.8558544921875e+02, 2.85585205078125e+02, 2.85585205078125e+02, 2.855852966308594e+02, 2.855855102539062e+02, 2.855855712890625e+02, 2.855855407714844e+02, 3.015026245117188e+02, 2.851460571289062e+02, 2.853564453125e+02, 2.851710510253906e+02, 2.851495361328125e+02, 2.85150634765625e+02, 2.851433715820312e+02, 2.851480712890625e+02, 2.851377868652344e+02, 2.875667419433594e+02, 2.898137817382812e+02, 2.856495666503906e+02, 2.856495666503906e+02, 2.856495056152344e+02, 2.856495361328125e+02, 2.856495361328125e+02] +res.EFan=[0e+00, -3.474818655035961e-08, -3.475317811307832e-08, -3.474992382734854e-08, -3.475455301327202e-08, -3.476382914868736e-08, 2.057585205078125e+03, 3.262070068359375e+03, 4.1226328125e+03, 4.8252529296875e+03, 5.52785546875e+03, 6.23070361328125e+03, 6.93359716796875e+03, 7.63647216796875e+03, 8.339271484375e+03, 9.0420400390625e+03, 9.62827734375e+03, 9.62827734375e+03, 9.62827734375e+03, 9.62827734375e+03, 9.62827734375e+03, 9.62827734375e+03, 9.62827734375e+03, 9.62827734375e+03, 9.62827734375e+03, 9.62827734375e+03, 1.10203740234375e+04, 1.23461962890625e+04, 1.34401689453125e+04, 1.43612197265625e+04, 1.50612822265625e+04, 1.57612431640625e+04, 1.646121484375e+04, 1.716128515625e+04, 1.7861517578125e+04, 1.8670078125e+04, 1.9769771484375e+04, 1.9769771484375e+04, 1.9769771484375e+04, 1.9769771484375e+04, 1.9769771484375e+04, 1.9769771484375e+04, 1.9769771484375e+04, 1.9769771484375e+04, 1.9769771484375e+04, 2.039145703125e+04, 2.192864453125e+04, 2.346638671875e+04, 2.5006154296875e+04, 2.6711228515625e+04, 2.798207421875e+04, 2.9081103515625e+04, 3.014378515625e+04, 3.0845583984375e+04, 3.162473046875e+04, 3.28784296875e+04, 3.413066015625e+04, 3.413066015625e+04, 3.413066015625e+04, 3.413066015625e+04, 3.413066015625e+04, 3.413066015625e+04, 3.413066015625e+04, 3.413066015625e+04, 3.413066015625e+04, 3.4757859375e+04, 3.629344921875e+04, 3.78294296875e+04, 3.936607421875e+04, 4.090246875e+04, 4.243814453125e+04, 4.39737734375e+04, 4.55092265625e+04, 4.7044609375e+04, 4.858025390625e+04, 5.011682421875e+04, 5.139821484375e+04, 5.139821484375e+04, 5.139821484375e+04, 5.139821484375e+04, 5.139821484375e+04, 5.139821484375e+04, 5.139821484375e+04, 5.139821484375e+04, 5.139821484375e+04, 5.208751953125e+04, 5.362676171875e+04, 5.5163234375e+04, 5.66996171875e+04, 5.823609375e+04, 5.9773109375e+04, 6.1310109375e+04, 6.28461796875e+04, 6.438190625e+04, 6.59174375e+04, 6.745296875e+04, 6.87337265625e+04, 6.87337265625e+04, 6.87337265625e+04, 6.87337265625e+04, 6.87337265625e+04] +res.EHea=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 1.616738433837891e+02, 4.491546875e+03, 4.75168212890625e+03, 4.75168212890625e+03, 4.75168212890625e+03, 4.75168212890625e+03, 4.75168212890625e+03, 4.75168212890625e+03, 5.61786865234375e+03, 5.69226611328125e+03, 7.20989306640625e+03, 2.2258734375e+04, 2.2258734375e+04, 2.2258734375e+04, 2.2258734375e+04, 2.2258734375e+04, 2.2258734375e+04, 2.2258734375e+04, 2.2258734375e+04, 2.2258734375e+04, 2.2258734375e+04, 6.397739453125e+04, 7.30170859375e+04, 7.61393359375e+04, 7.67532890625e+04, 7.6824671875e+04, 7.6824671875e+04, 7.6824671875e+04, 7.6824671875e+04, 7.847e+04, 9.88781796875e+04, 1.2543428125e+05, 1.2543428125e+05, 1.2543428125e+05, 1.2543428125e+05, 1.2543428125e+05, 1.2543428125e+05, 1.2543428125e+05, 1.2543428125e+05, 1.2543428125e+05, 1.38884953125e+05, 2.04092546875e+05, 2.31837203125e+05, 2.51713734375e+05, 2.6890028125e+05, 2.91328875e+05, 3.073115625e+05, 3.2362353125e+05, 3.4152065625e+05, 3.74345125e+05, 4.2046665625e+05, 4.6359234375e+05, 4.6359234375e+05, 4.6359234375e+05, 4.6359234375e+05, 4.6359234375e+05, 4.6359234375e+05, 4.6359234375e+05, 4.6359234375e+05, 4.6359234375e+05, 4.8426978125e+05, 5.5625225e+05, 5.92061625e+05, 6.188281875e+05, 6.406458125e+05, 6.6553e+05, 6.83134875e+05, 7.057291875e+05, 7.31911625e+05, 7.719491875e+05, 8.341868125e+05, 8.942990625e+05, 8.942990625e+05, 8.942990625e+05, 8.942990625e+05, 8.942990625e+05] +res.ECoo=[0e+00, 3.025558888912201e-01, 3.688874244689941e-01, 3.502546846866608e-01, 3.57288122177124e-01, 4.125585854053497e-01, -4.608134765625e+03, -1.21713251953125e+04, -1.932091015625e+04, -3.0179240234375e+04, -5.233415625e+04, -8.39926875e+04, -1.18152890625e+05, -1.58754953125e+05, -1.90758375e+05, -2.1353475e+05, -2.2374265625e+05, -2.2374265625e+05, -2.23742640625e+05, -2.23742609375e+05, -2.23742625e+05, -2.2374259375e+05, -2.23742546875e+05, -2.23742546875e+05, -2.2374259375e+05, -2.23742578125e+05, -2.23626890625e+05, -2.2363e+05, -2.23631703125e+05, -2.2363175e+05, -2.23633375e+05, -2.236341875e+05, -2.23588359375e+05, -2.23637234375e+05, -2.2364378125e+05, -2.23740078125e+05, -2.23671296875e+05, -2.236713125e+05, -2.23671296875e+05, -2.2367128125e+05, -2.23671234375e+05, -2.2367125e+05, -2.23671203125e+05, -2.2367125e+05, -2.23671265625e+05, -2.23841578125e+05, -2.23842296875e+05, -2.23845375e+05, -2.2384246875e+05, -2.2383109375e+05, -2.25906015625e+05, -2.3282265625e+05, -2.40547984375e+05, -2.408365e+05, -2.40838265625e+05, -2.40834296875e+05, -2.40878234375e+05, -2.4087821875e+05, -2.40878203125e+05, -2.408781875e+05, -2.4087815625e+05, -2.4087815625e+05, -2.40878125e+05, -2.40878109375e+05, -2.40878078125e+05, -2.408528125e+05, -2.40833078125e+05, -2.40833046875e+05, -2.4083309375e+05, -2.408330625e+05, -2.4083315625e+05, -2.4083315625e+05, -2.4083240625e+05, -2.40833421875e+05, -2.4083309375e+05, -2.40833890625e+05, -2.4087965625e+05, -2.408795625e+05, -2.4087946875e+05, -2.40879484375e+05, -2.40879453125e+05, -2.40879359375e+05, -2.40879234375e+05, -2.40879140625e+05, -2.408791875e+05, -2.42324890625e+05, -2.40832796875e+05, -2.40833671875e+05, -2.40835078125e+05, -2.40833125e+05, -2.4083315625e+05, -2.40832546875e+05, -2.4083296875e+05, -2.4083203125e+05, -2.40831765625e+05, -2.40833140625e+05, -2.40880171875e+05, -2.4088015625e+05, -2.4088e+05, -2.4087996875e+05, -2.40879953125e+05] diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_ThermalZones_EnergyPlus_Examples_SmallOffice_ASHRAE2006Summer.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_ThermalZones_EnergyPlus_Examples_SmallOffice_ASHRAE2006Summer.txt index 56ee527f35b..275c1c1a106 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_ThermalZones_EnergyPlus_Examples_SmallOffice_ASHRAE2006Summer.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_ThermalZones_EnergyPlus_Examples_SmallOffice_ASHRAE2006Summer.txt @@ -1,4 +1,4 @@ -last-generated=2021-01-25 +last-generated=2021-02-17 statistics-initialization= { "linear": "0, 0, 0, 0, 0, 4", @@ -15,23 +15,23 @@ statistics-simulation= time=[1.6848e+07, 1.728e+07] flo.sou.TAir=[2.931499938964844e+02, 2.9697021484375e+02, 2.971017150878906e+02, 2.971054077148438e+02, 2.970764465332031e+02, 2.974595642089844e+02, 2.959360046386719e+02, 2.961387939453125e+02, 2.963548278808594e+02, 2.964184875488281e+02, 2.963728942871094e+02, 2.964190979003906e+02, 2.966220703125e+02, 2.96751708984375e+02, 2.966689147949219e+02, 2.963193359375e+02, 2.972256164550781e+02, 2.976704711914062e+02, 2.978672485351562e+02, 2.980436706542969e+02, 2.981523742675781e+02, 2.981026611328125e+02, 2.981071472167969e+02, 2.981255798339844e+02, 2.981267395019531e+02, 2.98374267578125e+02, 2.964380493164062e+02, 2.963936462402344e+02, 2.9641552734375e+02, 2.964105834960938e+02, 2.964479064941406e+02, 2.964996948242188e+02, 2.96559326171875e+02, 2.965572814941406e+02, 2.965390319824219e+02, 2.964826965332031e+02, 2.97638916015625e+02, 2.984692077636719e+02, 2.986587524414062e+02, 2.987146301269531e+02, 2.988625793457031e+02, 2.989067687988281e+02, 2.989043273925781e+02, 2.988943176269531e+02, 2.989164428710938e+02, 2.991185607910156e+02, 2.974588317871094e+02, 2.971675415039062e+02, 2.971590576171875e+02, 2.971626892089844e+02, 2.971755981445312e+02, 2.971494445800781e+02, 2.971537170410156e+02, 2.971459045410156e+02, 2.971333923339844e+02, 2.971320190429688e+02, 2.98489990234375e+02, 2.994828491210938e+02, 2.996373596191406e+02, 2.996107177734375e+02, 2.996082153320312e+02, 2.995732116699219e+02, 2.995354309082031e+02, 2.995230712890625e+02, 2.994788513183594e+02, 2.996975402832031e+02, 2.974306945800781e+02, 2.971595153808594e+02, 2.971587524414062e+02, 2.971568298339844e+02, 2.971565856933594e+02, 2.971490783691406e+02, 2.971471252441406e+02, 2.971505432128906e+02, 2.9716064453125e+02, 2.971256103515625e+02, 2.986036987304688e+02, 2.995611572265625e+02, 2.997031860351562e+02, 2.997208862304688e+02, 2.997100830078125e+02, 2.996954956054688e+02, 2.996259460449219e+02, 2.995911560058594e+02, 2.995839233398438e+02, 2.997210083007812e+02, 2.974228515625e+02, 2.971613159179688e+02, 2.971630859375e+02, 2.971567993164062e+02, 2.971575927734375e+02, 2.971766052246094e+02, 2.972272033691406e+02, 2.971060180664062e+02, 2.971193237304688e+02, 2.971333923339844e+02, 2.984930419921875e+02, 2.994038391113281e+02, 2.995488586425781e+02, 2.995823974609375e+02, 2.995821228027344e+02] flo.eas.TAir=[2.931499938964844e+02, 2.969346313476562e+02, 2.969638061523438e+02, 2.969761962890625e+02, 2.972120056152344e+02, 2.981019287109375e+02, 2.967130126953125e+02, 2.967034912109375e+02, 2.968428955078125e+02, 2.967137451171875e+02, 2.964608764648438e+02, 2.964566650390625e+02, 2.965333557128906e+02, 2.9660595703125e+02, 2.964423217773438e+02, 2.962278442382812e+02, 2.971610717773438e+02, 2.977618713378906e+02, 2.980162658691406e+02, 2.981615295410156e+02, 2.982747802734375e+02, 2.982479248046875e+02, 2.982390747070312e+02, 2.98262451171875e+02, 2.983694152832031e+02, 2.990728149414062e+02, 2.971609802246094e+02, 2.971466369628906e+02, 2.970999755859375e+02, 2.968463134765625e+02, 2.967552185058594e+02, 2.967704772949219e+02, 2.968326721191406e+02, 2.968217163085938e+02, 2.967702026367188e+02, 2.9669873046875e+02, 2.977414245605469e+02, 2.985538940429688e+02, 2.987615661621094e+02, 2.988735961914062e+02, 2.990483703613281e+02, 2.990986328125e+02, 2.991161499023438e+02, 2.991122131347656e+02, 2.991748046875e+02, 2.995494995117188e+02, 2.973490295410156e+02, 2.971643981933594e+02, 2.971106567382812e+02, 2.97139404296875e+02, 2.971526184082031e+02, 2.971514587402344e+02, 2.971532897949219e+02, 2.971459045410156e+02, 2.97139892578125e+02, 2.97142822265625e+02, 2.985616149902344e+02, 2.9955859375e+02, 2.997440490722656e+02, 2.997603759765625e+02, 2.997618408203125e+02, 2.997492065429688e+02, 2.99719970703125e+02, 2.99685546875e+02, 2.997123107910156e+02, 3.001216735839844e+02, 2.973228759765625e+02, 2.971566772460938e+02, 2.971064758300781e+02, 2.971348571777344e+02, 2.97150634765625e+02, 2.971514587402344e+02, 2.971488037109375e+02, 2.971485900878906e+02, 2.971389770507812e+02, 2.971452331542969e+02, 2.98605224609375e+02, 2.996298522949219e+02, 2.998236999511719e+02, 2.998634338378906e+02, 2.998599548339844e+02, 2.998488159179688e+02, 2.998028564453125e+02, 2.997610168457031e+02, 2.997969970703125e+02, 3.002320861816406e+02, 2.972972412109375e+02, 2.9713720703125e+02, 2.971346740722656e+02, 2.971419067382812e+02, 2.971513977050781e+02, 2.971510314941406e+02, 2.971535949707031e+02, 2.971471862792969e+02, 2.971378173828125e+02, 2.971433715820312e+02, 2.985690002441406e+02, 2.994882202148438e+02, 2.996820068359375e+02, 2.997175903320312e+02, 2.997169799804688e+02] -flo.nor.TAir=[2.931499938964844e+02, 2.969699401855469e+02, 2.970224914550781e+02, 2.971205749511719e+02, 2.971573486328125e+02, 2.975510864257812e+02, 2.959445495605469e+02, 2.960641479492188e+02, 2.962049865722656e+02, 2.962975463867188e+02, 2.960956115722656e+02, 2.961063842773438e+02, 2.961753845214844e+02, 2.96236328125e+02, 2.9608740234375e+02, 2.958996276855469e+02, 2.968551635742188e+02, 2.97583740234375e+02, 2.977810974121094e+02, 2.979350891113281e+02, 2.980673522949219e+02, 2.98027099609375e+02, 2.980213317871094e+02, 2.980669555664062e+02, 2.981166076660156e+02, 2.9833251953125e+02, 2.963740844726562e+02, 2.963042907714844e+02, 2.96305419921875e+02, 2.962684326171875e+02, 2.962577819824219e+02, 2.962977905273438e+02, 2.963666381835938e+02, 2.963858337402344e+02, 2.96376708984375e+02, 2.96341796875e+02, 2.974248962402344e+02, 2.982306213378906e+02, 2.984442749023438e+02, 2.985769958496094e+02, 2.987682189941406e+02, 2.988377380371094e+02, 2.988669738769531e+02, 2.988728637695312e+02, 2.989195251464844e+02, 2.9912744140625e+02, 2.974432067871094e+02, 2.97166015625e+02, 2.971549377441406e+02, 2.971549072265625e+02, 2.971571350097656e+02, 2.971531372070312e+02, 2.971576843261719e+02, 2.971482238769531e+02, 2.971250915527344e+02, 2.971356811523438e+02, 2.983897399902344e+02, 2.993481140136719e+02, 2.995238342285156e+02, 2.995443115234375e+02, 2.995535583496094e+02, 2.995533447265625e+02, 2.995294189453125e+02, 2.994986572265625e+02, 2.995025634765625e+02, 2.996734924316406e+02, 2.9742626953125e+02, 2.971586303710938e+02, 2.971543273925781e+02, 2.971495971679688e+02, 2.971537170410156e+02, 2.971526489257812e+02, 2.971514282226562e+02, 2.971520690917969e+02, 2.971228637695312e+02, 2.971408996582031e+02, 2.984425659179688e+02, 2.994224243164062e+02, 2.996040649414062e+02, 2.996427307128906e+02, 2.996536865234375e+02, 2.996463623046875e+02, 2.996071166992188e+02, 2.995723266601562e+02, 2.9958203125e+02, 2.997617492675781e+02, 2.974188232421875e+02, 2.97159423828125e+02, 2.9715771484375e+02, 2.971523132324219e+02, 2.971531066894531e+02, 2.971524353027344e+02, 2.971577758789062e+02, 2.971482543945312e+02, 2.971204833984375e+02, 2.971350708007812e+02, 2.984058837890625e+02, 2.993227844238281e+02, 2.994854125976562e+02, 2.994796142578125e+02, 2.994783935546875e+02] -flo.wes.TAir=[2.931499938964844e+02, 2.972522583007812e+02, 2.974049987792969e+02, 2.974335021972656e+02, 2.9743505859375e+02, 2.977911071777344e+02, 2.961819152832031e+02, 2.962886657714844e+02, 2.964277954101562e+02, 2.965135803222656e+02, 2.963228759765625e+02, 2.963439636230469e+02, 2.967064208984375e+02, 2.971093139648438e+02, 2.967117309570312e+02, 2.963249206542969e+02, 2.97284423828125e+02, 2.97873046875e+02, 2.980680541992188e+02, 2.982138061523438e+02, 2.98312744140625e+02, 2.982842102050781e+02, 2.982832641601562e+02, 2.982691040039062e+02, 2.98276123046875e+02, 2.985170593261719e+02, 2.965967407226562e+02, 2.966629943847656e+02, 2.967678833007812e+02, 2.966483154296875e+02, 2.967214050292969e+02, 2.967904052734375e+02, 2.971481018066406e+02, 2.971828918457031e+02, 2.971351013183594e+02, 2.971252136230469e+02, 2.9810986328125e+02, 2.986870422363281e+02, 2.989251098632812e+02, 2.990293579101562e+02, 2.991647033691406e+02, 2.992029418945312e+02, 2.992078552246094e+02, 2.991842956542969e+02, 2.992008361816406e+02, 2.993894958496094e+02, 2.973074340820312e+02, 2.971579284667969e+02, 2.971060791015625e+02, 2.97153076171875e+02, 2.971536254882812e+02, 2.971592102050781e+02, 2.972059936523438e+02, 2.971639404296875e+02, 2.971114196777344e+02, 2.971184997558594e+02, 2.988019104003906e+02, 2.996765441894531e+02, 2.9984130859375e+02, 2.998258666992188e+02, 2.998209533691406e+02, 2.997896423339844e+02, 2.997455139160156e+02, 2.99686279296875e+02, 2.996472473144531e+02, 2.998409423828125e+02, 2.972677307128906e+02, 2.971540222167969e+02, 2.971535949707031e+02, 2.971243896484375e+02, 2.971500549316406e+02, 2.971585693359375e+02, 2.972130432128906e+02, 2.971681213378906e+02, 2.971416625976562e+02, 2.971187744140625e+02, 2.9885107421875e+02, 2.997770080566406e+02, 2.999478759765625e+02, 2.999619445800781e+02, 2.999424438476562e+02, 2.999162902832031e+02, 2.998552856445312e+02, 2.997958374023438e+02, 2.997423400878906e+02, 2.99901123046875e+02, 2.972853393554688e+02, 2.971550598144531e+02, 2.971552124023438e+02, 2.971511535644531e+02, 2.971520690917969e+02, 2.971585998535156e+02, 2.972101135253906e+02, 2.971800537109375e+02, 2.971013793945312e+02, 2.971329650878906e+02, 2.987297668457031e+02, 2.9956689453125e+02, 2.997140808105469e+02, 2.997149047851562e+02, 2.997294311523438e+02] -flo.cor.TAir=[2.931499938964844e+02, 2.970025634765625e+02, 2.971437683105469e+02, 2.971962585449219e+02, 2.972147216796875e+02, 2.976223754882812e+02, 2.959689636230469e+02, 2.959920654296875e+02, 2.96103759765625e+02, 2.961205139160156e+02, 2.959131164550781e+02, 2.959158020019531e+02, 2.960560302734375e+02, 2.962162475585938e+02, 2.960482788085938e+02, 2.958047485351562e+02, 2.968145446777344e+02, 2.975020141601562e+02, 2.977112121582031e+02, 2.978611755371094e+02, 2.979760437011719e+02, 2.979892272949219e+02, 2.980043029785156e+02, 2.980264587402344e+02, 2.980544738769531e+02, 2.983598327636719e+02, 2.962846374511719e+02, 2.96215576171875e+02, 2.961983947753906e+02, 2.960984191894531e+02, 2.960795288085938e+02, 2.961045837402344e+02, 2.962095642089844e+02, 2.962344665527344e+02, 2.962140197753906e+02, 2.961935424804688e+02, 2.973451843261719e+02, 2.981573181152344e+02, 2.983810119628906e+02, 2.984994812011719e+02, 2.986867980957031e+02, 2.987603454589844e+02, 2.987968444824219e+02, 2.988117980957031e+02, 2.988547973632812e+02, 2.990535583496094e+02, 2.973248291015625e+02, 2.971589660644531e+02, 2.971512756347656e+02, 2.971510620117188e+02, 2.971543273925781e+02, 2.971521911621094e+02, 2.971539306640625e+02, 2.971512451171875e+02, 2.970765991210938e+02, 2.968864135742188e+02, 2.982137756347656e+02, 2.992252502441406e+02, 2.994119262695312e+02, 2.994343566894531e+02, 2.994452514648438e+02, 2.994461975097656e+02, 2.994301452636719e+02, 2.994096374511719e+02, 2.994075622558594e+02, 2.995959777832031e+02, 2.97395263671875e+02, 2.971537780761719e+02, 2.97149658203125e+02, 2.971478881835938e+02, 2.971522216796875e+02, 2.971510009765625e+02, 2.971508178710938e+02, 2.971520080566406e+02, 2.971266479492188e+02, 2.969214782714844e+02, 2.982820739746094e+02, 2.993081665039062e+02, 2.9949609375e+02, 2.995378723144531e+02, 2.99546630859375e+02, 2.995498046875e+02, 2.995203247070312e+02, 2.9949267578125e+02, 2.994920654296875e+02, 2.996787109375e+02, 2.974044494628906e+02, 2.971533203125e+02, 2.971498718261719e+02, 2.97149169921875e+02, 2.971522827148438e+02, 2.971520080566406e+02, 2.97155029296875e+02, 2.971549377441406e+02, 2.971258850097656e+02, 2.969164123535156e+02, 2.982159729003906e+02, 2.991927490234375e+02, 2.993621826171875e+02, 2.99400634765625e+02, 2.994111328125e+02] +flo.nor.TAir=[2.931499938964844e+02, 2.969699401855469e+02, 2.970224914550781e+02, 2.971205749511719e+02, 2.971573486328125e+02, 2.975510864257812e+02, 2.959445495605469e+02, 2.960641479492188e+02, 2.962049865722656e+02, 2.962975463867188e+02, 2.960956115722656e+02, 2.961063842773438e+02, 2.961753845214844e+02, 2.96236328125e+02, 2.9608740234375e+02, 2.958996276855469e+02, 2.968551635742188e+02, 2.97583740234375e+02, 2.977810974121094e+02, 2.979350891113281e+02, 2.980673522949219e+02, 2.98027099609375e+02, 2.980213317871094e+02, 2.980669555664062e+02, 2.981166076660156e+02, 2.9833251953125e+02, 2.963740844726562e+02, 2.963042602539062e+02, 2.96305419921875e+02, 2.962684326171875e+02, 2.962577819824219e+02, 2.962977905273438e+02, 2.963666381835938e+02, 2.963858337402344e+02, 2.96376708984375e+02, 2.96341796875e+02, 2.974248962402344e+02, 2.982306213378906e+02, 2.984442749023438e+02, 2.985769958496094e+02, 2.987682189941406e+02, 2.988377380371094e+02, 2.988669738769531e+02, 2.988728637695312e+02, 2.989195251464844e+02, 2.9912744140625e+02, 2.974432067871094e+02, 2.97166015625e+02, 2.971549377441406e+02, 2.971549072265625e+02, 2.971571350097656e+02, 2.971531372070312e+02, 2.971576843261719e+02, 2.971482238769531e+02, 2.971250915527344e+02, 2.971356811523438e+02, 2.983897399902344e+02, 2.993481140136719e+02, 2.995238342285156e+02, 2.995443115234375e+02, 2.995535583496094e+02, 2.995533447265625e+02, 2.995294189453125e+02, 2.994986572265625e+02, 2.995025634765625e+02, 2.996734924316406e+02, 2.9742626953125e+02, 2.971586303710938e+02, 2.971543273925781e+02, 2.971495971679688e+02, 2.971537170410156e+02, 2.971526489257812e+02, 2.971514282226562e+02, 2.971520690917969e+02, 2.971228637695312e+02, 2.971408996582031e+02, 2.984425659179688e+02, 2.994224243164062e+02, 2.996040649414062e+02, 2.996427307128906e+02, 2.996536865234375e+02, 2.996463623046875e+02, 2.996071166992188e+02, 2.995723266601562e+02, 2.9958203125e+02, 2.997617492675781e+02, 2.974188232421875e+02, 2.97159423828125e+02, 2.9715771484375e+02, 2.971523132324219e+02, 2.971531066894531e+02, 2.971524353027344e+02, 2.971577758789062e+02, 2.971482543945312e+02, 2.971204833984375e+02, 2.971350708007812e+02, 2.984058837890625e+02, 2.993227844238281e+02, 2.994854125976562e+02, 2.994796142578125e+02, 2.994783935546875e+02] +flo.wes.TAir=[2.931499938964844e+02, 2.972522583007812e+02, 2.974049987792969e+02, 2.974335021972656e+02, 2.9743505859375e+02, 2.977911071777344e+02, 2.961819152832031e+02, 2.962886657714844e+02, 2.964277954101562e+02, 2.965135803222656e+02, 2.963228759765625e+02, 2.963439636230469e+02, 2.967064208984375e+02, 2.971093139648438e+02, 2.967117309570312e+02, 2.963249206542969e+02, 2.97284423828125e+02, 2.97873046875e+02, 2.980680541992188e+02, 2.982138061523438e+02, 2.98312744140625e+02, 2.982842102050781e+02, 2.982832641601562e+02, 2.982691040039062e+02, 2.98276123046875e+02, 2.985170593261719e+02, 2.965967407226562e+02, 2.966629943847656e+02, 2.967678833007812e+02, 2.966483154296875e+02, 2.967213745117188e+02, 2.967904052734375e+02, 2.971481018066406e+02, 2.971828918457031e+02, 2.971351013183594e+02, 2.971252136230469e+02, 2.9810986328125e+02, 2.986870422363281e+02, 2.989251098632812e+02, 2.990293579101562e+02, 2.991647033691406e+02, 2.992029418945312e+02, 2.992078552246094e+02, 2.991842956542969e+02, 2.992008361816406e+02, 2.993894958496094e+02, 2.973074340820312e+02, 2.971579284667969e+02, 2.971060791015625e+02, 2.97153076171875e+02, 2.971536254882812e+02, 2.971592102050781e+02, 2.972059936523438e+02, 2.971639404296875e+02, 2.971114196777344e+02, 2.971184997558594e+02, 2.988019104003906e+02, 2.996765441894531e+02, 2.9984130859375e+02, 2.998258666992188e+02, 2.998209533691406e+02, 2.997896423339844e+02, 2.997455139160156e+02, 2.99686279296875e+02, 2.996472473144531e+02, 2.998409423828125e+02, 2.972677307128906e+02, 2.971540222167969e+02, 2.971535949707031e+02, 2.971243896484375e+02, 2.971500549316406e+02, 2.971585693359375e+02, 2.972130432128906e+02, 2.971681213378906e+02, 2.971416625976562e+02, 2.971187744140625e+02, 2.9885107421875e+02, 2.997770080566406e+02, 2.999478759765625e+02, 2.999619445800781e+02, 2.999424438476562e+02, 2.999162902832031e+02, 2.998552856445312e+02, 2.997958374023438e+02, 2.997423400878906e+02, 2.99901123046875e+02, 2.972853393554688e+02, 2.971550598144531e+02, 2.971552124023438e+02, 2.971511535644531e+02, 2.971520690917969e+02, 2.971585998535156e+02, 2.972101135253906e+02, 2.971800537109375e+02, 2.971013793945312e+02, 2.971329650878906e+02, 2.987297668457031e+02, 2.9956689453125e+02, 2.997140808105469e+02, 2.997149047851562e+02, 2.997294311523438e+02] +flo.cor.TAir=[2.931499938964844e+02, 2.970025634765625e+02, 2.971437683105469e+02, 2.971962585449219e+02, 2.972147216796875e+02, 2.976223754882812e+02, 2.959689636230469e+02, 2.959920654296875e+02, 2.96103759765625e+02, 2.961205139160156e+02, 2.959131164550781e+02, 2.959158020019531e+02, 2.960560302734375e+02, 2.962162475585938e+02, 2.960482788085938e+02, 2.958047485351562e+02, 2.968145446777344e+02, 2.975020141601562e+02, 2.977112121582031e+02, 2.978611450195312e+02, 2.979760131835938e+02, 2.979892272949219e+02, 2.980043029785156e+02, 2.980264587402344e+02, 2.980544738769531e+02, 2.983598327636719e+02, 2.962846374511719e+02, 2.96215576171875e+02, 2.961983947753906e+02, 2.960984191894531e+02, 2.960795288085938e+02, 2.961045837402344e+02, 2.962095642089844e+02, 2.962344665527344e+02, 2.962140197753906e+02, 2.961935424804688e+02, 2.973451843261719e+02, 2.981573181152344e+02, 2.983810119628906e+02, 2.984994812011719e+02, 2.986867980957031e+02, 2.987603454589844e+02, 2.987968444824219e+02, 2.988117980957031e+02, 2.988547973632812e+02, 2.990535583496094e+02, 2.973248291015625e+02, 2.971589660644531e+02, 2.971512756347656e+02, 2.971510620117188e+02, 2.971543273925781e+02, 2.971521911621094e+02, 2.971539306640625e+02, 2.971512451171875e+02, 2.970765991210938e+02, 2.968864135742188e+02, 2.982137756347656e+02, 2.992252502441406e+02, 2.994119262695312e+02, 2.994343566894531e+02, 2.994452514648438e+02, 2.994461975097656e+02, 2.994301452636719e+02, 2.994096374511719e+02, 2.994075622558594e+02, 2.995959777832031e+02, 2.97395263671875e+02, 2.971537780761719e+02, 2.97149658203125e+02, 2.971478881835938e+02, 2.971522216796875e+02, 2.971510009765625e+02, 2.971508178710938e+02, 2.971520080566406e+02, 2.971266479492188e+02, 2.969214782714844e+02, 2.982820739746094e+02, 2.993081665039062e+02, 2.9949609375e+02, 2.995378723144531e+02, 2.99546630859375e+02, 2.995498046875e+02, 2.995203247070312e+02, 2.9949267578125e+02, 2.994920654296875e+02, 2.996787109375e+02, 2.974044494628906e+02, 2.971533203125e+02, 2.971498718261719e+02, 2.97149169921875e+02, 2.971522827148438e+02, 2.971520080566406e+02, 2.97155029296875e+02, 2.971549377441406e+02, 2.971258850097656e+02, 2.969164123535156e+02, 2.982159729003906e+02, 2.991927490234375e+02, 2.993621826171875e+02, 2.99400634765625e+02, 2.994111328125e+02] TSetRoo.setPoiHea.y=[2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02] TSetRoo.setPoiCoo.y=[3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02] -fanSup.y=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.345775902271271e-01, 3.341455161571503e-01, 3.341417908668518e-01, 3.341600894927979e-01, 3.341415226459503e-01, 3.341432511806488e-01, 3.341541886329651e-01, 3.341579735279083e-01, 3.341683745384216e-01, 3.341531455516815e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.535773754119873e-01, 3.5413858294487e-01, 3.405055999755859e-01, 3.34157794713974e-01, 3.341770470142365e-01, 3.341757953166962e-01, 3.341701626777649e-01, 3.552548885345459e-01, 3.611722588539124e-01, 3.502031862735748e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.297618508338928e-01, 6.223111152648926e-01, 6.334666609764099e-01, 6.279311180114746e-01, 6.001784801483154e-01, 6.615356206893921e-01, 6.850804090499878e-01, 7.226002812385559e-01, 5.583915710449219e-01, 4.357130825519562e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 6.336452960968018e-01, 6.848002076148987e-01, 6.792168617248535e-01, 6.635797619819641e-01, 6.197113990783691e-01, 6.746766567230225e-01, 6.948677897453308e-01, 7.195301055908203e-01, 5.875281095504761e-01, 4.786546528339386e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 6.54829204082489e-01, 6.577237248420715e-01, 6.701316237449646e-01, 6.867662072181702e-01, 6.364467144012451e-01, 7.000068426132202e-01, 7.328702807426453e-01, 7.449951171875e-01, 5.665969252586365e-01, 4.153452813625336e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -cor.vav.y_actual=[9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.13054084777832e-01, 8.12400221824646e-01, 8.125762939453125e-01, 8.119346499443054e-01, 8.12578022480011e-01, 8.125262260437012e-01, 8.121340870857239e-01, 8.119859099388123e-01, 8.116247057914734e-01, 8.12147855758667e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.132737874984741e-01, 8.128169775009155e-01, 8.115339875221252e-01, 8.119686245918274e-01, 8.113158941268921e-01, 8.113428950309753e-01, 8.115401864051819e-01, 8.131292462348938e-01, 8.137977719306946e-01, 8.12736988067627e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.098371624946594e-01, 7.70045280456543e-01, 7.77687668800354e-01, 7.833165526390076e-01, 7.537466883659363e-01, 7.649986743927002e-01, 7.689759731292725e-01, 7.603650689125061e-01, 6.935384273529053e-01, 7.597873210906982e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 7.815669775009155e-01, 7.780606150627136e-01, 7.845540046691895e-01, 7.905665636062622e-01, 7.64352560043335e-01, 7.755073308944702e-01, 7.776907086372375e-01, 7.787560820579529e-01, 6.834058165550232e-01, 7.334731817245483e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 7.683596014976501e-01, 8.097759485244751e-01, 8.013379573822021e-01, 7.853823900222778e-01, 7.6124507188797e-01, 7.700363397598267e-01, 7.642940282821655e-01, 7.518114447593689e-01, 6.91516637802124e-01, 8.027051687240601e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01] -sou.vav.y_actual=[9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.130544424057007e-01, 8.124005198478699e-01, 8.125765919685364e-01, 8.119349479675293e-01, 8.125783801078796e-01, 8.125265836715698e-01, 8.121344447135925e-01, 8.119862675666809e-01, 8.11625063419342e-01, 8.121481537818909e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.13274085521698e-01, 8.128173351287842e-01, 8.115342855453491e-01, 8.11968982219696e-01, 8.11316192150116e-01, 8.11343252658844e-01, 8.115405440330505e-01, 8.131295442581177e-01, 8.137981295585632e-01, 8.127373456954956e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.804265260696411e-01, 8.665898442268372e-01, 8.849596977233887e-01, 9.051439762115479e-01, 9.062103033065796e-01, 9.021375775337219e-01, 9.01691198348999e-01, 8.840269446372986e-01, 8.290303349494934e-01, 8.26957643032074e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.553136587142944e-01, 8.64284873008728e-01, 8.81592869758606e-01, 9.030915498733521e-01, 9.006831049919128e-01, 9.018938541412354e-01, 8.994728326797485e-01, 8.964734673500061e-01, 8.404917120933533e-01, 8.457821607589722e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.425821661949158e-01, 8.967916369438171e-01, 9.057556390762329e-01, 9.058587551116943e-01, 8.992540240287781e-01, 9.09697413444519e-01, 9.167011380195618e-01, 8.712660074234009e-01, 8.347848057746887e-01, 8.868159055709839e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01] -eas.vav.y_actual=[9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 7.132105231285095e-01, 7.126250267028809e-01, 7.127828001976013e-01, 7.122074961662292e-01, 7.127844095230103e-01, 7.127379775047302e-01, 7.123864889144897e-01, 7.122535705566406e-01, 7.119292616844177e-01, 7.123987674713135e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.441376686096191e-01, 8.4661865234375e-01, 7.584704756736755e-01, 7.122380137443542e-01, 7.116517424583435e-01, 7.116760611534119e-01, 7.118533253669739e-01, 7.132777571678162e-01, 7.138751745223999e-01, 7.129267454147339e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.441782832145691e-01, 9.102311134338379e-01, 8.867424726486206e-01, 8.368628621101379e-01, 8.170211911201477e-01, 8.12045693397522e-01, 8.142065405845642e-01, 7.978157997131348e-01, 7.491481304168701e-01, 7.557315230369568e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.038642048835754e-01, 9.070823192596436e-01, 8.840608596801758e-01, 8.343228101730347e-01, 8.154469132423401e-01, 8.129075765609741e-01, 8.132475018501282e-01, 8.096123337745667e-01, 7.421868443489075e-01, 7.38764226436615e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.807070255279541e-01, 8.932116627693176e-01, 8.611590266227722e-01, 8.2547926902771e-01, 8.099770545959473e-01, 8.058966398239136e-01, 7.997133135795593e-01, 7.807984948158264e-01, 7.504866123199463e-01, 8.081440329551697e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01] -nor.vav.y_actual=[9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.130544424057007e-01, 8.124005198478699e-01, 8.125765919685364e-01, 8.119349479675293e-01, 8.125783801078796e-01, 8.125265836715698e-01, 8.121344447135925e-01, 8.119862675666809e-01, 8.11625063419342e-01, 8.121481537818909e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.13274085521698e-01, 8.128173351287842e-01, 8.115342855453491e-01, 8.11968982219696e-01, 8.11316192150116e-01, 8.11343252658844e-01, 8.115405440330505e-01, 8.131295442581177e-01, 8.137981295585632e-01, 8.127373456954956e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.696275949478149e-01, 8.525561690330505e-01, 8.674867153167725e-01, 8.776318430900574e-01, 8.633514046669006e-01, 8.66373598575592e-01, 8.720405101776123e-01, 8.601138591766357e-01, 8.021063208580017e-01, 8.014987707138062e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.472321629524231e-01, 8.52905809879303e-01, 8.669250011444092e-01, 8.782421350479126e-01, 8.643009662628174e-01, 8.68934154510498e-01, 8.723548054695129e-01, 8.737561106681824e-01, 7.970331311225891e-01, 7.874056100845337e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.347119688987732e-01, 8.844433426856995e-01, 8.885800242424011e-01, 8.808404803276062e-01, 8.667212724685669e-01, 8.684353828430176e-01, 8.644046783447266e-01, 8.49362313747406e-01, 8.126959800720215e-01, 8.613218665122986e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01] -wes.vav.y_actual=[9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 7.132105231285095e-01, 7.126250267028809e-01, 7.127828001976013e-01, 7.122074961662292e-01, 7.127844095230103e-01, 7.127379775047302e-01, 7.123864889144897e-01, 7.122535705566406e-01, 7.119292616844177e-01, 7.123987674713135e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 7.13407039642334e-01, 7.129983901977539e-01, 7.118477821350098e-01, 7.122380137443542e-01, 7.116517424583435e-01, 7.116760611534119e-01, 7.118533849716187e-01, 8.532549142837524e-01, 8.861210942268372e-01, 8.245797157287598e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.330315947532654e-01, 7.849912643432617e-01, 8.00719678401947e-01, 8.056996464729309e-01, 7.949849367141724e-01, 7.939762473106384e-01, 8.464981317520142e-01, 9.117151498794556e-01, 8.742497563362122e-01, 8.817692399024963e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 7.911703586578369e-01, 7.729693651199341e-01, 7.860353589057922e-01, 8.000013828277588e-01, 7.92663037776947e-01, 7.894321084022522e-01, 8.510128259658813e-01, 9.063562750816345e-01, 8.929218053817749e-01, 8.756006360054016e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 7.801687121391296e-01, 8.063749074935913e-01, 8.09999942779541e-01, 8.02729606628418e-01, 7.919340133666992e-01, 7.914265394210815e-01, 8.326740264892578e-01, 8.72180700302124e-01, 8.70996356010437e-01, 8.874339461326599e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01] -eco.yOut=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 6.277698278427124e-01, 6.297800540924072e-01, 6.267018914222717e-01, 6.296164393424988e-01, 6.29622220993042e-01, 6.275212168693542e-01, 6.263461709022522e-01, 6.245112419128418e-01, 6.269320249557495e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.946112871170044e-01, 5.907512903213501e-01, 6.09423816204071e-01, 6.255608797073364e-01, 6.22589111328125e-01, 6.222376227378845e-01, 6.233906745910645e-01, 5.93272864818573e-01, 5.822875499725342e-01, 5.960217118263245e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.847814738750458e-01, 3.97621214389801e-01, 3.882406651973724e-01, 3.913799226284027e-01, 4.145591557025909e-01, 3.795121610164642e-01, 3.680423200130463e-01, 3.512885272502899e-01, 4.477704763412476e-01, 5.135188698768616e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.264116287231445e-01, 3.67327481508255e-01, 3.67126852273941e-01, 3.750035762786865e-01, 4.010771811008453e-01, 3.736207187175751e-01, 3.637802004814148e-01, 3.499263823032379e-01, 4.370303153991699e-01, 4.988520443439484e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.182025790214539e-01, 3.73769074678421e-01, 3.690250217914581e-01, 3.650682270526886e-01, 3.916548490524292e-01, 3.672672212123871e-01, 3.573102951049805e-01, 3.512986600399017e-01, 4.369108974933624e-01, 5.181340575218201e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -TSupSou.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931501159667969e+02, 2.931499938964844e+02, 2.9314990234375e+02, 2.9314990234375e+02, 2.851676330566406e+02, 2.851671447753906e+02, 2.851640930175781e+02, 2.85144287109375e+02, 2.851593933105469e+02, 2.851531677246094e+02, 2.851512145996094e+02, 2.851557922363281e+02, 2.851455993652344e+02, 2.851399230957031e+02, 2.853791198730469e+02, 2.853790283203125e+02, 2.853790283203125e+02, 2.853797302246094e+02, 2.853795166015625e+02, 2.853794860839844e+02, 2.853780822753906e+02, 2.853746643066406e+02, 2.853744812011719e+02, 2.853744812011719e+02, 2.851527099609375e+02, 2.851524047851562e+02, 2.851380920410156e+02, 2.851544494628906e+02, 2.851513061523438e+02, 2.851510620117188e+02, 2.851459655761719e+02, 2.851582946777344e+02, 2.851480407714844e+02, 2.85138916015625e+02, 2.853857727050781e+02, 2.853857727050781e+02, 2.853859252929688e+02, 2.853861694335938e+02, 2.853861083984375e+02, 2.853862915039062e+02, 2.853862915039062e+02, 2.853863220214844e+02, 2.853864440917969e+02, 2.853863830566406e+02, 2.855076599121094e+02, 2.851526184082031e+02, 2.851260681152344e+02, 2.851564331054688e+02, 2.851611328125e+02, 2.851458740234375e+02, 2.851834411621094e+02, 2.851397094726562e+02, 2.851210021972656e+02, 2.851263122558594e+02, 2.854372863769531e+02, 2.854372863769531e+02, 2.854372863769531e+02, 2.854372863769531e+02, 2.854375610351562e+02, 2.854376525878906e+02, 2.854375e+02, 2.854375305175781e+02, 2.854374694824219e+02, 2.854371337890625e+02, 2.854643859863281e+02, 2.851577758789062e+02, 2.85143310546875e+02, 2.851536865234375e+02, 2.8515185546875e+02, 2.851562194824219e+02, 2.851419372558594e+02, 2.851690673828125e+02, 2.851414489746094e+02, 2.851260375976562e+02, 2.854649047851562e+02, 2.854649047851562e+02, 2.854645690917969e+02, 2.854645385742188e+02, 2.854642944335938e+02, 2.854643859863281e+02, 2.854642944335938e+02, 2.854645385742188e+02, 2.854645385742188e+02, 2.85464599609375e+02, 2.85462158203125e+02, 2.851592102050781e+02, 2.851472778320312e+02, 2.851698303222656e+02, 2.851559753417969e+02, 2.851580505371094e+02, 2.851981811523438e+02, 2.851571960449219e+02, 2.85111083984375e+02, 2.851305541992188e+02, 2.854813842773438e+02, 2.854813232421875e+02, 2.854803466796875e+02, 2.854801330566406e+02, 2.8547998046875e+02] -TSupEas.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931501159667969e+02, 2.931499938964844e+02, 2.9314990234375e+02, 2.9314990234375e+02, 2.851676330566406e+02, 2.851671752929688e+02, 2.851640930175781e+02, 2.85144287109375e+02, 2.851593933105469e+02, 2.851531677246094e+02, 2.851512145996094e+02, 2.851557922363281e+02, 2.851455993652344e+02, 2.85139892578125e+02, 2.853787536621094e+02, 2.85378662109375e+02, 2.853786926269531e+02, 2.8537939453125e+02, 2.85379150390625e+02, 2.85379150390625e+02, 2.853777160644531e+02, 2.853742980957031e+02, 2.853741149902344e+02, 2.853740844726562e+02, 2.851527099609375e+02, 2.851524047851562e+02, 2.851380920410156e+02, 2.851544494628906e+02, 2.851513061523438e+02, 2.851510620117188e+02, 2.851459655761719e+02, 2.851583251953125e+02, 2.851480712890625e+02, 2.851388854980469e+02, 2.853853149414062e+02, 2.853853149414062e+02, 2.853854370117188e+02, 2.853857116699219e+02, 2.853856201171875e+02, 2.853858032226562e+02, 2.853858337402344e+02, 2.853858337402344e+02, 2.85385986328125e+02, 2.853859252929688e+02, 2.855075073242188e+02, 2.85152587890625e+02, 2.851260681152344e+02, 2.851564331054688e+02, 2.851611328125e+02, 2.851458435058594e+02, 2.851834411621094e+02, 2.851397094726562e+02, 2.851209411621094e+02, 2.851262512207031e+02, 2.854367980957031e+02, 2.854367980957031e+02, 2.854367980957031e+02, 2.854367980957031e+02, 2.854370422363281e+02, 2.854371643066406e+02, 2.8543701171875e+02, 2.854370422363281e+02, 2.854369812011719e+02, 2.854366149902344e+02, 2.854642639160156e+02, 2.851577758789062e+02, 2.85143310546875e+02, 2.851536865234375e+02, 2.8515185546875e+02, 2.851562194824219e+02, 2.851419372558594e+02, 2.851690368652344e+02, 2.851413879394531e+02, 2.851259765625e+02, 2.854642333984375e+02, 2.854642333984375e+02, 2.854638977050781e+02, 2.854638366699219e+02, 2.854635925292969e+02, 2.854636840820312e+02, 2.85463623046875e+02, 2.854638366699219e+02, 2.854638671875e+02, 2.854638977050781e+02, 2.854620666503906e+02, 2.851592102050781e+02, 2.851472778320312e+02, 2.851698303222656e+02, 2.851559753417969e+02, 2.851580505371094e+02, 2.851981506347656e+02, 2.851571655273438e+02, 2.851110229492188e+02, 2.851304931640625e+02, 2.854808654785156e+02, 2.854808349609375e+02, 2.854798583984375e+02, 2.854796142578125e+02, 2.854794616699219e+02] -TSupNor.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931501159667969e+02, 2.931499633789062e+02, 2.9314990234375e+02, 2.9314990234375e+02, 2.851676330566406e+02, 2.851671447753906e+02, 2.851640930175781e+02, 2.85144287109375e+02, 2.851593933105469e+02, 2.851531677246094e+02, 2.851512145996094e+02, 2.851557922363281e+02, 2.851455993652344e+02, 2.851399230957031e+02, 2.853791198730469e+02, 2.853790283203125e+02, 2.853790283203125e+02, 2.853797302246094e+02, 2.853795166015625e+02, 2.853794860839844e+02, 2.853780517578125e+02, 2.853746948242188e+02, 2.8537451171875e+02, 2.853744812011719e+02, 2.851527099609375e+02, 2.851524047851562e+02, 2.851380920410156e+02, 2.851544494628906e+02, 2.851513061523438e+02, 2.851510620117188e+02, 2.851459655761719e+02, 2.851582946777344e+02, 2.851480407714844e+02, 2.85138916015625e+02, 2.853857727050781e+02, 2.853857727050781e+02, 2.853858947753906e+02, 2.853861694335938e+02, 2.853861083984375e+02, 2.853862609863281e+02, 2.853862915039062e+02, 2.853862915039062e+02, 2.853864440917969e+02, 2.853863830566406e+02, 2.855076904296875e+02, 2.851526184082031e+02, 2.851260681152344e+02, 2.851564331054688e+02, 2.851611328125e+02, 2.851458435058594e+02, 2.851834411621094e+02, 2.851397094726562e+02, 2.851209716796875e+02, 2.851262817382812e+02, 2.854371643066406e+02, 2.854371643066406e+02, 2.854371643066406e+02, 2.854371643066406e+02, 2.854374389648438e+02, 2.854375305175781e+02, 2.854373779296875e+02, 2.854374389648438e+02, 2.854373474121094e+02, 2.8543701171875e+02, 2.854643859863281e+02, 2.851577758789062e+02, 2.85143310546875e+02, 2.851536865234375e+02, 2.8515185546875e+02, 2.851562194824219e+02, 2.851419372558594e+02, 2.851690368652344e+02, 2.851414489746094e+02, 2.851260070800781e+02, 2.854648132324219e+02, 2.854648132324219e+02, 2.854644775390625e+02, 2.854644470214844e+02, 2.854642028808594e+02, 2.854642944335938e+02, 2.854642028808594e+02, 2.854644470214844e+02, 2.854644470214844e+02, 2.854644775390625e+02, 2.854621887207031e+02, 2.851592102050781e+02, 2.851472778320312e+02, 2.851698303222656e+02, 2.851559753417969e+02, 2.851580505371094e+02, 2.851981506347656e+02, 2.851571960449219e+02, 2.85111083984375e+02, 2.851305541992188e+02, 2.854812622070312e+02, 2.85481201171875e+02, 2.854802551269531e+02, 2.854800109863281e+02, 2.854798583984375e+02] -TSupWes.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931501159667969e+02, 2.931499938964844e+02, 2.9314990234375e+02, 2.9314990234375e+02, 2.851676330566406e+02, 2.851671752929688e+02, 2.851640930175781e+02, 2.85144287109375e+02, 2.851593933105469e+02, 2.851531677246094e+02, 2.851512145996094e+02, 2.851557922363281e+02, 2.851455993652344e+02, 2.85139892578125e+02, 2.853787536621094e+02, 2.85378662109375e+02, 2.853786926269531e+02, 2.8537939453125e+02, 2.85379150390625e+02, 2.85379150390625e+02, 2.853777160644531e+02, 2.853742980957031e+02, 2.853741149902344e+02, 2.853740844726562e+02, 2.851527099609375e+02, 2.851524047851562e+02, 2.851380920410156e+02, 2.851544494628906e+02, 2.851513061523438e+02, 2.851510620117188e+02, 2.851459655761719e+02, 2.851582946777344e+02, 2.851480407714844e+02, 2.85138916015625e+02, 2.853853149414062e+02, 2.853853149414062e+02, 2.853854370117188e+02, 2.853857116699219e+02, 2.853856506347656e+02, 2.853858337402344e+02, 2.853858337402344e+02, 2.853858642578125e+02, 2.85385986328125e+02, 2.853859558105469e+02, 2.855077819824219e+02, 2.851526184082031e+02, 2.851260681152344e+02, 2.851564331054688e+02, 2.851611328125e+02, 2.851458435058594e+02, 2.851834411621094e+02, 2.851397094726562e+02, 2.851210021972656e+02, 2.851263427734375e+02, 2.854373168945312e+02, 2.854373168945312e+02, 2.854373168945312e+02, 2.854373168945312e+02, 2.854375915527344e+02, 2.854376831054688e+02, 2.854375305175781e+02, 2.854375915527344e+02, 2.854375e+02, 2.854371643066406e+02, 2.854645690917969e+02, 2.851577758789062e+02, 2.85143310546875e+02, 2.851536865234375e+02, 2.8515185546875e+02, 2.851562194824219e+02, 2.851419372558594e+02, 2.851690673828125e+02, 2.851414794921875e+02, 2.851260375976562e+02, 2.854649047851562e+02, 2.854649047851562e+02, 2.854645690917969e+02, 2.854645385742188e+02, 2.854642944335938e+02, 2.854643859863281e+02, 2.854642944335938e+02, 2.854645385742188e+02, 2.854645385742188e+02, 2.85464599609375e+02, 2.854623413085938e+02, 2.851592102050781e+02, 2.851472778320312e+02, 2.851698303222656e+02, 2.851559753417969e+02, 2.851580505371094e+02, 2.851981506347656e+02, 2.851571960449219e+02, 2.851111145019531e+02, 2.851305541992188e+02, 2.85481201171875e+02, 2.854811401367188e+02, 2.854801635742188e+02, 2.854799499511719e+02, 2.854797973632812e+02] -TSupCor.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931501159667969e+02, 2.931499938964844e+02, 2.9314990234375e+02, 2.9314990234375e+02, 2.851676330566406e+02, 2.851671447753906e+02, 2.851640930175781e+02, 2.85144287109375e+02, 2.851593933105469e+02, 2.851531677246094e+02, 2.851512145996094e+02, 2.851557922363281e+02, 2.851455993652344e+02, 2.851399230957031e+02, 2.853791198730469e+02, 2.853790283203125e+02, 2.853790283203125e+02, 2.853797302246094e+02, 2.853795166015625e+02, 2.853794860839844e+02, 2.853780822753906e+02, 2.853746948242188e+02, 2.8537451171875e+02, 2.8537451171875e+02, 2.851527099609375e+02, 2.851524047851562e+02, 2.851380920410156e+02, 2.851544494628906e+02, 2.851513061523438e+02, 2.851510620117188e+02, 2.851459655761719e+02, 2.851582946777344e+02, 2.851480407714844e+02, 2.85138916015625e+02, 2.853857727050781e+02, 2.853857727050781e+02, 2.853858947753906e+02, 2.853861694335938e+02, 2.853860778808594e+02, 2.853862609863281e+02, 2.853862915039062e+02, 2.853862915039062e+02, 2.853864440917969e+02, 2.853863830566406e+02, 2.855078735351562e+02, 2.851526184082031e+02, 2.851260681152344e+02, 2.851564331054688e+02, 2.851611328125e+02, 2.851458435058594e+02, 2.851834106445312e+02, 2.851397094726562e+02, 2.851209106445312e+02, 2.851262512207031e+02, 2.854370422363281e+02, 2.854370422363281e+02, 2.854370422363281e+02, 2.854370422363281e+02, 2.854373168945312e+02, 2.854374084472656e+02, 2.85437255859375e+02, 2.854373168945312e+02, 2.854372253417969e+02, 2.854368896484375e+02, 2.85464599609375e+02, 2.851577758789062e+02, 2.85143310546875e+02, 2.851536865234375e+02, 2.8515185546875e+02, 2.851562194824219e+02, 2.851419372558594e+02, 2.851690368652344e+02, 2.851413269042969e+02, 2.851259765625e+02, 2.854645080566406e+02, 2.854645080566406e+02, 2.854641723632812e+02, 2.854641418457031e+02, 2.854638671875e+02, 2.854639587402344e+02, 2.854638977050781e+02, 2.854641418457031e+02, 2.854641418457031e+02, 2.854641723632812e+02, 2.854623718261719e+02, 2.851592102050781e+02, 2.851472778320312e+02, 2.851698303222656e+02, 2.851559753417969e+02, 2.851580505371094e+02, 2.851981201171875e+02, 2.851571655273438e+02, 2.851109619140625e+02, 2.851304931640625e+02, 2.854810791015625e+02, 2.854810485839844e+02, 2.854800720214844e+02, 2.854798583984375e+02, 2.854797058105469e+02] -res.EFan=[0e+00, -5.842041295167633e-10, -5.918072698563037e-10, -5.836223726518597e-10, -5.790956603135555e-10, -5.788797774464172e-10, 1.8883251953125e+03, 2.58908935546875e+03, 3.28924658203125e+03, 3.98940625e+03, 4.689619140625e+03, 5.3897705078125e+03, 6.08995751953125e+03, 6.79019775390625e+03, 7.49046044921875e+03, 8.1907333984375e+03, 8.774810546875e+03, 8.774810546875e+03, 8.774810546875e+03, 8.774810546875e+03, 8.774810546875e+03, 8.774810546875e+03, 8.774810546875e+03, 8.774810546875e+03, 8.774810546875e+03, 8.774810546875e+03, 1.16894033203125e+04, 1.2528296875e+04, 1.33339453125e+04, 1.40397841796875e+04, 1.474007421875e+04, 1.54404365234375e+04, 1.61407744140625e+04, 1.691153125e+04, 1.77959140625e+04, 1.865052734375e+04, 1.9270060546875e+04, 1.9270060546875e+04, 1.9270060546875e+04, 1.9270060546875e+04, 1.9270060546875e+04, 1.9270060546875e+04, 1.9270060546875e+04, 1.9270060546875e+04, 1.9270060546875e+04, 1.9270060546875e+04, 2.4485064453125e+04, 2.834409765625e+04, 3.327265234375e+04, 3.79291953125e+04, 4.20817734375e+04, 4.729999609375e+04, 5.301625390625e+04, 5.97232890625e+04, 6.492481640625e+04, 6.7213484375e+04, 6.8224859375e+04, 6.8224859375e+04, 6.8224859375e+04, 6.8224859375e+04, 6.8224859375e+04, 6.8224859375e+04, 6.8224859375e+04, 6.8224859375e+04, 6.8224859375e+04, 6.8224859375e+04, 7.55099921875e+04, 8.11030859375e+04, 8.7269484375e+04, 9.29174765625e+04, 9.768034375e+04, 1.03268703125e+05, 1.093096796875e+05, 1.1604375e+05, 1.213733125e+05, 1.24286953125e+05, 1.255427109375e+05, 1.255427109375e+05, 1.255427109375e+05, 1.255427109375e+05, 1.255427109375e+05, 1.255427109375e+05, 1.255427109375e+05, 1.255427109375e+05, 1.255427109375e+05, 1.255427109375e+05, 1.33894921875e+05, 1.3935975e+05, 1.44891375e+05, 1.5081525e+05, 1.56074921875e+05, 1.6218684375e+05, 1.68976765625e+05, 1.7719309375e+05, 1.82755921875e+05, 1.84915765625e+05, 1.8586290625e+05, 1.8586290625e+05, 1.8586290625e+05, 1.8586290625e+05, 1.8586290625e+05] +fanSup.y=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.345775902271271e-01, 3.341455161571503e-01, 3.341417908668518e-01, 3.341600894927979e-01, 3.341415226459503e-01, 3.341432511806488e-01, 3.341541886329651e-01, 3.341579735279083e-01, 3.341683745384216e-01, 3.341531455516815e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.535772860050201e-01, 3.541385531425476e-01, 3.405055701732635e-01, 3.34157794713974e-01, 3.341770470142365e-01, 3.341757953166962e-01, 3.341701626777649e-01, 3.552548885345459e-01, 3.6117222905159e-01, 3.502031862735748e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.29761791229248e-01, 6.223110556602478e-01, 6.334666609764099e-01, 6.279311180114746e-01, 6.001784801483154e-01, 6.615356206893921e-01, 6.850804090499878e-01, 7.226002812385559e-01, 5.583915710449219e-01, 4.357130825519562e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 6.33645236492157e-01, 6.848002076148987e-01, 6.792168617248535e-01, 6.635797619819641e-01, 6.197113990783691e-01, 6.746766567230225e-01, 6.948677897453308e-01, 7.195301055908203e-01, 5.875281095504761e-01, 4.786546528339386e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 6.548290848731995e-01, 6.577237248420715e-01, 6.701316237449646e-01, 6.867662072181702e-01, 6.364467144012451e-01, 7.000068426132202e-01, 7.328702807426453e-01, 7.449951767921448e-01, 5.665969252586365e-01, 4.153452813625336e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +cor.vav.y_actual=[9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.13054084777832e-01, 8.12400221824646e-01, 8.125762939453125e-01, 8.119346499443054e-01, 8.12578022480011e-01, 8.125262260437012e-01, 8.121340870857239e-01, 8.119859099388123e-01, 8.116247057914734e-01, 8.12147855758667e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.132737874984741e-01, 8.128169775009155e-01, 8.115339875221252e-01, 8.119686245918274e-01, 8.113158941268921e-01, 8.113428950309753e-01, 8.115401864051819e-01, 8.131292462348938e-01, 8.137977719306946e-01, 8.12736988067627e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.098370432853699e-01, 7.70045280456543e-01, 7.77687668800354e-01, 7.833165526390076e-01, 7.537466883659363e-01, 7.649986743927002e-01, 7.689759731292725e-01, 7.603650689125061e-01, 6.935384273529053e-01, 7.597873210906982e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 7.815670371055603e-01, 7.780606150627136e-01, 7.845540046691895e-01, 7.905665636062622e-01, 7.64352560043335e-01, 7.755073308944702e-01, 7.776907086372375e-01, 7.787560820579529e-01, 6.834058165550232e-01, 7.334731817245483e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 7.683596014976501e-01, 8.097759485244751e-01, 8.013379573822021e-01, 7.853823900222778e-01, 7.6124507188797e-01, 7.700363397598267e-01, 7.642940282821655e-01, 7.518114447593689e-01, 6.91516637802124e-01, 8.027051687240601e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01] +sou.vav.y_actual=[9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.130544424057007e-01, 8.124005198478699e-01, 8.125765919685364e-01, 8.119349479675293e-01, 8.125783801078796e-01, 8.125265836715698e-01, 8.121344447135925e-01, 8.119862675666809e-01, 8.11625063419342e-01, 8.121481537818909e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.13274085521698e-01, 8.128173351287842e-01, 8.115342855453491e-01, 8.11968982219696e-01, 8.11316192150116e-01, 8.11343252658844e-01, 8.115405440330505e-01, 8.131295442581177e-01, 8.137981295585632e-01, 8.127373456954956e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.804264068603516e-01, 8.665898442268372e-01, 8.849596977233887e-01, 9.051439762115479e-01, 9.062103033065796e-01, 9.021375775337219e-01, 9.01691198348999e-01, 8.840269446372986e-01, 8.290303349494934e-01, 8.26957643032074e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.55313777923584e-01, 8.64284873008728e-01, 8.81592869758606e-01, 9.030915498733521e-01, 9.006831049919128e-01, 9.018938541412354e-01, 8.994728326797485e-01, 8.964734673500061e-01, 8.404917120933533e-01, 8.457821607589722e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.425821661949158e-01, 8.967916965484619e-01, 9.057556390762329e-01, 9.058587551116943e-01, 8.992540240287781e-01, 9.09697413444519e-01, 9.167011380195618e-01, 8.712660074234009e-01, 8.347848057746887e-01, 8.868159055709839e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01] +eas.vav.y_actual=[9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 7.132105231285095e-01, 7.126250267028809e-01, 7.127828001976013e-01, 7.122074961662292e-01, 7.127844095230103e-01, 7.127379775047302e-01, 7.123864889144897e-01, 7.122535705566406e-01, 7.119292616844177e-01, 7.123987674713135e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.441370725631714e-01, 8.466184735298157e-01, 7.584702968597412e-01, 7.122380137443542e-01, 7.116517424583435e-01, 7.116760611534119e-01, 7.118533253669739e-01, 7.132777571678162e-01, 7.138751745223999e-01, 7.129267454147339e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.441781640052795e-01, 9.102311134338379e-01, 8.867424726486206e-01, 8.368628621101379e-01, 8.170211911201477e-01, 8.12045693397522e-01, 8.142065405845642e-01, 7.978157997131348e-01, 7.491481304168701e-01, 7.55731463432312e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.03864324092865e-01, 9.070823192596436e-01, 8.840608596801758e-01, 8.343228101730347e-01, 8.154469132423401e-01, 8.129075765609741e-01, 8.132475018501282e-01, 8.096123337745667e-01, 7.421868443489075e-01, 7.38764226436615e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.807070255279541e-01, 8.932116627693176e-01, 8.611590266227722e-01, 8.254792094230652e-01, 8.099770545959473e-01, 8.058965802192688e-01, 7.997133135795593e-01, 7.807984948158264e-01, 7.504866123199463e-01, 8.081440329551697e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01] +nor.vav.y_actual=[9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.130544424057007e-01, 8.124005198478699e-01, 8.125765919685364e-01, 8.119349479675293e-01, 8.125783801078796e-01, 8.125265836715698e-01, 8.121344447135925e-01, 8.119862675666809e-01, 8.11625063419342e-01, 8.121481537818909e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.13274085521698e-01, 8.128173351287842e-01, 8.115342855453491e-01, 8.11968982219696e-01, 8.11316192150116e-01, 8.11343252658844e-01, 8.115405440330505e-01, 8.131295442581177e-01, 8.137981295585632e-01, 8.127373456954956e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.696274757385254e-01, 8.525561690330505e-01, 8.674867153167725e-01, 8.776318430900574e-01, 8.633514046669006e-01, 8.66373598575592e-01, 8.720405101776123e-01, 8.601138591766357e-01, 8.021063208580017e-01, 8.014987707138062e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.472322821617126e-01, 8.52905809879303e-01, 8.669250011444092e-01, 8.782421350479126e-01, 8.643009662628174e-01, 8.68934154510498e-01, 8.723548054695129e-01, 8.737561106681824e-01, 7.970331311225891e-01, 7.874056100845337e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.347119688987732e-01, 8.844433426856995e-01, 8.885800242424011e-01, 8.808404803276062e-01, 8.667212724685669e-01, 8.684353828430176e-01, 8.644046783447266e-01, 8.49362313747406e-01, 8.126959800720215e-01, 8.613218665122986e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01] +wes.vav.y_actual=[9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 7.132105231285095e-01, 7.126250267028809e-01, 7.127828001976013e-01, 7.122074961662292e-01, 7.127844095230103e-01, 7.127379775047302e-01, 7.123864889144897e-01, 7.122535705566406e-01, 7.119292616844177e-01, 7.123987674713135e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 7.134069800376892e-01, 7.129983901977539e-01, 7.118477821350098e-01, 7.122380137443542e-01, 7.116517424583435e-01, 7.116760611534119e-01, 7.118533849716187e-01, 8.532547950744629e-01, 8.861210346221924e-01, 8.24579656124115e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.330314755439758e-01, 7.849912643432617e-01, 8.00719678401947e-01, 8.056996464729309e-01, 7.949848771095276e-01, 7.939762473106384e-01, 8.464981317520142e-01, 9.117151498794556e-01, 8.742497563362122e-01, 8.817692399024963e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 7.911704778671265e-01, 7.729693651199341e-01, 7.860353589057922e-01, 8.000013828277588e-01, 7.92663037776947e-01, 7.894321084022522e-01, 8.510128259658813e-01, 9.063562750816345e-01, 8.929218053817749e-01, 8.756006360054016e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 7.801687121391296e-01, 8.063749670982361e-01, 8.09999942779541e-01, 8.02729606628418e-01, 7.919340133666992e-01, 7.914265394210815e-01, 8.32673966884613e-01, 8.72180700302124e-01, 8.70996356010437e-01, 8.874339461326599e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01] +eco.yOut=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 6.277698278427124e-01, 6.297800540924072e-01, 6.267018914222717e-01, 6.296164393424988e-01, 6.29622220993042e-01, 6.275212168693542e-01, 6.263461709022522e-01, 6.245112419128418e-01, 6.269320249557495e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.946114659309387e-01, 5.907513499259949e-01, 6.09423816204071e-01, 6.255608797073364e-01, 6.22589111328125e-01, 6.222376227378845e-01, 6.233906745910645e-01, 5.93272864818573e-01, 5.822875499725342e-01, 5.960217118263245e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.847815036773682e-01, 3.97621214389801e-01, 3.882406651973724e-01, 3.913799226284027e-01, 4.145591557025909e-01, 3.795121610164642e-01, 3.680423200130463e-01, 3.512885272502899e-01, 4.477704763412476e-01, 5.135188698768616e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.264116287231445e-01, 3.67327481508255e-01, 3.67126852273941e-01, 3.750035762786865e-01, 4.010771811008453e-01, 3.736207187175751e-01, 3.637802004814148e-01, 3.499263823032379e-01, 4.370303153991699e-01, 4.988520443439484e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.182026386260986e-01, 3.73769074678421e-01, 3.690250217914581e-01, 3.650682270526886e-01, 3.916548490524292e-01, 3.672672212123871e-01, 3.573102951049805e-01, 3.512986600399017e-01, 4.369108974933624e-01, 5.181340575218201e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +TSupSou.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931501159667969e+02, 2.931499938964844e+02, 2.9314990234375e+02, 2.9314990234375e+02, 2.851676330566406e+02, 2.851671447753906e+02, 2.851640930175781e+02, 2.85144287109375e+02, 2.851593933105469e+02, 2.851531677246094e+02, 2.851512145996094e+02, 2.851557922363281e+02, 2.851455993652344e+02, 2.851399230957031e+02, 2.85379150390625e+02, 2.853790893554688e+02, 2.853790893554688e+02, 2.853790893554688e+02, 2.853778991699219e+02, 2.853776550292969e+02, 2.853773803710938e+02, 2.853770751953125e+02, 2.853768920898438e+02, 2.853768920898438e+02, 2.851527099609375e+02, 2.851524047851562e+02, 2.851380920410156e+02, 2.851544494628906e+02, 2.851513061523438e+02, 2.851510620117188e+02, 2.851459655761719e+02, 2.851582946777344e+02, 2.851480407714844e+02, 2.85138916015625e+02, 2.853857727050781e+02, 2.853857727050781e+02, 2.853859252929688e+02, 2.853861694335938e+02, 2.853861083984375e+02, 2.853862915039062e+02, 2.853863220214844e+02, 2.853863220214844e+02, 2.85386474609375e+02, 2.853864135742188e+02, 2.855076599121094e+02, 2.851526184082031e+02, 2.851260681152344e+02, 2.851564331054688e+02, 2.851611328125e+02, 2.851458740234375e+02, 2.851834411621094e+02, 2.851397094726562e+02, 2.851210021972656e+02, 2.851263122558594e+02, 2.854372863769531e+02, 2.854372863769531e+02, 2.854372863769531e+02, 2.854372863769531e+02, 2.854375610351562e+02, 2.854376525878906e+02, 2.854375e+02, 2.854375610351562e+02, 2.854374694824219e+02, 2.854371337890625e+02, 2.854643859863281e+02, 2.851577758789062e+02, 2.85143310546875e+02, 2.851536865234375e+02, 2.8515185546875e+02, 2.851562194824219e+02, 2.851419372558594e+02, 2.851690673828125e+02, 2.851414489746094e+02, 2.851260375976562e+02, 2.854648742675781e+02, 2.854648742675781e+02, 2.854646606445312e+02, 2.854646301269531e+02, 2.8546435546875e+02, 2.854644470214844e+02, 2.854643859863281e+02, 2.854646301269531e+02, 2.854646301269531e+02, 2.854646606445312e+02, 2.85462158203125e+02, 2.851592102050781e+02, 2.851472778320312e+02, 2.851698303222656e+02, 2.851559753417969e+02, 2.851580505371094e+02, 2.851981811523438e+02, 2.851571960449219e+02, 2.85111083984375e+02, 2.851305541992188e+02, 2.854814453125e+02, 2.854813232421875e+02, 2.8548046875e+02, 2.85480224609375e+02, 2.854800720214844e+02] +TSupEas.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931501159667969e+02, 2.931499938964844e+02, 2.9314990234375e+02, 2.9314990234375e+02, 2.851676330566406e+02, 2.851671752929688e+02, 2.851640930175781e+02, 2.85144287109375e+02, 2.851593933105469e+02, 2.851531677246094e+02, 2.851512145996094e+02, 2.851557922363281e+02, 2.851455993652344e+02, 2.85139892578125e+02, 2.853787841796875e+02, 2.853787231445312e+02, 2.853787231445312e+02, 2.853787536621094e+02, 2.853775329589844e+02, 2.853772888183594e+02, 2.853770141601562e+02, 2.85376708984375e+02, 2.853765258789062e+02, 2.853765258789062e+02, 2.851527099609375e+02, 2.851524047851562e+02, 2.851380920410156e+02, 2.851544494628906e+02, 2.851513061523438e+02, 2.851510620117188e+02, 2.851459655761719e+02, 2.851583251953125e+02, 2.851480712890625e+02, 2.851388854980469e+02, 2.853854064941406e+02, 2.853854064941406e+02, 2.853855285644531e+02, 2.853858032226562e+02, 2.853857421875e+02, 2.853859252929688e+02, 2.853859252929688e+02, 2.853859558105469e+02, 2.853860778808594e+02, 2.853860473632812e+02, 2.855075073242188e+02, 2.85152587890625e+02, 2.851260681152344e+02, 2.851564331054688e+02, 2.851611328125e+02, 2.851458435058594e+02, 2.851834411621094e+02, 2.851397094726562e+02, 2.851209411621094e+02, 2.851262512207031e+02, 2.854367980957031e+02, 2.854367980957031e+02, 2.854367980957031e+02, 2.854367980957031e+02, 2.854370727539062e+02, 2.854371643066406e+02, 2.854370422363281e+02, 2.854370727539062e+02, 2.854369812011719e+02, 2.854366455078125e+02, 2.854642639160156e+02, 2.851577758789062e+02, 2.85143310546875e+02, 2.851536865234375e+02, 2.8515185546875e+02, 2.851562194824219e+02, 2.851419372558594e+02, 2.851690368652344e+02, 2.851413879394531e+02, 2.851259765625e+02, 2.854642028808594e+02, 2.854642028808594e+02, 2.854639587402344e+02, 2.854639282226562e+02, 2.854636840820312e+02, 2.854637756347656e+02, 2.854636840820312e+02, 2.854639282226562e+02, 2.854639282226562e+02, 2.854639892578125e+02, 2.854620666503906e+02, 2.851592102050781e+02, 2.851472778320312e+02, 2.851698303222656e+02, 2.851559753417969e+02, 2.851580505371094e+02, 2.851981506347656e+02, 2.851571655273438e+02, 2.851110229492188e+02, 2.851304931640625e+02, 2.8548095703125e+02, 2.854808349609375e+02, 2.8547998046875e+02, 2.85479736328125e+02, 2.854795837402344e+02] +TSupNor.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931501159667969e+02, 2.931499633789062e+02, 2.9314990234375e+02, 2.9314990234375e+02, 2.851676330566406e+02, 2.851671447753906e+02, 2.851640930175781e+02, 2.85144287109375e+02, 2.851593933105469e+02, 2.851531677246094e+02, 2.851512145996094e+02, 2.851557922363281e+02, 2.851455993652344e+02, 2.851399230957031e+02, 2.85379150390625e+02, 2.853790893554688e+02, 2.853790588378906e+02, 2.853790893554688e+02, 2.853778991699219e+02, 2.853776550292969e+02, 2.853773803710938e+02, 2.853771057128906e+02, 2.853768920898438e+02, 2.853768920898438e+02, 2.851527099609375e+02, 2.851524047851562e+02, 2.851380920410156e+02, 2.851544494628906e+02, 2.851513061523438e+02, 2.851510620117188e+02, 2.851459655761719e+02, 2.851582946777344e+02, 2.851480407714844e+02, 2.85138916015625e+02, 2.853857727050781e+02, 2.853857727050781e+02, 2.853859252929688e+02, 2.853861694335938e+02, 2.853861083984375e+02, 2.853862915039062e+02, 2.853862915039062e+02, 2.853863220214844e+02, 2.853864440917969e+02, 2.853863830566406e+02, 2.855076904296875e+02, 2.851526184082031e+02, 2.851260681152344e+02, 2.851564331054688e+02, 2.851611328125e+02, 2.851458435058594e+02, 2.851834411621094e+02, 2.851397094726562e+02, 2.851209716796875e+02, 2.851262817382812e+02, 2.854371643066406e+02, 2.854371643066406e+02, 2.854371643066406e+02, 2.854371643066406e+02, 2.854374389648438e+02, 2.854375305175781e+02, 2.854373779296875e+02, 2.854374389648438e+02, 2.854373474121094e+02, 2.8543701171875e+02, 2.854643859863281e+02, 2.851577758789062e+02, 2.85143310546875e+02, 2.851536865234375e+02, 2.8515185546875e+02, 2.851562194824219e+02, 2.851419372558594e+02, 2.851690368652344e+02, 2.851414489746094e+02, 2.851260070800781e+02, 2.854647827148438e+02, 2.854647827148438e+02, 2.854645690917969e+02, 2.854645080566406e+02, 2.854642639160156e+02, 2.8546435546875e+02, 2.854642944335938e+02, 2.854645080566406e+02, 2.854645385742188e+02, 2.854645690917969e+02, 2.854621887207031e+02, 2.851592102050781e+02, 2.851472778320312e+02, 2.851698303222656e+02, 2.851559753417969e+02, 2.851580505371094e+02, 2.851981506347656e+02, 2.851571960449219e+02, 2.85111083984375e+02, 2.851305541992188e+02, 2.854813232421875e+02, 2.854812316894531e+02, 2.854803771972656e+02, 2.854801330566406e+02, 2.8547998046875e+02] +TSupWes.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931501159667969e+02, 2.931499938964844e+02, 2.9314990234375e+02, 2.9314990234375e+02, 2.851676330566406e+02, 2.851671752929688e+02, 2.851640930175781e+02, 2.85144287109375e+02, 2.851593933105469e+02, 2.851531677246094e+02, 2.851512145996094e+02, 2.851557922363281e+02, 2.851455993652344e+02, 2.85139892578125e+02, 2.853787841796875e+02, 2.853787231445312e+02, 2.853787231445312e+02, 2.853787536621094e+02, 2.853775329589844e+02, 2.853772888183594e+02, 2.853769836425781e+02, 2.85376708984375e+02, 2.853765258789062e+02, 2.853765258789062e+02, 2.851527099609375e+02, 2.851524047851562e+02, 2.851380920410156e+02, 2.851544494628906e+02, 2.851513061523438e+02, 2.851510620117188e+02, 2.851459655761719e+02, 2.851582946777344e+02, 2.851480407714844e+02, 2.85138916015625e+02, 2.853854064941406e+02, 2.853854064941406e+02, 2.853855590820312e+02, 2.853858032226562e+02, 2.853857421875e+02, 2.853859252929688e+02, 2.853859558105469e+02, 2.853859558105469e+02, 2.853861083984375e+02, 2.853860473632812e+02, 2.855077819824219e+02, 2.851526184082031e+02, 2.851260681152344e+02, 2.851564331054688e+02, 2.851611328125e+02, 2.851458435058594e+02, 2.851834411621094e+02, 2.851397094726562e+02, 2.851210021972656e+02, 2.851263427734375e+02, 2.854373474121094e+02, 2.854373168945312e+02, 2.854373474121094e+02, 2.854373168945312e+02, 2.854375915527344e+02, 2.854376831054688e+02, 2.854375610351562e+02, 2.854375915527344e+02, 2.854375e+02, 2.854371643066406e+02, 2.854645690917969e+02, 2.851577758789062e+02, 2.85143310546875e+02, 2.851536865234375e+02, 2.8515185546875e+02, 2.851562194824219e+02, 2.851419372558594e+02, 2.851690673828125e+02, 2.851414794921875e+02, 2.851260375976562e+02, 2.854648742675781e+02, 2.854649047851562e+02, 2.854646606445312e+02, 2.854646301269531e+02, 2.8546435546875e+02, 2.854644470214844e+02, 2.854643859863281e+02, 2.854646301269531e+02, 2.854646301269531e+02, 2.854646606445312e+02, 2.854623413085938e+02, 2.851592102050781e+02, 2.851472778320312e+02, 2.851698303222656e+02, 2.851559753417969e+02, 2.851580505371094e+02, 2.851981506347656e+02, 2.851571960449219e+02, 2.851111145019531e+02, 2.851305541992188e+02, 2.854812927246094e+02, 2.854811706542969e+02, 2.854803161621094e+02, 2.854800720214844e+02, 2.854799194335938e+02] +TSupCor.T=[2.931499938964844e+02, 2.931499938964844e+02, 2.931501159667969e+02, 2.931499938964844e+02, 2.9314990234375e+02, 2.9314990234375e+02, 2.851676330566406e+02, 2.851671447753906e+02, 2.851640930175781e+02, 2.85144287109375e+02, 2.851593933105469e+02, 2.851531677246094e+02, 2.851512145996094e+02, 2.851557922363281e+02, 2.851455993652344e+02, 2.851399230957031e+02, 2.85379150390625e+02, 2.853790588378906e+02, 2.853790588378906e+02, 2.853790893554688e+02, 2.853778991699219e+02, 2.853776550292969e+02, 2.853773803710938e+02, 2.853771057128906e+02, 2.853768920898438e+02, 2.853768920898438e+02, 2.851527099609375e+02, 2.851524047851562e+02, 2.851380920410156e+02, 2.851544494628906e+02, 2.851513061523438e+02, 2.851510620117188e+02, 2.851459655761719e+02, 2.851582946777344e+02, 2.851480407714844e+02, 2.85138916015625e+02, 2.853857727050781e+02, 2.853857727050781e+02, 2.853858947753906e+02, 2.853861694335938e+02, 2.853861083984375e+02, 2.853862609863281e+02, 2.853862915039062e+02, 2.853862915039062e+02, 2.853864440917969e+02, 2.853863830566406e+02, 2.855078735351562e+02, 2.851526184082031e+02, 2.851260681152344e+02, 2.851564331054688e+02, 2.851611328125e+02, 2.851458435058594e+02, 2.851834106445312e+02, 2.851397094726562e+02, 2.851209106445312e+02, 2.851262512207031e+02, 2.854370727539062e+02, 2.854370422363281e+02, 2.854370727539062e+02, 2.854370727539062e+02, 2.854373168945312e+02, 2.854374084472656e+02, 2.854372863769531e+02, 2.854373168945312e+02, 2.854372253417969e+02, 2.854368896484375e+02, 2.85464599609375e+02, 2.851577758789062e+02, 2.85143310546875e+02, 2.851536865234375e+02, 2.8515185546875e+02, 2.851562194824219e+02, 2.851419372558594e+02, 2.851690368652344e+02, 2.851413269042969e+02, 2.851259765625e+02, 2.854644775390625e+02, 2.854644775390625e+02, 2.854642639160156e+02, 2.854642028808594e+02, 2.854639587402344e+02, 2.854640502929688e+02, 2.854639892578125e+02, 2.854642028808594e+02, 2.854642333984375e+02, 2.854642639160156e+02, 2.854623718261719e+02, 2.851592102050781e+02, 2.851472778320312e+02, 2.851698303222656e+02, 2.851559753417969e+02, 2.851580505371094e+02, 2.851981201171875e+02, 2.851571655273438e+02, 2.851109619140625e+02, 2.851304931640625e+02, 2.854811706542969e+02, 2.854810485839844e+02, 2.854801940917969e+02, 2.8547998046875e+02, 2.854798278808594e+02] +res.EFan=[0e+00, -5.842041295167633e-10, -5.918072698563037e-10, -5.836223726518597e-10, -5.790956603135555e-10, -5.788797774464172e-10, 1.888325927734375e+03, 2.589090087890625e+03, 3.2892470703125e+03, 3.989406982421875e+03, 4.68961962890625e+03, 5.38977099609375e+03, 6.0899580078125e+03, 6.7901982421875e+03, 7.4904609375e+03, 8.190734375e+03, 8.774810546875e+03, 8.774810546875e+03, 8.774810546875e+03, 8.774810546875e+03, 8.774810546875e+03, 8.774810546875e+03, 8.774810546875e+03, 8.774810546875e+03, 8.774810546875e+03, 8.774810546875e+03, 1.16895888671875e+04, 1.2528482421875e+04, 1.33341298828125e+04, 1.403996875e+04, 1.47402587890625e+04, 1.544062109375e+04, 1.6140958984375e+04, 1.691171484375e+04, 1.7796099609375e+04, 1.8650712890625e+04, 1.9270244140625e+04, 1.9270244140625e+04, 1.9270244140625e+04, 1.9270244140625e+04, 1.9270244140625e+04, 1.9270244140625e+04, 1.9270244140625e+04, 1.9270244140625e+04, 1.9270244140625e+04, 1.9270244140625e+04, 2.4485255859375e+04, 2.83442890625e+04, 3.327284375e+04, 3.79293828125e+04, 4.208196484375e+04, 4.730018359375e+04, 5.301644140625e+04, 5.97234765625e+04, 6.492500390625e+04, 6.7213671875e+04, 6.8225046875e+04, 6.8225046875e+04, 6.8225046875e+04, 6.8225046875e+04, 6.8225046875e+04, 6.8225046875e+04, 6.8225046875e+04, 6.8225046875e+04, 6.8225046875e+04, 6.8225046875e+04, 7.55101796875e+04, 8.11032734375e+04, 8.7269671875e+04, 9.29176640625e+04, 9.768053125e+04, 1.03268890625e+05, 1.093098671875e+05, 1.160439375e+05, 1.213735e+05, 1.24287140625e+05, 1.255428984375e+05, 1.255428984375e+05, 1.255428984375e+05, 1.255428984375e+05, 1.255428984375e+05, 1.255428984375e+05, 1.255428984375e+05, 1.255428984375e+05, 1.255428984375e+05, 1.255428984375e+05, 1.33895125e+05, 1.39359953125e+05, 1.44891578125e+05, 1.50815453125e+05, 1.56075125e+05, 1.62187046875e+05, 1.68976953125e+05, 1.77193296875e+05, 1.82756109375e+05, 1.8491596875e+05, 1.8586309375e+05, 1.8586309375e+05, 1.8586309375e+05, 1.8586309375e+05, 1.8586309375e+05] res.EHea=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -res.ECoo=[0e+00, 6.149545777589083e-03, 1.996655948460102e-02, 1.503234729170799e-02, 1.68864568695426e-03, 6.790021900087595e-03, -8.5695421875e+04, -1.71104296875e+05, -2.776766875e+05, -3.9597553125e+05, -5.1364409375e+05, -6.41558875e+05, -7.757751875e+05, -9.131203125e+05, -1.05455325e+06, -1.18905375e+06, -1.29545225e+06, -1.2954585e+06, -1.2954585e+06, -1.2954585e+06, -1.2954585e+06, -1.2954585e+06, -1.2954585e+06, -1.2954585e+06, -1.2954585e+06, -1.2954585e+06, -1.4272365e+06, -1.556176375e+06, -1.68735e+06, -1.818525875e+06, -1.952815375e+06, -2.090091375e+06, -2.23013275e+06, -2.369923e+06, -2.5140375e+06, -2.65510975e+06, -2.765002e+06, -2.76500525e+06, -2.76500525e+06, -2.76500525e+06, -2.76500525e+06, -2.76500525e+06, -2.76500525e+06, -2.76500525e+06, -2.76500525e+06, -2.76500525e+06, -2.92275725e+06, -3.11066e+06, -3.301971e+06, -3.490458e+06, -3.67503025e+06, -3.8691355e+06, -4.06162025e+06, -4.271071e+06, -4.45643e+06, -4.609635e+06, -4.723111e+06, -4.723113e+06, -4.723113e+06, -4.723113e+06, -4.723113e+06, -4.723113e+06, -4.723113e+06, -4.723113e+06, -4.723113e+06, -4.723113e+06, -4.895154e+06, -5.083916e+06, -5.274981e+06, -5.4676105e+06, -5.657589e+06, -5.856884e+06, -6.061855e+06, -6.2647945e+06, -6.4558975e+06, -6.6257615e+06, -6.750892e+06, -6.7508945e+06, -6.7508945e+06, -6.7508945e+06, -6.7508945e+06, -6.7508945e+06, -6.7508945e+06, -6.7508945e+06, -6.7508945e+06, -6.7508945e+06, -6.9341175e+06, -7.1236575e+06, -7.316308e+06, -7.512738e+06, -7.7129855e+06, -7.9178915e+06, -8.120584e+06, -8.33907e+06, -8.545448e+06, -8.72104e+06, -8.853309e+06, -8.853312e+06, -8.853312e+06, -8.853312e+06, -8.853312e+06] +res.ECoo=[0e+00, 6.149545777589083e-03, 1.996655948460102e-02, 1.503234729170799e-02, 1.68864568695426e-03, 6.790021900087595e-03, -8.56954296875e+04, -1.71104296875e+05, -2.776766875e+05, -3.9597553125e+05, -5.13644125e+05, -6.41558875e+05, -7.757751875e+05, -9.131203125e+05, -1.05455325e+06, -1.18905375e+06, -1.29545225e+06, -1.2954585e+06, -1.2954585e+06, -1.2954585e+06, -1.2954585e+06, -1.2954585e+06, -1.2954585e+06, -1.2954585e+06, -1.2954585e+06, -1.2954585e+06, -1.427236625e+06, -1.556176625e+06, -1.68735025e+06, -1.818526e+06, -1.952815625e+06, -2.090091625e+06, -2.230133e+06, -2.36992325e+06, -2.51403775e+06, -2.65511e+06, -2.765002e+06, -2.76500525e+06, -2.76500525e+06, -2.76500525e+06, -2.76500525e+06, -2.7650055e+06, -2.7650055e+06, -2.7650055e+06, -2.7650055e+06, -2.7650055e+06, -2.9227575e+06, -3.11066025e+06, -3.30197125e+06, -3.49045825e+06, -3.6750305e+06, -3.86913575e+06, -4.06162025e+06, -4.2710715e+06, -4.45643e+06, -4.609635e+06, -4.723111e+06, -4.7231135e+06, -4.7231135e+06, -4.7231135e+06, -4.7231135e+06, -4.7231135e+06, -4.7231135e+06, -4.7231135e+06, -4.7231135e+06, -4.7231135e+06, -4.8951545e+06, -5.083916e+06, -5.274981e+06, -5.4676105e+06, -5.6575895e+06, -5.856884e+06, -6.061855e+06, -6.2647945e+06, -6.4558975e+06, -6.6257615e+06, -6.750892e+06, -6.750895e+06, -6.750895e+06, -6.750895e+06, -6.750895e+06, -6.750895e+06, -6.750895e+06, -6.750895e+06, -6.750895e+06, -6.750895e+06, -6.9341175e+06, -7.1236575e+06, -7.316308e+06, -7.512738e+06, -7.7129855e+06, -7.9178915e+06, -8.120584e+06, -8.33907e+06, -8.545448e+06, -8.72104e+06, -8.853309e+06, -8.853312e+06, -8.853312e+06, -8.853312e+06, -8.853312e+06] diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_ThermalZones_EnergyPlus_Examples_SmallOffice_Guideline36Spring.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_ThermalZones_EnergyPlus_Examples_SmallOffice_Guideline36Spring.txt index 9b7a186d2f2..1cb9484ca94 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_ThermalZones_EnergyPlus_Examples_SmallOffice_Guideline36Spring.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_ThermalZones_EnergyPlus_Examples_SmallOffice_Guideline36Spring.txt @@ -1,4 +1,4 @@ -last-generated=2021-01-25 +last-generated=2021-02-17 statistics-initialization= { "linear": "0, 0, 0, 0, 0, 4", @@ -13,25 +13,25 @@ statistics-simulation= "numerical Jacobians": "0" } time=[7.344e+06, 7.776e+06] -flo.sou.TAir=[2.931499938964844e+02, 2.942608642578125e+02, 2.940197448730469e+02, 2.940091247558594e+02, 2.94039306640625e+02, 2.9386376953125e+02, 2.944222717285156e+02, 2.952815551757812e+02, 2.955842590332031e+02, 2.959481201171875e+02, 2.964527893066406e+02, 2.966531677246094e+02, 2.964884948730469e+02, 2.963247985839844e+02, 2.955940246582031e+02, 2.952643127441406e+02, 2.954798278808594e+02, 2.956278686523438e+02, 2.952880554199219e+02, 2.952362976074219e+02, 2.947729797363281e+02, 2.946325073242188e+02, 2.943114318847656e+02, 2.941435241699219e+02, 2.940038146972656e+02, 2.938371887207031e+02, 2.946425476074219e+02, 2.954344482421875e+02, 2.956635131835938e+02, 2.959864196777344e+02, 2.958184509277344e+02, 2.961959228515625e+02, 2.961648864746094e+02, 2.962193298339844e+02, 2.951942749023438e+02, 2.945708618164062e+02, 2.945797424316406e+02, 2.947153015136719e+02, 2.943626708984375e+02, 2.942356567382812e+02, 2.937024230957031e+02, 2.936858215332031e+02, 2.932485046386719e+02, 2.932337341308594e+02, 2.93239013671875e+02, 2.933388061523438e+02, 2.940504760742188e+02, 2.948563537597656e+02, 2.952737426757812e+02, 2.956332397460938e+02, 2.956032409667969e+02, 2.961095581054688e+02, 2.961987915039062e+02, 2.960387268066406e+02, 2.948957824707031e+02, 2.942140502929688e+02, 2.937320556640625e+02, 2.935478515625e+02, 2.932103271484375e+02, 2.929299926757812e+02, 2.926128845214844e+02, 2.924866943359375e+02, 2.920852661132812e+02, 2.920215454101562e+02, 2.918082275390625e+02, 2.935676574707031e+02, 2.935873107910156e+02, 2.940313720703125e+02, 2.94358154296875e+02, 2.946021423339844e+02, 2.944728698730469e+02, 2.948277587890625e+02, 2.949022521972656e+02, 2.948177185058594e+02, 2.93814208984375e+02, 2.932315063476562e+02, 2.926312561035156e+02, 2.918216857910156e+02, 2.916732482910156e+02, 2.914580078125e+02, 2.912285461425781e+02, 2.909208374023438e+02, 2.907207946777344e+02, 2.904942016601562e+02, 2.907472229003906e+02, 2.927205810546875e+02, 2.9339892578125e+02, 2.935018615722656e+02, 2.933800048828125e+02, 2.935389404296875e+02, 2.935683288574219e+02, 2.938731994628906e+02, 2.933940124511719e+02, 2.933998718261719e+02, 2.928157348632812e+02, 2.925972290039062e+02, 2.915742492675781e+02, 2.914256286621094e+02, 2.910499267578125e+02, 2.908739929199219e+02, 2.906349487304688e+02] -flo.eas.TAir=[2.931499938964844e+02, 2.943778076171875e+02, 2.941382751464844e+02, 2.9409521484375e+02, 2.94112060546875e+02, 2.939816589355469e+02, 2.947729187011719e+02, 2.955607299804688e+02, 2.958193969726562e+02, 2.961310729980469e+02, 2.959686279296875e+02, 2.960272521972656e+02, 2.959983825683594e+02, 2.959371643066406e+02, 2.952701110839844e+02, 2.949746398925781e+02, 2.952227172851562e+02, 2.953940124511719e+02, 2.951058044433594e+02, 2.947078857421875e+02, 2.948470764160156e+02, 2.947571411132812e+02, 2.944043273925781e+02, 2.939759826660156e+02, 2.938278198242188e+02, 2.938187255859375e+02, 2.946949462890625e+02, 2.953693237304688e+02, 2.955862426757812e+02, 2.958634338378906e+02, 2.955751037597656e+02, 2.957103576660156e+02, 2.959949035644531e+02, 2.956332092285156e+02, 2.949788818359375e+02, 2.944971923828125e+02, 2.944998474121094e+02, 2.946272277832031e+02, 2.943135986328125e+02, 2.939119567871094e+02, 2.935895385742188e+02, 2.937977294921875e+02, 2.931731262207031e+02, 2.93380615234375e+02, 2.932195434570312e+02, 2.932427673339844e+02, 2.9402685546875e+02, 2.948225708007812e+02, 2.952181091308594e+02, 2.955219116210938e+02, 2.954461364746094e+02, 2.959303588867188e+02, 2.960276794433594e+02, 2.955852966308594e+02, 2.942919921875e+02, 2.937754516601562e+02, 2.93572265625e+02, 2.932548522949219e+02, 2.930860290527344e+02, 2.928247680664062e+02, 2.924906311035156e+02, 2.92447998046875e+02, 2.925280151367188e+02, 2.917457275390625e+02, 2.914367065429688e+02, 2.93307861328125e+02, 2.933645629882812e+02, 2.935032348632812e+02, 2.935309753417969e+02, 2.936266784667969e+02, 2.934152221679688e+02, 2.937115478515625e+02, 2.938050231933594e+02, 2.935942077636719e+02, 2.9287646484375e+02, 2.928253479003906e+02, 2.921369323730469e+02, 2.915977478027344e+02, 2.913381958007812e+02, 2.912054748535156e+02, 2.910071411132812e+02, 2.906915588378906e+02, 2.904161376953125e+02, 2.901834411621094e+02, 2.902225646972656e+02, 2.923042297363281e+02, 2.932113342285156e+02, 2.936463012695312e+02, 2.938070373535156e+02, 2.9398876953125e+02, 2.938661193847656e+02, 2.941704711914062e+02, 2.942160034179688e+02, 2.941949768066406e+02, 2.931720275878906e+02, 2.929505004882812e+02, 2.920272216796875e+02, 2.915613098144531e+02, 2.908230285644531e+02, 2.906510009765625e+02, 2.904271240234375e+02] -flo.nor.TAir=[2.931499938964844e+02, 2.944480285644531e+02, 2.94219970703125e+02, 2.9418212890625e+02, 2.941860656738281e+02, 2.94081787109375e+02, 2.9470849609375e+02, 2.955068054199219e+02, 2.957700805664062e+02, 2.960593566894531e+02, 2.958886108398438e+02, 2.959383850097656e+02, 2.958890075683594e+02, 2.95845703125e+02, 2.951783142089844e+02, 2.949260864257812e+02, 2.951988220214844e+02, 2.953894958496094e+02, 2.952290649414062e+02, 2.949040832519531e+02, 2.948500061035156e+02, 2.947508544921875e+02, 2.945485229492188e+02, 2.942501525878906e+02, 2.937337341308594e+02, 2.935636291503906e+02, 2.946051330566406e+02, 2.953258666992188e+02, 2.953370666503906e+02, 2.956530151367188e+02, 2.9566064453125e+02, 2.95775634765625e+02, 2.955443420410156e+02, 2.960683898925781e+02, 2.9508349609375e+02, 2.945265197753906e+02, 2.944839782714844e+02, 2.946859741210938e+02, 2.944511108398438e+02, 2.941162109375e+02, 2.939110717773438e+02, 2.936683959960938e+02, 2.935627746582031e+02, 2.933533630371094e+02, 2.933738098144531e+02, 2.933995056152344e+02, 2.940632019042969e+02, 2.948413696289062e+02, 2.952278442382812e+02, 2.955372009277344e+02, 2.954595336914062e+02, 2.959477233886719e+02, 2.960404663085938e+02, 2.958529357910156e+02, 2.946185913085938e+02, 2.94197998046875e+02, 2.941200256347656e+02, 2.931897583007812e+02, 2.928663330078125e+02, 2.926039123535156e+02, 2.922530517578125e+02, 2.922002868652344e+02, 2.918975830078125e+02, 2.916459655761719e+02, 2.914312438964844e+02, 2.928072204589844e+02, 2.93385009765625e+02, 2.9397509765625e+02, 2.942891235351562e+02, 2.939215698242188e+02, 2.938567199707031e+02, 2.939174499511719e+02, 2.940076904296875e+02, 2.938138427734375e+02, 2.935125427246094e+02, 2.929247436523438e+02, 2.925608520507812e+02, 2.925534362792969e+02, 2.919117736816406e+02, 2.91817138671875e+02, 2.916727600097656e+02, 2.914111633300781e+02, 2.910294799804688e+02, 2.908106994628906e+02, 2.906761169433594e+02, 2.927822875976562e+02, 2.934380493164062e+02, 2.936336669921875e+02, 2.938264465332031e+02, 2.940883483886719e+02, 2.939775390625e+02, 2.942919006347656e+02, 2.943643188476562e+02, 2.94326171875e+02, 2.932958374023438e+02, 2.929890441894531e+02, 2.924143981933594e+02, 2.91932373046875e+02, 2.914090881347656e+02, 2.912071838378906e+02, 2.909402160644531e+02] -flo.wes.TAir=[2.931499938964844e+02, 2.945340576171875e+02, 2.942995300292969e+02, 2.942957763671875e+02, 2.942799682617188e+02, 2.941184997558594e+02, 2.946816101074219e+02, 2.951906127929688e+02, 2.957213439941406e+02, 2.95831298828125e+02, 2.957089538574219e+02, 2.957867431640625e+02, 2.960121154785156e+02, 2.962116088867188e+02, 2.95384521484375e+02, 2.952623901367188e+02, 2.953746337890625e+02, 2.955335998535156e+02, 2.953329162597656e+02, 2.949874267578125e+02, 2.948460693359375e+02, 2.947252502441406e+02, 2.942146911621094e+02, 2.9423583984375e+02, 2.9422216796875e+02, 2.941365356445312e+02, 2.946207275390625e+02, 2.953783874511719e+02, 2.956087036132812e+02, 2.958830871582031e+02, 2.957125854492188e+02, 2.960627136230469e+02, 2.960692749023438e+02, 2.961728515625e+02, 2.95174072265625e+02, 2.945506896972656e+02, 2.94622314453125e+02, 2.946766052246094e+02, 2.942193298339844e+02, 2.938700866699219e+02, 2.935229797363281e+02, 2.934593811035156e+02, 2.930844116210938e+02, 2.93060302734375e+02, 2.93087646484375e+02, 2.931001892089844e+02, 2.938735656738281e+02, 2.947510681152344e+02, 2.951528625488281e+02, 2.95476806640625e+02, 2.954138488769531e+02, 2.959158630371094e+02, 2.958415832519531e+02, 2.95951904296875e+02, 2.948858947753906e+02, 2.94222900390625e+02, 2.940229797363281e+02, 2.938600158691406e+02, 2.935682983398438e+02, 2.932858581542969e+02, 2.929887390136719e+02, 2.928149108886719e+02, 2.9258056640625e+02, 2.923564758300781e+02, 2.921612854003906e+02, 2.928161315917969e+02, 2.935805358886719e+02, 2.939749450683594e+02, 2.942742004394531e+02, 2.944522705078125e+02, 2.942999877929688e+02, 2.94684814453125e+02, 2.948189697265625e+02, 2.947995300292969e+02, 2.93849853515625e+02, 2.932642822265625e+02, 2.930380859375e+02, 2.924367370605469e+02, 2.918851623535156e+02, 2.917415161132812e+02, 2.915548706054688e+02, 2.912746887207031e+02, 2.909448547363281e+02, 2.907197875976562e+02, 2.906419067382812e+02, 2.929862060546875e+02, 2.933662414550781e+02, 2.93604736328125e+02, 2.937489013671875e+02, 2.937160034179688e+02, 2.93419189453125e+02, 2.935289306640625e+02, 2.935450439453125e+02, 2.932256164550781e+02, 2.925317077636719e+02, 2.92609375e+02, 2.91393798828125e+02, 2.910934143066406e+02, 2.906077575683594e+02, 2.904586791992188e+02, 2.902540588378906e+02] -flo.cor.TAir=[2.931499938964844e+02, 2.947222595214844e+02, 2.944931335449219e+02, 2.9444873046875e+02, 2.944475402832031e+02, 2.943429870605469e+02, 2.948672180175781e+02, 2.956917419433594e+02, 2.959762878417969e+02, 2.962330017089844e+02, 2.961079406738281e+02, 2.961969604492188e+02, 2.961195373535156e+02, 2.960550842285156e+02, 2.9538232421875e+02, 2.951584167480469e+02, 2.954655151367188e+02, 2.956863708496094e+02, 2.954955444335938e+02, 2.952335815429688e+02, 2.950948486328125e+02, 2.949976196289062e+02, 2.946875915527344e+02, 2.945057983398438e+02, 2.942522583007812e+02, 2.941349792480469e+02, 2.948764953613281e+02, 2.956734619140625e+02, 2.958163452148438e+02, 2.960924072265625e+02, 2.959333801269531e+02, 2.962165222167969e+02, 2.961517944335938e+02, 2.963240661621094e+02, 2.953943786621094e+02, 2.94815673828125e+02, 2.948674011230469e+02, 2.949948425292969e+02, 2.946961364746094e+02, 2.944221496582031e+02, 2.940956726074219e+02, 2.940164794921875e+02, 2.936867980957031e+02, 2.93638671875e+02, 2.936015319824219e+02, 2.936665344238281e+02, 2.943168029785156e+02, 2.95131591796875e+02, 2.955015258789062e+02, 2.957881774902344e+02, 2.956779174804688e+02, 2.961760559082031e+02, 2.962631530761719e+02, 2.961724548339844e+02, 2.949968872070312e+02, 2.944327392578125e+02, 2.942826843261719e+02, 2.938605651855469e+02, 2.935806579589844e+02, 2.933078308105469e+02, 2.929991760253906e+02, 2.928946533203125e+02, 2.926180725097656e+02, 2.923914794921875e+02, 2.921651916503906e+02, 2.931978759765625e+02, 2.938179931640625e+02, 2.943063354492188e+02, 2.945353088378906e+02, 2.945180358886719e+02, 2.943282775878906e+02, 2.945908508300781e+02, 2.946829528808594e+02, 2.9456396484375e+02, 2.938468017578125e+02, 2.934255065917969e+02, 2.930916748046875e+02, 2.925837097167969e+02, 2.92282470703125e+02, 2.921072998046875e+02, 2.919029541015625e+02, 2.916300659179688e+02, 2.913747863769531e+02, 2.911593933105469e+02, 2.911502685546875e+02, 2.9308056640625e+02, 2.937062683105469e+02, 2.939582214355469e+02, 2.940418395996094e+02, 2.941995239257812e+02, 2.940698547363281e+02, 2.943929138183594e+02, 2.942008666992188e+02, 2.941359252929688e+02, 2.93370849609375e+02, 2.9311572265625e+02, 2.924209289550781e+02, 2.920967407226562e+02, 2.916444702148438e+02, 2.914482421875e+02, 2.911913757324219e+02] +flo.sou.TAir=[2.931499938964844e+02, 2.942608642578125e+02, 2.940197448730469e+02, 2.940091247558594e+02, 2.94039306640625e+02, 2.9386376953125e+02, 2.944222717285156e+02, 2.952815551757812e+02, 2.955842590332031e+02, 2.959481201171875e+02, 2.964527893066406e+02, 2.966531677246094e+02, 2.964884948730469e+02, 2.963247985839844e+02, 2.955940246582031e+02, 2.952643127441406e+02, 2.954798278808594e+02, 2.956278686523438e+02, 2.952880859375e+02, 2.95236328125e+02, 2.947729797363281e+02, 2.946325073242188e+02, 2.943114318847656e+02, 2.941435241699219e+02, 2.940038146972656e+02, 2.938371887207031e+02, 2.946425476074219e+02, 2.954344482421875e+02, 2.956635131835938e+02, 2.959864196777344e+02, 2.958184509277344e+02, 2.961959228515625e+02, 2.961648864746094e+02, 2.962193298339844e+02, 2.951942749023438e+02, 2.945708618164062e+02, 2.945797424316406e+02, 2.947153015136719e+02, 2.943626708984375e+02, 2.942356567382812e+02, 2.937024230957031e+02, 2.936858215332031e+02, 2.932485046386719e+02, 2.932337341308594e+02, 2.93239013671875e+02, 2.933388061523438e+02, 2.940504760742188e+02, 2.948563537597656e+02, 2.952737426757812e+02, 2.956332397460938e+02, 2.956032409667969e+02, 2.961095581054688e+02, 2.961987915039062e+02, 2.960387268066406e+02, 2.948957824707031e+02, 2.942140502929688e+02, 2.937320556640625e+02, 2.935478515625e+02, 2.932103271484375e+02, 2.929299926757812e+02, 2.926128845214844e+02, 2.924866943359375e+02, 2.920852661132812e+02, 2.920215454101562e+02, 2.918082275390625e+02, 2.935676879882812e+02, 2.935873413085938e+02, 2.940313720703125e+02, 2.94358154296875e+02, 2.946021423339844e+02, 2.944728698730469e+02, 2.948277587890625e+02, 2.949022521972656e+02, 2.948177185058594e+02, 2.93814208984375e+02, 2.932315063476562e+02, 2.926312866210938e+02, 2.918216857910156e+02, 2.916732482910156e+02, 2.914580078125e+02, 2.912285461425781e+02, 2.909208374023438e+02, 2.907207946777344e+02, 2.904942016601562e+02, 2.907472229003906e+02, 2.927205810546875e+02, 2.933989562988281e+02, 2.935018615722656e+02, 2.933800048828125e+02, 2.935389404296875e+02, 2.935683288574219e+02, 2.938731994628906e+02, 2.933940124511719e+02, 2.933998718261719e+02, 2.928157348632812e+02, 2.925972290039062e+02, 2.915742492675781e+02, 2.914256286621094e+02, 2.910499267578125e+02, 2.908739929199219e+02, 2.906349487304688e+02] +flo.eas.TAir=[2.931499938964844e+02, 2.943778076171875e+02, 2.941382751464844e+02, 2.9409521484375e+02, 2.94112060546875e+02, 2.939816589355469e+02, 2.947729187011719e+02, 2.955607299804688e+02, 2.958193969726562e+02, 2.961310729980469e+02, 2.959686279296875e+02, 2.960272521972656e+02, 2.959983825683594e+02, 2.959371643066406e+02, 2.952701110839844e+02, 2.949746398925781e+02, 2.952227172851562e+02, 2.953940124511719e+02, 2.951058044433594e+02, 2.947078857421875e+02, 2.948470764160156e+02, 2.947571411132812e+02, 2.944043273925781e+02, 2.939759826660156e+02, 2.938278198242188e+02, 2.938187255859375e+02, 2.946949157714844e+02, 2.953693237304688e+02, 2.955862426757812e+02, 2.958634338378906e+02, 2.955751037597656e+02, 2.957103576660156e+02, 2.959949035644531e+02, 2.956332092285156e+02, 2.949788818359375e+02, 2.944971923828125e+02, 2.944998474121094e+02, 2.946272277832031e+02, 2.943135986328125e+02, 2.939119567871094e+02, 2.935895385742188e+02, 2.937977294921875e+02, 2.931731262207031e+02, 2.93380615234375e+02, 2.932195434570312e+02, 2.932427673339844e+02, 2.9402685546875e+02, 2.948225708007812e+02, 2.952181091308594e+02, 2.955219116210938e+02, 2.954461364746094e+02, 2.959303588867188e+02, 2.960276794433594e+02, 2.955852966308594e+02, 2.942919921875e+02, 2.937754516601562e+02, 2.93572265625e+02, 2.932548522949219e+02, 2.930860290527344e+02, 2.928247680664062e+02, 2.924906311035156e+02, 2.92447998046875e+02, 2.925280151367188e+02, 2.917457275390625e+02, 2.914367065429688e+02, 2.93307861328125e+02, 2.933645629882812e+02, 2.935032348632812e+02, 2.935309753417969e+02, 2.936266784667969e+02, 2.934152221679688e+02, 2.937115478515625e+02, 2.938050231933594e+02, 2.935942077636719e+02, 2.9287646484375e+02, 2.928253479003906e+02, 2.921369323730469e+02, 2.915977478027344e+02, 2.913381958007812e+02, 2.912054748535156e+02, 2.910071411132812e+02, 2.906915588378906e+02, 2.904161376953125e+02, 2.901834411621094e+02, 2.902225646972656e+02, 2.923042297363281e+02, 2.932113342285156e+02, 2.936463012695312e+02, 2.938070373535156e+02, 2.9398876953125e+02, 2.938661193847656e+02, 2.941704711914062e+02, 2.942160034179688e+02, 2.941949768066406e+02, 2.931720275878906e+02, 2.929505004882812e+02, 2.920272216796875e+02, 2.915613098144531e+02, 2.908230285644531e+02, 2.906510009765625e+02, 2.904271240234375e+02] +flo.nor.TAir=[2.931499938964844e+02, 2.944480285644531e+02, 2.94219970703125e+02, 2.9418212890625e+02, 2.941860656738281e+02, 2.94081787109375e+02, 2.9470849609375e+02, 2.955068054199219e+02, 2.957700805664062e+02, 2.960593566894531e+02, 2.958886108398438e+02, 2.959383850097656e+02, 2.958890075683594e+02, 2.95845703125e+02, 2.951783142089844e+02, 2.949260864257812e+02, 2.951988220214844e+02, 2.953894958496094e+02, 2.952290649414062e+02, 2.949040832519531e+02, 2.948500061035156e+02, 2.947508544921875e+02, 2.945485229492188e+02, 2.942501525878906e+02, 2.937337341308594e+02, 2.935636291503906e+02, 2.946051330566406e+02, 2.953258666992188e+02, 2.953370666503906e+02, 2.956530151367188e+02, 2.9566064453125e+02, 2.95775634765625e+02, 2.955443420410156e+02, 2.960683898925781e+02, 2.9508349609375e+02, 2.945265197753906e+02, 2.944839782714844e+02, 2.946859741210938e+02, 2.944511108398438e+02, 2.941162109375e+02, 2.939110717773438e+02, 2.936683959960938e+02, 2.935627746582031e+02, 2.933533630371094e+02, 2.933738098144531e+02, 2.933995056152344e+02, 2.940632019042969e+02, 2.948413696289062e+02, 2.952278442382812e+02, 2.955372009277344e+02, 2.954595336914062e+02, 2.959477233886719e+02, 2.960404663085938e+02, 2.958529357910156e+02, 2.946185913085938e+02, 2.94197998046875e+02, 2.941200256347656e+02, 2.931897583007812e+02, 2.928663330078125e+02, 2.926039123535156e+02, 2.922530517578125e+02, 2.922002868652344e+02, 2.918975830078125e+02, 2.916459655761719e+02, 2.914312438964844e+02, 2.928072204589844e+02, 2.933850402832031e+02, 2.939750671386719e+02, 2.942891235351562e+02, 2.939215698242188e+02, 2.938567199707031e+02, 2.939174499511719e+02, 2.940076904296875e+02, 2.938138427734375e+02, 2.935125427246094e+02, 2.929247436523438e+02, 2.925608825683594e+02, 2.925534362792969e+02, 2.919117736816406e+02, 2.91817138671875e+02, 2.916727600097656e+02, 2.914111633300781e+02, 2.910294799804688e+02, 2.908106994628906e+02, 2.906761169433594e+02, 2.927822875976562e+02, 2.934380493164062e+02, 2.936336669921875e+02, 2.938264465332031e+02, 2.940883483886719e+02, 2.939775390625e+02, 2.942919006347656e+02, 2.943643188476562e+02, 2.94326171875e+02, 2.932958374023438e+02, 2.929890441894531e+02, 2.924144287109375e+02, 2.91932373046875e+02, 2.914090881347656e+02, 2.912071838378906e+02, 2.909402160644531e+02] +flo.wes.TAir=[2.931499938964844e+02, 2.945340576171875e+02, 2.942995300292969e+02, 2.942957763671875e+02, 2.942799682617188e+02, 2.941184997558594e+02, 2.946816101074219e+02, 2.951906127929688e+02, 2.957213439941406e+02, 2.95831298828125e+02, 2.957089538574219e+02, 2.957867431640625e+02, 2.960121154785156e+02, 2.962116088867188e+02, 2.95384521484375e+02, 2.952623901367188e+02, 2.953746337890625e+02, 2.955335998535156e+02, 2.953329162597656e+02, 2.949874267578125e+02, 2.948460693359375e+02, 2.947252502441406e+02, 2.942146911621094e+02, 2.9423583984375e+02, 2.9422216796875e+02, 2.941365356445312e+02, 2.946206970214844e+02, 2.953783874511719e+02, 2.956087036132812e+02, 2.958830871582031e+02, 2.957125854492188e+02, 2.960627136230469e+02, 2.960692749023438e+02, 2.961728515625e+02, 2.95174072265625e+02, 2.945506896972656e+02, 2.94622314453125e+02, 2.946766357421875e+02, 2.942193298339844e+02, 2.938700866699219e+02, 2.935229797363281e+02, 2.934593811035156e+02, 2.930844116210938e+02, 2.93060302734375e+02, 2.93087646484375e+02, 2.931001892089844e+02, 2.938735656738281e+02, 2.947510681152344e+02, 2.951528625488281e+02, 2.95476806640625e+02, 2.954138488769531e+02, 2.959158630371094e+02, 2.958415832519531e+02, 2.95951904296875e+02, 2.948858947753906e+02, 2.94222900390625e+02, 2.940229797363281e+02, 2.938600158691406e+02, 2.935682983398438e+02, 2.932858581542969e+02, 2.929887390136719e+02, 2.928149108886719e+02, 2.9258056640625e+02, 2.923564758300781e+02, 2.921612854003906e+02, 2.928161315917969e+02, 2.935805358886719e+02, 2.939749450683594e+02, 2.942742004394531e+02, 2.944522705078125e+02, 2.942999877929688e+02, 2.94684814453125e+02, 2.948189697265625e+02, 2.947995300292969e+02, 2.93849853515625e+02, 2.932642822265625e+02, 2.930380859375e+02, 2.924367370605469e+02, 2.918851623535156e+02, 2.917415161132812e+02, 2.915548706054688e+02, 2.912746887207031e+02, 2.909448547363281e+02, 2.907197875976562e+02, 2.906419067382812e+02, 2.929862060546875e+02, 2.933662414550781e+02, 2.936047668457031e+02, 2.937489013671875e+02, 2.937160034179688e+02, 2.93419189453125e+02, 2.935289306640625e+02, 2.935450439453125e+02, 2.932256164550781e+02, 2.9253173828125e+02, 2.92609375e+02, 2.91393798828125e+02, 2.910934143066406e+02, 2.906077575683594e+02, 2.904586791992188e+02, 2.902540588378906e+02] +flo.cor.TAir=[2.931499938964844e+02, 2.947222595214844e+02, 2.944931335449219e+02, 2.9444873046875e+02, 2.944475402832031e+02, 2.943429870605469e+02, 2.948672180175781e+02, 2.956917419433594e+02, 2.959762878417969e+02, 2.962330017089844e+02, 2.961079406738281e+02, 2.961969604492188e+02, 2.961195373535156e+02, 2.960550842285156e+02, 2.9538232421875e+02, 2.951584167480469e+02, 2.954655151367188e+02, 2.956863708496094e+02, 2.954955444335938e+02, 2.952335815429688e+02, 2.950948486328125e+02, 2.949975891113281e+02, 2.946875915527344e+02, 2.945057983398438e+02, 2.942522583007812e+02, 2.941349792480469e+02, 2.948764953613281e+02, 2.956734619140625e+02, 2.958163452148438e+02, 2.960924072265625e+02, 2.959333801269531e+02, 2.962165222167969e+02, 2.961517944335938e+02, 2.963240661621094e+02, 2.953943786621094e+02, 2.94815673828125e+02, 2.948674011230469e+02, 2.949948425292969e+02, 2.946961364746094e+02, 2.944221496582031e+02, 2.940956726074219e+02, 2.940164794921875e+02, 2.936867980957031e+02, 2.93638671875e+02, 2.936015319824219e+02, 2.936665344238281e+02, 2.943168029785156e+02, 2.95131591796875e+02, 2.955015258789062e+02, 2.957881774902344e+02, 2.956779174804688e+02, 2.961760559082031e+02, 2.962631530761719e+02, 2.961724548339844e+02, 2.949968872070312e+02, 2.944327392578125e+02, 2.942826843261719e+02, 2.938605651855469e+02, 2.935806579589844e+02, 2.933078308105469e+02, 2.929991760253906e+02, 2.928946533203125e+02, 2.926180725097656e+02, 2.923914794921875e+02, 2.921651916503906e+02, 2.931978759765625e+02, 2.938180236816406e+02, 2.943063354492188e+02, 2.945353088378906e+02, 2.945180358886719e+02, 2.943282775878906e+02, 2.945908508300781e+02, 2.946829528808594e+02, 2.9456396484375e+02, 2.938468017578125e+02, 2.934255065917969e+02, 2.930916748046875e+02, 2.925837097167969e+02, 2.92282470703125e+02, 2.921072998046875e+02, 2.919029541015625e+02, 2.916300659179688e+02, 2.913747863769531e+02, 2.911593933105469e+02, 2.911502685546875e+02, 2.9308056640625e+02, 2.937062683105469e+02, 2.93958251953125e+02, 2.940418395996094e+02, 2.941995239257812e+02, 2.940698547363281e+02, 2.943929138183594e+02, 2.942008666992188e+02, 2.941359252929688e+02, 2.93370849609375e+02, 2.931157531738281e+02, 2.924209289550781e+02, 2.920967407226562e+02, 2.916444702148438e+02, 2.914482727050781e+02, 2.911913757324219e+02] TZonSet[1].TZonCooSet=[3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02] TZonSet[1].TZonHeaSet=[2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02] -fanSup.y=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.005962371826172e-01, 3.004692494869232e-01, 3.005706071853638e-01, 3.00634354352951e-01, 3.014032542705536e-01, 3.014898896217346e-01, 3.014796078205109e-01, 3.014720380306244e-01, 3.014639914035797e-01, 3.009775578975677e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.006735444068909e-01, 3.004996478557587e-01, 3.004895448684692e-01, 3.00508052110672e-01, 3.005478084087372e-01, 3.00554096698761e-01, 3.005662560462952e-01, 3.005879521369934e-01, 3.005679547786713e-01, 3.005796372890472e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.416772902011871e-01, 3.006047010421753e-01, 3.00509124994278e-01, 3.005075454711914e-01, 3.005280792713165e-01, 3.005563020706177e-01, 3.005759418010712e-01, 3.005828857421875e-01, 3.005602359771729e-01, 3.005647957324982e-01, 3.005757033824921e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.901224434375763e-01, 3.004912436008453e-01, 3.005093932151794e-01, 3.005727827548981e-01, 3.005383610725403e-01, 3.005655109882355e-01, 3.005569875240326e-01, 3.005586564540863e-01, 3.005599677562714e-01, 3.006455898284912e-01, 3.006551563739777e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.943107068538666e-01, 3.046377003192902e-01, 3.004875183105469e-01, 3.006114959716797e-01, 3.005641400814056e-01, 3.005581796169281e-01, 3.005671203136444e-01, 3.005600571632385e-01, 3.005602955818176e-01, 3.006119728088379e-01, 3.017184734344482e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -cor.vav.y_actual=[9.990000128746033e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.20454740524292e-01, 9.213752746582031e-01, 9.208775758743286e-01, 9.222158193588257e-01, 9.237138628959656e-01, 9.151954650878906e-01, 9.168077707290649e-01, 9.184973835945129e-01, 9.196567535400391e-01, 9.183841943740845e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.168484210968018e-01, 9.189339876174927e-01, 9.191521406173706e-01, 9.190551042556763e-01, 9.190789461135864e-01, 9.209463596343994e-01, 9.202827215194702e-01, 9.177694320678711e-01, 9.194725155830383e-01, 9.1828852891922e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.167543053627014e-01, 9.173842668533325e-01, 9.174924492835999e-01, 9.172407984733582e-01, 9.178310036659241e-01, 9.177797436714172e-01, 9.175040125846863e-01, 9.203488230705261e-01, 9.202756881713867e-01, 9.190570712089539e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.213038682937622e-01, 9.180471301078796e-01, 9.153730869293213e-01, 9.213010668754578e-01, 9.202877879142761e-01, 9.215885400772095e-01, 9.216160774230957e-01, 9.214786887168884e-01, 9.167087078094482e-01, 9.206472039222717e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.642383575439453e-01, 9.149267077445984e-01, 9.208664298057556e-01, 9.191647171974182e-01, 9.20964777469635e-01, 9.216449856758118e-01, 9.207118153572083e-01, 9.214279651641846e-01, 9.21366810798645e-01, 9.20620858669281e-01, 9.270930290222168e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -sou.vav.y_actual=[9.990000128746033e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.204552173614502e-01, 9.213757514953613e-01, 9.208780527114868e-01, 9.222162961959839e-01, 9.237143397331238e-01, 9.151959419250488e-01, 9.168082475662231e-01, 9.184978604316711e-01, 9.196572303771973e-01, 9.183846116065979e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.168488383293152e-01, 9.189344644546509e-01, 9.19152557849884e-01, 9.190555214881897e-01, 9.190793633460999e-01, 9.209467768669128e-01, 9.202831983566284e-01, 9.177698493003845e-01, 9.194729328155518e-01, 9.182890057563782e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.167547821998596e-01, 9.173846840858459e-01, 9.174928665161133e-01, 9.172412753105164e-01, 9.178314805030823e-01, 9.177801609039307e-01, 9.175044894218445e-01, 9.203492999076843e-01, 9.202761054039001e-01, 9.190574884414673e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.457064986228943e-01, 9.213043451309204e-01, 9.180476069450378e-01, 9.153735041618347e-01, 9.21301543712616e-01, 9.202882051467896e-01, 9.215890169143677e-01, 9.216164946556091e-01, 9.214791059494019e-01, 9.167091250419617e-01, 9.206476807594299e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.642383575439453e-01, 9.149271845817566e-01, 9.208669066429138e-01, 9.191651940345764e-01, 9.209651947021484e-01, 9.216454029083252e-01, 9.207122325897217e-01, 9.214284420013428e-01, 9.213672280311584e-01, 9.206213355064392e-01, 9.270934462547302e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -eas.vav.y_actual=[9.990000128746033e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.049776554107666e-01, 8.056851625442505e-01, 8.053028583526611e-01, 8.063272833824158e-01, 8.074603080749512e-01, 8.008939623832703e-01, 8.021546006202698e-01, 8.034669160842896e-01, 8.043628931045532e-01, 8.03379237651825e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.021862506866455e-01, 8.038047552108765e-01, 8.039733171463013e-01, 8.038983345031738e-01, 8.039167523384094e-01, 8.053557276725769e-01, 8.048452734947205e-01, 8.029025197029114e-01, 8.042206764221191e-01, 8.033051490783691e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.021129965782166e-01, 8.026033043861389e-01, 8.02687406539917e-01, 8.024917840957642e-01, 8.029503226280212e-01, 8.029105663299561e-01, 8.026964068412781e-01, 8.048961758613586e-01, 8.048398494720459e-01, 8.038998246192932e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.457064986228943e-01, 8.056303858757019e-01, 8.031180500984192e-01, 8.010332584381104e-01, 8.0562824010849e-01, 8.048491477966309e-01, 8.058485388755798e-01, 8.058695793151855e-01, 8.05764377117157e-01, 8.020774126052856e-01, 8.051257729530334e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.642383575439453e-01, 8.275077342987061e-01, 8.052943348884583e-01, 8.039830923080444e-01, 8.053699135780334e-01, 8.058916926383972e-01, 8.051754236221313e-01, 8.057255148887634e-01, 8.056786060333252e-01, 8.051055073738098e-01, 8.099713325500488e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -nor.vav.y_actual=[9.990000128746033e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.204552173614502e-01, 9.213757514953613e-01, 9.208780527114868e-01, 9.222162961959839e-01, 9.237143397331238e-01, 9.151959419250488e-01, 9.168082475662231e-01, 9.184978604316711e-01, 9.196572303771973e-01, 9.183846116065979e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.168488383293152e-01, 9.189344644546509e-01, 9.19152557849884e-01, 9.190555214881897e-01, 9.190793633460999e-01, 9.209467768669128e-01, 9.202831983566284e-01, 9.177698493003845e-01, 9.194729328155518e-01, 9.182890057563782e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.167547821998596e-01, 9.173846840858459e-01, 9.174928665161133e-01, 9.172412753105164e-01, 9.178314805030823e-01, 9.177801609039307e-01, 9.175044894218445e-01, 9.203492999076843e-01, 9.202761054039001e-01, 9.190574884414673e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.457064986228943e-01, 9.213043451309204e-01, 9.180476069450378e-01, 9.153735041618347e-01, 9.21301543712616e-01, 9.202882051467896e-01, 9.215890169143677e-01, 9.216164946556091e-01, 9.214791059494019e-01, 9.167091250419617e-01, 9.206476807594299e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.642383575439453e-01, 9.149271845817566e-01, 9.208669066429138e-01, 9.191651940345764e-01, 9.209651947021484e-01, 9.216454029083252e-01, 9.207122325897217e-01, 9.214284420013428e-01, 9.213672280311584e-01, 9.206213355064392e-01, 9.270934462547302e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -wes.vav.y_actual=[9.990000128746033e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.049776554107666e-01, 8.056851625442505e-01, 8.053028583526611e-01, 8.063272833824158e-01, 8.074603080749512e-01, 8.008939623832703e-01, 8.021546006202698e-01, 8.034669160842896e-01, 8.043628931045532e-01, 8.03379237651825e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.021862506866455e-01, 8.038047552108765e-01, 8.039733171463013e-01, 8.038983345031738e-01, 8.039167523384094e-01, 8.053557276725769e-01, 8.048452734947205e-01, 8.029025197029114e-01, 8.042206764221191e-01, 8.033051490783691e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.021129965782166e-01, 8.026033043861389e-01, 8.02687406539917e-01, 8.024917840957642e-01, 8.029503226280212e-01, 8.029105663299561e-01, 8.026964068412781e-01, 8.048961758613586e-01, 8.048398494720459e-01, 8.038998246192932e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.056303858757019e-01, 8.031180500984192e-01, 8.010332584381104e-01, 8.0562824010849e-01, 8.048491477966309e-01, 8.058485388755798e-01, 8.058695793151855e-01, 8.05764377117157e-01, 8.020774126052856e-01, 8.051257729530334e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.642383575439453e-01, 8.006829023361206e-01, 8.052943348884583e-01, 8.039830923080444e-01, 8.053699135780334e-01, 8.058916926383972e-01, 8.051754236221313e-01, 8.057255148887634e-01, 8.056786060333252e-01, 8.051055073738098e-01, 8.254405856132507e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -eco.yOut=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 6.624172329902649e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 6.109426617622375e-01, 8.629925847053528e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 6.893836855888367e-01, 9.141878485679626e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.0922931432724e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.062968254089355e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -TSupSou.T=[2.931499938964844e+02, 2.9314697265625e+02, 2.931304626464844e+02, 2.930965270996094e+02, 2.930473327636719e+02, 2.929854431152344e+02, 2.913341369628906e+02, 2.917377014160156e+02, 2.912146301269531e+02, 2.911939697265625e+02, 2.894501342773438e+02, 2.869810485839844e+02, 2.858681335449219e+02, 2.858828735351562e+02, 2.879443664550781e+02, 2.9058056640625e+02, 2.910152587890625e+02, 2.910255432128906e+02, 2.910101623535156e+02, 2.909860534667969e+02, 2.90952880859375e+02, 2.909112854003906e+02, 2.908609619140625e+02, 2.908053588867188e+02, 2.907484741210938e+02, 2.906817932128906e+02, 2.911038208007812e+02, 2.911548461914062e+02, 2.911628723144531e+02, 2.911055603027344e+02, 2.911204833984375e+02, 2.911395568847656e+02, 2.911610717773438e+02, 2.911768188476562e+02, 2.91161865234375e+02, 2.911416320800781e+02, 2.911578369140625e+02, 2.911617431640625e+02, 2.911265258789062e+02, 2.910509948730469e+02, 2.909513854980469e+02, 2.908374633789062e+02, 2.907130432128906e+02, 2.905878295898438e+02, 2.904633483886719e+02, 2.985390319824219e+02, 2.9119970703125e+02, 2.911842041015625e+02, 2.911526489257812e+02, 2.911792602539062e+02, 2.911587219238281e+02, 2.913627624511719e+02, 2.90913330078125e+02, 2.911072998046875e+02, 2.910875244140625e+02, 2.9112890625e+02, 2.911244506835938e+02, 2.910767822265625e+02, 2.90979736328125e+02, 2.908451843261719e+02, 2.906817932128906e+02, 2.904961547851562e+02, 2.902893981933594e+02, 2.900729370117188e+02, 2.898482666015625e+02, 3.01933837890625e+02, 2.929733276367188e+02, 2.911104431152344e+02, 2.911272583007812e+02, 2.911175231933594e+02, 2.911443786621094e+02, 2.91146240234375e+02, 2.911184997558594e+02, 2.911503295898438e+02, 2.910439758300781e+02, 2.911800842285156e+02, 2.910696411132812e+02, 2.910094909667969e+02, 2.908760986328125e+02, 2.906980590820312e+02, 2.904911804199219e+02, 2.902615051269531e+02, 2.90012939453125e+02, 2.89754150390625e+02, 2.894904479980469e+02, 3.006044311523438e+02, 2.992057189941406e+02, 2.936031799316406e+02, 2.912779846191406e+02, 2.911620178222656e+02, 2.91170166015625e+02, 2.911172485351562e+02, 2.911333618164062e+02, 2.911103515625e+02, 2.943490295410156e+02, 3.01389892578125e+02, 2.931433715820312e+02, 2.923377380371094e+02, 2.916784973144531e+02, 2.911587829589844e+02, 2.907306213378906e+02] -TSupEas.T=[2.931499938964844e+02, 2.931470031738281e+02, 2.931304931640625e+02, 2.930965576171875e+02, 2.930473327636719e+02, 2.929854431152344e+02, 2.913333740234375e+02, 2.917378540039062e+02, 2.912146301269531e+02, 2.911940002441406e+02, 2.894523620605469e+02, 2.869815673828125e+02, 2.85869140625e+02, 2.858812255859375e+02, 2.879435729980469e+02, 2.905831298828125e+02, 2.910151977539062e+02, 2.910249633789062e+02, 2.91009765625e+02, 2.909857788085938e+02, 2.909527282714844e+02, 2.909111633300781e+02, 2.908609008789062e+02, 2.908052978515625e+02, 2.907484741210938e+02, 2.906817932128906e+02, 2.911036376953125e+02, 2.911548461914062e+02, 2.911628723144531e+02, 2.911055908203125e+02, 2.911204833984375e+02, 2.911395263671875e+02, 2.911610717773438e+02, 2.911767883300781e+02, 2.911618957519531e+02, 2.911416015625e+02, 2.9115771484375e+02, 2.911614379882812e+02, 2.911261596679688e+02, 2.910507507324219e+02, 2.909512329101562e+02, 2.908373718261719e+02, 2.907129821777344e+02, 2.905877685546875e+02, 2.904633178710938e+02, 2.985390319824219e+02, 2.911996459960938e+02, 2.911842041015625e+02, 2.911526489257812e+02, 2.911824645996094e+02, 2.911560974121094e+02, 2.913626098632812e+02, 2.909140930175781e+02, 2.911072998046875e+02, 2.910874633789062e+02, 2.9112890625e+02, 2.9112451171875e+02, 2.910768432617188e+02, 2.909797668457031e+02, 2.908451843261719e+02, 2.906817932128906e+02, 2.904961547851562e+02, 2.902894287109375e+02, 2.900729370117188e+02, 2.898482666015625e+02, 3.019408264160156e+02, 2.974472045898438e+02, 2.9312109375e+02, 2.911272583007812e+02, 2.911175537109375e+02, 2.911443176269531e+02, 2.911462097167969e+02, 2.911185607910156e+02, 2.911502990722656e+02, 2.9385302734375e+02, 2.982111206054688e+02, 2.931749267578125e+02, 2.923363647460938e+02, 2.91690673828125e+02, 2.9120263671875e+02, 2.908053283691406e+02, 2.904562377929688e+02, 2.901324462890625e+02, 2.898272705078125e+02, 2.895351867675781e+02, 3.01379638671875e+02, 3.041610107421875e+02, 3.00410888671875e+02, 2.915845031738281e+02, 2.911620483398438e+02, 2.911702270507812e+02, 2.911172180175781e+02, 2.911333618164062e+02, 2.911103820800781e+02, 2.908767700195312e+02, 2.939724426269531e+02, 2.919720153808594e+02, 2.915873107910156e+02, 2.912172241210938e+02, 2.908755187988281e+02, 2.905550537109375e+02] -TSupNor.T=[2.931499938964844e+02, 2.931470031738281e+02, 2.931304626464844e+02, 2.930965576171875e+02, 2.930473327636719e+02, 2.929854431152344e+02, 2.913341369628906e+02, 2.917377014160156e+02, 2.912146301269531e+02, 2.911939697265625e+02, 2.894501342773438e+02, 2.869810485839844e+02, 2.858681335449219e+02, 2.858828735351562e+02, 2.879443664550781e+02, 2.9058056640625e+02, 2.910152587890625e+02, 2.910249633789062e+02, 2.91009765625e+02, 2.909858093261719e+02, 2.909527282714844e+02, 2.909111633300781e+02, 2.908609008789062e+02, 2.908052978515625e+02, 2.907484741210938e+02, 2.906817932128906e+02, 2.911038208007812e+02, 2.911548461914062e+02, 2.911628723144531e+02, 2.911055603027344e+02, 2.911204833984375e+02, 2.911395568847656e+02, 2.911610717773438e+02, 2.911768188476562e+02, 2.91161865234375e+02, 2.911416320800781e+02, 2.911577758789062e+02, 2.911615600585938e+02, 2.911263427734375e+02, 2.910508728027344e+02, 2.909513244628906e+02, 2.908374328613281e+02, 2.907130126953125e+02, 2.905877990722656e+02, 2.904633483886719e+02, 2.985390319824219e+02, 2.9119970703125e+02, 2.911842041015625e+02, 2.911526489257812e+02, 2.911792602539062e+02, 2.911587219238281e+02, 2.913627624511719e+02, 2.90913330078125e+02, 2.911072998046875e+02, 2.910875244140625e+02, 2.9112890625e+02, 2.9112451171875e+02, 2.910768432617188e+02, 2.909797668457031e+02, 2.908451843261719e+02, 2.906817932128906e+02, 2.904961547851562e+02, 2.902894287109375e+02, 2.900729370117188e+02, 2.898482666015625e+02, 3.022979125976562e+02, 2.987279663085938e+02, 2.911104431152344e+02, 2.911272583007812e+02, 2.911175231933594e+02, 2.911443786621094e+02, 2.91146240234375e+02, 2.911184997558594e+02, 2.911503295898438e+02, 2.910439758300781e+02, 2.939515991210938e+02, 2.917235717773438e+02, 2.914216613769531e+02, 2.911291198730469e+02, 2.908547973632812e+02, 2.905887756347656e+02, 2.903219909667969e+02, 2.90050048828125e+02, 2.8977685546875e+02, 2.895043334960938e+02, 3.003030090332031e+02, 2.981504211425781e+02, 2.921285095214844e+02, 2.912182922363281e+02, 2.911620178222656e+02, 2.91170166015625e+02, 2.911172485351562e+02, 2.911333618164062e+02, 2.911103515625e+02, 2.908767700195312e+02, 2.932090759277344e+02, 2.916470031738281e+02, 2.913790588378906e+02, 2.910892333984375e+02, 2.907969360351562e+02, 2.9050634765625e+02] -TSupWes.T=[2.931499938964844e+02, 2.931470336914062e+02, 2.931304931640625e+02, 2.930965576171875e+02, 2.930473327636719e+02, 2.929854431152344e+02, 2.913333740234375e+02, 2.917378540039062e+02, 2.912146301269531e+02, 2.911940002441406e+02, 2.894523620605469e+02, 2.869815673828125e+02, 2.85869140625e+02, 2.858812255859375e+02, 2.879435729980469e+02, 2.905831298828125e+02, 2.910151977539062e+02, 2.910252685546875e+02, 2.910099792480469e+02, 2.909859313964844e+02, 2.909528198242188e+02, 2.909112243652344e+02, 2.908609313964844e+02, 2.908053283691406e+02, 2.907484741210938e+02, 2.906817932128906e+02, 2.911036376953125e+02, 2.911548461914062e+02, 2.911628723144531e+02, 2.911055908203125e+02, 2.911204833984375e+02, 2.911395263671875e+02, 2.911610717773438e+02, 2.911767883300781e+02, 2.911618957519531e+02, 2.911416015625e+02, 2.911578063964844e+02, 2.911616516113281e+02, 2.911263732910156e+02, 2.910509033203125e+02, 2.909513244628906e+02, 2.908374328613281e+02, 2.907130432128906e+02, 2.905877990722656e+02, 2.904633483886719e+02, 2.985390319824219e+02, 2.911996459960938e+02, 2.911842041015625e+02, 2.911526489257812e+02, 2.911824645996094e+02, 2.911560974121094e+02, 2.913626098632812e+02, 2.909140930175781e+02, 2.911072998046875e+02, 2.910874633789062e+02, 2.9112890625e+02, 2.911247863769531e+02, 2.910770263671875e+02, 2.909798889160156e+02, 2.908452758789062e+02, 2.906818542480469e+02, 2.904961853027344e+02, 2.902894287109375e+02, 2.900729370117188e+02, 2.898482666015625e+02, 3.015679931640625e+02, 2.931674499511719e+02, 2.911104736328125e+02, 2.911272583007812e+02, 2.911175537109375e+02, 2.911443176269531e+02, 2.911462097167969e+02, 2.911185607910156e+02, 2.911502990722656e+02, 2.910438842773438e+02, 2.911800537109375e+02, 2.910697326660156e+02, 2.910095520019531e+02, 2.908761291503906e+02, 2.906980895996094e+02, 2.904912109375e+02, 2.902615356445312e+02, 2.90012939453125e+02, 2.89754150390625e+02, 2.894904479980469e+02, 2.999071350097656e+02, 2.985664672851562e+02, 2.930794677734375e+02, 2.912180480957031e+02, 2.911620483398438e+02, 2.911702270507812e+02, 2.911172180175781e+02, 2.911333618164062e+02, 2.911103820800781e+02, 2.967348327636719e+02, 3.0413720703125e+02, 2.93192626953125e+02, 2.923692932128906e+02, 2.916979064941406e+02, 2.911706848144531e+02, 2.907380065917969e+02] -TSupCor.T=[2.931499938964844e+02, 2.931470336914062e+02, 2.931304931640625e+02, 2.930965576171875e+02, 2.930473327636719e+02, 2.929854431152344e+02, 2.913341369628906e+02, 2.917377014160156e+02, 2.912146301269531e+02, 2.911939697265625e+02, 2.894501342773438e+02, 2.869810485839844e+02, 2.858681335449219e+02, 2.858828735351562e+02, 2.879443664550781e+02, 2.9058056640625e+02, 2.910152587890625e+02, 2.910256652832031e+02, 2.910102233886719e+02, 2.90986083984375e+02, 2.909529113769531e+02, 2.909112854003906e+02, 2.908609619140625e+02, 2.908053588867188e+02, 2.907485046386719e+02, 2.906817932128906e+02, 2.911038208007812e+02, 2.911548461914062e+02, 2.911628723144531e+02, 2.911055603027344e+02, 2.911204833984375e+02, 2.911395568847656e+02, 2.911610717773438e+02, 2.911768188476562e+02, 2.91161865234375e+02, 2.911416320800781e+02, 2.91158203125e+02, 2.911627807617188e+02, 2.911277160644531e+02, 2.910517578125e+02, 2.909518737792969e+02, 2.908377990722656e+02, 2.907132568359375e+02, 2.905879516601562e+02, 2.904634399414062e+02, 2.979659729003906e+02, 2.9119970703125e+02, 2.911842041015625e+02, 2.911526489257812e+02, 2.911792602539062e+02, 2.911587219238281e+02, 2.913627624511719e+02, 2.90913330078125e+02, 2.911072998046875e+02, 2.910875244140625e+02, 2.9112890625e+02, 2.911246643066406e+02, 2.910769348144531e+02, 2.909798583984375e+02, 2.908452453613281e+02, 2.906818237304688e+02, 2.904961853027344e+02, 2.902894287109375e+02, 2.900729370117188e+02, 2.898482666015625e+02, 3.015898132324219e+02, 2.911606140136719e+02, 2.911104431152344e+02, 2.911272583007812e+02, 2.911175231933594e+02, 2.911443786621094e+02, 2.91146240234375e+02, 2.911184997558594e+02, 2.911503295898438e+02, 2.910439758300781e+02, 2.911800842285156e+02, 2.910695495605469e+02, 2.910094299316406e+02, 2.908760375976562e+02, 2.906980590820312e+02, 2.904911804199219e+02, 2.902615051269531e+02, 2.90012939453125e+02, 2.89754150390625e+02, 2.894904479980469e+02, 2.999335021972656e+02, 2.936838073730469e+02, 2.911485595703125e+02, 2.912182922363281e+02, 2.911620178222656e+02, 2.91170166015625e+02, 2.911172485351562e+02, 2.911333618164062e+02, 2.911103515625e+02, 2.908767700195312e+02, 2.911747436523438e+02, 2.910849304199219e+02, 2.910189514160156e+02, 2.908678894042969e+02, 2.906609802246094e+02, 2.904220886230469e+02] -res.EFan=[0e+00, -1.031511828841758e-06, -1.144061570812482e-06, -1.255741153727286e-06, -1.364647800983221e-06, -1.474383225286147e-06, 5.109794311523438e+02, 1.02564697265625e+03, 1.540479858398438e+03, 2.055766845703125e+03, 2.5722470703125e+03, 3.09193115234375e+03, 3.611696533203125e+03, 4.13144482421875e+03, 4.65112841796875e+03, 5.1704443359375e+03, 5.60078857421875e+03, 5.60078857421875e+03, 5.60078857421875e+03, 5.60078857421875e+03, 5.60078857421875e+03, 5.60078857421875e+03, 5.60078857421875e+03, 5.60078857421875e+03, 5.60078857421875e+03, 5.60078857421875e+03, 6.11210888671875e+03, 6.62706982421875e+03, 7.1417646484375e+03, 7.6564775390625e+03, 8.1713486328125e+03, 8.68636328125e+03, 9.2014462890625e+03, 9.71650390625e+03, 1.02316796875e+04, 1.0746787109375e+04, 1.117651953125e+04, 1.117651953125e+04, 1.117651953125e+04, 1.117651953125e+04, 1.117651953125e+04, 1.117651953125e+04, 1.117651953125e+04, 1.117651953125e+04, 1.117651953125e+04, 1.11923505859375e+04, 1.1744443359375e+04, 1.22593291015625e+04, 1.27741005859375e+04, 1.3288908203125e+04, 1.38038642578125e+04, 1.43189453125e+04, 1.48340576171875e+04, 1.53491953125e+04, 1.5864234375e+04, 1.6379333984375e+04, 1.680908203125e+04, 1.680908203125e+04, 1.680908203125e+04, 1.680908203125e+04, 1.680908203125e+04, 1.680908203125e+04, 1.680908203125e+04, 1.680908203125e+04, 1.680908203125e+04, 1.706774609375e+04, 1.7685935546875e+04, 1.82005703125e+04, 1.87155390625e+04, 1.92306015625e+04, 1.9745591796875e+04, 2.0260630859375e+04, 2.077566015625e+04, 2.1290697265625e+04, 2.18058125e+04, 2.232141015625e+04, 2.275148046875e+04, 2.275148046875e+04, 2.275148046875e+04, 2.275148046875e+04, 2.275148046875e+04, 2.275148046875e+04, 2.275148046875e+04, 2.275148046875e+04, 2.275148046875e+04, 2.31387265625e+04, 2.381896875e+04, 2.433845703125e+04, 2.485347265625e+04, 2.53685625e+04, 2.5883607421875e+04, 2.6398671875e+04, 2.691371875e+04, 2.742876171875e+04, 2.7943845703125e+04, 2.8459630859375e+04, 2.8919587890625e+04, 2.8919587890625e+04, 2.8919587890625e+04, 2.8919587890625e+04, 2.8919587890625e+04] -res.EHea=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.86605859375e+03, 1.274298046875e+04, 2.0909265625e+04, 2.82450078125e+04, 4.06788125e+04, 5.594508203125e+04, 7.23125e+04, 8.811290625e+04, 1.025162734375e+05, 1.173311953125e+05, 1.29868875e+05, 1.29868875e+05, 1.29868875e+05, 1.29868875e+05, 1.29868875e+05, 1.29868875e+05, 1.29868875e+05, 1.29868875e+05, 1.29868875e+05, 1.32472109375e+05, 1.441035625e+05, 1.55089890625e+05, 1.6126840625e+05, 1.64958e+05, 1.66377078125e+05, 1.66430375e+05, 1.66430375e+05, 1.705349375e+05, 1.84498109375e+05, 2.04236640625e+05, 2.2259575e+05, 2.2259575e+05, 2.2259575e+05, 2.2259575e+05, 2.2259575e+05, 2.2259575e+05, 2.2259575e+05, 2.2259575e+05, 2.2259575e+05, 2.3550334375e+05, 2.66968875e+05, 2.9478053125e+05, 3.1922075e+05, 3.4483365625e+05, 3.724923125e+05, 4.0027478125e+05, 4.281441875e+05, 4.579723125e+05, 4.893375625e+05, 5.251148125e+05, 5.587810625e+05, 5.587810625e+05, 5.587810625e+05, 5.587810625e+05, 5.587810625e+05, 5.587810625e+05, 5.587810625e+05, 5.587810625e+05, 5.587810625e+05, 5.7734775e+05, 6.240763125e+05, 6.61540875e+05, 6.878348125e+05, 7.0765575e+05, 7.25021625e+05, 7.42374375e+05, 7.633953125e+05, 7.86819375e+05, 8.18197125e+05, 8.704481875e+05, 9.245376875e+05, 9.245376875e+05, 9.245376875e+05, 9.245376875e+05, 9.245376875e+05] -res.ECoo=[0e+00, 1.409123039245605e+01, 2.591312026977539e+01, 3.581629180908203e+01, 4.499322128295898e+01, 5.451656341552734e+01, 1.759595794677734e+02, 1.404679412841797e+02, 1.880548553466797e+02, 1.899505310058594e+02, -3.788537292480469e+02, -1.7862580078125e+04, -4.588808984375e+04, -8.384084375e+04, -1.0652090625e+05, -1.127552421875e+05, -1.128005234375e+05, -1.127999453125e+05, -1.12793546875e+05, -1.12786609375e+05, -1.127793515625e+05, -1.127728046875e+05, -1.127676015625e+05, -1.127619140625e+05, -1.127459765625e+05, -1.12729109375e+05, -1.128074375e+05, -1.1281178125e+05, -1.1281253125e+05, -1.12807234375e+05, -1.12808609375e+05, -1.128104609375e+05, -1.12812359375e+05, -1.128138515625e+05, -1.12812390625e+05, -1.128106171875e+05, -1.127903671875e+05, -1.1278428125e+05, -1.127691015625e+05, -1.12754171875e+05, -1.12741265625e+05, -1.127303828125e+05, -1.12719e+05, -1.12706046875e+05, -1.12691625e+05, -1.13689640625e+05, -1.128159921875e+05, -1.1281446875e+05, -1.1281159375e+05, -1.12806578125e+05, -1.1281465625e+05, -1.128310546875e+05, -1.12788546875e+05, -1.128073984375e+05, -1.128057265625e+05, -1.12809421875e+05, -1.127648203125e+05, -1.12743515625e+05, -1.1272146875e+05, -1.126981796875e+05, -1.126748828125e+05, -1.12651578125e+05, -1.126282578125e+05, -1.126055703125e+05, -1.12582578125e+05, -1.13787078125e+05, -1.128125390625e+05, -1.128076953125e+05, -1.128092734375e+05, -1.128083203125e+05, -1.12810875e+05, -1.12811e+05, -1.12808359375e+05, -1.128113984375e+05, -1.12801765625e+05, -1.1281409375e+05, -1.127467109375e+05, -1.12721875e+05, -1.126961328125e+05, -1.12671125e+05, -1.12646203125e+05, -1.126215234375e+05, -1.12596796875e+05, -1.125723984375e+05, -1.12548625e+05, -1.1355384375e+05, -1.128151484375e+05, -1.128111015625e+05, -1.12818e+05, -1.128123984375e+05, -1.128130859375e+05, -1.12808390625e+05, -1.12809828125e+05, -1.128076875e+05, -1.127863515625e+05, -1.128133046875e+05, -1.12737390625e+05, -1.1271028125e+05, -1.1268096875e+05, -1.12651890625e+05, -1.12623375e+05] +fanSup.y=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.005962371826172e-01, 3.004692494869232e-01, 3.005706071853638e-01, 3.00634354352951e-01, 3.014032542705536e-01, 3.014898896217346e-01, 3.014796078205109e-01, 3.014720380306244e-01, 3.014639914035797e-01, 3.009775578975677e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.006735742092133e-01, 3.004996478557587e-01, 3.004895448684692e-01, 3.00508052110672e-01, 3.005478084087372e-01, 3.00554096698761e-01, 3.005662560462952e-01, 3.005879521369934e-01, 3.005679547786713e-01, 3.005796372890472e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.416772902011871e-01, 3.006047010421753e-01, 3.00509124994278e-01, 3.005075454711914e-01, 3.005280792713165e-01, 3.005563020706177e-01, 3.005759418010712e-01, 3.005828857421875e-01, 3.005602359771729e-01, 3.005647957324982e-01, 3.005757033824921e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.901227414608002e-01, 3.004912436008453e-01, 3.005093932151794e-01, 3.005727827548981e-01, 3.005383610725403e-01, 3.005655109882355e-01, 3.005569875240326e-01, 3.005586564540863e-01, 3.005599677562714e-01, 3.006455898284912e-01, 3.006551563739777e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.943107068538666e-01, 3.046377599239349e-01, 3.004875183105469e-01, 3.006115257740021e-01, 3.005641400814056e-01, 3.005581796169281e-01, 3.005671203136444e-01, 3.005600571632385e-01, 3.005602955818176e-01, 3.006119728088379e-01, 3.017184436321259e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +cor.vav.y_actual=[9.990000128746033e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.20454740524292e-01, 9.213752746582031e-01, 9.208775758743286e-01, 9.222158193588257e-01, 9.237138628959656e-01, 9.151954650878906e-01, 9.168077707290649e-01, 9.184973835945129e-01, 9.196567535400391e-01, 9.183841943740845e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.16848361492157e-01, 9.189339876174927e-01, 9.191521406173706e-01, 9.190551042556763e-01, 9.190789461135864e-01, 9.209463596343994e-01, 9.202827215194702e-01, 9.177694320678711e-01, 9.194725155830383e-01, 9.1828852891922e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.167543053627014e-01, 9.173842668533325e-01, 9.174924492835999e-01, 9.172407984733582e-01, 9.178310036659241e-01, 9.177797436714172e-01, 9.175040125846863e-01, 9.203488230705261e-01, 9.202756881713867e-01, 9.190570712089539e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.213038682937622e-01, 9.180471301078796e-01, 9.153730869293213e-01, 9.213010668754578e-01, 9.202877879142761e-01, 9.215885400772095e-01, 9.216160774230957e-01, 9.214786887168884e-01, 9.167087078094482e-01, 9.206472039222717e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.642383575439453e-01, 9.149267077445984e-01, 9.208664298057556e-01, 9.191647171974182e-01, 9.20964777469635e-01, 9.216449856758118e-01, 9.207118153572083e-01, 9.214279651641846e-01, 9.21366810798645e-01, 9.20620858669281e-01, 9.27092969417572e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +sou.vav.y_actual=[9.990000128746033e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.204552173614502e-01, 9.213757514953613e-01, 9.208780527114868e-01, 9.222162961959839e-01, 9.237143397331238e-01, 9.151959419250488e-01, 9.168082475662231e-01, 9.184978604316711e-01, 9.196572303771973e-01, 9.183846116065979e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.168488383293152e-01, 9.189344644546509e-01, 9.19152557849884e-01, 9.190555214881897e-01, 9.190793633460999e-01, 9.209467768669128e-01, 9.202831983566284e-01, 9.177698493003845e-01, 9.194729328155518e-01, 9.182890057563782e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.167547821998596e-01, 9.173846840858459e-01, 9.174928665161133e-01, 9.172412753105164e-01, 9.178314805030823e-01, 9.177801609039307e-01, 9.175044894218445e-01, 9.203492999076843e-01, 9.202761054039001e-01, 9.190574884414673e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.457062005996704e-01, 9.213043451309204e-01, 9.180476069450378e-01, 9.153735637664795e-01, 9.21301543712616e-01, 9.202882051467896e-01, 9.215890169143677e-01, 9.216164946556091e-01, 9.214791059494019e-01, 9.167091250419617e-01, 9.206476807594299e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.642383575439453e-01, 9.149271249771118e-01, 9.208669066429138e-01, 9.191651940345764e-01, 9.209651947021484e-01, 9.216454029083252e-01, 9.207122325897217e-01, 9.214284420013428e-01, 9.213672280311584e-01, 9.206213355064392e-01, 9.270934462547302e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +eas.vav.y_actual=[9.990000128746033e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.049776554107666e-01, 8.056851625442505e-01, 8.053028583526611e-01, 8.063272833824158e-01, 8.074603080749512e-01, 8.008939623832703e-01, 8.021546006202698e-01, 8.034669160842896e-01, 8.043628931045532e-01, 8.03379237651825e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.021862506866455e-01, 8.038047552108765e-01, 8.039733171463013e-01, 8.038983345031738e-01, 8.039167523384094e-01, 8.053557276725769e-01, 8.048452734947205e-01, 8.029025197029114e-01, 8.042206764221191e-01, 8.033051490783691e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.021129965782166e-01, 8.026033043861389e-01, 8.02687406539917e-01, 8.024917840957642e-01, 8.029503226280212e-01, 8.029105663299561e-01, 8.026964068412781e-01, 8.048961758613586e-01, 8.048398494720459e-01, 8.038998246192932e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.457062005996704e-01, 8.056303858757019e-01, 8.031180500984192e-01, 8.010332584381104e-01, 8.0562824010849e-01, 8.048491477966309e-01, 8.058485388755798e-01, 8.058695793151855e-01, 8.05764377117157e-01, 8.020774126052856e-01, 8.051257729530334e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.642383575439453e-01, 8.275081515312195e-01, 8.052943348884583e-01, 8.039830327033997e-01, 8.053699135780334e-01, 8.058916926383972e-01, 8.051754236221313e-01, 8.057255148887634e-01, 8.056786060333252e-01, 8.051055073738098e-01, 8.099713325500488e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +nor.vav.y_actual=[9.990000128746033e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.204552173614502e-01, 9.213757514953613e-01, 9.208780527114868e-01, 9.222162961959839e-01, 9.237143397331238e-01, 9.151959419250488e-01, 9.168082475662231e-01, 9.184978604316711e-01, 9.196572303771973e-01, 9.183846116065979e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.168488383293152e-01, 9.189344644546509e-01, 9.19152557849884e-01, 9.190555214881897e-01, 9.190793633460999e-01, 9.209467768669128e-01, 9.202831983566284e-01, 9.177698493003845e-01, 9.194729328155518e-01, 9.182890057563782e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.167547821998596e-01, 9.173846840858459e-01, 9.174928665161133e-01, 9.172412753105164e-01, 9.178314805030823e-01, 9.177801609039307e-01, 9.175044894218445e-01, 9.203492999076843e-01, 9.202761054039001e-01, 9.190574884414673e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.457062005996704e-01, 9.213043451309204e-01, 9.180476069450378e-01, 9.153735637664795e-01, 9.21301543712616e-01, 9.202882051467896e-01, 9.215890169143677e-01, 9.216164946556091e-01, 9.214791059494019e-01, 9.167091250419617e-01, 9.206476807594299e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.642383575439453e-01, 9.149271249771118e-01, 9.208669066429138e-01, 9.191651940345764e-01, 9.209651947021484e-01, 9.216454029083252e-01, 9.207122325897217e-01, 9.214284420013428e-01, 9.213672280311584e-01, 9.206213355064392e-01, 9.270934462547302e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +wes.vav.y_actual=[9.990000128746033e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.049776554107666e-01, 8.056851625442505e-01, 8.053028583526611e-01, 8.063272833824158e-01, 8.074603080749512e-01, 8.008939623832703e-01, 8.021546006202698e-01, 8.034669160842896e-01, 8.043628931045532e-01, 8.03379237651825e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.021862506866455e-01, 8.038047552108765e-01, 8.039733171463013e-01, 8.038983345031738e-01, 8.039167523384094e-01, 8.053557276725769e-01, 8.048452734947205e-01, 8.029025197029114e-01, 8.042206764221191e-01, 8.033051490783691e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.021129965782166e-01, 8.026033043861389e-01, 8.02687406539917e-01, 8.024917840957642e-01, 8.029503226280212e-01, 8.029105663299561e-01, 8.026964068412781e-01, 8.048961758613586e-01, 8.048398494720459e-01, 8.038998246192932e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.056303858757019e-01, 8.031180500984192e-01, 8.010332584381104e-01, 8.0562824010849e-01, 8.048491477966309e-01, 8.058485388755798e-01, 8.058695793151855e-01, 8.05764377117157e-01, 8.020774126052856e-01, 8.051257729530334e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.642383575439453e-01, 8.006829023361206e-01, 8.052943348884583e-01, 8.039830327033997e-01, 8.053699135780334e-01, 8.058916926383972e-01, 8.051754236221313e-01, 8.057255148887634e-01, 8.056786060333252e-01, 8.051055073738098e-01, 8.25440526008606e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +eco.yOut=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 6.624172329902649e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 6.109355092048645e-01, 8.629878759384155e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 6.893832683563232e-01, 9.14187490940094e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.09232234954834e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.062955141067505e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +TSupSou.T=[2.931499938964844e+02, 2.9314697265625e+02, 2.931304626464844e+02, 2.930965270996094e+02, 2.930473327636719e+02, 2.929854431152344e+02, 2.913341369628906e+02, 2.917377014160156e+02, 2.912146301269531e+02, 2.911939697265625e+02, 2.894501342773438e+02, 2.869810485839844e+02, 2.858681335449219e+02, 2.858828735351562e+02, 2.879443664550781e+02, 2.9058056640625e+02, 2.910152587890625e+02, 2.910257263183594e+02, 2.910104370117188e+02, 2.909863586425781e+02, 2.909531860351562e+02, 2.909115295410156e+02, 2.908611755371094e+02, 2.908055419921875e+02, 2.907486267089844e+02, 2.906819152832031e+02, 2.911038208007812e+02, 2.911548461914062e+02, 2.911628723144531e+02, 2.911055603027344e+02, 2.911204833984375e+02, 2.911395568847656e+02, 2.911610717773438e+02, 2.911768188476562e+02, 2.91161865234375e+02, 2.911416320800781e+02, 2.911537170410156e+02, 2.911588745117188e+02, 2.911241455078125e+02, 2.910491638183594e+02, 2.909500732421875e+02, 2.908365783691406e+02, 2.907125244140625e+02, 2.905875549316406e+02, 2.904633178710938e+02, 2.985390930175781e+02, 2.9119970703125e+02, 2.911842041015625e+02, 2.911526489257812e+02, 2.911793823242188e+02, 2.911609191894531e+02, 2.913627624511719e+02, 2.90913330078125e+02, 2.911072998046875e+02, 2.910875244140625e+02, 2.9112890625e+02, 2.911231384277344e+02, 2.9107568359375e+02, 2.909788818359375e+02, 2.908445434570312e+02, 2.906813659667969e+02, 2.904958801269531e+02, 2.90289306640625e+02, 2.900729370117188e+02, 2.898483276367188e+02, 3.01933837890625e+02, 2.929733276367188e+02, 2.911104431152344e+02, 2.911272583007812e+02, 2.911175231933594e+02, 2.911443786621094e+02, 2.91146240234375e+02, 2.911184997558594e+02, 2.911503295898438e+02, 2.910439758300781e+02, 2.911800842285156e+02, 2.910714721679688e+02, 2.910109558105469e+02, 2.908771057128906e+02, 2.906986694335938e+02, 2.904914245605469e+02, 2.902614440917969e+02, 2.900126342773438e+02, 2.897536926269531e+02, 2.894898681640625e+02, 3.006044311523438e+02, 2.992057189941406e+02, 2.936031188964844e+02, 2.912779846191406e+02, 2.911620178222656e+02, 2.91170166015625e+02, 2.911172485351562e+02, 2.911333618164062e+02, 2.911103515625e+02, 2.943490295410156e+02, 3.01389892578125e+02, 2.931417846679688e+02, 2.923367919921875e+02, 2.916779479980469e+02, 2.911584777832031e+02, 2.907304077148438e+02] +TSupEas.T=[2.931499938964844e+02, 2.931470031738281e+02, 2.931304931640625e+02, 2.930965576171875e+02, 2.930473327636719e+02, 2.929854431152344e+02, 2.913333740234375e+02, 2.917378540039062e+02, 2.912146301269531e+02, 2.911940002441406e+02, 2.894523620605469e+02, 2.869815673828125e+02, 2.85869140625e+02, 2.858812255859375e+02, 2.879435729980469e+02, 2.905831298828125e+02, 2.910151977539062e+02, 2.91025146484375e+02, 2.910100708007812e+02, 2.909861145019531e+02, 2.909530334472656e+02, 2.909114379882812e+02, 2.908611145019531e+02, 2.908054809570312e+02, 2.907486267089844e+02, 2.906819152832031e+02, 2.911036071777344e+02, 2.911548461914062e+02, 2.911628723144531e+02, 2.911055908203125e+02, 2.911204833984375e+02, 2.911395263671875e+02, 2.911610717773438e+02, 2.911767883300781e+02, 2.911618957519531e+02, 2.911416015625e+02, 2.911536865234375e+02, 2.911586303710938e+02, 2.911238098144531e+02, 2.910489501953125e+02, 2.909499206542969e+02, 2.908364868164062e+02, 2.907124633789062e+02, 2.905875244140625e+02, 2.904632873535156e+02, 2.985390930175781e+02, 2.911996459960938e+02, 2.911842041015625e+02, 2.911526489257812e+02, 2.911825561523438e+02, 2.911583251953125e+02, 2.913626098632812e+02, 2.909140930175781e+02, 2.911072998046875e+02, 2.910874633789062e+02, 2.9112890625e+02, 2.91123291015625e+02, 2.910757751464844e+02, 2.909789428710938e+02, 2.908445739746094e+02, 2.90681396484375e+02, 2.904959106445312e+02, 2.90289306640625e+02, 2.900729370117188e+02, 2.898483581542969e+02, 3.019408569335938e+02, 2.974471435546875e+02, 2.9312109375e+02, 2.911272583007812e+02, 2.911175537109375e+02, 2.911443176269531e+02, 2.911462097167969e+02, 2.911185607910156e+02, 2.911502990722656e+02, 2.9385302734375e+02, 2.982111206054688e+02, 2.931700744628906e+02, 2.923336181640625e+02, 2.916890869140625e+02, 2.912016296386719e+02, 2.908045654296875e+02, 2.9045556640625e+02, 2.901317749023438e+02, 2.898265686035156e+02, 2.895344543457031e+02, 3.01379638671875e+02, 3.041610107421875e+02, 3.004108276367188e+02, 2.9158447265625e+02, 2.911620483398438e+02, 2.911702270507812e+02, 2.911172180175781e+02, 2.911333618164062e+02, 2.911103820800781e+02, 2.908767700195312e+02, 2.939724426269531e+02, 2.919724426269531e+02, 2.915876159667969e+02, 2.912174682617188e+02, 2.908756713867188e+02, 2.905551452636719e+02] +TSupNor.T=[2.931499938964844e+02, 2.931470031738281e+02, 2.931304626464844e+02, 2.930965576171875e+02, 2.930473327636719e+02, 2.929854431152344e+02, 2.913341369628906e+02, 2.917377014160156e+02, 2.912146301269531e+02, 2.911939697265625e+02, 2.894501342773438e+02, 2.869810485839844e+02, 2.858681335449219e+02, 2.858828735351562e+02, 2.879443664550781e+02, 2.9058056640625e+02, 2.910152587890625e+02, 2.91025146484375e+02, 2.910100708007812e+02, 2.909861145019531e+02, 2.909530334472656e+02, 2.909114379882812e+02, 2.908611145019531e+02, 2.908054809570312e+02, 2.907486267089844e+02, 2.906819152832031e+02, 2.911038208007812e+02, 2.911548461914062e+02, 2.911628723144531e+02, 2.911055603027344e+02, 2.911204833984375e+02, 2.911395568847656e+02, 2.911610717773438e+02, 2.911768188476562e+02, 2.91161865234375e+02, 2.911416320800781e+02, 2.911537170410156e+02, 2.911587219238281e+02, 2.911239929199219e+02, 2.91049072265625e+02, 2.909500122070312e+02, 2.908365478515625e+02, 2.907124938964844e+02, 2.905875549316406e+02, 2.904632873535156e+02, 2.985390930175781e+02, 2.9119970703125e+02, 2.911842041015625e+02, 2.911526489257812e+02, 2.911793823242188e+02, 2.911609191894531e+02, 2.913627624511719e+02, 2.90913330078125e+02, 2.911072998046875e+02, 2.910875244140625e+02, 2.9112890625e+02, 2.911231689453125e+02, 2.910757141113281e+02, 2.909788818359375e+02, 2.908445434570312e+02, 2.906813659667969e+02, 2.904958801269531e+02, 2.90289306640625e+02, 2.900729370117188e+02, 2.898483276367188e+02, 3.022979125976562e+02, 2.987279052734375e+02, 2.911104431152344e+02, 2.911272583007812e+02, 2.911175231933594e+02, 2.911443786621094e+02, 2.91146240234375e+02, 2.911184997558594e+02, 2.911503295898438e+02, 2.910439758300781e+02, 2.939515686035156e+02, 2.917231750488281e+02, 2.914216918945312e+02, 2.911292419433594e+02, 2.908548583984375e+02, 2.905886535644531e+02, 2.903217468261719e+02, 2.900496520996094e+02, 2.897763061523438e+02, 2.895036926269531e+02, 3.003030090332031e+02, 2.981504211425781e+02, 2.9212841796875e+02, 2.912182922363281e+02, 2.911620178222656e+02, 2.91170166015625e+02, 2.911172485351562e+02, 2.911333618164062e+02, 2.911103515625e+02, 2.908767700195312e+02, 2.932090759277344e+02, 2.916473693847656e+02, 2.913793640136719e+02, 2.910894470214844e+02, 2.907970581054688e+02, 2.905064086914062e+02] +TSupWes.T=[2.931499938964844e+02, 2.931470336914062e+02, 2.931304931640625e+02, 2.930965576171875e+02, 2.930473327636719e+02, 2.929854431152344e+02, 2.913333740234375e+02, 2.917378540039062e+02, 2.912146301269531e+02, 2.911940002441406e+02, 2.894523620605469e+02, 2.869815673828125e+02, 2.85869140625e+02, 2.858812255859375e+02, 2.879435729980469e+02, 2.905831298828125e+02, 2.910151977539062e+02, 2.910254516601562e+02, 2.9101025390625e+02, 2.909862365722656e+02, 2.90953125e+02, 2.909114990234375e+02, 2.908611450195312e+02, 2.908055114746094e+02, 2.907486267089844e+02, 2.906819152832031e+02, 2.911036071777344e+02, 2.911548461914062e+02, 2.911628723144531e+02, 2.911055908203125e+02, 2.911204833984375e+02, 2.911395263671875e+02, 2.911610717773438e+02, 2.911767883300781e+02, 2.911618957519531e+02, 2.911416015625e+02, 2.911536865234375e+02, 2.911587524414062e+02, 2.911239929199219e+02, 2.91049072265625e+02, 2.909500122070312e+02, 2.908365478515625e+02, 2.907124938964844e+02, 2.905875549316406e+02, 2.904632873535156e+02, 2.985390930175781e+02, 2.911996459960938e+02, 2.911842041015625e+02, 2.911526489257812e+02, 2.911825561523438e+02, 2.911583251953125e+02, 2.913626098632812e+02, 2.909140930175781e+02, 2.911072998046875e+02, 2.910874633789062e+02, 2.9112890625e+02, 2.911233825683594e+02, 2.910758361816406e+02, 2.909789733886719e+02, 2.908446044921875e+02, 2.90681396484375e+02, 2.904959106445312e+02, 2.90289306640625e+02, 2.900729370117188e+02, 2.898483581542969e+02, 3.015679931640625e+02, 2.931674194335938e+02, 2.911104736328125e+02, 2.911272583007812e+02, 2.911175537109375e+02, 2.911443176269531e+02, 2.911462097167969e+02, 2.911185607910156e+02, 2.911502990722656e+02, 2.910438842773438e+02, 2.911800537109375e+02, 2.910716552734375e+02, 2.910110778808594e+02, 2.908771667480469e+02, 2.906986999511719e+02, 2.90491455078125e+02, 2.90261474609375e+02, 2.900126647949219e+02, 2.897536926269531e+02, 2.894898681640625e+02, 2.999071350097656e+02, 2.985664978027344e+02, 2.930794067382812e+02, 2.912180480957031e+02, 2.911620483398438e+02, 2.911702270507812e+02, 2.911172180175781e+02, 2.911333618164062e+02, 2.911103820800781e+02, 2.967348327636719e+02, 3.0413720703125e+02, 2.931918640136719e+02, 2.923688659667969e+02, 2.916976623535156e+02, 2.911705627441406e+02, 2.907379150390625e+02] +TSupCor.T=[2.931499938964844e+02, 2.931470336914062e+02, 2.931304931640625e+02, 2.930965576171875e+02, 2.930473327636719e+02, 2.929854431152344e+02, 2.913341369628906e+02, 2.917377014160156e+02, 2.912146301269531e+02, 2.911939697265625e+02, 2.894501342773438e+02, 2.869810485839844e+02, 2.858681335449219e+02, 2.858828735351562e+02, 2.879443664550781e+02, 2.9058056640625e+02, 2.910152587890625e+02, 2.910258483886719e+02, 2.910105285644531e+02, 2.909864196777344e+02, 2.909532165527344e+02, 2.909115600585938e+02, 2.908611755371094e+02, 2.908055419921875e+02, 2.907486572265625e+02, 2.906819152832031e+02, 2.911038208007812e+02, 2.911548461914062e+02, 2.911628723144531e+02, 2.911055603027344e+02, 2.911204833984375e+02, 2.911395568847656e+02, 2.911610717773438e+02, 2.911768188476562e+02, 2.91161865234375e+02, 2.911416320800781e+02, 2.911537170410156e+02, 2.9115966796875e+02, 2.911251831054688e+02, 2.910498352050781e+02, 2.909505004882812e+02, 2.908368530273438e+02, 2.907126770019531e+02, 2.905876770019531e+02, 2.9046337890625e+02, 2.979660339355469e+02, 2.9119970703125e+02, 2.911842041015625e+02, 2.911526489257812e+02, 2.911793823242188e+02, 2.911609191894531e+02, 2.913627624511719e+02, 2.90913330078125e+02, 2.911072998046875e+02, 2.910875244140625e+02, 2.9112890625e+02, 2.911232299804688e+02, 2.910757446289062e+02, 2.909789123535156e+02, 2.908445434570312e+02, 2.906813659667969e+02, 2.904959106445312e+02, 2.90289306640625e+02, 2.900729370117188e+02, 2.898483581542969e+02, 3.0158984375e+02, 2.911606140136719e+02, 2.911104431152344e+02, 2.911272583007812e+02, 2.911175231933594e+02, 2.911443786621094e+02, 2.91146240234375e+02, 2.911184997558594e+02, 2.911503295898438e+02, 2.910439758300781e+02, 2.911800842285156e+02, 2.910717468261719e+02, 2.910111083984375e+02, 2.90877197265625e+02, 2.9069873046875e+02, 2.90491455078125e+02, 2.90261474609375e+02, 2.900126647949219e+02, 2.897536926269531e+02, 2.894898681640625e+02, 2.999335021972656e+02, 2.93683837890625e+02, 2.911485595703125e+02, 2.912182922363281e+02, 2.911620178222656e+02, 2.91170166015625e+02, 2.911172485351562e+02, 2.911333618164062e+02, 2.911103515625e+02, 2.908767700195312e+02, 2.911747436523438e+02, 2.910853576660156e+02, 2.910193176269531e+02, 2.908681335449219e+02, 2.906611633300781e+02, 2.904221801757812e+02] +res.EFan=[0e+00, -1.031511828841758e-06, -1.144061570812482e-06, -1.255741153727286e-06, -1.364647800983221e-06, -1.474383225286147e-06, 5.109794311523438e+02, 1.02564697265625e+03, 1.540479858398438e+03, 2.055766845703125e+03, 2.5722470703125e+03, 3.09193115234375e+03, 3.611696533203125e+03, 4.13144482421875e+03, 4.65112841796875e+03, 5.1704443359375e+03, 5.60078857421875e+03, 5.60078857421875e+03, 5.60078857421875e+03, 5.60078857421875e+03, 5.60078857421875e+03, 5.60078857421875e+03, 5.60078857421875e+03, 5.60078857421875e+03, 5.60078857421875e+03, 5.60078857421875e+03, 6.11210888671875e+03, 6.62706982421875e+03, 7.1417646484375e+03, 7.6564775390625e+03, 8.1713486328125e+03, 8.68636328125e+03, 9.2014462890625e+03, 9.71650390625e+03, 1.02316796875e+04, 1.0746787109375e+04, 1.117651953125e+04, 1.117651953125e+04, 1.117651953125e+04, 1.117651953125e+04, 1.117651953125e+04, 1.117651953125e+04, 1.117651953125e+04, 1.117651953125e+04, 1.117651953125e+04, 1.11923505859375e+04, 1.1744443359375e+04, 1.22593291015625e+04, 1.27741005859375e+04, 1.3288908203125e+04, 1.38038642578125e+04, 1.43189453125e+04, 1.48340576171875e+04, 1.53491953125e+04, 1.5864234375e+04, 1.6379333984375e+04, 1.680908203125e+04, 1.680908203125e+04, 1.680908203125e+04, 1.680908203125e+04, 1.680908203125e+04, 1.680908203125e+04, 1.680908203125e+04, 1.680908203125e+04, 1.680908203125e+04, 1.706774609375e+04, 1.76859375e+04, 1.82005703125e+04, 1.8715541015625e+04, 1.9230603515625e+04, 1.974559375e+04, 2.02606328125e+04, 2.0775662109375e+04, 2.1290697265625e+04, 2.1805814453125e+04, 2.2321412109375e+04, 2.2751482421875e+04, 2.2751482421875e+04, 2.2751482421875e+04, 2.2751482421875e+04, 2.2751482421875e+04, 2.2751482421875e+04, 2.2751482421875e+04, 2.2751482421875e+04, 2.2751482421875e+04, 2.3138728515625e+04, 2.3818970703125e+04, 2.4338458984375e+04, 2.4853474609375e+04, 2.5368564453125e+04, 2.5883609375e+04, 2.6398673828125e+04, 2.6913720703125e+04, 2.7428763671875e+04, 2.794384765625e+04, 2.84596328125e+04, 2.891958984375e+04, 2.891958984375e+04, 2.891958984375e+04, 2.891958984375e+04, 2.891958984375e+04] +res.EHea=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.8659404296875e+03, 1.2742802734375e+04, 2.0909080078125e+04, 2.8244794921875e+04, 4.067855078125e+04, 5.594479296875e+04, 7.2312203125e+04, 8.8112609375e+04, 1.025159765625e+05, 1.173308984375e+05, 1.29868578125e+05, 1.29868578125e+05, 1.29868578125e+05, 1.29868578125e+05, 1.29868578125e+05, 1.29868578125e+05, 1.29868578125e+05, 1.29868578125e+05, 1.29868578125e+05, 1.3247178125e+05, 1.44103015625e+05, 1.55089328125e+05, 1.6126784375e+05, 1.6495746875e+05, 1.663761875e+05, 1.66429796875e+05, 1.66429796875e+05, 1.70534359375e+05, 1.84497546875e+05, 2.04236078125e+05, 2.22595171875e+05, 2.22595171875e+05, 2.22595171875e+05, 2.22595171875e+05, 2.22595171875e+05, 2.22595171875e+05, 2.22595171875e+05, 2.22595171875e+05, 2.22595171875e+05, 2.3550278125e+05, 2.66968375e+05, 2.9477996875e+05, 3.1922028125e+05, 3.4483325e+05, 3.724919375e+05, 4.00274375e+05, 4.281438125e+05, 4.579719375e+05, 4.8933715625e+05, 5.251144375e+05, 5.587806875e+05, 5.587806875e+05, 5.587806875e+05, 5.587806875e+05, 5.587806875e+05, 5.587806875e+05, 5.587806875e+05, 5.587806875e+05, 5.587806875e+05, 5.77347375e+05, 6.24076e+05, 6.615409375e+05, 6.87834875e+05, 7.07655875e+05, 7.250218125e+05, 7.423745e+05, 7.633954375e+05, 7.868195625e+05, 8.181973125e+05, 8.704483125e+05, 9.245378125e+05, 9.245378125e+05, 9.245378125e+05, 9.245378125e+05, 9.245378125e+05] +res.ECoo=[0e+00, 1.409123039245605e+01, 2.591312026977539e+01, 3.581629180908203e+01, 4.499322128295898e+01, 5.451656341552734e+01, 1.759595794677734e+02, 1.404679412841797e+02, 1.880548553466797e+02, 1.899505310058594e+02, -3.788537292480469e+02, -1.7862580078125e+04, -4.588808984375e+04, -8.38408828125e+04, -1.06520953125e+05, -1.127552890625e+05, -1.128005625e+05, -1.127999921875e+05, -1.1279359375e+05, -1.127866484375e+05, -1.12779390625e+05, -1.127728515625e+05, -1.127676484375e+05, -1.12761953125e+05, -1.127460234375e+05, -1.1272915625e+05, -1.128074765625e+05, -1.128118203125e+05, -1.12812578125e+05, -1.1280728125e+05, -1.1280865625e+05, -1.128105078125e+05, -1.128123984375e+05, -1.128138984375e+05, -1.128124375e+05, -1.1281065625e+05, -1.127904453125e+05, -1.12784390625e+05, -1.12769203125e+05, -1.127542734375e+05, -1.127413671875e+05, -1.12730484375e+05, -1.127191015625e+05, -1.12706140625e+05, -1.1269171875e+05, -1.136896953125e+05, -1.128160390625e+05, -1.128145078125e+05, -1.12811640625e+05, -1.12806640625e+05, -1.12814484375e+05, -1.128311015625e+05, -1.1278859375e+05, -1.128074375e+05, -1.12805765625e+05, -1.128094609375e+05, -1.127648984375e+05, -1.1274359375e+05, -1.12721546875e+05, -1.126982578125e+05, -1.126749609375e+05, -1.1265165625e+05, -1.126283359375e+05, -1.12605640625e+05, -1.1258265625e+05, -1.13787125e+05, -1.12812578125e+05, -1.12807734375e+05, -1.128093125e+05, -1.12808359375e+05, -1.128109140625e+05, -1.128110390625e+05, -1.128083984375e+05, -1.128114375e+05, -1.128018046875e+05, -1.12814140625e+05, -1.127466640625e+05, -1.12721828125e+05, -1.126960859375e+05, -1.12671078125e+05, -1.1264615625e+05, -1.126214765625e+05, -1.1259675e+05, -1.12572359375e+05, -1.125485859375e+05, -1.135538828125e+05, -1.128151875e+05, -1.12811140625e+05, -1.128180390625e+05, -1.128124453125e+05, -1.12813125e+05, -1.128084375e+05, -1.128098671875e+05, -1.12807734375e+05, -1.12786390625e+05, -1.1281334375e+05, -1.127374140625e+05, -1.127103046875e+05, -1.12681e+05, -1.12651921875e+05, -1.1262340625e+05] diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_ThermalZones_EnergyPlus_Examples_SmallOffice_Guideline36Summer.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_ThermalZones_EnergyPlus_Examples_SmallOffice_Guideline36Summer.txt index c39084dbce4..f676173e007 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_ThermalZones_EnergyPlus_Examples_SmallOffice_Guideline36Summer.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_ThermalZones_EnergyPlus_Examples_SmallOffice_Guideline36Summer.txt @@ -1,4 +1,4 @@ -last-generated=2021-01-25 +last-generated=2021-02-17 statistics-initialization= { "linear": "0, 0, 0, 0, 0, 4", @@ -13,25 +13,25 @@ statistics-simulation= "numerical Jacobians": "0" } time=[1.6848e+07, 1.728e+07] -flo.sou.TAir=[2.931499938964844e+02, 2.969350891113281e+02, 2.969624328613281e+02, 2.970336303710938e+02, 2.970689086914062e+02, 2.97444091796875e+02, 2.959874877929688e+02, 2.961695556640625e+02, 2.963849792480469e+02, 2.96432861328125e+02, 2.963977355957031e+02, 2.964472351074219e+02, 2.966470031738281e+02, 2.967740783691406e+02, 2.966871337890625e+02, 2.963293151855469e+02, 2.972265319824219e+02, 2.976942138671875e+02, 2.9787939453125e+02, 2.980491333007812e+02, 2.981680603027344e+02, 2.98111572265625e+02, 2.981128845214844e+02, 2.981349792480469e+02, 2.981379089355469e+02, 2.975958557128906e+02, 2.964736938476562e+02, 2.964114074707031e+02, 2.964186401367188e+02, 2.964134521484375e+02, 2.964591979980469e+02, 2.965166015625e+02, 2.9657275390625e+02, 2.965979614257812e+02, 2.965815124511719e+02, 2.964890441894531e+02, 2.976151123046875e+02, 2.984635009765625e+02, 2.986580810546875e+02, 2.986952514648438e+02, 2.988626708984375e+02, 2.989109191894531e+02, 2.989104919433594e+02, 2.989043579101562e+02, 2.989271850585938e+02, 2.979505615234375e+02, 2.974636840820312e+02, 2.973645324707031e+02, 2.9725634765625e+02, 2.972279357910156e+02, 2.97138671875e+02, 2.971457214355469e+02, 2.974505615234375e+02, 2.969808959960938e+02, 2.967400817871094e+02, 2.968439636230469e+02, 2.983858947753906e+02, 2.994118347167969e+02, 2.995866088867188e+02, 2.995731506347656e+02, 2.995766906738281e+02, 2.995471496582031e+02, 2.995170288085938e+02, 2.994952087402344e+02, 2.994733276367188e+02, 2.98124755859375e+02, 2.974595947265625e+02, 2.973243713378906e+02, 2.972203369140625e+02, 2.972071838378906e+02, 2.974232482910156e+02, 2.974495544433594e+02, 2.969985046386719e+02, 2.970405883789062e+02, 2.968541564941406e+02, 2.968904113769531e+02, 2.984619140625e+02, 2.994876708984375e+02, 2.99644775390625e+02, 2.996842651367188e+02, 2.996786804199219e+02, 2.99670654296875e+02, 2.996058654785156e+02, 2.995746459960938e+02, 2.995575866699219e+02, 2.981570434570312e+02, 2.974564514160156e+02, 2.973045959472656e+02, 2.972378540039062e+02, 2.972701416015625e+02, 2.974217834472656e+02, 2.973229370117188e+02, 2.970675048828125e+02, 2.968304138183594e+02, 2.966372985839844e+02, 2.967930297851562e+02, 2.983738098144531e+02, 2.993105773925781e+02, 2.994756469726562e+02, 2.994949951171875e+02, 2.995154418945312e+02] -flo.eas.TAir=[2.931499938964844e+02, 2.969562683105469e+02, 2.969840087890625e+02, 2.969849853515625e+02, 2.97221923828125e+02, 2.974152526855469e+02, 2.96771728515625e+02, 2.967366638183594e+02, 2.968740844726562e+02, 2.967318420410156e+02, 2.964851379394531e+02, 2.964835510253906e+02, 2.96559326171875e+02, 2.966294860839844e+02, 2.964620971679688e+02, 2.962394104003906e+02, 2.972391357421875e+02, 2.977805786132812e+02, 2.980299072265625e+02, 2.981734619140625e+02, 2.982835388183594e+02, 2.982471618652344e+02, 2.982462768554688e+02, 2.982476806640625e+02, 2.983564453125e+02, 2.978058166503906e+02, 2.971247253417969e+02, 2.971313171386719e+02, 2.969718933105469e+02, 2.968331909179688e+02, 2.967598266601562e+02, 2.967835388183594e+02, 2.968435974121094e+02, 2.96862060546875e+02, 2.968114929199219e+02, 2.967030334472656e+02, 2.97769775390625e+02, 2.985952453613281e+02, 2.987953796386719e+02, 2.989214477539062e+02, 2.99064697265625e+02, 2.99103759765625e+02, 2.991135864257812e+02, 2.990997619628906e+02, 2.9915966796875e+02, 2.979119873046875e+02, 2.976245727539062e+02, 2.973578796386719e+02, 2.969801635742188e+02, 2.969345703125e+02, 2.970780639648438e+02, 2.972127380371094e+02, 2.971593017578125e+02, 2.971401977539062e+02, 2.969250183105469e+02, 2.969884033203125e+02, 2.985970764160156e+02, 2.99537109375e+02, 2.997212524414062e+02, 2.997257690429688e+02, 2.997273864746094e+02, 2.997118530273438e+02, 2.996748046875e+02, 2.996175537109375e+02, 2.996385192871094e+02, 2.980151977539062e+02, 2.976275024414062e+02, 2.974953002929688e+02, 2.969934997558594e+02, 2.969233093261719e+02, 2.970181274414062e+02, 2.971379089355469e+02, 2.971586303710938e+02, 2.971469116210938e+02, 2.969339294433594e+02, 2.970144958496094e+02, 2.985484313964844e+02, 2.996019592285156e+02, 2.998051147460938e+02, 2.998309020996094e+02, 2.998207092285156e+02, 2.9980029296875e+02, 2.997500610351562e+02, 2.996969909667969e+02, 2.997138366699219e+02, 2.980247802734375e+02, 2.975575256347656e+02, 2.971835327148438e+02, 2.9704443359375e+02, 2.9706103515625e+02, 2.970427856445312e+02, 2.971526184082031e+02, 2.972053833007812e+02, 2.971296997070312e+02, 2.969151916503906e+02, 2.969839782714844e+02, 2.985621337890625e+02, 2.994286804199219e+02, 2.9962158203125e+02, 2.996681518554688e+02, 2.996731872558594e+02] +flo.sou.TAir=[2.931499938964844e+02, 2.969350891113281e+02, 2.969624328613281e+02, 2.970336303710938e+02, 2.970689086914062e+02, 2.97444091796875e+02, 2.959874877929688e+02, 2.961695556640625e+02, 2.963849792480469e+02, 2.96432861328125e+02, 2.963977355957031e+02, 2.964472351074219e+02, 2.966470031738281e+02, 2.967740783691406e+02, 2.966871337890625e+02, 2.963293151855469e+02, 2.972265319824219e+02, 2.976942138671875e+02, 2.9787939453125e+02, 2.980491333007812e+02, 2.981680603027344e+02, 2.98111572265625e+02, 2.981128845214844e+02, 2.981349792480469e+02, 2.981379089355469e+02, 2.975958557128906e+02, 2.964736938476562e+02, 2.964114074707031e+02, 2.964186401367188e+02, 2.964134521484375e+02, 2.964591979980469e+02, 2.965166015625e+02, 2.9657275390625e+02, 2.965979614257812e+02, 2.965815124511719e+02, 2.964890441894531e+02, 2.976151123046875e+02, 2.984635009765625e+02, 2.986580810546875e+02, 2.986952514648438e+02, 2.988626708984375e+02, 2.989109191894531e+02, 2.989104919433594e+02, 2.989043579101562e+02, 2.989271850585938e+02, 2.979505615234375e+02, 2.974636840820312e+02, 2.973645324707031e+02, 2.9725634765625e+02, 2.972279357910156e+02, 2.97138671875e+02, 2.971456909179688e+02, 2.974505615234375e+02, 2.969808959960938e+02, 2.967400817871094e+02, 2.968439636230469e+02, 2.983858947753906e+02, 2.994118347167969e+02, 2.995866088867188e+02, 2.995731506347656e+02, 2.995766906738281e+02, 2.995471496582031e+02, 2.995170288085938e+02, 2.994952087402344e+02, 2.994733276367188e+02, 2.98124755859375e+02, 2.974595947265625e+02, 2.973243713378906e+02, 2.972203369140625e+02, 2.972071838378906e+02, 2.974232482910156e+02, 2.974495544433594e+02, 2.969985046386719e+02, 2.970405883789062e+02, 2.968541564941406e+02, 2.968904113769531e+02, 2.984619140625e+02, 2.994876708984375e+02, 2.99644775390625e+02, 2.996842651367188e+02, 2.996786804199219e+02, 2.99670654296875e+02, 2.996058654785156e+02, 2.995746459960938e+02, 2.995575866699219e+02, 2.981570434570312e+02, 2.974564514160156e+02, 2.973045959472656e+02, 2.972378540039062e+02, 2.972701416015625e+02, 2.974217834472656e+02, 2.973229370117188e+02, 2.970675048828125e+02, 2.968304138183594e+02, 2.966372985839844e+02, 2.967930297851562e+02, 2.983738098144531e+02, 2.993105773925781e+02, 2.994756469726562e+02, 2.994949951171875e+02, 2.995154418945312e+02] +flo.eas.TAir=[2.931499938964844e+02, 2.969562683105469e+02, 2.969840087890625e+02, 2.969849853515625e+02, 2.97221923828125e+02, 2.974152526855469e+02, 2.96771728515625e+02, 2.967366638183594e+02, 2.968740844726562e+02, 2.967318420410156e+02, 2.964851379394531e+02, 2.964835510253906e+02, 2.96559326171875e+02, 2.966294860839844e+02, 2.964620971679688e+02, 2.962394104003906e+02, 2.972391052246094e+02, 2.977805786132812e+02, 2.980299072265625e+02, 2.981734619140625e+02, 2.982835388183594e+02, 2.982471618652344e+02, 2.982462768554688e+02, 2.982476806640625e+02, 2.983564453125e+02, 2.978058166503906e+02, 2.971247253417969e+02, 2.971313171386719e+02, 2.969718933105469e+02, 2.968331909179688e+02, 2.967598266601562e+02, 2.967835388183594e+02, 2.968435974121094e+02, 2.96862060546875e+02, 2.968114929199219e+02, 2.967030334472656e+02, 2.97769775390625e+02, 2.985952453613281e+02, 2.987953796386719e+02, 2.989214477539062e+02, 2.99064697265625e+02, 2.99103759765625e+02, 2.991135864257812e+02, 2.990997619628906e+02, 2.9915966796875e+02, 2.979119873046875e+02, 2.976245727539062e+02, 2.973578796386719e+02, 2.969801635742188e+02, 2.969345703125e+02, 2.970780639648438e+02, 2.972127380371094e+02, 2.971593017578125e+02, 2.971401977539062e+02, 2.969250183105469e+02, 2.969884033203125e+02, 2.985970458984375e+02, 2.99537109375e+02, 2.997212524414062e+02, 2.997257690429688e+02, 2.997273864746094e+02, 2.997118530273438e+02, 2.996748046875e+02, 2.996175537109375e+02, 2.996385192871094e+02, 2.980152282714844e+02, 2.976275024414062e+02, 2.974953002929688e+02, 2.969934997558594e+02, 2.969233093261719e+02, 2.970181274414062e+02, 2.971379089355469e+02, 2.971586303710938e+02, 2.971469116210938e+02, 2.969339294433594e+02, 2.970144958496094e+02, 2.985484313964844e+02, 2.996019592285156e+02, 2.998051147460938e+02, 2.998309020996094e+02, 2.998207092285156e+02, 2.9980029296875e+02, 2.997500610351562e+02, 2.996969909667969e+02, 2.997138366699219e+02, 2.980247802734375e+02, 2.975575256347656e+02, 2.971835327148438e+02, 2.9704443359375e+02, 2.9706103515625e+02, 2.970427856445312e+02, 2.971526184082031e+02, 2.972053833007812e+02, 2.971296997070312e+02, 2.969151916503906e+02, 2.969839782714844e+02, 2.985621337890625e+02, 2.994286804199219e+02, 2.9962158203125e+02, 2.996681518554688e+02, 2.996731872558594e+02] flo.nor.TAir=[2.931499938964844e+02, 2.969415283203125e+02, 2.970832214355469e+02, 2.9704736328125e+02, 2.971217651367188e+02, 2.975146179199219e+02, 2.959963073730469e+02, 2.960932922363281e+02, 2.962326965332031e+02, 2.963120727539062e+02, 2.961165466308594e+02, 2.961300048828125e+02, 2.96197998046875e+02, 2.962558288574219e+02, 2.961033630371094e+02, 2.959077758789062e+02, 2.969098205566406e+02, 2.975692443847656e+02, 2.977802429199219e+02, 2.9794287109375e+02, 2.980710754394531e+02, 2.980294799804688e+02, 2.980264282226562e+02, 2.980615234375e+02, 2.981112976074219e+02, 2.975874633789062e+02, 2.964134826660156e+02, 2.963241577148438e+02, 2.963135070800781e+02, 2.962728271484375e+02, 2.962697143554688e+02, 2.963150634765625e+02, 2.963801574707031e+02, 2.964188232421875e+02, 2.964136962890625e+02, 2.963505249023438e+02, 2.974376220703125e+02, 2.982621154785156e+02, 2.984717407226562e+02, 2.986129760742188e+02, 2.987844543457031e+02, 2.988453674316406e+02, 2.988697814941406e+02, 2.988704833984375e+02, 2.989139709472656e+02, 2.979290466308594e+02, 2.974390563964844e+02, 2.973527526855469e+02, 2.972400817871094e+02, 2.971874389648438e+02, 2.971131286621094e+02, 2.972020874023438e+02, 2.972758178710938e+02, 2.971459350585938e+02, 2.968283081054688e+02, 2.968975830078125e+02, 2.983380126953125e+02, 2.993061218261719e+02, 2.994913330078125e+02, 2.995095825195312e+02, 2.995208740234375e+02, 2.995206298828125e+02, 2.994937438964844e+02, 2.994538269042969e+02, 2.994506225585938e+02, 2.981081848144531e+02, 2.974360961914062e+02, 2.973059692382812e+02, 2.972019348144531e+02, 2.971657409667969e+02, 2.972265014648438e+02, 2.972591552734375e+02, 2.971280212402344e+02, 2.971415710449219e+02, 2.968452453613281e+02, 2.969353637695312e+02, 2.983464660644531e+02, 2.993755493164062e+02, 2.995739135742188e+02, 2.9960986328125e+02, 2.996169128417969e+02, 2.99605712890625e+02, 2.995661010742188e+02, 2.995245056152344e+02, 2.995299987792969e+02, 2.9814794921875e+02, 2.974308471679688e+02, 2.972844543457031e+02, 2.97212646484375e+02, 2.972002258300781e+02, 2.972404174804688e+02, 2.971357116699219e+02, 2.971438293457031e+02, 2.971167602539062e+02, 2.968152160644531e+02, 2.968758850097656e+02, 2.983251647949219e+02, 2.992531127929688e+02, 2.994300231933594e+02, 2.994477233886719e+02, 2.994460144042969e+02] -flo.wes.TAir=[2.931499938964844e+02, 2.9723291015625e+02, 2.973958740234375e+02, 2.973685607910156e+02, 2.974009094238281e+02, 2.973102111816406e+02, 2.962308654785156e+02, 2.963174438476562e+02, 2.964560241699219e+02, 2.965292358398438e+02, 2.963449401855469e+02, 2.963689270019531e+02, 2.96730712890625e+02, 2.971312866210938e+02, 2.967301635742188e+02, 2.963353881835938e+02, 2.972528686523438e+02, 2.978630981445312e+02, 2.980625915527344e+02, 2.982190246582031e+02, 2.983187561035156e+02, 2.982913818359375e+02, 2.982885437011719e+02, 2.982760314941406e+02, 2.982833251953125e+02, 2.974956970214844e+02, 2.966356201171875e+02, 2.966830139160156e+02, 2.967677612304688e+02, 2.966561584472656e+02, 2.967365417480469e+02, 2.968109436035156e+02, 2.971649475097656e+02, 2.973379516601562e+02, 2.972318420410156e+02, 2.970501098632812e+02, 2.980721740722656e+02, 2.986714477539062e+02, 2.989224548339844e+02, 2.990308837890625e+02, 2.991698303222656e+02, 2.992090759277344e+02, 2.992149658203125e+02, 2.991919555664062e+02, 2.992073669433594e+02, 2.97824951171875e+02, 2.9740771484375e+02, 2.97267578125e+02, 2.971335754394531e+02, 2.971521301269531e+02, 2.971535034179688e+02, 2.972311401367188e+02, 2.974104614257812e+02, 2.974213562011719e+02, 2.969256896972656e+02, 2.967988586425781e+02, 2.986696166992188e+02, 2.996132202148438e+02, 2.997986145019531e+02, 2.997942199707031e+02, 2.997938232421875e+02, 2.997668762207031e+02, 2.997257995605469e+02, 2.996688537597656e+02, 2.996311645507812e+02, 2.978972473144531e+02, 2.973727416992188e+02, 2.972287292480469e+02, 2.971694946289062e+02, 2.971591796875e+02, 2.971659851074219e+02, 2.971797180175781e+02, 2.973770446777344e+02, 2.973665466308594e+02, 2.970911865234375e+02, 2.967272644042969e+02, 2.986975708007812e+02, 2.997112426757812e+02, 2.9990380859375e+02, 2.999287719726562e+02, 2.999144592285156e+02, 2.998919067382812e+02, 2.998350219726562e+02, 2.997765808105469e+02, 2.997286987304688e+02, 2.979149169921875e+02, 2.97371337890625e+02, 2.972189025878906e+02, 2.971805725097656e+02, 2.9718017578125e+02, 2.970838012695312e+02, 2.971702270507812e+02, 2.974007263183594e+02, 2.973798522949219e+02, 2.9693701171875e+02, 2.968375549316406e+02, 2.98602783203125e+02, 2.99490234375e+02, 2.996632690429688e+02, 2.996742858886719e+02, 2.996925964355469e+02] -flo.cor.TAir=[2.931499938964844e+02, 2.969935302734375e+02, 2.971322021484375e+02, 2.971626281738281e+02, 2.971979675292969e+02, 2.974399719238281e+02, 2.960243530273438e+02, 2.960236206054688e+02, 2.961337280273438e+02, 2.961359558105469e+02, 2.959363098144531e+02, 2.959421081542969e+02, 2.960808410644531e+02, 2.962386474609375e+02, 2.960664672851562e+02, 2.958142700195312e+02, 2.968280029296875e+02, 2.975107116699219e+02, 2.977181396484375e+02, 2.978684997558594e+02, 2.979848022460938e+02, 2.979949340820312e+02, 2.980106201171875e+02, 2.980283203125e+02, 2.980560607910156e+02, 2.975285949707031e+02, 2.962989807128906e+02, 2.9622412109375e+02, 2.961744384765625e+02, 2.960978698730469e+02, 2.960899963378906e+02, 2.961214904785156e+02, 2.9622314453125e+02, 2.962991943359375e+02, 2.962688598632812e+02, 2.96184326171875e+02, 2.973283386230469e+02, 2.98161865234375e+02, 2.983893432617188e+02, 2.985091857910156e+02, 2.986945190429688e+02, 2.987660827636719e+02, 2.988010864257812e+02, 2.988143920898438e+02, 2.988553466796875e+02, 2.978564453125e+02, 2.974143371582031e+02, 2.9723828125e+02, 2.971636657714844e+02, 2.971480712890625e+02, 2.970993957519531e+02, 2.972154235839844e+02, 2.972061767578125e+02, 2.971507873535156e+02, 2.968571472167969e+02, 2.967149353027344e+02, 2.981309204101562e+02, 2.991717529296875e+02, 2.993722229003906e+02, 2.993997192382812e+02, 2.994140930175781e+02, 2.994171752929688e+02, 2.994019775390625e+02, 2.993773193359375e+02, 2.993738403320312e+02, 2.980424499511719e+02, 2.973385925292969e+02, 2.972388000488281e+02, 2.971423950195312e+02, 2.971332397460938e+02, 2.971170349121094e+02, 2.971759338378906e+02, 2.971471252441406e+02, 2.971562194824219e+02, 2.968795471191406e+02, 2.967947387695312e+02, 2.981638488769531e+02, 2.992503051757812e+02, 2.994540100097656e+02, 2.995023498535156e+02, 2.995129699707031e+02, 2.995171508789062e+02, 2.994891052246094e+02, 2.994594116210938e+02, 2.994566650390625e+02, 2.980696105957031e+02, 2.973251953125e+02, 2.972112121582031e+02, 2.971459655761719e+02, 2.971508178710938e+02, 2.971044616699219e+02, 2.971575927734375e+02, 2.971701354980469e+02, 2.971028747558594e+02, 2.968355407714844e+02, 2.967192993164062e+02, 2.981209716796875e+02, 2.991195983886719e+02, 2.993030395507812e+02, 2.993467102050781e+02, 2.993642578125e+02] +flo.wes.TAir=[2.931499938964844e+02, 2.9723291015625e+02, 2.973958740234375e+02, 2.973685607910156e+02, 2.974009094238281e+02, 2.973102111816406e+02, 2.962308654785156e+02, 2.963174438476562e+02, 2.964560241699219e+02, 2.965292358398438e+02, 2.963449401855469e+02, 2.963689270019531e+02, 2.96730712890625e+02, 2.971312866210938e+02, 2.967301635742188e+02, 2.963353881835938e+02, 2.972528686523438e+02, 2.978630981445312e+02, 2.980625915527344e+02, 2.982190246582031e+02, 2.983187561035156e+02, 2.982913818359375e+02, 2.982885437011719e+02, 2.982760314941406e+02, 2.982833251953125e+02, 2.974956970214844e+02, 2.966356201171875e+02, 2.966830139160156e+02, 2.967677612304688e+02, 2.966561584472656e+02, 2.967365417480469e+02, 2.968109436035156e+02, 2.971649475097656e+02, 2.973379516601562e+02, 2.972318420410156e+02, 2.970501098632812e+02, 2.980721740722656e+02, 2.986714477539062e+02, 2.989224548339844e+02, 2.990308837890625e+02, 2.991698303222656e+02, 2.992090759277344e+02, 2.992149658203125e+02, 2.991919555664062e+02, 2.992073669433594e+02, 2.97824951171875e+02, 2.9740771484375e+02, 2.97267578125e+02, 2.971335754394531e+02, 2.971521301269531e+02, 2.971535034179688e+02, 2.972311401367188e+02, 2.974104614257812e+02, 2.974213562011719e+02, 2.969256896972656e+02, 2.967988586425781e+02, 2.986696166992188e+02, 2.996132202148438e+02, 2.997986145019531e+02, 2.997942199707031e+02, 2.997938232421875e+02, 2.997668762207031e+02, 2.997257995605469e+02, 2.996688537597656e+02, 2.996311645507812e+02, 2.978972473144531e+02, 2.973727416992188e+02, 2.972287292480469e+02, 2.971694946289062e+02, 2.971591796875e+02, 2.971659851074219e+02, 2.971797180175781e+02, 2.973770446777344e+02, 2.973665466308594e+02, 2.970911865234375e+02, 2.967272644042969e+02, 2.986975708007812e+02, 2.997112426757812e+02, 2.9990380859375e+02, 2.999287719726562e+02, 2.999144592285156e+02, 2.998919067382812e+02, 2.998350219726562e+02, 2.997765808105469e+02, 2.997286987304688e+02, 2.979149169921875e+02, 2.973713684082031e+02, 2.972189025878906e+02, 2.971805725097656e+02, 2.9718017578125e+02, 2.970838012695312e+02, 2.971702270507812e+02, 2.974007263183594e+02, 2.973798522949219e+02, 2.9693701171875e+02, 2.968375549316406e+02, 2.98602783203125e+02, 2.99490234375e+02, 2.996632690429688e+02, 2.996742858886719e+02, 2.996925964355469e+02] +flo.cor.TAir=[2.931499938964844e+02, 2.969935302734375e+02, 2.971322021484375e+02, 2.971626281738281e+02, 2.971979675292969e+02, 2.974399719238281e+02, 2.960243530273438e+02, 2.960236206054688e+02, 2.961337280273438e+02, 2.961359558105469e+02, 2.959363098144531e+02, 2.959421081542969e+02, 2.960808410644531e+02, 2.962386474609375e+02, 2.960664672851562e+02, 2.958142700195312e+02, 2.968280029296875e+02, 2.975107116699219e+02, 2.977181396484375e+02, 2.978684997558594e+02, 2.979848022460938e+02, 2.979949340820312e+02, 2.980106201171875e+02, 2.980283203125e+02, 2.980560607910156e+02, 2.975285949707031e+02, 2.962989807128906e+02, 2.9622412109375e+02, 2.961744384765625e+02, 2.960978698730469e+02, 2.960899963378906e+02, 2.961214904785156e+02, 2.9622314453125e+02, 2.962991943359375e+02, 2.962688598632812e+02, 2.96184326171875e+02, 2.973283386230469e+02, 2.98161865234375e+02, 2.983893432617188e+02, 2.985091857910156e+02, 2.986945190429688e+02, 2.987660827636719e+02, 2.988010864257812e+02, 2.988143920898438e+02, 2.988553466796875e+02, 2.978564453125e+02, 2.974143371582031e+02, 2.9723828125e+02, 2.971636657714844e+02, 2.971480712890625e+02, 2.970993957519531e+02, 2.972154235839844e+02, 2.972061767578125e+02, 2.971507873535156e+02, 2.968571472167969e+02, 2.967149353027344e+02, 2.981309204101562e+02, 2.991717529296875e+02, 2.993722229003906e+02, 2.993997192382812e+02, 2.994140930175781e+02, 2.994171752929688e+02, 2.994019775390625e+02, 2.993773193359375e+02, 2.993738403320312e+02, 2.980424499511719e+02, 2.973385925292969e+02, 2.972388000488281e+02, 2.971423950195312e+02, 2.971332397460938e+02, 2.971170349121094e+02, 2.971759338378906e+02, 2.971471252441406e+02, 2.971562194824219e+02, 2.968795471191406e+02, 2.967947387695312e+02, 2.981638793945312e+02, 2.992503051757812e+02, 2.994540100097656e+02, 2.995023498535156e+02, 2.995129699707031e+02, 2.995171508789062e+02, 2.994891052246094e+02, 2.994594116210938e+02, 2.994566650390625e+02, 2.980696105957031e+02, 2.973251953125e+02, 2.972112121582031e+02, 2.971459655761719e+02, 2.971508178710938e+02, 2.971044616699219e+02, 2.971575927734375e+02, 2.971701354980469e+02, 2.971028747558594e+02, 2.968355407714844e+02, 2.967192993164062e+02, 2.981209716796875e+02, 2.991195983886719e+02, 2.993030395507812e+02, 2.993467102050781e+02, 2.993642578125e+02] TZonSet[1].TZonCooSet=[3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 2.971499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02, 3.031499938964844e+02] TZonSet[1].TZonHeaSet=[2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.931499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02, 2.851499938964844e+02] -fanSup.y=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.46327942609787e-01, 3.015310764312744e-01, 3.006192743778229e-01, 3.004983067512512e-01, 3.005053699016571e-01, 3.00507128238678e-01, 3.005456030368805e-01, 3.005764186382294e-01, 3.005827963352203e-01, 3.005908727645874e-01, 3.005773723125458e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.107297778129578e-01, 3.253679871559143e-01, 3.23869377374649e-01, 3.164535164833069e-01, 3.00574392080307e-01, 3.005477488040924e-01, 3.005741536617279e-01, 3.0058354139328e-01, 3.197275996208191e-01, 3.274625837802887e-01, 3.244625329971313e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.286159038543701e-01, 4.512767493724823e-01, 5.824540853500366e-01, 6.173433065414429e-01, 5.97685694694519e-01, 5.915593504905701e-01, 6.717202663421631e-01, 6.224969625473022e-01, 7.153322696685791e-01, 5.585267543792725e-01, 4.337219893932343e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.316152632236481e-01, 5.337631106376648e-01, 6.149859428405762e-01, 6.428580284118652e-01, 6.487119793891907e-01, 5.478143692016602e-01, 5.608066916465759e-01, 6.782225966453552e-01, 6.911841034889221e-01, 5.773115158081055e-01, 4.928030967712402e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.402171671390533e-01, 5.51131010055542e-01, 6.190207600593567e-01, 6.40580415725708e-01, 6.258305907249451e-01, 5.625403523445129e-01, 6.243916749954224e-01, 7.422815561294556e-01, 7.735990881919861e-01, 5.972483158111572e-01, 4.270548820495605e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -cor.vav.y_actual=[9.990000128746033e-01, 0e+00, 0e+00, 0e+00, 0e+00, 6.119887828826904e-01, 9.215289354324341e-01, 9.181602597236633e-01, 9.189213514328003e-01, 9.173856377601624e-01, 9.189890623092651e-01, 9.189809560775757e-01, 9.179248809814453e-01, 9.175244569778442e-01, 9.165599346160889e-01, 9.179485440254211e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.424742579460144e-01, 9.202243089675903e-01, 9.193381071090698e-01, 9.110414385795593e-01, 9.170061349868774e-01, 9.156549572944641e-01, 9.158018231391907e-01, 9.16364312171936e-01, 9.031615257263184e-01, 9.24604058265686e-01, 9.169659018516541e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.632604241371155e-01, 7.936406135559082e-01, 8.462116718292236e-01, 8.394383192062378e-01, 8.523312211036682e-01, 7.943181395530701e-01, 7.795740962028503e-01, 8.802772164344788e-01, 8.074885606765747e-01, 7.874467372894287e-01, 8.258829712867737e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.265244126319885e-01, 8.565254211425781e-01, 8.7679523229599e-01, 8.689442873001099e-01, 8.252444863319397e-01, 9.012534022331238e-01, 9.340990781784058e-01, 8.360458612442017e-01, 8.433570265769958e-01, 7.906669974327087e-01, 7.613893151283264e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.320565581321716e-01, 8.616119027137756e-01, 8.675327897071838e-01, 8.541499972343445e-01, 8.92899215221405e-01, 9.019372463226318e-01, 8.809336423873901e-01, 7.863228917121887e-01, 7.666372060775757e-01, 7.470840215682983e-01, 8.261177539825439e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -sou.vav.y_actual=[9.990000128746033e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.215293526649475e-01, 9.181607365608215e-01, 9.189218282699585e-01, 9.173860549926758e-01, 9.189894795417786e-01, 9.189813733100891e-01, 9.179253578186035e-01, 9.175249338150024e-01, 9.165604114532471e-01, 9.179489612579346e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.688027024269104e-01, 9.202247858047485e-01, 9.193385243415833e-01, 9.110418558120728e-01, 9.170065522193909e-01, 9.156553745269775e-01, 9.158022403717041e-01, 9.163647294044495e-01, 9.031619429588318e-01, 9.246045351028442e-01, 9.169663190841675e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.91538417339325e-01, 8.947768807411194e-01, 9.336656928062439e-01, 9.50234591960907e-01, 9.859846830368042e-01, 9.537991285324097e-01, 9.440849423408508e-01, 9.990000128746033e-01, 9.701142907142639e-01, 9.725381731987e-01, 9.439519643783569e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.433149814605713e-01, 9.245331883430481e-01, 9.674620032310486e-01, 9.773697853088379e-01, 9.430831670761108e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.959505200386047e-01, 9.958949089050293e-01, 9.611316919326782e-01, 9.092040061950684e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.495030760765076e-01, 9.309752583503723e-01, 9.593170285224915e-01, 9.642519950866699e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.670246243476868e-01, 9.415113925933838e-01, 9.304702877998352e-01, 9.585666656494141e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -eas.vav.y_actual=[9.990000128746033e-01, 0e+00, 0e+00, 0e+00, 0e+00, 6.48179829120636e-01, 8.058028817176819e-01, 8.032057285308838e-01, 8.037949800491333e-01, 8.026043772697449e-01, 8.038473129272461e-01, 8.038409948348999e-01, 8.030232191085815e-01, 8.027123212814331e-01, 8.019614219665527e-01, 8.030415177345276e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.535287380218506e-01, 9.823839664459229e-01, 9.742732644081116e-01, 9.070520997047424e-01, 8.023090958595276e-01, 8.012540936470032e-01, 8.013690710067749e-01, 8.01808774471283e-01, 7.910469174385071e-01, 8.081274032592773e-01, 8.022778034210205e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.006482124328613e-01, 9.367733001708984e-01, 9.990000128746033e-01, 9.893125295639038e-01, 9.448169469833374e-01, 8.538727164268494e-01, 8.229049444198608e-01, 9.267893433570862e-01, 8.427172303199768e-01, 8.457872271537781e-01, 8.286631107330322e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.40399181842804e-01, 9.627526998519897e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.961677551269531e-01, 9.609660506248474e-01, 9.778217077255249e-01, 8.703075647354126e-01, 8.7398761510849e-01, 8.373290300369263e-01, 7.772518992424011e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.449706196784973e-01, 9.657201766967773e-01, 9.740153551101685e-01, 9.356772303581238e-01, 9.532473087310791e-01, 9.534005522727966e-01, 9.218028783798218e-01, 8.161494731903076e-01, 7.953575849533081e-01, 7.978895902633667e-01, 8.322810530662537e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -nor.vav.y_actual=[9.990000128746033e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.215293526649475e-01, 9.181607365608215e-01, 9.189218282699585e-01, 9.173860549926758e-01, 9.189894795417786e-01, 9.189813733100891e-01, 9.179253578186035e-01, 9.175249338150024e-01, 9.165604114532471e-01, 9.179489612579346e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.631987333297729e-01, 9.202247858047485e-01, 9.193385243415833e-01, 9.110418558120728e-01, 9.170065522193909e-01, 9.156553745269775e-01, 9.158022403717041e-01, 9.163647294044495e-01, 9.031619429588318e-01, 9.246045351028442e-01, 9.169663190841675e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.873185276985168e-01, 8.856154084205627e-01, 9.165099859237671e-01, 9.309179186820984e-01, 9.630205631256104e-01, 9.066429734230042e-01, 8.846555948257446e-01, 9.990000128746033e-01, 9.131665825843811e-01, 9.275137186050415e-01, 9.023421406745911e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.412711381912231e-01, 9.166670441627502e-01, 9.558089375495911e-01, 9.634642004966736e-01, 9.190786480903625e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.493597149848938e-01, 9.553430080413818e-01, 9.174796938896179e-01, 8.465749025344849e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.474774122238159e-01, 9.234843254089355e-01, 9.473244547843933e-01, 9.478833079338074e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.908116221427917e-01, 8.669635057449341e-01, 8.785420656204224e-01, 9.165604710578918e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -wes.vav.y_actual=[9.990000128746033e-01, 0e+00, 0e+00, 0e+00, 0e+00, 5.867201685905457e-01, 8.058028817176819e-01, 8.032057285308838e-01, 8.037949800491333e-01, 8.026043772697449e-01, 8.038473129272461e-01, 8.038409948348999e-01, 8.030232191085815e-01, 8.027123212814331e-01, 8.019614219665527e-01, 8.030415177345276e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.366101741790771e-01, 8.04800271987915e-01, 8.0411696434021e-01, 7.97597348690033e-01, 8.023090958595276e-01, 8.012540936470032e-01, 8.013690710067749e-01, 8.01808774471283e-01, 9.097841382026672e-01, 9.976857304573059e-01, 9.722237586975098e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.728414535522461e-01, 8.36987316608429e-01, 8.521454334259033e-01, 8.649903535842896e-01, 8.77505362033844e-01, 8.282398581504822e-01, 8.061217069625854e-01, 9.538432359695435e-01, 9.41878080368042e-01, 9.990000128746033e-01, 9.990000128746033e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.092487812042236e-01, 8.479151725769043e-01, 8.674366474151611e-01, 8.670932650566101e-01, 8.340836763381958e-01, 9.308385848999023e-01, 9.552255868911743e-01, 8.916605710983276e-01, 9.693432450294495e-01, 9.93426501750946e-01, 9.728015065193176e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.133256196975708e-01, 8.546370267868042e-01, 8.635265827178955e-01, 8.588301539421082e-01, 9.094856977462769e-01, 9.279199838638306e-01, 9.039738178253174e-01, 8.321113586425781e-01, 8.614184856414795e-01, 9.18007493019104e-01, 9.466527104377747e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -eco.yOut=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 5.976083278656006e-01, 8.629698753356934e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 6.403233408927917e-01, 8.134089112281799e-01, 9.783077836036682e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.537485480308533e-01, 4.055283665657043e-01, 3.60804557800293e-01, 3.624180257320404e-01, 3.930514454841614e-01, 3.625085949897766e-01, 3.501768708229065e-01, 3.135498464107513e-01, 4.080334305763245e-01, 5.483607649803162e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.36978280544281e-01, 3.540550172328949e-01, 3.269062638282776e-01, 3.337447941303253e-01, 3.78738671541214e-01, 3.439040780067444e-01, 3.229402601718903e-01, 3.163109123706818e-01, 3.920129537582397e-01, 5.400969386100769e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.140004515647888e-01, 3.481462299823761e-01, 3.312055766582489e-01, 3.283627927303314e-01, 3.634193539619446e-01, 3.291774094104767e-01, 3.181922137737274e-01, 2.940490543842316e-01, 3.85179340839386e-01, 5.449383854866028e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -TSupSou.T=[2.931499938964844e+02, 2.931525268554688e+02, 2.931526489257812e+02, 2.931528625488281e+02, 2.931521911621094e+02, 2.857872009277344e+02, 2.853336486816406e+02, 2.853029479980469e+02, 2.852527160644531e+02, 2.851108093261719e+02, 2.852160949707031e+02, 2.852071838378906e+02, 2.851890869140625e+02, 2.851798095703125e+02, 2.851343688964844e+02, 2.850707092285156e+02, 2.853747253417969e+02, 2.8572998046875e+02, 2.863145751953125e+02, 2.869781188964844e+02, 2.876494750976562e+02, 2.882802124023438e+02, 2.884338684082031e+02, 2.889889221191406e+02, 2.895069274902344e+02, 2.87056640625e+02, 2.852119140625e+02, 2.851502685546875e+02, 2.851324157714844e+02, 2.851377563476562e+02, 2.851723022460938e+02, 2.851887817382812e+02, 2.851371459960938e+02, 2.852262573242188e+02, 2.852004699707031e+02, 2.850733947753906e+02, 2.852886657714844e+02, 2.856318969726562e+02, 2.862250061035156e+02, 2.86923095703125e+02, 2.876425476074219e+02, 2.883236389160156e+02, 2.889535827636719e+02, 2.895270690917969e+02, 2.900439147949219e+02, 2.875074462890625e+02, 2.855458068847656e+02, 2.854346313476562e+02, 2.852060546875e+02, 2.851000061035156e+02, 2.852262573242188e+02, 2.854706420898438e+02, 2.852274780273438e+02, 2.8531689453125e+02, 2.848298034667969e+02, 2.848988342285156e+02, 2.852940979003906e+02, 2.856292419433594e+02, 2.861832275390625e+02, 2.868222961425781e+02, 2.874743957519531e+02, 2.881013488769531e+02, 2.88683837890625e+02, 2.89225341796875e+02, 2.89718505859375e+02, 2.876998291015625e+02, 2.855138854980469e+02, 2.852749633789062e+02, 2.851024780273438e+02, 2.851343688964844e+02, 2.849653625488281e+02, 2.848428039550781e+02, 2.852609252929688e+02, 2.85213134765625e+02, 2.84965576171875e+02, 2.851195678710938e+02, 2.852239990234375e+02, 2.855641174316406e+02, 2.861223754882812e+02, 2.8676708984375e+02, 2.874324951171875e+02, 2.880643920898438e+02, 2.886461486816406e+02, 2.891812744140625e+02, 2.896593627929688e+02, 2.877059631347656e+02, 2.8551123046875e+02, 2.852531433105469e+02, 2.850699462890625e+02, 2.851268615722656e+02, 2.849547424316406e+02, 2.84991455078125e+02, 2.8551416015625e+02, 2.853971252441406e+02, 2.849035949707031e+02, 2.847797241210938e+02, 2.852999877929688e+02, 2.856879272460938e+02, 2.86307373046875e+02, 2.870097961425781e+02, 2.877080078125e+02] -TSupEas.T=[2.931499938964844e+02, 2.931527404785156e+02, 2.931527709960938e+02, 2.931529541015625e+02, 2.931522521972656e+02, 2.879481506347656e+02, 2.853337097167969e+02, 2.853029174804688e+02, 2.852527465820312e+02, 2.851108093261719e+02, 2.852160339355469e+02, 2.852071838378906e+02, 2.851891174316406e+02, 2.851797790527344e+02, 2.851343994140625e+02, 2.850706787109375e+02, 2.853751220703125e+02, 2.85730224609375e+02, 2.863147277832031e+02, 2.869782104492188e+02, 2.876495666503906e+02, 2.882802734375e+02, 2.884346313476562e+02, 2.889895629882812e+02, 2.8950732421875e+02, 2.870515747070312e+02, 2.852118835449219e+02, 2.851502685546875e+02, 2.851324157714844e+02, 2.851377258300781e+02, 2.851722717285156e+02, 2.851888122558594e+02, 2.851371765136719e+02, 2.85226318359375e+02, 2.852005615234375e+02, 2.850733642578125e+02, 2.852899475097656e+02, 2.856327209472656e+02, 2.862255249023438e+02, 2.869234313964844e+02, 2.876427917480469e+02, 2.883237609863281e+02, 2.889536743164062e+02, 2.895271301269531e+02, 2.900439758300781e+02, 2.875070190429688e+02, 2.855458984375e+02, 2.854346313476562e+02, 2.852060241699219e+02, 2.851000061035156e+02, 2.852264099121094e+02, 2.854708557128906e+02, 2.852268371582031e+02, 2.853169860839844e+02, 2.848295593261719e+02, 2.848989868164062e+02, 2.852925109863281e+02, 2.856282043457031e+02, 2.861825561523438e+02, 2.868218688964844e+02, 2.8747412109375e+02, 2.881011962890625e+02, 2.886837158203125e+02, 2.892252502441406e+02, 2.897184448242188e+02, 2.87699951171875e+02, 2.85513916015625e+02, 2.852749938964844e+02, 2.851024780273438e+02, 2.851343994140625e+02, 2.849649963378906e+02, 2.848428955078125e+02, 2.852611694335938e+02, 2.852130737304688e+02, 2.849654846191406e+02, 2.851199035644531e+02, 2.852227172851562e+02, 2.855632934570312e+02, 2.861218566894531e+02, 2.867667541503906e+02, 2.874322814941406e+02, 2.880642395019531e+02, 2.886460876464844e+02, 2.891812133789062e+02, 2.896593322753906e+02, 2.877061462402344e+02, 2.855112609863281e+02, 2.852531433105469e+02, 2.850699462890625e+02, 2.851270141601562e+02, 2.849543151855469e+02, 2.849917907714844e+02, 2.855144653320312e+02, 2.853971557617188e+02, 2.849035339355469e+02, 2.8477978515625e+02, 2.852986755371094e+02, 2.856870727539062e+02, 2.863068237304688e+02, 2.870094299316406e+02, 2.877077941894531e+02] -TSupNor.T=[2.931499938964844e+02, 2.931525268554688e+02, 2.931526489257812e+02, 2.931528625488281e+02, 2.931521911621094e+02, 2.857872009277344e+02, 2.853336486816406e+02, 2.853029479980469e+02, 2.852527160644531e+02, 2.851108093261719e+02, 2.852160949707031e+02, 2.852071838378906e+02, 2.851890869140625e+02, 2.851798095703125e+02, 2.851343688964844e+02, 2.850707092285156e+02, 2.853747253417969e+02, 2.8572998046875e+02, 2.863145751953125e+02, 2.869781188964844e+02, 2.876494750976562e+02, 2.882802124023438e+02, 2.884334106445312e+02, 2.889884948730469e+02, 2.895066528320312e+02, 2.870570373535156e+02, 2.852119140625e+02, 2.851502685546875e+02, 2.851324157714844e+02, 2.851377563476562e+02, 2.851723022460938e+02, 2.851887817382812e+02, 2.851371459960938e+02, 2.852262573242188e+02, 2.852004699707031e+02, 2.850733947753906e+02, 2.852886657714844e+02, 2.856318969726562e+02, 2.862249755859375e+02, 2.86923095703125e+02, 2.876425476074219e+02, 2.883236389160156e+02, 2.889535827636719e+02, 2.895270690917969e+02, 2.900439147949219e+02, 2.875076293945312e+02, 2.855457763671875e+02, 2.854346313476562e+02, 2.852060546875e+02, 2.851000061035156e+02, 2.85226318359375e+02, 2.854707336425781e+02, 2.852274780273438e+02, 2.853169250488281e+02, 2.848297424316406e+02, 2.848988647460938e+02, 2.8529345703125e+02, 2.856288146972656e+02, 2.861829528808594e+02, 2.868221435546875e+02, 2.874743041992188e+02, 2.881012878417969e+02, 2.886837768554688e+02, 2.892253112792969e+02, 2.897184753417969e+02, 2.876999206542969e+02, 2.855138549804688e+02, 2.852749328613281e+02, 2.851024780273438e+02, 2.851343688964844e+02, 2.849653625488281e+02, 2.848428039550781e+02, 2.852610168457031e+02, 2.852131042480469e+02, 2.849655456542969e+02, 2.851196899414062e+02, 2.852236633300781e+02, 2.855639038085938e+02, 2.861222534179688e+02, 2.867669982910156e+02, 2.874324340820312e+02, 2.880643615722656e+02, 2.886461486816406e+02, 2.891812438964844e+02, 2.896593627929688e+02, 2.877060241699219e+02, 2.8551123046875e+02, 2.852531433105469e+02, 2.850699462890625e+02, 2.851268615722656e+02, 2.849547424316406e+02, 2.84991455078125e+02, 2.855142822265625e+02, 2.853971252441406e+02, 2.849035949707031e+02, 2.847797546386719e+02, 2.852992858886719e+02, 2.856874694824219e+02, 2.863070678710938e+02, 2.870095825195312e+02, 2.877078857421875e+02] -TSupWes.T=[2.931499938964844e+02, 2.931529846191406e+02, 2.931529541015625e+02, 2.931530456542969e+02, 2.931523132324219e+02, 2.878769226074219e+02, 2.853337097167969e+02, 2.853029174804688e+02, 2.852527465820312e+02, 2.851108093261719e+02, 2.852160339355469e+02, 2.852071838378906e+02, 2.851891174316406e+02, 2.851797790527344e+02, 2.851343994140625e+02, 2.850706787109375e+02, 2.853751220703125e+02, 2.85730224609375e+02, 2.863147277832031e+02, 2.869782104492188e+02, 2.876495666503906e+02, 2.882802734375e+02, 2.884348449707031e+02, 2.8898974609375e+02, 2.895074768066406e+02, 2.870592651367188e+02, 2.852120361328125e+02, 2.851502685546875e+02, 2.851324768066406e+02, 2.851377258300781e+02, 2.851722717285156e+02, 2.851888122558594e+02, 2.851371765136719e+02, 2.852262573242188e+02, 2.852004699707031e+02, 2.850733947753906e+02, 2.852888488769531e+02, 2.856319885253906e+02, 2.862250671386719e+02, 2.869231262207031e+02, 2.87642578125e+02, 2.883236389160156e+02, 2.889535827636719e+02, 2.89527099609375e+02, 2.900439147949219e+02, 2.875083312988281e+02, 2.855456237792969e+02, 2.854346618652344e+02, 2.852060852050781e+02, 2.850999450683594e+02, 2.852264709472656e+02, 2.854709167480469e+02, 2.8522705078125e+02, 2.8531689453125e+02, 2.848298645019531e+02, 2.848987731933594e+02, 2.8529541015625e+02, 2.856300659179688e+02, 2.861837463378906e+02, 2.868226623535156e+02, 2.874746398925781e+02, 2.881015014648438e+02, 2.886839294433594e+02, 2.892254028320312e+02, 2.897185363769531e+02, 2.877014465332031e+02, 2.855137634277344e+02, 2.852748413085938e+02, 2.851025390625e+02, 2.851344604492188e+02, 2.849647521972656e+02, 2.848429870605469e+02, 2.852611083984375e+02, 2.852131042480469e+02, 2.849656066894531e+02, 2.851194763183594e+02, 2.852241516113281e+02, 2.85564208984375e+02, 2.861224670410156e+02, 2.867671203613281e+02, 2.874325256347656e+02, 2.880643920898438e+02, 2.886461791992188e+02, 2.891812744140625e+02, 2.896593627929688e+02, 2.877076110839844e+02, 2.855111389160156e+02, 2.852531433105469e+02, 2.850700378417969e+02, 2.851271667480469e+02, 2.849541320800781e+02, 2.849918518066406e+02, 2.85514404296875e+02, 2.853971252441406e+02, 2.849035949707031e+02, 2.847797241210938e+02, 2.852992553710938e+02, 2.856874694824219e+02, 2.863070678710938e+02, 2.870095825195312e+02, 2.877078857421875e+02] -TSupCor.T=[2.931499938964844e+02, 2.931522827148438e+02, 2.931524963378906e+02, 2.931527404785156e+02, 2.931521301269531e+02, 2.879081726074219e+02, 2.853336486816406e+02, 2.853029479980469e+02, 2.852527160644531e+02, 2.851108093261719e+02, 2.852160949707031e+02, 2.852071838378906e+02, 2.851890869140625e+02, 2.851798095703125e+02, 2.851343688964844e+02, 2.850707092285156e+02, 2.853747253417969e+02, 2.8572998046875e+02, 2.863145751953125e+02, 2.869781188964844e+02, 2.876494750976562e+02, 2.882802124023438e+02, 2.884332885742188e+02, 2.889884033203125e+02, 2.89506591796875e+02, 2.870587463378906e+02, 2.852119140625e+02, 2.851502685546875e+02, 2.851324157714844e+02, 2.851377563476562e+02, 2.851723022460938e+02, 2.851887817382812e+02, 2.851371459960938e+02, 2.852262573242188e+02, 2.852004699707031e+02, 2.850733947753906e+02, 2.852886352539062e+02, 2.856318664550781e+02, 2.862249755859375e+02, 2.869230651855469e+02, 2.876425476074219e+02, 2.883236389160156e+02, 2.889535827636719e+02, 2.895270690917969e+02, 2.900439147949219e+02, 2.875088195800781e+02, 2.855454406738281e+02, 2.854346618652344e+02, 2.852061157226562e+02, 2.850999450683594e+02, 2.852265930175781e+02, 2.854709777832031e+02, 2.852263793945312e+02, 2.853170166015625e+02, 2.848293762207031e+02, 2.848989868164062e+02, 2.852929077148438e+02, 2.856284790039062e+02, 2.861827392578125e+02, 2.868219909667969e+02, 2.874742126464844e+02, 2.881012268066406e+02, 2.886837463378906e+02, 2.892252807617188e+02, 2.897184753417969e+02, 2.877006225585938e+02, 2.855137634277344e+02, 2.852748718261719e+02, 2.851025390625e+02, 2.851344909667969e+02, 2.849644775390625e+02, 2.848430480957031e+02, 2.852612609863281e+02, 2.852130432128906e+02, 2.849654235839844e+02, 2.851199645996094e+02, 2.852230224609375e+02, 2.855634765625e+02, 2.861219787597656e+02, 2.86766845703125e+02, 2.874323425292969e+02, 2.880642700195312e+02, 2.886460876464844e+02, 2.891812133789062e+02, 2.896593322753906e+02, 2.877067260742188e+02, 2.855111389160156e+02, 2.852531433105469e+02, 2.850700378417969e+02, 2.851272277832031e+02, 2.849538879394531e+02, 2.849920043945312e+02, 2.855145568847656e+02, 2.853971557617188e+02, 2.849035034179688e+02, 2.8477978515625e+02, 2.85299072265625e+02, 2.856873474121094e+02, 2.863069763183594e+02, 2.870095520019531e+02, 2.877078552246094e+02] -res.EFan=[0e+00, -1.28834827251012e-07, -2.300522510267911e-07, -3.327870956582046e-07, -4.324967619595554e-07, 4.774454116821289e+00, 6.37734375e+02, 1.155754516601562e+03, 1.670656005859375e+03, 2.185346923828125e+03, 2.700123779296875e+03, 3.2149892578125e+03, 3.7300478515625e+03, 4.24519921875e+03, 4.76036767578125e+03, 5.27554443359375e+03, 5.70523876953125e+03, 5.70523876953125e+03, 5.70523876953125e+03, 5.70523828125e+03, 5.70523828125e+03, 5.70523828125e+03, 5.70523828125e+03, 5.70523828125e+03, 5.70523828125e+03, 5.733806640625e+03, 6.5702734375e+03, 7.2189072265625e+03, 7.84896337890625e+03, 8.3990302734375e+03, 8.913919921875e+03, 9.4289736328125e+03, 9.9441171875e+03, 1.050548046875e+04, 1.11436865234375e+04, 1.1807533203125e+04, 1.23148740234375e+04, 1.23148740234375e+04, 1.23148740234375e+04, 1.23148740234375e+04, 1.23148740234375e+04, 1.23148740234375e+04, 1.23148740234375e+04, 1.23148740234375e+04, 1.23148740234375e+04, 1.23857392578125e+04, 1.4095275390625e+04, 1.665492578125e+04, 2.097292578125e+04, 2.562115234375e+04, 2.9399505859375e+04, 3.333933984375e+04, 3.8038765625e+04, 4.397715234375e+04, 4.950385546875e+04, 5.1798421875e+04, 5.27693203125e+04, 5.27693203125e+04, 5.27693203125e+04, 5.27693203125e+04, 5.27693203125e+04, 5.27693203125e+04, 5.27693203125e+04, 5.27693203125e+04, 5.27693203125e+04, 5.2950203125e+04, 5.56015546875e+04, 5.9596515625e+04, 6.52275859375e+04, 7.0759265625e+04, 7.49105546875e+04, 7.9326875e+04, 8.45066484375e+04, 9.0489484375e+04, 9.59661171875e+04, 9.8536984375e+04, 9.97652890625e+04, 9.97652890625e+04, 9.97652890625e+04, 9.97652890625e+04, 9.97652890625e+04, 9.97652890625e+04, 9.97652890625e+04, 9.97652890625e+04, 9.97652890625e+04, 9.9955671875e+04, 1.029661796875e+05, 1.072101640625e+05, 1.1267296875e+05, 1.179310078125e+05, 1.22338484375e+05, 1.2732884375e+05, 1.3274846875e+05, 1.39945921875e+05, 1.4621125e+05, 1.48709515625e+05, 1.4965765625e+05, 1.4965765625e+05, 1.4965765625e+05, 1.4965765625e+05, 1.4965765625e+05] +fanSup.y=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1.46327942609787e-01, 3.015310764312744e-01, 3.006192743778229e-01, 3.004983067512512e-01, 3.005053699016571e-01, 3.00507128238678e-01, 3.005456030368805e-01, 3.005764186382294e-01, 3.005827963352203e-01, 3.005908727645874e-01, 3.005773723125458e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.107297033071518e-01, 3.253680169582367e-01, 3.23869377374649e-01, 3.164535164833069e-01, 3.00574392080307e-01, 3.005477488040924e-01, 3.005741536617279e-01, 3.0058354139328e-01, 3.197276294231415e-01, 3.274625837802887e-01, 3.244625329971313e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 3.28615814447403e-01, 4.512767493724823e-01, 5.824540853500366e-01, 6.173432469367981e-01, 5.97685694694519e-01, 5.915593504905701e-01, 6.717202663421631e-01, 6.224969625473022e-01, 7.153323292732239e-01, 5.585267543792725e-01, 4.337219893932343e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.316145181655884e-01, 5.337632298469543e-01, 6.149859428405762e-01, 6.428580284118652e-01, 6.487119793891907e-01, 5.478143692016602e-01, 5.608066916465759e-01, 6.782225966453552e-01, 6.911841034889221e-01, 5.773115158081055e-01, 4.928030967712402e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.402173161506653e-01, 5.51131010055542e-01, 6.190208196640015e-01, 6.40580415725708e-01, 6.258305907249451e-01, 5.625403523445129e-01, 6.243915557861328e-01, 7.422819137573242e-01, 7.735992670059204e-01, 5.972483158111572e-01, 4.270549118518829e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +cor.vav.y_actual=[9.990000128746033e-01, 0e+00, 0e+00, 0e+00, 0e+00, 6.119889616966248e-01, 9.215289354324341e-01, 9.181602597236633e-01, 9.189213514328003e-01, 9.173856377601624e-01, 9.189890623092651e-01, 9.189809560775757e-01, 9.179248809814453e-01, 9.175244569778442e-01, 9.165599346160889e-01, 9.179485440254211e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.424750328063965e-01, 9.202243089675903e-01, 9.193381071090698e-01, 9.110414385795593e-01, 9.170061349868774e-01, 9.156549572944641e-01, 9.158018231391907e-01, 9.16364312171936e-01, 9.031615257263184e-01, 9.24604058265686e-01, 9.169659018516541e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.63260543346405e-01, 7.936406135559082e-01, 8.462116718292236e-01, 8.39438259601593e-01, 8.523312211036682e-01, 7.943181395530701e-01, 7.795740365982056e-01, 8.802772164344788e-01, 8.074886202812195e-01, 7.874467372894287e-01, 8.258829712867737e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.265238165855408e-01, 8.565256595611572e-01, 8.767952919006348e-01, 8.689442873001099e-01, 8.252444863319397e-01, 9.012534022331238e-01, 9.340990781784058e-01, 8.360458612442017e-01, 8.433569669723511e-01, 7.906669974327087e-01, 7.613893151283264e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.320566773414612e-01, 8.616122007369995e-01, 8.675328493118286e-01, 8.541499972343445e-01, 8.92899215221405e-01, 9.019372463226318e-01, 8.809322714805603e-01, 7.863231301307678e-01, 7.666372656822205e-01, 7.470840215682983e-01, 8.261177539825439e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +sou.vav.y_actual=[9.990000128746033e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.215293526649475e-01, 9.181607365608215e-01, 9.189218282699585e-01, 9.173860549926758e-01, 9.189894795417786e-01, 9.189813733100891e-01, 9.179253578186035e-01, 9.175249338150024e-01, 9.165604114532471e-01, 9.179489612579346e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.68803596496582e-01, 9.202247858047485e-01, 9.193385243415833e-01, 9.110418558120728e-01, 9.170065522193909e-01, 9.156553745269775e-01, 9.158022403717041e-01, 9.163647294044495e-01, 9.031619429588318e-01, 9.246045351028442e-01, 9.169663190841675e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.91538417339325e-01, 8.947768807411194e-01, 9.336657524108887e-01, 9.502345323562622e-01, 9.859846830368042e-01, 9.537991285324097e-01, 9.440848231315613e-01, 9.990000128746033e-01, 9.701143503189087e-01, 9.725381731987e-01, 9.439519643783569e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.433143258094788e-01, 9.245331883430481e-01, 9.674620032310486e-01, 9.773697853088379e-01, 9.430831670761108e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.9595046043396e-01, 9.958947896957397e-01, 9.611316323280334e-01, 9.092040061950684e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.495025992393494e-01, 9.309754967689514e-01, 9.593170881271362e-01, 9.642520546913147e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.670249223709106e-01, 9.415115118026733e-01, 9.3047034740448e-01, 9.585666656494141e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +eas.vav.y_actual=[9.990000128746033e-01, 0e+00, 0e+00, 0e+00, 0e+00, 6.481798887252808e-01, 8.058028817176819e-01, 8.032057285308838e-01, 8.037949800491333e-01, 8.026043772697449e-01, 8.038473129272461e-01, 8.038409948348999e-01, 8.030232191085815e-01, 8.027123212814331e-01, 8.019614219665527e-01, 8.030415177345276e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.535292148590088e-01, 9.823839664459229e-01, 9.742732644081116e-01, 9.070520997047424e-01, 8.023090958595276e-01, 8.012540936470032e-01, 8.013690710067749e-01, 8.01808774471283e-01, 7.910469174385071e-01, 8.081274032592773e-01, 8.022778034210205e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 8.006483912467957e-01, 9.367733001708984e-01, 9.990000128746033e-01, 9.89312469959259e-01, 9.448169469833374e-01, 8.538727164268494e-01, 8.229048848152161e-01, 9.267893433570862e-01, 8.427172899246216e-01, 8.457872271537781e-01, 8.286631107330322e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.403983473777771e-01, 9.62752640247345e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.961677551269531e-01, 9.609660506248474e-01, 9.778217077255249e-01, 8.703075647354126e-01, 8.739875555038452e-01, 8.373290300369263e-01, 7.772518992424011e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.449714541435242e-01, 9.657207131385803e-01, 9.74015474319458e-01, 9.356772303581238e-01, 9.532472491264343e-01, 9.534005522727966e-01, 9.218012094497681e-01, 8.161497116088867e-01, 7.953576445579529e-01, 7.978895902633667e-01, 8.322810530662537e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +nor.vav.y_actual=[9.990000128746033e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 9.215293526649475e-01, 9.181607365608215e-01, 9.189218282699585e-01, 9.173860549926758e-01, 9.189894795417786e-01, 9.189813733100891e-01, 9.179253578186035e-01, 9.175249338150024e-01, 9.165604114532471e-01, 9.179489612579346e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.631996273994446e-01, 9.202247858047485e-01, 9.193385243415833e-01, 9.110418558120728e-01, 9.170065522193909e-01, 9.156553745269775e-01, 9.158022403717041e-01, 9.163647294044495e-01, 9.031619429588318e-01, 9.246045351028442e-01, 9.169663190841675e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.873193621635437e-01, 8.856154084205627e-01, 9.165100455284119e-01, 9.309178590774536e-01, 9.630205631256104e-01, 9.066429734230042e-01, 8.846555352210999e-01, 9.990000128746033e-01, 9.131666421890259e-01, 9.275136590003967e-01, 9.023421406745911e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.412706613540649e-01, 9.166671633720398e-01, 9.558089375495911e-01, 9.634642004966736e-01, 9.190786480903625e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.493597149848938e-01, 9.553430080413818e-01, 9.174796342849731e-01, 8.465749025344849e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.474775314331055e-01, 9.234846830368042e-01, 9.473245143890381e-01, 9.478833675384521e-01, 9.990000128746033e-01, 9.990000128746033e-01, 9.990000128746033e-01, 8.908118009567261e-01, 8.669635653495789e-01, 8.785420656204224e-01, 9.165604710578918e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +wes.vav.y_actual=[9.990000128746033e-01, 0e+00, 0e+00, 0e+00, 0e+00, 5.867202877998352e-01, 8.058028817176819e-01, 8.032057285308838e-01, 8.037949800491333e-01, 8.026043772697449e-01, 8.038473129272461e-01, 8.038409948348999e-01, 8.030232191085815e-01, 8.027123212814331e-01, 8.019614219665527e-01, 8.030415177345276e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.366108894348145e-01, 8.04800271987915e-01, 8.0411696434021e-01, 7.97597348690033e-01, 8.023090958595276e-01, 8.012540936470032e-01, 8.013690710067749e-01, 8.01808774471283e-01, 9.097841382026672e-01, 9.976857304573059e-01, 9.722237586975098e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.728410959243774e-01, 8.36987316608429e-01, 8.521454334259033e-01, 8.649903535842896e-01, 8.77505362033844e-01, 8.282398581504822e-01, 8.061216473579407e-01, 9.538432359695435e-01, 9.418781399726868e-01, 9.990000128746033e-01, 9.990000128746033e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.092477679252625e-01, 8.479151725769043e-01, 8.674366474151611e-01, 8.670932650566101e-01, 8.340836763381958e-01, 9.308385848999023e-01, 9.552255868911743e-01, 8.916605710983276e-01, 9.693431854248047e-01, 9.93426501750946e-01, 9.728015065193176e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 7.133254408836365e-01, 8.546373844146729e-01, 8.635267019271851e-01, 8.588301539421082e-01, 9.094856977462769e-01, 9.279199838638306e-01, 9.039724469184875e-01, 8.32111656665802e-01, 8.614185452461243e-01, 9.18007493019104e-01, 9.466527104377747e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +eco.yOut=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 1e+00, 5.975983738899231e-01, 8.629692792892456e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 6.403133273124695e-01, 8.134025931358337e-01, 9.783021211624146e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.537484288215637e-01, 4.055285155773163e-01, 3.608042597770691e-01, 3.624180257320404e-01, 3.93051415681839e-01, 3.62507700920105e-01, 3.501768410205841e-01, 3.135506808757782e-01, 4.080334305763245e-01, 5.483607649803162e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.369779229164124e-01, 3.540549576282501e-01, 3.269062340259552e-01, 3.337447941303253e-01, 3.78738671541214e-01, 3.43904048204422e-01, 3.22940319776535e-01, 3.163109421730042e-01, 3.920130431652069e-01, 5.400969386100769e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 4.140070974826813e-01, 3.481461703777313e-01, 3.312055468559265e-01, 3.283627927303314e-01, 3.634193539619446e-01, 3.291756212711334e-01, 3.181923925876617e-01, 2.940483689308167e-01, 3.851793110370636e-01, 5.449383854866028e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +TSupSou.T=[2.931499938964844e+02, 2.931525268554688e+02, 2.931526489257812e+02, 2.931528625488281e+02, 2.931521911621094e+02, 2.857872009277344e+02, 2.853336486816406e+02, 2.853029479980469e+02, 2.852527160644531e+02, 2.851108093261719e+02, 2.852160949707031e+02, 2.852071838378906e+02, 2.851890869140625e+02, 2.851798095703125e+02, 2.851343688964844e+02, 2.850707092285156e+02, 2.853797607421875e+02, 2.857341613769531e+02, 2.863179626464844e+02, 2.869808349609375e+02, 2.87651611328125e+02, 2.882819213867188e+02, 2.884364929199219e+02, 2.889903869628906e+02, 2.89508056640625e+02, 2.870566711425781e+02, 2.852119140625e+02, 2.851502685546875e+02, 2.851324157714844e+02, 2.851377563476562e+02, 2.851723022460938e+02, 2.851887817382812e+02, 2.851371459960938e+02, 2.852262573242188e+02, 2.852004699707031e+02, 2.850733947753906e+02, 2.852883605957031e+02, 2.856316528320312e+02, 2.862247924804688e+02, 2.869229431152344e+02, 2.876424560546875e+02, 2.883235778808594e+02, 2.889535522460938e+02, 2.895270690917969e+02, 2.900439453125e+02, 2.875074462890625e+02, 2.855458068847656e+02, 2.854346313476562e+02, 2.852060546875e+02, 2.851000061035156e+02, 2.852262573242188e+02, 2.854706115722656e+02, 2.852274780273438e+02, 2.8531689453125e+02, 2.848298034667969e+02, 2.848988342285156e+02, 2.852936096191406e+02, 2.856288757324219e+02, 2.861830444335938e+02, 2.868222961425781e+02, 2.874745788574219e+02, 2.881016540527344e+02, 2.886842041015625e+02, 2.892257690429688e+02, 2.89718994140625e+02, 2.876998291015625e+02, 2.855138854980469e+02, 2.852749633789062e+02, 2.851024780273438e+02, 2.851343688964844e+02, 2.849653625488281e+02, 2.848428039550781e+02, 2.852609252929688e+02, 2.852131042480469e+02, 2.84965576171875e+02, 2.851195678710938e+02, 2.852239074707031e+02, 2.855640258789062e+02, 2.861222839355469e+02, 2.867669677734375e+02, 2.87432373046875e+02, 2.880642395019531e+02, 2.8864599609375e+02, 2.891810913085938e+02, 2.896592102050781e+02, 2.877059631347656e+02, 2.855112609863281e+02, 2.852531433105469e+02, 2.850699462890625e+02, 2.851268615722656e+02, 2.849547424316406e+02, 2.849914245605469e+02, 2.8551416015625e+02, 2.853971252441406e+02, 2.849035949707031e+02, 2.847797241210938e+02, 2.852988891601562e+02, 2.856870727539062e+02, 2.863067932128906e+02, 2.870094299316406e+02, 2.877078552246094e+02] +TSupEas.T=[2.931499938964844e+02, 2.931527404785156e+02, 2.931527709960938e+02, 2.931529541015625e+02, 2.931522521972656e+02, 2.879481506347656e+02, 2.853337097167969e+02, 2.853029174804688e+02, 2.852527465820312e+02, 2.851108093261719e+02, 2.852160339355469e+02, 2.852071838378906e+02, 2.851891174316406e+02, 2.851797790527344e+02, 2.851343994140625e+02, 2.850706787109375e+02, 2.853797912597656e+02, 2.857341613769531e+02, 2.863179931640625e+02, 2.869808349609375e+02, 2.876516418457031e+02, 2.882819213867188e+02, 2.884372253417969e+02, 2.889910278320312e+02, 2.895084533691406e+02, 2.870516052246094e+02, 2.852118835449219e+02, 2.851502685546875e+02, 2.851324157714844e+02, 2.851377258300781e+02, 2.851722717285156e+02, 2.851888122558594e+02, 2.851371765136719e+02, 2.85226318359375e+02, 2.852005615234375e+02, 2.850733642578125e+02, 2.852897644042969e+02, 2.85632568359375e+02, 2.862254028320312e+02, 2.8692333984375e+02, 2.876427001953125e+02, 2.8832373046875e+02, 2.889536437988281e+02, 2.895271301269531e+02, 2.900439758300781e+02, 2.875070190429688e+02, 2.855458984375e+02, 2.854346313476562e+02, 2.852060241699219e+02, 2.851000061035156e+02, 2.852264099121094e+02, 2.854708557128906e+02, 2.852268371582031e+02, 2.853169860839844e+02, 2.848295593261719e+02, 2.848989868164062e+02, 2.852921752929688e+02, 2.856279602050781e+02, 2.861824645996094e+02, 2.868219299316406e+02, 2.874743041992188e+02, 2.881015014648438e+02, 2.886841125488281e+02, 2.892257080078125e+02, 2.897189636230469e+02, 2.87699951171875e+02, 2.85513916015625e+02, 2.852749938964844e+02, 2.851024780273438e+02, 2.851343994140625e+02, 2.849649963378906e+02, 2.848428955078125e+02, 2.852611694335938e+02, 2.852130737304688e+02, 2.849654846191406e+02, 2.851199035644531e+02, 2.852226257324219e+02, 2.855632019042969e+02, 2.861217651367188e+02, 2.867666320800781e+02, 2.874321594238281e+02, 2.880640869140625e+02, 2.886459045410156e+02, 2.891810302734375e+02, 2.896591491699219e+02, 2.877061462402344e+02, 2.855112915039062e+02, 2.85253173828125e+02, 2.850699462890625e+02, 2.851270141601562e+02, 2.849543151855469e+02, 2.849917907714844e+02, 2.855144653320312e+02, 2.853971557617188e+02, 2.849035339355469e+02, 2.8477978515625e+02, 2.852970886230469e+02, 2.856859130859375e+02, 2.863060302734375e+02, 2.870089721679688e+02, 2.877075500488281e+02] +TSupNor.T=[2.931499938964844e+02, 2.931525268554688e+02, 2.931526489257812e+02, 2.931528625488281e+02, 2.931521911621094e+02, 2.857872009277344e+02, 2.853336486816406e+02, 2.853029479980469e+02, 2.852527160644531e+02, 2.851108093261719e+02, 2.852160949707031e+02, 2.852071838378906e+02, 2.851890869140625e+02, 2.851798095703125e+02, 2.851343688964844e+02, 2.850707092285156e+02, 2.853796081542969e+02, 2.857340698242188e+02, 2.863179016113281e+02, 2.869807739257812e+02, 2.87651611328125e+02, 2.882818908691406e+02, 2.884360046386719e+02, 2.889899597167969e+02, 2.895077819824219e+02, 2.870570678710938e+02, 2.852119140625e+02, 2.851502685546875e+02, 2.851324157714844e+02, 2.851377563476562e+02, 2.851723022460938e+02, 2.851887817382812e+02, 2.851371459960938e+02, 2.852262573242188e+02, 2.852004699707031e+02, 2.850733947753906e+02, 2.852883605957031e+02, 2.856316528320312e+02, 2.862247924804688e+02, 2.869229431152344e+02, 2.876424560546875e+02, 2.883235778808594e+02, 2.889535522460938e+02, 2.895270690917969e+02, 2.900439453125e+02, 2.875076293945312e+02, 2.855457763671875e+02, 2.854346313476562e+02, 2.852060546875e+02, 2.851000061035156e+02, 2.85226318359375e+02, 2.85470703125e+02, 2.852274780273438e+02, 2.853169250488281e+02, 2.848297424316406e+02, 2.848988647460938e+02, 2.85293212890625e+02, 2.856286315917969e+02, 2.861828918457031e+02, 2.868222045898438e+02, 2.874744873046875e+02, 2.881015930175781e+02, 2.886841735839844e+02, 2.892257690429688e+02, 2.89718994140625e+02, 2.876999206542969e+02, 2.855138549804688e+02, 2.852749328613281e+02, 2.851024780273438e+02, 2.851343688964844e+02, 2.849653625488281e+02, 2.848428039550781e+02, 2.852610168457031e+02, 2.852131042480469e+02, 2.849655456542969e+02, 2.851196899414062e+02, 2.852235717773438e+02, 2.855638122558594e+02, 2.861221313476562e+02, 2.867668762207031e+02, 2.874323120117188e+02, 2.88064208984375e+02, 2.886459655761719e+02, 2.891810913085938e+02, 2.896591796875e+02, 2.877060241699219e+02, 2.855112609863281e+02, 2.852531433105469e+02, 2.850699462890625e+02, 2.851268615722656e+02, 2.849547424316406e+02, 2.849914245605469e+02, 2.855142822265625e+02, 2.853971252441406e+02, 2.849035949707031e+02, 2.847797546386719e+02, 2.852984619140625e+02, 2.856867980957031e+02, 2.863066101074219e+02, 2.870093383789062e+02, 2.877077941894531e+02] +TSupWes.T=[2.931499938964844e+02, 2.931529846191406e+02, 2.931529541015625e+02, 2.931530456542969e+02, 2.931523132324219e+02, 2.878768920898438e+02, 2.853337097167969e+02, 2.853029174804688e+02, 2.852527465820312e+02, 2.851108093261719e+02, 2.852160339355469e+02, 2.852071838378906e+02, 2.851891174316406e+02, 2.851797790527344e+02, 2.851343994140625e+02, 2.850706787109375e+02, 2.853798217773438e+02, 2.857341918945312e+02, 2.863179931640625e+02, 2.869808349609375e+02, 2.876516418457031e+02, 2.882819213867188e+02, 2.884374389648438e+02, 2.889912109375e+02, 2.895086059570312e+02, 2.870592956542969e+02, 2.852120361328125e+02, 2.851502685546875e+02, 2.851324768066406e+02, 2.851377258300781e+02, 2.851722717285156e+02, 2.851888122558594e+02, 2.851371765136719e+02, 2.852262573242188e+02, 2.852004699707031e+02, 2.850733947753906e+02, 2.8528857421875e+02, 2.856317749023438e+02, 2.862248840332031e+02, 2.869230041503906e+02, 2.876425170898438e+02, 2.883236083984375e+02, 2.889535827636719e+02, 2.895270690917969e+02, 2.900439453125e+02, 2.875083312988281e+02, 2.855456237792969e+02, 2.854346618652344e+02, 2.852060852050781e+02, 2.850999755859375e+02, 2.852264709472656e+02, 2.854709167480469e+02, 2.8522705078125e+02, 2.8531689453125e+02, 2.848298645019531e+02, 2.848987731933594e+02, 2.852944641113281e+02, 2.856294250488281e+02, 2.861834106445312e+02, 2.868225402832031e+02, 2.874747009277344e+02, 2.881017456054688e+02, 2.886842651367188e+02, 2.89225830078125e+02, 2.897190246582031e+02, 2.877014465332031e+02, 2.855137634277344e+02, 2.852748413085938e+02, 2.851025390625e+02, 2.851344604492188e+02, 2.849647521972656e+02, 2.848429870605469e+02, 2.852611083984375e+02, 2.852131042480469e+02, 2.849656066894531e+02, 2.851194763183594e+02, 2.852240600585938e+02, 2.855641479492188e+02, 2.861223449707031e+02, 2.867670288085938e+02, 2.874324035644531e+02, 2.880642700195312e+02, 2.886460266113281e+02, 2.891811218261719e+02, 2.896592102050781e+02, 2.877076110839844e+02, 2.855111694335938e+02, 2.852531433105469e+02, 2.850700378417969e+02, 2.851271667480469e+02, 2.849541320800781e+02, 2.849918518066406e+02, 2.85514404296875e+02, 2.853971252441406e+02, 2.849035949707031e+02, 2.847797241210938e+02, 2.852984924316406e+02, 2.856868286132812e+02, 2.863066101074219e+02, 2.870093383789062e+02, 2.877077941894531e+02] +TSupCor.T=[2.931499938964844e+02, 2.931522827148438e+02, 2.931524963378906e+02, 2.931527404785156e+02, 2.931521301269531e+02, 2.879081726074219e+02, 2.853336486816406e+02, 2.853029479980469e+02, 2.852527160644531e+02, 2.851108093261719e+02, 2.852160949707031e+02, 2.852071838378906e+02, 2.851890869140625e+02, 2.851798095703125e+02, 2.851343688964844e+02, 2.850707092285156e+02, 2.853795471191406e+02, 2.857340087890625e+02, 2.8631787109375e+02, 2.869807739257812e+02, 2.876515808105469e+02, 2.882818908691406e+02, 2.884358825683594e+02, 2.889898681640625e+02, 2.895077209472656e+02, 2.870587768554688e+02, 2.852119140625e+02, 2.851502685546875e+02, 2.851324157714844e+02, 2.851377563476562e+02, 2.851723022460938e+02, 2.851887817382812e+02, 2.851371459960938e+02, 2.852262573242188e+02, 2.852004699707031e+02, 2.850733947753906e+02, 2.852883605957031e+02, 2.856316528320312e+02, 2.862247924804688e+02, 2.869229431152344e+02, 2.876424560546875e+02, 2.883235778808594e+02, 2.889535522460938e+02, 2.895270690917969e+02, 2.900439453125e+02, 2.875088195800781e+02, 2.855454406738281e+02, 2.854346618652344e+02, 2.852061157226562e+02, 2.850999450683594e+02, 2.852265930175781e+02, 2.854709777832031e+02, 2.852263793945312e+02, 2.853170166015625e+02, 2.848293762207031e+02, 2.848989868164062e+02, 2.852925415039062e+02, 2.85628173828125e+02, 2.861825866699219e+02, 2.86822021484375e+02, 2.87474365234375e+02, 2.881015319824219e+02, 2.886841430664062e+02, 2.892257385253906e+02, 2.897189636230469e+02, 2.877006225585938e+02, 2.855137634277344e+02, 2.852748718261719e+02, 2.851025390625e+02, 2.851344909667969e+02, 2.849644775390625e+02, 2.848430480957031e+02, 2.852612609863281e+02, 2.852130432128906e+02, 2.849654235839844e+02, 2.851199645996094e+02, 2.852229309082031e+02, 2.855633850097656e+02, 2.861218872070312e+02, 2.867667236328125e+02, 2.874321899414062e+02, 2.880641174316406e+02, 2.886459350585938e+02, 2.891810607910156e+02, 2.896591796875e+02, 2.877066955566406e+02, 2.855111694335938e+02, 2.852531433105469e+02, 2.850700378417969e+02, 2.851272277832031e+02, 2.849538879394531e+02, 2.849919738769531e+02, 2.855145568847656e+02, 2.853971557617188e+02, 2.849035034179688e+02, 2.8477978515625e+02, 2.852976379394531e+02, 2.85686279296875e+02, 2.863062744140625e+02, 2.870091247558594e+02, 2.877076721191406e+02] +res.EFan=[0e+00, -1.28834827251012e-07, -2.300522510267911e-07, -3.327870956582046e-07, -4.324967619595554e-07, 4.774454116821289e+00, 6.377340087890625e+02, 1.155754150390625e+03, 1.670655639648438e+03, 2.185346435546875e+03, 2.700123291015625e+03, 3.214989013671875e+03, 3.730047607421875e+03, 4.24519873046875e+03, 4.76036767578125e+03, 5.2755439453125e+03, 5.70523828125e+03, 5.70523828125e+03, 5.70523828125e+03, 5.70523828125e+03, 5.70523828125e+03, 5.70523828125e+03, 5.70523828125e+03, 5.70523828125e+03, 5.70523828125e+03, 5.73380615234375e+03, 6.5702734375e+03, 7.21890673828125e+03, 7.848962890625e+03, 8.399029296875e+03, 8.913919921875e+03, 9.4289736328125e+03, 9.9441162109375e+03, 1.050548046875e+04, 1.11436865234375e+04, 1.18075322265625e+04, 1.23148740234375e+04, 1.23148740234375e+04, 1.23148740234375e+04, 1.23148740234375e+04, 1.23148740234375e+04, 1.23148740234375e+04, 1.23148740234375e+04, 1.23148740234375e+04, 1.23148740234375e+04, 1.23857392578125e+04, 1.4095275390625e+04, 1.665492578125e+04, 2.097292578125e+04, 2.562115234375e+04, 2.9399505859375e+04, 3.333933984375e+04, 3.8038765625e+04, 4.397715234375e+04, 4.9503859375e+04, 5.1798421875e+04, 5.27693203125e+04, 5.27693203125e+04, 5.27693203125e+04, 5.27693203125e+04, 5.27693203125e+04, 5.27693203125e+04, 5.27693203125e+04, 5.27693203125e+04, 5.27693203125e+04, 5.2950203125e+04, 5.560155859375e+04, 5.959651953125e+04, 6.522758984375e+04, 7.07592734375e+04, 7.49105546875e+04, 7.93268828125e+04, 8.450665625e+04, 9.04894921875e+04, 9.5966125e+04, 9.85369921875e+04, 9.97652890625e+04, 9.97652890625e+04, 9.97652890625e+04, 9.97652890625e+04, 9.97652890625e+04, 9.97652890625e+04, 9.97652890625e+04, 9.97652890625e+04, 9.97652890625e+04, 9.99556796875e+04, 1.029661796875e+05, 1.072101640625e+05, 1.126729765625e+05, 1.17931015625e+05, 1.223384921875e+05, 1.273288515625e+05, 1.3274846875e+05, 1.39945921875e+05, 1.46211265625e+05, 1.4870953125e+05, 1.49657671875e+05, 1.49657671875e+05, 1.49657671875e+05, 1.49657671875e+05, 1.49657671875e+05] res.EHea=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -res.ECoo=[0e+00, -4.778982400894165e-01, -4.468332231044769e-01, 5.055937170982361e-01, 2.365000486373901e+00, -1.9231640625e+03, -7.57500078125e+04, -1.50894203125e+05, -2.366255e+05, -3.3210809375e+05, -4.2787771875e+05, -5.336105625e+05, -6.487080625e+05, -7.687511875e+05, -8.92666625e+05, -1.011602875e+06, -1.105175375e+06, -1.1052085e+06, -1.105230625e+06, -1.10525725e+06, -1.105291e+06, -1.105316125e+06, -1.105320875e+06, -1.1053415e+06, -1.10536175e+06, -1.115896875e+06, -1.220938875e+06, -1.333601625e+06, -1.44671525e+06, -1.556699875e+06, -1.66622975e+06, -1.781611125e+06, -1.9017535e+06, -2.022455875e+06, -2.15104775e+06, -2.279271e+06, -2.378362e+06, -2.37841375e+06, -2.3784515e+06, -2.37848625e+06, -2.378517e+06, -2.378545e+06, -2.37857075e+06, -2.37859175e+06, -2.378609e+06, -2.3944335e+06, -2.5288265e+06, -2.69801325e+06, -2.879507e+06, -3.05983375e+06, -3.23421125e+06, -3.41165325e+06, -3.5912285e+06, -3.78785875e+06, -3.9748805e+06, -4.1294355e+06, -4.238362e+06, -4.2384065e+06, -4.2384375e+06, -4.238468e+06, -4.2384975e+06, -4.2385255e+06, -4.238551e+06, -4.2385755e+06, -4.238595e+06, -4.2573645e+06, -4.405018e+06, -4.573787e+06, -4.753528e+06, -4.935752e+06, -5.113713e+06, -5.296007e+06, -5.4861815e+06, -5.6780545e+06, -5.865436e+06, -6.0321575e+06, -6.1550385e+06, -6.155086e+06, -6.155123e+06, -6.1551535e+06, -6.1551835e+06, -6.1552105e+06, -6.1552335e+06, -6.155255e+06, -6.1552725e+06, -6.1735185e+06, -6.325621e+06, -6.4967465e+06, -6.6773235e+06, -6.859947e+06, -7.045676e+06, -7.2346495e+06, -7.42273e+06, -7.6271205e+06, -7.8324915e+06, -8.008451e+06, -8.1315075e+06, -8.13155e+06, -8.1315765e+06, -8.1316015e+06, -8.1316255e+06] +res.ECoo=[0e+00, -4.778982400894165e-01, -4.468332231044769e-01, 5.055937170982361e-01, 2.365000486373901e+00, -1.9231640625e+03, -7.57499921875e+04, -1.50894171875e+05, -2.36625390625e+05, -3.3210796875e+05, -4.2787759375e+05, -5.336104375e+05, -6.487079375e+05, -7.68751e+05, -8.926665e+05, -1.01160275e+06, -1.10517525e+06, -1.105208375e+06, -1.1052305e+06, -1.105257125e+06, -1.105290875e+06, -1.105316e+06, -1.10532075e+06, -1.105341375e+06, -1.105361625e+06, -1.115896625e+06, -1.2209385e+06, -1.33360125e+06, -1.446714875e+06, -1.556699375e+06, -1.66622925e+06, -1.781610375e+06, -1.90175275e+06, -2.022455125e+06, -2.151047e+06, -2.27927025e+06, -2.3783615e+06, -2.378413e+06, -2.37845075e+06, -2.3784855e+06, -2.3785165e+06, -2.3785445e+06, -2.37857e+06, -2.37859125e+06, -2.37860825e+06, -2.39443275e+06, -2.52882575e+06, -2.6980125e+06, -2.87950625e+06, -3.059833e+06, -3.2342105e+06, -3.4116525e+06, -3.59122775e+06, -3.787858e+06, -3.97487975e+06, -4.12943475e+06, -4.2383615e+06, -4.238406e+06, -4.238437e+06, -4.2384675e+06, -4.238497e+06, -4.2385245e+06, -4.2385505e+06, -4.2385745e+06, -4.2385945e+06, -4.257364e+06, -4.405018e+06, -4.5737865e+06, -4.7535275e+06, -4.935752e+06, -5.113713e+06, -5.296007e+06, -5.486181e+06, -5.6780545e+06, -5.865436e+06, -6.0321575e+06, -6.1550385e+06, -6.155086e+06, -6.1551225e+06, -6.1551535e+06, -6.155183e+06, -6.15521e+06, -6.1552335e+06, -6.155255e+06, -6.1552725e+06, -6.1735185e+06, -6.32562e+06, -6.4967455e+06, -6.6773225e+06, -6.859946e+06, -7.0456755e+06, -7.234649e+06, -7.422729e+06, -7.62712e+06, -7.832491e+06, -8.00845e+06, -8.131507e+06, -8.131549e+06, -8.131576e+06, -8.1316005e+06, -8.131625e+06] From da7f802e055a4022764e2640a56677faa2cfa47b Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Wed, 17 Feb 2021 13:59:39 -0800 Subject: [PATCH 28/69] Update results --- .../Examples/WetCoilEffectivenessNTUMassFlow.mo | 1 + ...ngers_Examples_WetCoilEffectivenessNTUMassFlow.txt | 11 ++++++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mo b/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mo index 1a3b1c01de0..5f5d608dceb 100644 --- a/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mo +++ b/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mo @@ -18,6 +18,7 @@ model WetCoilEffectivenessNTUMassFlow allowFlowReversal1=true, allowFlowReversal2=true, dp1_nominal(displayUnit="Pa") = 3000, + use_UA_nominal=true, UA_nominal=Q_flow_nominal/Buildings.Fluid.HeatExchangers.BaseClasses.lmtd( T_a1_nominal, T_b1_nominal, diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilEffectivenessNTUMassFlow.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilEffectivenessNTUMassFlow.txt index bbe05622631..51da0da1a30 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilEffectivenessNTUMassFlow.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilEffectivenessNTUMassFlow.txt @@ -1,4 +1,9 @@ -last-generated=2021-02-12 +last-generated=2021-02-17 +statistics-initialization= +{ + "nonlinear": "1", + "numerical Jacobians": "0" +} statistics-simulation= { "linear": " ", @@ -7,7 +12,7 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 3.6e+03] -hex.Q2_flow=[-4.022505615234375e+03, -4.0076162109375e+03, -3.99414208984375e+03, -3.981961181640625e+03, -3.970961181640625e+03, -3.961038818359375e+03, -3.952092041015625e+03, -3.944025390625e+03, -3.936761962890625e+03, -3.93021728515625e+03, -3.924324462890625e+03, -3.728418701171875e+03, -3.509232177734375e+03, -3.262787353515625e+03, -2.9841943359375e+03, -2.6673583984375e+03, -2.304554443359375e+03, -1.885688842773438e+03, -1.396859619140625e+03, -7.950651245117188e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.038280792236328e+02, -1.036799240112305e+02, -1.015619049072266e+02, -9.358493041992185e+01, -2.55761919005809e-12, -1.020483016967774e+02, -1.033460006713867e+02, -1.036785202026367e+02, -1.03827018737793e+02, -1.039108505249023e+02, -1.038740539550781e+02, -1.03827018737793e+02, -1.03764762878418e+02, -1.036785202026367e+02, -1.035513381958008e+02, -1.033460006713867e+02, -1.029638900756836e+02, -1.020483016967773e+02, -9.817852783203125e+01, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00] -hex.QLat2_flow=[-2.544043701171875e+03, -2.534263916015625e+03, -2.525406494140625e+03, -2.51739306640625e+03, -2.51015185546875e+03, -2.5036162109375e+03, -2.497719970703125e+03, -2.4924013671875e+03, -2.487610107421875e+03, -2.483291259765625e+03, -2.4794013671875e+03, -2.34935205078125e+03, -2.202218994140625e+03, -2.034814086914062e+03, -1.843166137695312e+03, -1.622259521484375e+03, -1.365657470703125e+03, -1.064861450195312e+03, -7.08005126953125e+02, -2.370467681884766e+02, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -2.549400037920748e-13, -8.407790785948637e-45, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00] +hex.Q2_flow=[-3.7494560546875e+03, -3.762437744140625e+03, -3.77401953125e+03, -3.7843623046875e+03, -3.7936015625e+03, -3.8018486328125e+03, -3.80921142578125e+03, -3.815789306640625e+03, -3.82166748046875e+03, -3.826925048828125e+03, -3.831625e+03, -3.64524609375e+03, -3.43510498046875e+03, -3.197364990234375e+03, -2.927271484375e+03, -2.61885986328125e+03, -2.264531982421875e+03, -1.854357666015625e+03, -1.374672485351562e+03, -7.855562133789062e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.039116287231445e+02, -1.038280792236328e+02, -1.036799240112305e+02, -1.015594100952148e+02, -9.35758361816406e+01, -2.557593409964934e-12, -1.020483016967774e+02, -1.033460006713867e+02, -1.036785202026367e+02, -1.03827018737793e+02, -1.039108505249023e+02, -1.038740539550781e+02, -1.03827018737793e+02, -1.03764762878418e+02, -1.036785202026367e+02, -1.035513381958008e+02, -1.033460006713867e+02, -1.029638900756836e+02, -1.020483016967773e+02, -9.817852783203125e+01, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00] +hex.QLat2_flow=[-2.36338427734375e+03, -2.372035400390625e+03, -2.379748291015625e+03, -2.386632080078125e+03, -2.392778076171875e+03, -2.398261474609375e+03, -2.40315478515625e+03, -2.407524658203125e+03, -2.4114287109375e+03, -2.41491943359375e+03, -2.418038818359375e+03, -2.29372021484375e+03, -2.152081787109375e+03, -1.990034301757812e+03, -1.803704711914062e+03, -1.588178344726562e+03, -1.337121948242188e+03, -1.042175048828125e+03, -6.917086791992188e+02, -2.312579040527344e+02, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, 0e+00, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -2.547457495854672e-13, -8.407790785948637e-45, 0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00] hex.port_a1.m_flow=[1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 9.009999781847e-02, 8.020000159740448e-02, 7.029999792575836e-02, 6.040000170469283e-02, 5.050000175833702e-02, 4.06000018119812e-02, 3.070000000298023e-02, 2.080000005662441e-02, 1.090000011026859e-02, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03, 1.000000047497451e-03] hex.port_a2.m_flow=[1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.120000034570694e-01, 8.399999886751175e-02, 5.60000017285347e-02, 2.800000086426717e-02, -7.140166331002833e-15, -2.800000086426753e-02, -5.60000017285347e-02, -8.399999886751175e-02, -1.120000034570694e-01, -1.400000005960464e-01, -1.260000020265579e-01, -1.120000034570694e-01, -9.799999743700027e-02, -8.399999886751175e-02, -7.000000029802322e-02, -5.60000017285347e-02, -4.199999943375587e-02, -2.800000086426735e-02, -1.400000043213367e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] From ca82c81ddb19f3797a1a0e26247ca791e79c14a6 Mon Sep 17 00:00:00 2001 From: kim1077 Date: Fri, 19 Feb 2021 09:46:29 -0800 Subject: [PATCH 29/69] revised comment --- .../BaseClasses/WetCoilUARated.mo | 23 ++++++++++++------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo index 1f2c7a4da18..869c0815037 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo @@ -1,7 +1,10 @@ within Buildings.Fluid.HeatExchangers.BaseClasses; model WetCoilUARated - "This model calculates overall heat transfer coefficient, i.e., UA-value, from a rated condition for a cooling coil. - Specify a rated condition either in fully-dry or fully-wet coil regime. Avoid that on partially-wet regime." + "This model calculates the overall heat transfer coefficient, i.e., UA-value, + from cooling coil data for a rated condition." + //Specify cooling coil data either in a fully-dry or fully-wet coil regime. + // Avoid providing an operating point in partially-wet regime. + replaceable package MediumA=Buildings.Media.Air constrainedby Modelica.Media.Interfaces.PartialMedium "Air-side medium"; @@ -18,7 +21,7 @@ model WetCoilUARated parameter Modelica.SIunits.Temperature TAirOut "Air outlet temperature at a rated condition"; parameter Modelica.SIunits.MassFraction wAirIn - "Absolute humidity of inlet air at a rated condition"; + "Absolute humidity [kg/kg-air] of inlet air at a rated condition"; parameter Modelica.SIunits.Temperature TWatIn "Water inlet temperature at a rated condition"; parameter Modelica.SIunits.Temperature TWatOut @@ -119,7 +122,7 @@ initial equation IsParWet= (not IsFulDry) and (not IsFulWet); assert(not IsParWet, - "Partially dry nominal condition is not allowed at this moment. " + + "Cooling coil data under partially dry condition is not allowed at this moment. " + "Specify either fully-dry or fully-wet nominal condition"); if IsFulDry then @@ -127,9 +130,9 @@ initial equation TAirIn, TAirOut, TWatIn, - TWatOut)/Tunit*hunit; // The value of LMED calculated from this equation is used as that of LMTD. - QTot_flow=LMED*UASta; // The value of UASta calculated from this equation is used as that of UA. - cpEff= Modelica.Constants.inf*cpunit; // cpEff is not used for fully-dry + TWatOut)/Tunit*hunit; + QTot_flow=LMED*UASta; + cpEff= Modelica.Constants.inf*cpunit; UA= UASta*cpunit; else //fully wet // calculation of overall UAsta based on log mean enthalpy difference @@ -169,5 +172,9 @@ initial equation lineColor={0,0,0}, fillColor={255,255,255}, fillPattern=FillPattern.Solid)}), Diagram( - coordinateSystem(preserveAspectRatio=false))); + coordinateSystem(preserveAspectRatio=false)), + Documentation(revisions=" +February 18, 2021 by Donghun Kim
    +First implementation +")); end WetCoilUARated; From b031a0d46d95d9ad036c361a54986747eb9699f5 Mon Sep 17 00:00:00 2001 From: kim1077 Date: Fri, 19 Feb 2021 10:28:03 -0800 Subject: [PATCH 30/69] humidity ratio was replaced with mass fraction in the base classes --- .../BaseClasses/WetCoilDryWetRegime.mo | 8 ++--- .../BaseClasses/WetCoilUARated.mo | 32 +++++++++---------- .../BaseClasses/WetCoilWetRegime.mo | 4 +-- .../Validation/WetCoilEffectivenessNTU.mo | 23 +++++++------ .../HeatExchangers/WetCoilEffectivenessNTU.mo | 14 +++++--- 5 files changed, 44 insertions(+), 37 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo index 20a97f198d4..9c3fbf9d6ab 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo @@ -90,11 +90,11 @@ model WetCoilDryWetRegime "Inlet air absolute pressure" annotation (Placement(transformation(extent={{-160,-20},{-140,0}}), iconTransformation(extent={{-160,-20},{-140,0}}))); - Modelica.Blocks.Interfaces.RealInput wAirIn( + Modelica.Blocks.Interfaces.RealInput X_wAirIn( min=0, max=1, unit="1") - "Humidity ratio of water at inlet (kg water/kg moist air)" + "Mass fraction of water in inlet air (kg water/kg total air)" annotation ( Placement(transformation(extent={{-160,0},{-140,20}}), iconTransformation( extent={{-160,0},{-140,20}}))); @@ -155,7 +155,7 @@ model WetCoilDryWetRegime mAir_flow_nominal=mAir_flow_nominal, mWat_flow_nominal=mWat_flow_nominal, pAir=pAir, - wAirIn=wAirIn) "Fully-wet coil model"; + X_wAirIn=X_wAirIn) "Fully-wet coil model"; protected Modelica.SIunits.MassFlowRate mAirNonZer_flow(min=Modelica.Constants.eps)= @@ -174,7 +174,7 @@ protected Modelica.SIunits.Temperature TAirInDewPoi "Dew point temperature of incoming air"; - Buildings.Utilities.Psychrometrics.pW_X pWIn(X_w=wAirIn,p_in=pAir); + Buildings.Utilities.Psychrometrics.pW_X pWIn(X_w=X_wAirIn,p_in=pAir); Buildings.Utilities.Psychrometrics.TDewPoi_pW TDewIn(p_w=pWIn.p_w); //-- parameters for fuzzy logics diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo index 869c0815037..c348d53ca83 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo @@ -20,8 +20,8 @@ model WetCoilUARated "Air inlet temperature at a rated condition"; parameter Modelica.SIunits.Temperature TAirOut "Air outlet temperature at a rated condition"; - parameter Modelica.SIunits.MassFraction wAirIn - "Absolute humidity [kg/kg-air] of inlet air at a rated condition"; + parameter Modelica.SIunits.MassFraction X_wAirIn + "Mass fraction of water in inlet air at a rated condition"; parameter Modelica.SIunits.Temperature TWatIn "Water inlet temperature at a rated condition"; parameter Modelica.SIunits.Temperature TWatOut @@ -37,8 +37,8 @@ model WetCoilUARated protected constant Modelica.SIunits.SpecificEnthalpy hfg= Buildings.Utilities.Psychrometrics.Constants.h_fg; - parameter Modelica.SIunits.MassFraction wAirOut(fixed=false) - "Absolute humidity of outgoing air at a rated condition"; + parameter Modelica.SIunits.MassFraction X_wAirOut(fixed=false) + "Mass fraction of water in outgoing air at a rated condition"; parameter Modelica.SIunits.SpecificEnthalpy hAirIn(fixed=false) "Enthalpy of incoming moist air at a rated condition"; parameter Modelica.SIunits.SpecificEnthalpy hAirOut(fixed=false) @@ -65,25 +65,25 @@ protected Modelica.SIunits.AbsolutePressure pSatTWatIn= Buildings.Utilities.Psychrometrics.Functions.saturationPressure(TWatIn) "Saturation pressure of water at the water inlet temperature"; - Modelica.SIunits.MassFraction wSatTWatIn= + Modelica.SIunits.MassFraction X_wSatTWatIn= Buildings.Utilities.Psychrometrics.Functions.X_pSatpphi( pSat=pSatTWatIn, p=MediumA.p_default, phi=1) - "Absolute humidity of the moist air at the water inlet temperature"; + "Mass fraction of water in saturated moist air at the water inlet temperature"; Modelica.SIunits.SpecificEnthalpy hSatTWatIn= Buildings.Media.Air.specificEnthalpy_pTX( - p=MediumA.p_default, T=TWatIn, X={wSatTWatIn,1-wSatTWatIn}) + p=MediumA.p_default, T=TWatIn, X={X_wSatTWatIn,1-X_wSatTWatIn}) "Enthalpy of saturated moist air at the water inlet temperature"; Modelica.SIunits.AbsolutePressure pSatTWatOut= Buildings.Utilities.Psychrometrics.Functions.saturationPressure(TWatOut) "Saturation pressure of water at the water oulet temperature"; - Modelica.SIunits.MassFraction wSatTWatOut= + Modelica.SIunits.MassFraction X_wSatTWatOut= Buildings.Utilities.Psychrometrics.Functions.X_pSatpphi( pSat=pSatTWatOut, p=MediumA.p_default, phi=1) - "Absolute humidity of the moist air at the water oulet temperature"; + "Mass fraction of water in saturated moist air at the water outlet temperature"; Modelica.SIunits.SpecificEnthalpy hSatTWatOut= Buildings.Media.Air.specificEnthalpy_pTX( - p=MediumA.p_default, T=TWatOut, X={wSatTWatOut,1-wSatTWatOut}) + p=MediumA.p_default, T=TWatOut, X={X_wSatTWatOut,1-X_wSatTWatOut}) "Enthalpy of saturated moist air at the water oulet temperature"; parameter Modelica.SIunits.SpecificEnthalpy LMED(fixed=false) @@ -111,14 +111,14 @@ initial equation "For a heating coil, use other heat exchanger models."); hAirIn=MediumA.specificEnthalpy_pTX( - p=MediumA.p_default, T=TAirIn, X={wAirIn, 1-wAirIn}); + p=MediumA.p_default, T=TAirIn, X={X_wAirIn, 1-X_wAirIn}); hAirOut=MediumA.specificEnthalpy_pTX( - p=MediumA.p_default, T=TAirOut, X={wAirOut, 1-wAirOut}); + p=MediumA.p_default, T=TAirOut, X={X_wAirOut, 1-X_wAirOut}); QTot_flow = mAir_flow*(hAirIn-hAirOut); - IsFulDry=(wSatTWatIn>=wAirIn); - IsFulWet=(wSatTWatOut<=wAirIn); + IsFulDry=(X_wSatTWatIn>=X_wAirIn); + IsFulWet=(X_wSatTWatOut<=X_wAirIn); IsParWet= (not IsFulDry) and (not IsFulWet); assert(not IsParWet, @@ -148,8 +148,8 @@ initial equation else TAirIn=MediumA.T_default; TAirOut=MediumA.T_default; - wAirIn=MediumA.X_default[1]; - wAirOut=MediumA.X_default[1]; + X_wAirIn=MediumA.X_default[1]; + X_wAirOut=MediumA.X_default[1]; TWatIn=MediumA.T_default; TWatOut=MediumA.T_default; hAirIn=MediumA.h_default; diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo index 297e9eaef94..1ae110b2ca9 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo @@ -27,7 +27,7 @@ model WetCoilWetRegime "Specific heat capacity of moist air at constant pressure"; input Modelica.SIunits.Temperature TAirIn "Temperature of air at inlet"; - input Modelica.SIunits.MassFraction wAirIn + input Modelica.SIunits.MassFraction X_wAirIn "Mass fraction of water in moist air at inlet"; input Buildings.Fluid.Types.HeatExchangerFlowRegime cfg "The configuration of the heat exchanger"; @@ -113,7 +113,7 @@ initial equation equation - hAirIn=Buildings.Media.Air.specificEnthalpy_pTX(p=pAir,T=TAirIn,X={wAirIn,1-wAirIn}); + hAirIn=Buildings.Media.Air.specificEnthalpy_pTX(p=pAir,T=TAirIn,X={X_wAirIn,1-X_wAirIn}); hSatWatIn=hSatWatInM.hSat; dhSatdTWatIn=(hSatWatIn_dT_M.hSat-hSatWatInM.hSat)/dTWat; // dTWat is a parameter hSatWatOut= hSatWatOutM.hSat; diff --git a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo index fbdf3d048a9..2a8ace77116 100644 --- a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo @@ -51,9 +51,7 @@ model WetCoilEffectivenessNTU nPorts=3) "Sink for water" annotation (Placement(transformation(extent={{50,10},{30,30}}))); - Modelica.Blocks.Sources.CombiTimeTable X_w2( - table=[0,0.0035383; 1,0.01765], - timeScale=100) "Water mass fraction of entering air" + Buildings.Utilities.Psychrometrics.ToTotalAir conversion annotation (Placement(transformation(extent={{190,-90},{170,-70}}))); Sensors.RelativeHumidityTwoPort RelHumIn(redeclare package Medium = Medium_A, m_flow_nominal=m2_flow_nominal) "Inlet relative humidity" @@ -148,7 +146,7 @@ model WetCoilEffectivenessNTU redeclare package Medium2 = Medium_A, T_a2_nominal=T_a2_nominal, T_b2_nominal=T_b2_nominal_wet, - X_w_a2_nominal=X_w_a2_nominal_wet, + w_a2_nominal=X_w_a2_nominal_wet/(1 - X_w_a2_nominal_wet), T_a1_nominal=T_a1_nominal, T_b1_nominal=T_b1_nominal_wet, m1_flow_nominal=m1_flow_nominal, @@ -174,6 +172,9 @@ model WetCoilEffectivenessNTU nPorts=1) "Source for water" annotation (Placement(transformation(extent={{-180,-30},{-160,-10}}))); + Modelica.Blocks.Sources.CombiTimeTable w_a2(table=[0,0.0035383; 1,0.01765], + timeScale=100) "Absolute humidity of entering air" + annotation (Placement(transformation(extent={{196,-34},{176,-14}}))); equation connect(pAir.y, wetBulIn.p) annotation (Line(points={{119,-30},{112,-30},{112, -8},{119,-8}}, color={0,0,127})); @@ -202,14 +203,10 @@ equation connect(hexWetNTU.port_b1, sinWat.ports[1]) annotation (Line(points={{-10,20}, {16,20},{16,22.6667},{30,22.6667}}, color={0,127,255})); - connect(X_w2.y[1], souAir.Xi_in[1]) annotation (Line(points={{169,-80},{160,-80}, - {160,-64},{142,-64}}, color={0,0,127})); connect(souWat.ports[1], hexDis.port_a1) annotation (Line(points={{-160,80},{-40, 80},{-40,72},{-30,72}}, color={0,127,255})); connect(hexDis.port_b1, sinWat.ports[2]) annotation (Line(points={{-10,72},{20, 72},{20,20},{30,20}}, color={0,127,255})); - connect(X_w2.y[1], souAir2.Xi_in[1]) annotation (Line(points={{169,-80},{160,-80}, - {160,36},{142,36}}, color={0,0,127})); connect(souAir2.ports[1], hexDis.port_a2) annotation (Line(points={{120,40},{ 0,40},{0,60},{-10,60}}, color={0,127,255})); connect(hexWetNTU.port_b2, TDryBulOut.port_a) annotation (Line(points={{-30,8}, @@ -231,14 +228,20 @@ equation annotation (Line(points={{-100,60},{-110,60}}, color={0,127,255})); connect(hexWetNTU_TX.port_b1, sinWat.ports[3]) annotation (Line(points={{-10,-28}, {20,-28},{20,17.3333},{30,17.3333}}, color={0,127,255})); - connect(X_w2.y[1], souAir1.Xi_in[1]) annotation (Line(points={{169,-80},{160,-80}, - {160,-104},{142,-104}}, color={0,0,127})); connect(souAir1.ports[1], hexWetNTU_TX.port_a2) annotation (Line(points={{120, -100},{0,-100},{0,-40},{-10,-40}}, color={0,127,255})); connect(sinAir.ports[3], hexWetNTU_TX.port_b2) annotation (Line(points={{-160, -64.6667},{-130,-64.6667},{-130,-40},{-30,-40}}, color={0,127,255})); connect(souWat2.ports[1], hexWetNTU_TX.port_a1) annotation (Line(points={{-160, -20},{-40,-20},{-40,-28},{-30,-28}}, color={0,127,255})); + connect(w_a2.y[1], conversion.XiDry) annotation (Line(points={{175,-24},{172, + -24},{172,-50},{196,-50},{196,-80},{191,-80}}, color={0,0,127})); + connect(conversion.XiTotalAir, souAir.Xi_in[1]) annotation (Line(points={{169, + -80},{158,-80},{158,-64},{142,-64}}, color={0,0,127})); + connect(conversion.XiTotalAir, souAir1.Xi_in[1]) annotation (Line(points={{ + 169,-80},{154,-80},{154,-104},{142,-104}}, color={0,0,127})); + connect(conversion.XiTotalAir, souAir2.Xi_in[1]) annotation (Line(points={{ + 169,-80},{158,-80},{158,36},{142,36}}, color={0,0,127})); annotation (Diagram(coordinateSystem(preserveAspectRatio=true, extent={{-200,-120},{200,120}})), experiment( diff --git a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo index 09f7e703355..ca76ddc6c49 100644 --- a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo @@ -42,12 +42,12 @@ model WetCoilEffectivenessNTU annotation (Dialog( group="Nominal thermal performance", enable=not use_UA_nominal)); - parameter Modelica.SIunits.MassFraction X_w_a2_nominal(fixed=not use_UA_nominal) - "Water mass fraction of inlet air at a rated condition (in kg/kg total air)" + parameter Modelica.SIunits.MassFraction w_a2_nominal(fixed=not use_UA_nominal) + "Humidity ratio of inlet air at a rated condition (in kg/kg dry air)" annotation (Dialog( group="Nominal thermal performance", enable=not use_UA_nominal)); - + parameter Real r_nominal=2/3 "Ratio between air-side and water-side convective heat transfer coefficient" annotation (Dialog(group="Nominal thermal performance")); @@ -83,6 +83,10 @@ model WetCoilEffectivenessNTU "Water flow rate of condensate removed from the air stream"; protected + + final parameter Modelica.SIunits.MassFraction X_w_a2_nominal=w_a2_nominal/(1+w_a2_nominal) + "Water mass fraction of inlet air at a rated condition (in kg/kg total air)"; + parameter Boolean waterSideFlowDependent=true "Set to false to make water-side hA independent of mass flow rate" annotation (Dialog(tab="Heat transfer")); @@ -112,7 +116,7 @@ protected final r_nominal=r_nominal, final TAirIn=T_a2_nominal, final TAirOut=T_b2_nominal, - final wAirIn=X_w_a2_nominal, + final X_wAirIn=X_w_a2_nominal, final TWatIn=T_a1_nominal, final TWatOut=T_b1_nominal, final mAir_flow=m2_flow_nominal, @@ -376,7 +380,7 @@ equation connect(cp_a1Exp.y, dryWetCalcs.cpWat) annotation (Line(points={{-29.3,24},{ -22.8571,24},{-22.8571,23.3333}}, color={0,0,127})); - connect(XWat_a2Exp.y, dryWetCalcs.wAirIn) annotation (Line(points={{-29.3,4}, + connect(XWat_a2Exp.y, dryWetCalcs.X_wAirIn) annotation (Line(points={{-29.3,4}, {-22.8571,4},{-22.8571,3.33333}}, color={0,0,127})); connect(p_a2Exp.y, dryWetCalcs.pAir) annotation (Line(points={{-29.3,-4},{ -22.8571,-4},{-22.8571,-3.33333}}, From cf501d3e2a7809b01cf6fa9dc48edc527f7b107c Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Mon, 22 Feb 2021 13:49:54 -0800 Subject: [PATCH 31/69] Update doc, limit line to 80 characters --- .../BaseClasses/WetCoilUARated.mo | 20 +++- .../BaseClasses/WetCoilWetRegime.mo | 110 ++++++++++-------- .../HeatExchangers/WetCoilEffectivenessNTU.mo | 10 +- 3 files changed, 83 insertions(+), 57 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo index c348d53ca83..e08d5307ab5 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo @@ -1,9 +1,6 @@ within Buildings.Fluid.HeatExchangers.BaseClasses; model WetCoilUARated - "This model calculates the overall heat transfer coefficient, i.e., UA-value, - from cooling coil data for a rated condition." - //Specify cooling coil data either in a fully-dry or fully-wet coil regime. - // Avoid providing an operating point in partially-wet regime. + "Model that calculates the UA-value from cooling coil data at rated conditions." replaceable package MediumA=Buildings.Media.Air constrainedby Modelica.Media.Interfaces.PartialMedium @@ -174,7 +171,20 @@ initial equation fillPattern=FillPattern.Solid)}), Diagram( coordinateSystem(preserveAspectRatio=false)), Documentation(revisions=" -February 18, 2021 by Donghun Kim
    +
      +
    • +February 18, 2021 by Donghun Kim:
      First implementation +
    • +
    +", info=" +

    +This model calculates the overall heat transfer coefficient, i.e., UA-value, +from cooling coil data at rated conditions. +

    +

    +The current implementation is only valid for rated a fully-dry or fully-wet coil regime. + // Avoid providing an operating point in partially-wet regime. +

    ")); end WetCoilUARated; diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo index 1ae110b2ca9..250501add87 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo @@ -113,56 +113,65 @@ initial equation equation - hAirIn=Buildings.Media.Air.specificEnthalpy_pTX(p=pAir,T=TAirIn,X={X_wAirIn,1-X_wAirIn}); - hSatWatIn=hSatWatInM.hSat; - dhSatdTWatIn=(hSatWatIn_dT_M.hSat-hSatWatInM.hSat)/dTWat; // dTWat is a parameter - hSatWatOut= hSatWatOutM.hSat; - NonZerDelWatTem=Buildings.Utilities.Math.Functions.regNonZeroPower(x=TWatOutEst-TWatIn,n=1,delta=0.1); - cpEff = Buildings.Utilities.Math.Functions.smoothMax( - (hSatWatOut - hSatWatIn)/NonZerDelWatTem, - dhSatdTWatIn, - cpEff0*delta); - - CStaMin=Buildings.Utilities.Math.Functions.smoothMin( - mAir_flow, - mWat_flow*cpWat/cpEff, - deltaCStaMin/4); - - UASta = (UAAir/cpAir)/(1 + (cpEff*UAAir)/(cpAir*UAWat)); - - epsSta=epsilon_C( - UA=UASta*cpDum, - C1_flow=mWat_flow*cpWat/cpEff*cpDum, - C2_flow=mAir_flow*cpDum, - flowRegime=Integer(cfg), - CMin_flow_nominal=CStaMin_flow_nominal*cpDum, - CMax_flow_nominal=CStaMax_flow_nominal*cpDum, - delta=delta); - - QTot_flow = epsSta*CStaMin*(hAirIn - hSatWatIn); - - QTot_flow = mAir_flow*(hAirIn- hAirOut); - QTot_flow = mWat_flow*cpWat*(TWatOut-TWatIn); - - NTUAirSta = UAAir/(mAir_flow*cpAir); - - hSatSurEff = Buildings.Utilities.Math.Functions.smoothMax(hSatSurEffMinM.hSat, hAirIn +(hAirOut - hAirIn) /(1 - exp(-NTUAirSta)),delta*1E4); // NTUAirSta is bounded as long as UAAir>0 due to the regularization of mAir_flow - - hSatSurEffM.hSat=hSatSurEff; - TAirOut = TSurEff +(TAirIn - TSurEff)*exp(-NTUAirSta); - QSen_flow= Buildings.Utilities.Math.Functions.smoothMin(mAir_flow*cpAir*(TAirIn-TAirOut),QTot_flow,delta*mWatNonZer_flow*cpWat0*5); // the last term is only for regularization with DTWater=5oC - - (TAirIn-TSurAirIn)*UAAir=(TSurAirIn-TWatOut)*UAWat; - der(TWatOutEst)=-1/tau*TWatOutEst+1/tau*TWatOut; - - annotation (Icon(graphics={ - Rectangle( - extent={{-100,100},{100,-100}}, - lineColor={28,108,200}, - fillColor={170,213,255}, - fillPattern=FillPattern.Solid)}), Documentation(revisions=" + hAirIn=Buildings.Media.Air.specificEnthalpy_pTX(p=pAir,T=TAirIn,X={X_wAirIn,1-X_wAirIn}); + hSatWatIn=hSatWatInM.hSat; + dhSatdTWatIn=(hSatWatIn_dT_M.hSat-hSatWatInM.hSat)/dTWat; // dTWat is a parameter + hSatWatOut= hSatWatOutM.hSat; + NonZerDelWatTem=Buildings.Utilities.Math.Functions.regNonZeroPower(x=TWatOutEst-TWatIn,n=1,delta=0.1); + cpEff = Buildings.Utilities.Math.Functions.smoothMax( + (hSatWatOut - hSatWatIn)/NonZerDelWatTem, + dhSatdTWatIn, + cpEff0*delta); + + CStaMin=Buildings.Utilities.Math.Functions.smoothMin( + mAir_flow, + mWat_flow*cpWat/cpEff, + deltaCStaMin/4); + + UASta = (UAAir/cpAir)/(1 + (cpEff*UAAir)/(cpAir*UAWat)); + + epsSta=epsilon_C( + UA=UASta*cpDum, + C1_flow=mWat_flow*cpWat/cpEff*cpDum, + C2_flow=mAir_flow*cpDum, + flowRegime=Integer(cfg), + CMin_flow_nominal=CStaMin_flow_nominal*cpDum, + CMax_flow_nominal=CStaMax_flow_nominal*cpDum, + delta=delta); + + QTot_flow = epsSta*CStaMin*(hAirIn - hSatWatIn); + + QTot_flow = mAir_flow*(hAirIn- hAirOut); + QTot_flow = mWat_flow*cpWat*(TWatOut-TWatIn); + + NTUAirSta = UAAir/(mAir_flow*cpAir); + + hSatSurEff = Buildings.Utilities.Math.Functions.smoothMax( + hSatSurEffMinM.hSat, hAirIn +(hAirOut - hAirIn) / + (1 - exp(-NTUAirSta)),delta*1E4); // NTUAirSta is bounded as long as UAAir>0 due to the regularization of mAir_flow + + hSatSurEffM.hSat=hSatSurEff; + TAirOut = TSurEff +(TAirIn - TSurEff)*exp(-NTUAirSta); + QSen_flow= Buildings.Utilities.Math.Functions.smoothMin( + mAir_flow*cpAir*(TAirIn-TAirOut),QTot_flow, + delta*mWatNonZer_flow*cpWat0*5); // the last term is only for regularization with DTWater=5oC + + (TAirIn-TSurAirIn)*UAAir=(TSurAirIn-TWatOut)*UAWat; + der(TWatOutEst)=-1/tau*TWatOutEst+1/tau*TWatOut; + +annotation (Icon(graphics={ + Rectangle( + extent={{-100,100},{100,-100}}, + lineColor={28,108,200}, + fillColor={170,213,255}, + fillPattern=FillPattern.Solid)}), Documentation(revisions="
      -
    • Jan 21, 2021, by Donghun Kim:
      First implementation of the fuzzy model. See issue 622 for more information.
    • +
    • Jan 21, 2021, by Donghun Kim:
      First implementation of the fuzzy model. +See + +issue 622 +for more information. +
    ", info="

    This model implements the calculation for a 100% wet coil.

    @@ -192,7 +201,8 @@ here as csat=(hsat(Twat,out)-hsat(Twat,in<

    Cr*=min(C*air,C*wat)/max(C*air,C*wat) and C*min=min(C*air,C*wat).


    The number of transfer unit for the wet-coil is defined as NTU*=UA*/C*min, where

    -

    UA*=1/(1/(UAair/cp,air)+1/(UAwat/csat).

    +

    UA*=1/(1/(UAair/cp,air)+1/(UAwat/csat). +

    References

    Braun, James E. 1988. "Methodologies for the Design and Control of Central Cooling Plants". diff --git a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo index ca76ddc6c49..0cb2b52d80c 100644 --- a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo @@ -47,7 +47,7 @@ model WetCoilEffectivenessNTU annotation (Dialog( group="Nominal thermal performance", enable=not use_UA_nominal)); - + parameter Real r_nominal=2/3 "Ratio between air-side and water-side convective heat transfer coefficient" annotation (Dialog(group="Nominal thermal performance")); @@ -83,7 +83,6 @@ model WetCoilEffectivenessNTU "Water flow rate of condensate removed from the air stream"; protected - final parameter Modelica.SIunits.MassFraction X_w_a2_nominal=w_a2_nominal/(1+w_a2_nominal) "Water mass fraction of inlet air at a rated condition (in kg/kg total air)"; @@ -589,6 +588,13 @@ Buildings.Fluid.HeatExchangers.BaseClasses.WetCoilDryWetRegime.

    Assumptions and limitations

    This model contains the following assumptions and limitations:

    Medium 2 must be air due to the use of various psychrometric functions.

    +

    +When parameterizing this model with rated conditions (with the parameter +use_UA_nominal set to false), those should +correspond to a fully-dry or a fully-wet coil regime. +The modeling uncertainty yielded by partially-wet rated conditions +has not been assessed yet. +

    The model uses steady-state physics. That is, no dynamics associated with water and coil materials are considered.

    The Lewis number, which relates the mass transfer coefficient to the heat transfer From 98abe1e36c8cec8ab7ba31d98a021892ee8d8936 Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Mon, 22 Feb 2021 13:50:33 -0800 Subject: [PATCH 32/69] Doc --- .../Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo index e08d5307ab5..fa9ec2e7a11 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo @@ -179,12 +179,14 @@ First implementation ", info="

    -This model calculates the overall heat transfer coefficient, i.e., UA-value, -from cooling coil data at rated conditions. +This model calculates the overall heat transfer coefficient, i.e., +UA-value, from cooling coil data at rated conditions.

    -The current implementation is only valid for rated a fully-dry or fully-wet coil regime. - // Avoid providing an operating point in partially-wet regime. +The main limitation of the current implementation is that the rated +conditions should correspond to a fully-dry or a fully-wet coil regime. +The modeling uncertainty yielded by partially-wet rated conditions +has not been assessed yet.

    ")); end WetCoilUARated; From 3a98f31b7619db3f8d67e07edc7e90008226eb8a Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Mon, 22 Feb 2021 13:59:42 -0800 Subject: [PATCH 33/69] Update mos and results --- ...amples_WetCoilEffectivenessNTUMassFlow.txt | 4 +-- ...ers_Validation_WetCoilEffectivenessNTU.txt | 28 ++++++++++--------- .../Validation/WetCoilEffectivenessNTU.mos | 4 +-- ...ers.Validation.WetCoilEffectivenessNTU.mos | 2 ++ 4 files changed, 21 insertions(+), 17 deletions(-) diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilEffectivenessNTUMassFlow.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilEffectivenessNTUMassFlow.txt index 51da0da1a30..e6779cf2c53 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilEffectivenessNTUMassFlow.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilEffectivenessNTUMassFlow.txt @@ -1,7 +1,7 @@ -last-generated=2021-02-17 +last-generated=2021-02-22 statistics-initialization= { - "nonlinear": "1", + "nonlinear": "0, 1", "numerical Jacobians": "0" } statistics-simulation= diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt index dedad9cfc5d..5af606ea2d7 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt @@ -1,7 +1,7 @@ -last-generated=2021-02-17 +last-generated=2021-02-22 statistics-initialization= { - "nonlinear": "1, 1", + "nonlinear": "0, 1, 1", "numerical Jacobians": "0" } statistics-simulation= @@ -12,17 +12,19 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 1e+02] -hexWetNTU.Q1_flow=[4.37056796875e+04, 4.370878515625e+04, 4.3711890625e+04, 4.37149921875e+04, 4.371809765625e+04, 4.372119921875e+04, 4.37243046875e+04, 4.372740625e+04, 4.37305078125e+04, 4.3733609375e+04, 4.37367109375e+04, 4.373980859375e+04, 4.374291015625e+04, 4.374601171875e+04, 4.3749109375e+04, 4.375220703125e+04, 4.375530859375e+04, 4.375840625e+04, 4.376150390625e+04, 4.37646015625e+04, 4.376769921875e+04, 4.377079296875e+04, 4.3773890625e+04, 4.377678125e+04, 4.377695703125e+04, 4.37676953125e+04, 4.374306640625e+04, 4.37041875e+04, 4.366120703125e+04, 4.363156640625e+04, 4.363645703125e+04, 4.369702734375e+04, 4.38311796875e+04, 4.405147265625e+04, 4.436411328125e+04, 4.47688515625e+04, 4.525958203125e+04, 4.582535546875e+04, 4.64516875e+04, 4.71220390625e+04, 4.7819359375e+04, 4.852753125e+04, 4.92326953125e+04, 4.992418359375e+04, 5.059508203125e+04, 5.124236328125e+04, 5.186653515625e+04, 5.247091796875e+04, 5.3060578125e+04, 5.364103515625e+04, 5.421697265625e+04, 5.479137890625e+04, 5.536552734375e+04, 5.5939703125e+04, 5.65139296875e+04, 5.708820312500001e+04, 5.766252734375001e+04, 5.823689843749999e+04, 5.881130859374999e+04, 5.9385765625e+04, 5.996026171875e+04, 6.053480078125e+04, 6.110937109375e+04, 6.168398046875e+04, 6.2258625e+04, 6.283330078125e+04, 6.340801171875e+04, 6.398274609375e+04, 6.455751171875e+04, 6.51323046875e+04, 6.57071171875e+04, 6.62819609375e+04, 6.68568203125e+04, 6.74316953125e+04, 6.800659375e+04, 6.85815078125e+04, 6.91564375e+04, 6.97313828125e+04, 7.03063359375e+04, 7.08813046875e+04, 7.14562890625e+04, 7.20312734375e+04, 7.2606265625e+04, 7.31812578125e+04, 7.37562578125e+04, 7.43312578125e+04, 7.49062578125e+04, 7.54812578125e+04, 7.605625e+04, 7.66312421875e+04, 7.72062265625e+04, 7.77812109375e+04, 7.83561796875e+04, 7.8931140625e+04, 7.95060859375e+04, 8.00810234375e+04, 8.06559453125e+04, 8.12308515625e+04, 8.18057421875e+04, 8.2380609375e+04, 8.29554609375e+04] -hexDis.Q1_flow=[4.4666953125e+04, 4.467006640625e+04, 4.467318359375e+04, 4.4676296875e+04, 4.467941015625e+04, 4.46825234375e+04, 4.468563671875e+04, 4.468875e+04, 4.469186328125e+04, 4.46949765625e+04, 4.46980859375e+04, 4.470119921875e+04, 4.470430859375e+04, 4.470741796875e+04, 4.471053125e+04, 4.4713640625e+04, 4.471675e+04, 4.471985546875e+04, 4.472296484375e+04, 4.472607421875e+04, 4.47291796875e+04, 4.477980078125e+04, 4.490005078125e+04, 4.5074625e+04, 4.52928125e+04, 4.555167578125e+04, 4.583922265625e+04, 4.615662890625e+04, 4.64976953125e+04, 4.6859421875e+04, 4.723980859375e+04, 4.763695703125e+04, 4.804902734375e+04, 4.847423046875e+04, 4.891162890625e+04, 4.936323046875e+04, 4.9824015625e+04, 5.029236328125e+04, 5.077248046875e+04, 5.12602109375e+04, 5.17531171875e+04, 5.225769921875e+04, 5.276421484375e+04, 5.32818984375e+04, 5.3800875e+04, 5.432996484375e+04, 5.48590625e+04, 5.5399140625e+04, 5.59385859375e+04, 5.6486734375e+04, 5.703676953125e+04, 5.75901015625e+04, 5.8150359375e+04, 5.87099765625e+04, 5.92767734375e+04, 5.984625781250001e+04, 6.041510156250001e+04, 6.098330468749999e+04, 6.155086718749999e+04, 6.211778515625e+04, 6.26840625e+04, 6.324969140625e+04, 6.381467578125e+04, 6.437901171875e+04, 6.494269921875e+04, 6.550573828125e+04, 6.60681328125e+04, 6.6629875e+04, 6.71909609375e+04, 6.77513984375e+04, 6.83111796875e+04, 6.88703125e+04, 6.94287890625e+04, 6.9986609375e+04, 7.0543765625e+04, 7.11002734375e+04, 7.1656125e+04, 7.22113125e+04, 7.276584375e+04, 7.33197109375e+04, 7.3872921875e+04, 7.442546875e+04, 7.49773515625e+04, 7.5528578125e+04, 7.60791328125e+04, 7.66290234375e+04, 7.717825e+04, 7.77268125e+04, 7.8274703125e+04, 7.88219296875e+04, 7.93684921875e+04, 7.9914375e+04, 8.045959375e+04, 8.10041484375e+04, 8.15480234375e+04, 8.2091234375e+04, 8.2633765625e+04, 8.31756328125e+04, 8.37168203125e+04, 8.42573359375e+04, 8.4797171875e+04] -hexWetNTU.sta_b2.T=[2.834467163085938e+02, 2.83447509765625e+02, 2.834483032226562e+02, 2.834490966796875e+02, 2.834498901367188e+02, 2.8345068359375e+02, 2.834514770507812e+02, 2.834522399902344e+02, 2.834530334472656e+02, 2.834538269042969e+02, 2.834546203613281e+02, 2.834554138183594e+02, 2.834562072753906e+02, 2.834570007324219e+02, 2.834577941894531e+02, 2.834585876464844e+02, 2.834593811035156e+02, 2.834601745605469e+02, 2.834609680175781e+02, 2.834617614746094e+02, 2.834625549316406e+02, 2.834633483886719e+02, 2.834641418457031e+02, 2.834649963378906e+02, 2.834668884277344e+02, 2.834722900390625e+02, 2.834834289550781e+02, 2.834998779296875e+02, 2.835178833007812e+02, 2.835334167480469e+02, 2.835759887695312e+02, 2.836319580078125e+02, 2.837012329101562e+02, 2.837828979492188e+02, 2.83875244140625e+02, 2.839760437011719e+02, 2.840826721191406e+02, 2.841923522949219e+02, 2.843023681640625e+02, 2.844101867675781e+02, 2.845136108398438e+02, 2.846109313964844e+02, 2.847011108398438e+02, 2.847836303710938e+02, 2.848586730957031e+02, 2.849268493652344e+02, 2.849892578125e+02, 2.850472106933594e+02, 2.851020812988281e+02, 2.851550903320312e+02, 2.852071838378906e+02, 2.852589111328125e+02, 2.853104858398438e+02, 2.853619384765625e+02, 2.85413330078125e+02, 2.85464599609375e+02, 2.855157775878906e+02, 2.855668640136719e+02, 2.856178588867188e+02, 2.856687622070312e+02, 2.857195739746094e+02, 2.857702941894531e+02, 2.858208923339844e+02, 2.858714294433594e+02, 2.85921875e+02, 2.859722290039062e+02, 2.860224914550781e+02, 2.860726623535156e+02, 2.861227722167969e+02, 2.861727600097656e+02, 2.8622265625e+02, 2.862724914550781e+02, 2.863222351074219e+02, 2.863718872070312e+02, 2.864214477539062e+02, 2.86470947265625e+02, 2.865203247070312e+02, 2.865696411132812e+02, 2.866188659667969e+02, 2.866680297851562e+02, 2.867170715332031e+02, 2.867660522460938e+02, 2.868149719238281e+02, 2.8686376953125e+02, 2.869125061035156e+02, 2.86961181640625e+02, 2.87009765625e+02, 2.870582580566406e+02, 2.871066589355469e+02, 2.871549987792969e+02, 2.872032775878906e+02, 2.8725146484375e+02, 2.87299560546875e+02, 2.873475952148438e+02, 2.873955383300781e+02, 2.874434204101562e+02, 2.874912109375e+02, 2.875389404296875e+02, 2.875866088867188e+02, 2.876341857910156e+02, 2.876816711425781e+02] -hexDis.sta_b2.T=[2.83086669921875e+02, 2.830874938964844e+02, 2.830883178710938e+02, 2.830891723632812e+02, 2.830899963378906e+02, 2.830908203125e+02, 2.830916442871094e+02, 2.830924682617188e+02, 2.830933227539062e+02, 2.830941467285156e+02, 2.83094970703125e+02, 2.830957946777344e+02, 2.830966491699219e+02, 2.830974731445312e+02, 2.830982971191406e+02, 2.8309912109375e+02, 2.830999450683594e+02, 2.831007995605469e+02, 2.831016235351562e+02, 2.831024475097656e+02, 2.83103271484375e+02, 2.831187133789062e+02, 2.831521911621094e+02, 2.831964721679688e+02, 2.8324755859375e+02, 2.83303466796875e+02, 2.833618774414062e+02, 2.834222717285156e+02, 2.834837036132812e+02, 2.83545654296875e+02, 2.836078491210938e+02, 2.836700134277344e+02, 2.837320251464844e+02, 2.837937316894531e+02, 2.838550720214844e+02, 2.839158325195312e+02, 2.839761657714844e+02, 2.840360717773438e+02, 2.840953063964844e+02, 2.841540222167969e+02, 2.842123413085938e+02, 2.842698364257812e+02, 2.843271179199219e+02, 2.84383544921875e+02, 2.844397583007812e+02, 2.844951171875e+02, 2.845504150390625e+02, 2.846047058105469e+02, 2.846589660644531e+02, 2.8471240234375e+02, 2.847655944824219e+02, 2.848183898925781e+02, 2.848704833984375e+02, 2.849225769042969e+02, 2.84973876953125e+02, 2.850248413085938e+02, 2.850758056640625e+02, 2.851267700195312e+02, 2.85177734375e+02, 2.852286987304688e+02, 2.852796325683594e+02, 2.853305969238281e+02, 2.853815307617188e+02, 2.854324645996094e+02, 2.854833679199219e+02, 2.855343017578125e+02, 2.85585205078125e+02, 2.856361083984375e+02, 2.8568701171875e+02, 2.857378845214844e+02, 2.857887878417969e+02, 2.858396606445312e+02, 2.858905334472656e+02, 2.859413757324219e+02, 2.859922485351562e+02, 2.860430908203125e+02, 2.860939025878906e+02, 2.861447448730469e+02, 2.86195556640625e+02, 2.862463684082031e+02, 2.862971801757812e+02, 2.863479614257812e+02, 2.863987426757812e+02, 2.864495239257812e+02, 2.865003051757812e+02, 2.865510559082031e+02, 2.86601806640625e+02, 2.866525268554688e+02, 2.867032470703125e+02, 2.867539672851562e+02, 2.868046875e+02, 2.868553771972656e+02, 2.869060668945312e+02, 2.869567260742188e+02, 2.870073852539062e+02, 2.870580444335938e+02, 2.871086730957031e+02, 2.871593017578125e+02, 2.872099304199219e+02, 2.872605285644531e+02, 2.873111267089844e+02] -RelHumOut_eps.phi=[5e-01, 4.807461798191071e-01, 4.851891100406647e-01, 4.983444809913635e-01, 5.147045254707336e-01, 5.322400331497192e-01, 5.502045750617981e-01, 5.683233737945557e-01, 5.864959955215454e-01, 6.046844720840454e-01, 6.228764653205872e-01, 6.410660147666931e-01, 6.592516899108887e-01, 6.774331331253052e-01, 6.956097483634949e-01, 7.137811183929443e-01, 7.319475412368774e-01, 7.501089572906494e-01, 7.682653069496155e-01, 7.864166498184204e-01, 8.045628666877747e-01, 8.22704017162323e-01, 8.40840220451355e-01, 8.589703440666199e-01, 8.770760297775269e-01, 8.950772285461426e-01, 9.128395318984985e-01, 9.302695393562317e-01, 9.474205374717714e-01, 9.64506447315216e-01, 9.801273345947266e-01, 9.931338429450989e-01, 1.003311991691589e+00, 1.01045298576355e+00, 1.014495730400085e+00, 1.015554189682007e+00, 1.013933062553406e+00, 1.010080456733704e+00, 1.004543542861938e+00, 9.97907817363739e-01, 9.907832145690918e-01, 9.836920499801636e-01, 9.771031737327576e-01, 9.713578820228577e-01, 9.666827321052551e-01, 9.631640315055847e-01, 9.607728123664856e-01, 9.593827724456787e-01, 9.58787202835083e-01, 9.587816596031189e-01, 9.591248035430908e-01, 9.59672749042511e-01, 9.60304856300354e-01, 9.609640836715698e-01, 9.616326093673706e-01, 9.622998237609863e-01, 9.629634022712708e-01, 9.636226892471313e-01, 9.642772674560547e-01, 9.64927077293396e-01, 9.655721783638e-01, 9.662125706672668e-01, 9.668482542037964e-01, 9.674792885780334e-01, 9.681057333946228e-01, 9.68727707862854e-01, 9.693450927734375e-01, 9.699578881263733e-01, 9.705660939216614e-01, 9.711701273918152e-01, 9.717698097229004e-01, 9.723649621009827e-01, 9.729557633399963e-01, 9.735422134399414e-01, 9.741246104240417e-01, 9.74702775478363e-01, 9.752766489982605e-01, 9.758462905883789e-01, 9.764119386672974e-01, 9.769737720489502e-01, 9.775314927101135e-01, 9.780851602554321e-01, 9.786348342895508e-01, 9.791805148124695e-01, 9.797221422195435e-01, 9.802597761154175e-01, 9.807933568954468e-01, 9.813230037689209e-01, 9.818486571311951e-01, 9.823707342147827e-01, 9.828893542289734e-01, 9.834041595458984e-01, 9.839152693748474e-01, 9.844226837158203e-01, 9.849264621734619e-01, 9.854265451431274e-01, 9.859229922294617e-01, 9.864158630371094e-01, 9.869050979614258e-01, 9.873908758163452e-01, 9.878718256950378e-01] -RelHumOut_dis.phi=[5e-01, 4.879873692989349e-01, 4.953745305538177e-01, 5.098935961723328e-01, 5.270352363586426e-01, 5.451381206512451e-01, 5.635911822319031e-01, 5.821692943572998e-01, 6.007903218269348e-01, 6.194232702255249e-01, 6.380579471588135e-01, 6.566894054412842e-01, 6.753166317939758e-01, 6.93939208984375e-01, 7.125567197799683e-01, 7.31168806552887e-01, 7.497756481170654e-01, 7.683773040771484e-01, 7.869736552238464e-01, 8.055647611618042e-01, 8.241481184959412e-01, 8.419843316078186e-01, 8.57346773147583e-01, 8.700552582740784e-01, 8.805401921272278e-01, 8.892697691917419e-01, 8.966498374938965e-01, 9.029695987701416e-01, 9.084571599960327e-01, 9.132761359214783e-01, 9.175557494163513e-01, 9.213864803314209e-01, 9.248408079147339e-01, 9.279789924621582e-01, 9.308441281318665e-01, 9.334756135940552e-01, 9.359105229377747e-01, 9.381664991378784e-01, 9.402607679367065e-01, 9.422258734703064e-01, 9.440646767616272e-01, 9.457932710647583e-01, 9.474298357963562e-01, 9.489693641662598e-01, 9.504354596138e-01, 9.518236517906189e-01, 9.531522989273071e-01, 9.544140696525574e-01, 9.556223750114441e-01, 9.56781804561615e-01, 9.578883647918701e-01, 9.589607715606689e-01, 9.599820375442505e-01, 9.609716534614563e-01, 9.619280695915222e-01, 9.628450274467468e-01, 9.63740348815918e-01, 9.646239876747131e-01, 9.655009508132935e-01, 9.663733243942261e-01, 9.672417044639587e-01, 9.681060910224915e-01, 9.68966543674469e-01, 9.698229432106018e-01, 9.70675528049469e-01, 9.715242385864258e-01, 9.723690152168274e-01, 9.732098579406738e-01, 9.740467667579651e-01, 9.74880039691925e-01, 9.757094979286194e-01, 9.765351414680481e-01, 9.773569703102112e-01, 9.781750440597534e-01, 9.789896011352539e-01, 9.798004031181335e-01, 9.806075096130371e-01, 9.814109206199646e-01, 9.822108745574951e-01, 9.830073714256287e-01, 9.838003516197205e-01, 9.845897555351257e-01, 9.853755831718445e-01, 9.861578941345215e-01, 9.869367480278015e-01, 9.87712025642395e-01, 9.884837865829468e-01, 9.892520308494568e-01, 9.90016758441925e-01, 9.907783269882202e-01, 9.915367364883423e-01, 9.922918081283569e-01, 9.930436015129089e-01, 9.937921166419983e-01, 9.945372939109802e-01, 9.952792525291443e-01, 9.960179924964905e-01, 9.967535138130188e-01, 9.974857568740845e-01, 9.982149004936218e-01, 9.989389777183533e-01] -hexWetNTU.dryWetCalcs.dryFra=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999998807907104e-01, 9.999593496322632e-01, 9.992995858192444e-01, 9.960250854492188e-01, 9.870083928108215e-01, 9.69098687171936e-01, 9.399927854537963e-01, 8.986451625823976e-01, 8.453195691108704e-01, 7.814058065414429e-01, 7.091134190559387e-01, 6.311355233192444e-01, 5.503464341163635e-01, 4.695620834827423e-01, 3.913650214672089e-01, 3.179813325405121e-01, 2.511966228485107e-01, 1.92301481962204e-01, 1.420646011829376e-01, 1.007353886961937e-01, 6.807831674814224e-02, 4.343842715024948e-02, 2.583320811390877e-02, 1.406233105808496e-02, 6.825658027082682e-03, 2.840936416760087e-03, 9.541775798425078e-04, 2.342051739105955e-04, 3.53551768057514e-05, 2.365619138799957e-06, 3.465353870524268e-08, 1.753730147213695e-11, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -hexDis.dryFra=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 8.999999761581421e-01, 8.333333134651184e-01, 7.666666507720947e-01, 6.99999988079071e-01, 6.666666865348816e-01, 6.333333253860474e-01, 5.666666626930237e-01, 5.333333611488342e-01, 5e-01, 4.666666686534882e-01, 4.333333373069763e-01, 4.000000059604645e-01, 3.666666746139526e-01, 3.666666746139526e-01, 3.333333432674408e-01, 3.00000011920929e-01, 2.666666805744171e-01, 2.666666805744171e-01, 2.333333343267441e-01, 2.333333343267441e-01, 2.000000029802322e-01, 1.666666716337204e-01, 1.666666716337204e-01, 1.333333402872086e-01, 1.333333402872086e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 6.666667014360428e-02, 6.666667014360428e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -hexWetNTU.SHR=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.998449087142944e-01, 9.972462058067322e-01, 9.925675988197327e-01, 9.854366183280945e-01, 9.756923913955688e-01, 9.63398277759552e-01, 9.488228559494019e-01, 9.323951601982117e-01, 9.146462082862854e-01, 8.961463570594788e-01, 8.774474263191223e-01, 8.590362071990967e-01, 8.413013219833374e-01, 8.245155811309814e-01, 8.088327646255493e-01, 7.942954301834106e-01, 7.808524370193481e-01, 7.683820724487305e-01, 7.56718635559082e-01, 7.456820011138916e-01, 7.35105574131012e-01, 7.248609662055969e-01, 7.14869499206543e-01, 7.050957083702087e-01, 6.955268383026123e-01, 6.861562132835388e-01, 6.769778132438659e-01, 6.6798597574234e-01, 6.591750979423524e-01, 6.505399346351625e-01, 6.420754790306091e-01, 6.337767243385315e-01, 6.25639021396637e-01, 6.176578402519226e-01, 6.09828770160675e-01, 6.0214763879776e-01, 5.946103930473328e-01, 5.872131586074829e-01, 5.799520611763e-01, 5.728235840797424e-01, 5.658242106437683e-01, 5.589504837989807e-01, 5.521991848945618e-01, 5.455670952796936e-01, 5.390512943267822e-01, 5.326486825942993e-01, 5.263565182685852e-01, 5.201719999313354e-01, 5.140924453735352e-01, 5.08115291595459e-01, 5.022380948066711e-01, 4.964583814144135e-01, 4.907738268375397e-01, 4.851821660995483e-01, 4.796811938285828e-01, 4.742687940597534e-01, 4.689429104328156e-01, 4.637015163898468e-01, 4.585427343845367e-01, 4.534646272659302e-01, 4.484653770923615e-01, 4.435432553291321e-01, 4.386965036392212e-01, 4.339234828948975e-01, 4.292225241661072e-01, 4.24592137336731e-01, 4.200307130813599e-01, 4.155368208885193e-01, 4.111090004444122e-01, 4.067458212375641e-01, 4.024459719657898e-01, 3.982081115245819e-01] -hexWetNTU.dryWetCalcs.w_FW=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 2.829496831402282e-15, 1.384113659241848e-07, 4.067224654136226e-05, 7.004395592957735e-04, 3.97489033639431e-03, 1.299162954092026e-02, 3.090133145451546e-02, 6.000718846917166e-02, 1.0135480761528e-01, 1.546804457902908e-01, 2.185942083597183e-01, 2.908865511417389e-01, 3.688644766807556e-01, 4.496535956859589e-01, 5.304379463195801e-01, 6.086350083351135e-01, 6.820186376571655e-01, 7.488033771514893e-01, 8.076985478401184e-01, 8.579354286193848e-01, 8.992646336555481e-01, 9.31921660900116e-01, 9.565615653991699e-01, 9.741668105125427e-01, 9.859376549720764e-01, 9.931743144989014e-01, 9.971590638160706e-01, 9.990458488464355e-01, 9.997658133506775e-01, 9.999646544456482e-01, 9.99997615814209e-01, 9.999999403953552e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] -hexWetNTU.dryWetCalcs.w_FD=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999998807907104e-01, 9.999593496322632e-01, 9.992995858192444e-01, 9.960250854492188e-01, 9.870083928108215e-01, 9.69098687171936e-01, 9.399927854537963e-01, 8.986451625823976e-01, 8.453195691108704e-01, 7.814058065414429e-01, 7.091134190559387e-01, 6.311355233192444e-01, 5.503464341163635e-01, 4.695620834827423e-01, 3.913650214672089e-01, 3.179813325405121e-01, 2.511966228485107e-01, 1.92301481962204e-01, 1.420646011829376e-01, 1.007353886961937e-01, 6.807831674814224e-02, 4.343842715024948e-02, 2.583320811390877e-02, 1.406233105808496e-02, 6.825658027082682e-03, 2.840936416760087e-03, 9.541775798425078e-04, 2.342051739105955e-04, 3.53551768057514e-05, 2.365619138799957e-06, 3.465353870524268e-08, 1.753730147213695e-11, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +hexWetNTU.Q1_flow=[4.370540625e+04, 4.370848828125e+04, 4.37115703125e+04, 4.37146484375e+04, 4.37177265625e+04, 4.37208046875e+04, 4.37238828125e+04, 4.372695703125e+04, 4.373003125e+04, 4.37331015625e+04, 4.373617578125e+04, 4.37392421875e+04, 4.37423125e+04, 4.374537890625e+04, 4.37484453125e+04, 4.375151171875e+04, 4.375457421875e+04, 4.375763671875e+04, 4.376069921875e+04, 4.37637578125e+04, 4.376681640625e+04, 4.3769875e+04, 4.37729296875e+04, 4.37759296875e+04, 4.377755859375e+04, 4.377250390625e+04, 4.3754e+04, 4.37202421875e+04, 4.367780078125e+04, 4.3641015625e+04, 4.362915625e+04, 4.366283984375e+04, 4.376076171875e+04, 4.393730078125e+04, 4.42011640625e+04, 4.455494140625e+04, 4.499541796875e+04, 4.551432421875e+04, 4.6099453125e+04, 4.67359375e+04, 4.74076640625e+04, 4.809866015625e+04, 4.879437890625e+04, 4.948276953125e+04, 5.0155e+04, 5.080583203125e+04, 5.14335625e+04, 5.203958984375e+04, 5.26276484375e+04, 5.32027578125e+04, 5.377003515625e+04, 5.433358984375e+04, 5.489587109375e+04, 5.545784375e+04, 5.601969921875e+04, 5.658144531250001e+04, 5.714308593750001e+04, 5.770461718749999e+04, 5.826603906249999e+04, 5.882734765625e+04, 5.938854296875e+04, 5.9949625e+04, 6.051058984375e+04, 6.107143359375e+04, 6.16321640625e+04, 6.219276953125e+04, 6.275325e+04, 6.3313609375e+04, 6.387384375e+04, 6.443394921875e+04, 6.49939296875e+04, 6.55537734375e+04, 6.61134921875e+04, 6.6673078125e+04, 6.72325234375e+04, 6.77918359375e+04, 6.83510078125e+04, 6.8910046875e+04, 6.94689453125e+04, 7.00277109375e+04, 7.05863203125e+04, 7.1144796875e+04, 7.17031171875e+04, 7.2261296875e+04, 7.2819328125e+04, 7.33772109375e+04, 7.39349375e+04, 7.44925078125e+04, 7.50499296875e+04, 7.56071953125e+04, 7.61643125e+04, 7.6721265625e+04, 7.72780625e+04, 7.78346953125e+04, 7.8391171875e+04, 7.89474765625e+04, 7.9503625e+04, 8.00596015625e+04, 8.06154140625e+04, 8.11710625e+04, 8.17265390625e+04] +hexDis.Q1_flow=[4.466667578125e+04, 4.466976953125e+04, 4.467286328125e+04, 4.4675953125e+04, 4.467904296875e+04, 4.468212890625e+04, 4.468521484375e+04, 4.468830078125e+04, 4.469138671875e+04, 4.469446875e+04, 4.469755078125e+04, 4.470062890625e+04, 4.47037109375e+04, 4.470678515625e+04, 4.470986328125e+04, 4.47129375e+04, 4.471601171875e+04, 4.47190859375e+04, 4.472215625e+04, 4.47252265625e+04, 4.4728296875e+04, 4.4757140625e+04, 4.48560078125e+04, 4.501259765625e+04, 4.5215859375e+04, 4.545576953125e+04, 4.57316875e+04, 4.603356640625e+04, 4.635917578125e+04, 4.670716015625e+04, 4.707447265625e+04, 4.745819140625e+04, 4.785771875e+04, 4.827180859375e+04, 4.86980859375e+04, 4.9134859375e+04, 4.958047265625e+04, 5.003900390625e+04, 5.050539453125e+04, 5.097692578125e+04, 5.1461328125e+04, 5.194901953125e+04, 5.244525e+04, 5.294666015625e+04, 5.345425390625e+04, 5.396700390625e+04, 5.448551953125e+04, 5.50072890625e+04, 5.553630859375e+04, 5.606481640625e+04, 5.66039453125e+04, 5.714230859375e+04, 5.76858046875e+04, 5.823389453125e+04, 5.878121875e+04, 5.933676953125001e+04, 5.989346484375001e+04, 6.044939062499999e+04, 6.100454687499999e+04, 6.155894140625e+04, 6.21125625e+04, 6.266541796875e+04, 6.321750390625e+04, 6.376882421875e+04, 6.431937109375e+04, 6.48691484375e+04, 6.541816015625e+04, 6.59663984375e+04, 6.65138671875e+04, 6.70605625e+04, 6.76064921875e+04, 6.81516484375e+04, 6.86960390625e+04, 6.92396484375e+04, 6.97824921875e+04, 7.03245703125e+04, 7.08658671875e+04, 7.14063984375e+04, 7.19461484375e+04, 7.24851328125e+04, 7.302334375e+04, 7.35607890625e+04, 7.4097453125e+04, 7.463334375e+04, 7.516846875e+04, 7.57028203125e+04, 7.6236390625e+04, 7.67691953125e+04, 7.73012265625e+04, 7.78324765625e+04, 7.83629609375e+04, 7.8892671875e+04, 7.9421609375e+04, 7.99497734375e+04, 8.04771640625e+04, 8.100378125e+04, 8.1529625e+04, 8.20546953125e+04, 8.25789921875e+04, 8.3102515625e+04, 8.3625265625e+04] +hexWetNTU_TX.Q1_flow=[4.372630859375e+04, 4.372939453125e+04, 4.373248046875e+04, 4.373556640625e+04, 4.37386484375e+04, 4.374173046875e+04, 4.374480859375e+04, 4.3747890625e+04, 4.375096875e+04, 4.375404296875e+04, 4.37571171875e+04, 4.376019140625e+04, 4.3763265625e+04, 4.37663359375e+04, 4.376940625e+04, 4.37724765625e+04, 4.377554296875e+04, 4.3778609375e+04, 4.378167578125e+04, 4.378473828125e+04, 4.378780078125e+04, 4.379086328125e+04, 4.379392578125e+04, 4.379692578125e+04, 4.379853125e+04, 4.379339453125e+04, 4.377478125e+04, 4.37409609375e+04, 4.369858203125e+04, 4.366204296875e+04, 4.365062890625e+04, 4.3684953125e+04, 4.3783671875e+04, 4.396112109375e+04, 4.422595703125e+04, 4.4580734375e+04, 4.502219140625e+04, 4.554203125e+04, 4.612802734375e+04, 4.67653125e+04, 4.743776953125e+04, 4.81294296875e+04, 4.882575390625e+04, 4.9514703125e+04, 5.01874609375e+04, 5.08387890625e+04, 5.146699609375e+04, 5.20734765625e+04, 5.26619609375e+04, 5.32374765625e+04, 5.380514453125e+04, 5.436907421875e+04, 5.493171875e+04, 5.54940546875e+04, 5.605626953125e+04, 5.661837890625001e+04, 5.718038281250001e+04, 5.774227343749999e+04, 5.830405859374999e+04, 5.886573046875e+04, 5.942728515625e+04, 5.998873046875e+04, 6.05500546875e+04, 6.111126171875e+04, 6.167234765625e+04, 6.223331640625e+04, 6.279416015625e+04, 6.335487890625e+04, 6.391547265625e+04, 6.44759375e+04, 6.503627734375e+04, 6.5596484375e+04, 6.61565546875e+04, 6.67165e+04, 6.72763046875e+04, 6.78359765625e+04, 6.8395515625e+04, 6.89549140625e+04, 6.9514171875e+04, 7.00732890625e+04, 7.06322578125e+04, 7.119109375e+04, 7.17497734375e+04, 7.23083125e+04, 7.28666953125e+04, 7.34249296875e+04, 7.3983015625e+04, 7.45409453125e+04, 7.50987265625e+04, 7.56563515625e+04, 7.62138203125e+04, 7.67711328125e+04, 7.732828125e+04, 7.78852734375e+04, 7.84421015625e+04, 7.89987734375e+04, 7.95552734375e+04, 8.0111609375e+04, 8.06677734375e+04, 8.12237734375e+04, 8.17796015625e+04] +hexWetNTU.sta_b2.T=[2.834466247558594e+02, 2.834474182128906e+02, 2.834482116699219e+02, 2.834490051269531e+02, 2.834497985839844e+02, 2.834505615234375e+02, 2.834513549804688e+02, 2.834521484375e+02, 2.834529113769531e+02, 2.834537048339844e+02, 2.834544982910156e+02, 2.834552917480469e+02, 2.834560546875e+02, 2.834568481445312e+02, 2.834576416015625e+02, 2.834584045410156e+02, 2.834591979980469e+02, 2.834599609375e+02, 2.834607543945312e+02, 2.834615478515625e+02, 2.834623107910156e+02, 2.834631042480469e+02, 2.834638977050781e+02, 2.834646911621094e+02, 2.834660034179688e+02, 2.834698181152344e+02, 2.834786376953125e+02, 2.834931640625e+02, 2.835109252929688e+02, 2.835265502929688e+02, 2.835562438964844e+02, 2.836055603027344e+02, 2.836679077148438e+02, 2.837427062988281e+02, 2.838287048339844e+02, 2.839239501953125e+02, 2.840260925292969e+02, 2.841325988769531e+02, 2.842407836914062e+02, 2.8434814453125e+02, 2.84452392578125e+02, 2.845516662597656e+02, 2.846445617675781e+02, 2.847303161621094e+02, 2.848086547851562e+02, 2.848799438476562e+02, 2.849449157714844e+02, 2.850046691894531e+02, 2.850605163574219e+02, 2.851136779785156e+02, 2.85165283203125e+02, 2.852161560058594e+02, 2.852666931152344e+02, 2.853171081542969e+02, 2.85367431640625e+02, 2.854176330566406e+02, 2.854677124023438e+02, 2.855177001953125e+02, 2.855675659179688e+02, 2.856173706054688e+02, 2.856670227050781e+02, 2.857166137695312e+02, 2.857660827636719e+02, 2.858154602050781e+02, 2.858647155761719e+02, 2.859138793945312e+02, 2.859629516601562e+02, 2.860119323730469e+02, 2.860608215332031e+02, 2.861095886230469e+02, 2.861582641601562e+02, 2.862068481445312e+02, 2.862553405761719e+02, 2.863037109375e+02, 2.863520202636719e+02, 2.864002075195312e+02, 2.864483337402344e+02, 2.86496337890625e+02, 2.865442504882812e+02, 2.865920715332031e+02, 2.866398010253906e+02, 2.866874389648438e+02, 2.867350158691406e+02, 2.86782470703125e+02, 2.86829833984375e+02, 2.868771057128906e+02, 2.8692431640625e+02, 2.869714050292969e+02, 2.870184326171875e+02, 2.870653686523438e+02, 2.871122131347656e+02, 2.871589660644531e+02, 2.872056274414062e+02, 2.87252197265625e+02, 2.872987060546875e+02, 2.873451232910156e+02, 2.873914489746094e+02, 2.874376831054688e+02, 2.874838256835938e+02, 2.875299072265625e+02, 2.875758972167969e+02] +hexDis.sta_b2.T=[2.830865783691406e+02, 2.8308740234375e+02, 2.830882568359375e+02, 2.830890808105469e+02, 2.830899047851562e+02, 2.830907287597656e+02, 2.83091552734375e+02, 2.830923767089844e+02, 2.830932006835938e+02, 2.83093994140625e+02, 2.830948181152344e+02, 2.830956420898438e+02, 2.830964660644531e+02, 2.830972900390625e+02, 2.830981140136719e+02, 2.830989379882812e+02, 2.830997619628906e+02, 2.831005859375e+02, 2.831014099121094e+02, 2.831022338867188e+02, 2.831030578613281e+02, 2.831119689941406e+02, 2.831403198242188e+02, 2.831811828613281e+02, 2.832298583984375e+02, 2.832833251953125e+02, 2.8334033203125e+02, 2.833992004394531e+02, 2.834593200683594e+02, 2.835202026367188e+02, 2.835814208984375e+02, 2.836426696777344e+02, 2.837037963867188e+02, 2.837646484375e+02, 2.838251037597656e+02, 2.838851623535156e+02, 2.8394482421875e+02, 2.840038452148438e+02, 2.840623474121094e+02, 2.841205139160156e+02, 2.841778259277344e+02, 2.842348022460938e+02, 2.842911376953125e+02, 2.843470153808594e+02, 2.844023132324219e+02, 2.844571533203125e+02, 2.845114135742188e+02, 2.845653076171875e+02, 2.846184997558594e+02, 2.84671630859375e+02, 2.847237243652344e+02, 2.847757873535156e+02, 2.848273010253906e+02, 2.848782653808594e+02, 2.8492919921875e+02, 2.84979248046875e+02, 2.850290832519531e+02, 2.850788879394531e+02, 2.851286926269531e+02, 2.85178466796875e+02, 2.852282409667969e+02, 2.852779541015625e+02, 2.853276977539062e+02, 2.853773803710938e+02, 2.854270629882812e+02, 2.854767150878906e+02, 2.855263671875e+02, 2.855759887695312e+02, 2.856255798339844e+02, 2.856751708984375e+02, 2.857247314453125e+02, 2.857742614746094e+02, 2.858237915039062e+02, 2.85873291015625e+02, 2.859227600097656e+02, 2.859722290039062e+02, 2.860216674804688e+02, 2.860710754394531e+02, 2.861204528808594e+02, 2.861698303222656e+02, 2.862191772460938e+02, 2.862684936523438e+02, 2.863178100585938e+02, 2.863670959472656e+02, 2.864163513183594e+02, 2.86465576171875e+02, 2.865148010253906e+02, 2.865639953613281e+02, 2.866131591796875e+02, 2.866623229980469e+02, 2.8671142578125e+02, 2.867605285644531e+02, 2.868096008300781e+02, 2.868586730957031e+02, 2.869076843261719e+02, 2.869566955566406e+02, 2.870056762695312e+02, 2.870546264648438e+02, 2.871035461425781e+02, 2.871524658203125e+02, 2.872013549804688e+02] +hexWetNTU_TX.sta_b2.T=[2.834388122558594e+02, 2.834396057128906e+02, 2.834403686523438e+02, 2.83441162109375e+02, 2.834419555664062e+02, 2.834427490234375e+02, 2.834435119628906e+02, 2.834443054199219e+02, 2.834450988769531e+02, 2.834458618164062e+02, 2.834466552734375e+02, 2.834474487304688e+02, 2.834482116699219e+02, 2.834490051269531e+02, 2.834497985839844e+02, 2.834505615234375e+02, 2.834513549804688e+02, 2.834521484375e+02, 2.834529113769531e+02, 2.834537048339844e+02, 2.834544677734375e+02, 2.834552612304688e+02, 2.834560546875e+02, 2.834568481445312e+02, 2.834581604003906e+02, 2.834620056152344e+02, 2.834708862304688e+02, 2.834854125976562e+02, 2.835031433105469e+02, 2.835187072753906e+02, 2.835487976074219e+02, 2.835982055664062e+02, 2.836606750488281e+02, 2.83735595703125e+02, 2.838216552734375e+02, 2.839169616699219e+02, 2.840191650390625e+02, 2.841257019042969e+02, 2.842339172363281e+02, 2.8434130859375e+02, 2.84445556640625e+02, 2.845447998046875e+02, 2.846376953125e+02, 2.847234191894531e+02, 2.848017578125e+02, 2.848730163574219e+02, 2.8493798828125e+02, 2.849977416992188e+02, 2.850535583496094e+02, 2.851067199707031e+02, 2.851583251953125e+02, 2.852091674804688e+02, 2.852597045898438e+02, 2.853100891113281e+02, 2.853603515625e+02, 2.854105529785156e+02, 2.854606323242188e+02, 2.855105895996094e+02, 2.855604553222656e+02, 2.856101989746094e+02, 2.856598815917969e+02, 2.857094116210938e+02, 2.857588806152344e+02, 2.858082275390625e+02, 2.858574829101562e+02, 2.859066467285156e+02, 2.859556884765625e+02, 2.86004638671875e+02, 2.860534973144531e+02, 2.861022644042969e+02, 2.861509094238281e+02, 2.861994934082031e+02, 2.862479553222656e+02, 2.862963256835938e+02, 2.863446044921875e+02, 2.863927917480469e+02, 2.864408874511719e+02, 2.864888610839844e+02, 2.865367736816406e+02, 2.865845947265625e+02, 2.866322937011719e+02, 2.86679931640625e+02, 2.867274780273438e+02, 2.8677490234375e+02, 2.86822265625e+02, 2.868695373535156e+02, 2.869167175292969e+02, 2.869638061523438e+02, 2.870108032226562e+02, 2.870577087402344e+02, 2.871045532226562e+02, 2.871512756347656e+02, 2.871979370117188e+02, 2.872445068359375e+02, 2.872909851074219e+02, 2.873373718261719e+02, 2.873836975097656e+02, 2.87429931640625e+02, 2.8747607421875e+02, 2.875221252441406e+02, 2.87568115234375e+02] +RelHumOut_eps.phi=[5e-01, 4.796792566776276e-01, 4.836453497409821e-01, 4.965376853942871e-01, 5.127103924751282e-01, 5.300831198692322e-01, 5.478909611701965e-01, 5.658518075942993e-01, 5.838640928268433e-01, 6.018860340118408e-01, 6.199080348014832e-01, 6.379231810569763e-01, 6.559280753135681e-01, 6.739234328269958e-01, 6.919095516204834e-01, 7.098859548568726e-01, 7.278523445129395e-01, 7.45808482170105e-01, 7.637546062469482e-01, 7.816908955574036e-01, 7.996172904968262e-01, 8.175338506698608e-01, 8.354405164718628e-01, 8.533369302749634e-01, 8.712148666381836e-01, 8.890204429626465e-01, 9.066341519355774e-01, 9.239411950111389e-01, 9.409316778182985e-01, 9.577640891075133e-01, 9.740594625473022e-01, 9.879724979400635e-01, 9.992371797561646e-01, 1.007629752159119e+00, 1.013020038604736e+00, 1.015442609786987e+00, 1.015109062194824e+00, 1.01238739490509e+00, 1.007746338844299e+00, 1.00174355506897e+00, 9.94927704334259e-01, 9.878712892532349e-01, 9.810457229614258e-01, 9.748525023460388e-01, 9.69569206237793e-01, 9.653655290603638e-01, 9.622778296470642e-01, 9.60254967212677e-01, 9.591320157051086e-01, 9.58723783493042e-01, 9.588257074356079e-01, 9.59222137928009e-01, 9.597870707511902e-01, 9.604143500328064e-01, 9.610629081726074e-01, 9.617176055908203e-01, 9.62369978427887e-01, 9.630185961723328e-01, 9.636627435684204e-01, 9.643021821975708e-01, 9.649368524551392e-01, 9.65566873550415e-01, 9.661922454833984e-01, 9.668129086494446e-01, 9.674290418624878e-01, 9.680407047271729e-01, 9.686477780342102e-01, 9.692502617835999e-01, 9.698483347892761e-01, 9.704421162605286e-01, 9.710314273834229e-01, 9.716163873672485e-01, 9.721969962120056e-01, 9.727734923362732e-01, 9.733456969261169e-01, 9.739136099815369e-01, 9.744774699211121e-01, 9.750374555587769e-01, 9.755934476852417e-01, 9.76145327091217e-01, 9.766932129859924e-01, 9.772370457649231e-01, 9.77776825428009e-01, 9.78312611579895e-01, 9.788443446159363e-01, 9.793720841407776e-01, 9.798957705497742e-01, 9.804154634475708e-01, 9.809314608573914e-01, 9.814442992210388e-01, 9.819533824920654e-01, 9.82458770275116e-01, 9.829604625701904e-01, 9.834584593772888e-01, 9.839528203010559e-01, 9.844436049461365e-01, 9.849307537078857e-01, 9.854143261909485e-01, 9.858943819999695e-01, 9.863709211349487e-01, 9.868420362472534e-01] +RelHumOut_dis.phi=[5e-01, 4.868944883346558e-01, 4.937932193279266e-01, 5.080428719520569e-01, 5.249926447868347e-01, 5.429288148880005e-01, 5.612213015556335e-01, 5.796377062797546e-01, 5.980943441390991e-01, 6.165568828582764e-01, 6.350172758102417e-01, 6.53469979763031e-01, 6.719120740890503e-01, 6.903442740440369e-01, 7.08766758441925e-01, 7.271791100502014e-01, 7.455810308456421e-01, 7.639725208282471e-01, 7.823536396026611e-01, 8.007245659828186e-01, 8.190848827362061e-01, 8.371081948280334e-01, 8.5308438539505e-01, 8.663970828056335e-01, 8.773807883262634e-01, 8.865193724632263e-01, 8.942079544067383e-01, 9.00779664516449e-01, 9.064733982086182e-01, 9.114585518836975e-01, 9.158722162246704e-01, 9.198173880577087e-01, 9.233663082122803e-01, 9.265850186347961e-01, 9.295242428779602e-01, 9.322243332862854e-01, 9.347103238105774e-01, 9.370092749595642e-01, 9.391550421714783e-01, 9.411537051200867e-01, 9.430233240127563e-01, 9.447868466377258e-01, 9.464405179023743e-01, 9.480149745941162e-01, 9.494937062263489e-01, 9.509090781211853e-01, 9.522463083267212e-01, 9.535328149795532e-01, 9.547502994537354e-01, 9.55923855304718e-01, 9.57045316696167e-01, 9.581204056739807e-01, 9.591612219810486e-01, 9.601534605026245e-01, 9.611179828643799e-01, 9.620478749275208e-01, 9.629413485527039e-01, 9.63814377784729e-01, 9.646768569946289e-01, 9.655335545539856e-01, 9.663856625556946e-01, 9.672336578369141e-01, 9.680777192115784e-01, 9.689176082611084e-01, 9.697535634040833e-01, 9.705856442451477e-01, 9.714136719703674e-01, 9.722377061843872e-01, 9.730578660964966e-01, 9.738742113113403e-01, 9.746866226196289e-01, 9.754952192306519e-01, 9.762999415397644e-01, 9.771010279655457e-01, 9.778982996940613e-01, 9.786918163299561e-01, 9.794816374778748e-01, 9.802680015563965e-01, 9.810507297515869e-01, 9.81829822063446e-01, 9.826053380966187e-01, 9.8337721824646e-01, 9.8414546251297e-01, 9.849101305007935e-01, 9.856711626052856e-01, 9.864286184310913e-01, 9.871824383735657e-01, 9.879327416419983e-01, 9.886795878410339e-01, 9.894235134124756e-01, 9.90164041519165e-01, 9.909012317657471e-01, 9.916350245475769e-01, 9.923654794692993e-01, 9.930926561355591e-01, 9.938164949417114e-01, 9.945370554924011e-01, 9.952543973922729e-01, 9.959684610366821e-01, 9.966793060302734e-01, 9.973840117454529e-01] +hexWetNTU.dryWetCalcs.dryFra=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999896883964539e-01, 9.996822476387024e-01, 9.97657835483551e-01, 9.911808371543884e-01, 9.771228432655334e-01, 9.529135227203368e-01, 9.170734882354737e-01, 8.693724870681763e-01, 8.107308745384216e-01, 7.429675459861755e-01, 6.684896945953369e-01, 5.89992880821228e-01, 5.102112889289856e-01, 4.317289590835571e-01, 3.568454086780548e-01, 2.874822318553925e-01, 2.251206934452057e-01, 1.707644462585449e-01, 1.249276623129845e-01, 8.765061944723129e-02, 5.854392424225807e-02, 3.68591845035553e-02, 2.158031240105629e-02, 1.152739208191633e-02, 5.464709363877773e-03, 2.206018660217524e-03, 7.110365550033748e-04, 1.646735909162089e-04, 2.278980537084863e-05, 1.324641857536335e-06, 1.500523971742496e-08, 4.276050433876799e-12, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +hexDis.dryFra=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.333333373069763e-01, 8.666666746139526e-01, 8.00000011920929e-01, 7.333333492279053e-01, 6.666666865348816e-01, 6.333333253860474e-01, 6.000000238418579e-01, 5.666666626930237e-01, 5.000000000000028e-01, 4.666666686534882e-01, 4.333333373069763e-01, 4.333333373069763e-01, 4.000000059604645e-01, 3.666666746139526e-01, 3.333333432674408e-01, 3.00000011920929e-01, 3.00000011920929e-01, 2.666666805744171e-01, 2.333333343267441e-01, 2.333333343267441e-01, 2.000000029802322e-01, 2.000000029802322e-01, 1.666666716337204e-01, 1.666666716337204e-01, 1.333333402872086e-01, 1.333333402872086e-01, 1.000000014901161e-01, 1.000000014901161e-01, 6.666667014360428e-02, 6.666667014360428e-02, 6.666667014360428e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +hexWetNTU.SHR=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.985707402229309e-01, 9.949048161506653e-01, 9.889982342720032e-01, 9.806062579154968e-01, 9.696928262710571e-01, 9.564260840415955e-01, 9.411467909812927e-01, 9.243190288543701e-01, 9.064731001853943e-01, 8.881492614746094e-01, 8.698489665985107e-01, 8.519970774650574e-01, 8.349185585975647e-01, 8.188273906707764e-01, 8.038284778594971e-01, 7.899286150932312e-01, 7.770543694496155e-01, 7.650746703147888e-01, 7.538261413574219e-01, 7.43139386177063e-01, 7.328643798828125e-01, 7.228900790214539e-01, 7.131518125534058e-01, 7.036215662956238e-01, 6.942890286445618e-01, 6.85148000717163e-01, 6.761926412582396e-01, 6.674175858497621e-01, 6.588175296783448e-01, 6.503874063491821e-01, 6.421223282814026e-01, 6.340175867080688e-01, 6.260687112808228e-01, 6.182712912559509e-01, 6.106212139129639e-01, 6.031143665313721e-01, 5.957469344139099e-01, 5.885151028633118e-01, 5.814152956008911e-01, 5.744439363479614e-01, 5.675977468490601e-01, 5.608734488487244e-01, 5.542678833007812e-01, 5.477780103683472e-01, 5.414008498191833e-01, 5.351336598396301e-01, 5.289735794067383e-01, 5.229181051254272e-01, 5.169644951820374e-01, 5.111103653907776e-01, 5.053533315658569e-01, 4.996910095214844e-01, 4.941211342811584e-01, 4.886415898799896e-01, 4.832501709461212e-01, 4.779448807239532e-01, 4.727237224578857e-01, 4.675847589969635e-01, 4.625260829925537e-01, 4.575459361076355e-01, 4.526425302028656e-01, 4.478141665458679e-01, 4.430591762065887e-01, 4.383759498596191e-01, 4.337629079818726e-01, 4.292185306549072e-01, 4.247413575649261e-01, 4.203299283981323e-01, 4.159829020500183e-01, 4.116988480091095e-01, 4.074765145778656e-01] +hexWetNTU.dryWetCalcs.w_FW=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.81505243957281e-09, 1.031147439789493e-05, 3.177387698087841e-04, 2.342179417610168e-03, 8.819157257676125e-03, 2.287718281149864e-02, 4.70864474773408e-02, 8.292653411626801e-02, 1.306274831295013e-01, 1.892691105604172e-01, 2.570324242115021e-01, 3.315103054046631e-01, 4.10007119178772e-01, 4.897887408733368e-01, 5.682710409164429e-01, 6.431546211242676e-01, 7.125177979469299e-01, 7.748792767524719e-01, 8.292355537414551e-01, 8.750723600387573e-01, 9.123494029045105e-01, 9.414560794830322e-01, 9.631408452987671e-01, 9.784196615219116e-01, 9.88472580909729e-01, 9.945352673530579e-01, 9.97793972492218e-01, 9.992889761924744e-01, 9.998353123664856e-01, 9.999772310256958e-01, 9.999986886978149e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] +hexWetNTU.dryWetCalcs.w_FD=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999896883964539e-01, 9.996822476387024e-01, 9.97657835483551e-01, 9.911808371543884e-01, 9.771228432655334e-01, 9.529135227203368e-01, 9.170734882354737e-01, 8.693724870681763e-01, 8.107308745384216e-01, 7.429675459861755e-01, 6.684896945953369e-01, 5.89992880821228e-01, 5.102112889289856e-01, 4.317289590835571e-01, 3.568454086780548e-01, 2.874822318553925e-01, 2.251206934452057e-01, 1.707644462585449e-01, 1.249276623129845e-01, 8.765061944723129e-02, 5.854392424225807e-02, 3.68591845035553e-02, 2.158031240105629e-02, 1.152739208191633e-02, 5.464709363877773e-03, 2.206018660217524e-03, 7.110365550033748e-04, 1.646735909162089e-04, 2.278980537084863e-05, 1.324641857536335e-06, 1.500523971742496e-08, 4.276050433876799e-12, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] hexDis.UA_nominal=[4.748e+03, 4.748e+03] hexWetNTU.UA_nominal=[4.748e+03, 4.748e+03] hexWetNTU_TX.UA_nominal=[4.75475341796875e+03, 4.75475341796875e+03] diff --git a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos index df6d8d68e2c..de88f193164 100644 --- a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos +++ b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos @@ -9,7 +9,7 @@ Advanced.StoreProtectedVariables = old_StoreProtectedVariables; createPlot( id=1, position={59, 59, 1186, 1286}, - y={"hexWetNTU.Q1_flow", "hexDis.Q1_flow"}, + y={"hexWetNTU.Q1_flow", "hexDis.Q1_flow", "hexWetNTU_TX.Q1_flow"}, autoscale=true, autoerase=true, autoreplot=true, @@ -18,7 +18,7 @@ createPlot( createPlot( id=1, subPlot=2, - y={"hexWetNTU.sta_b2.T", "hexDis.sta_b2.T"}, + y={"hexWetNTU.sta_b2.T", "hexDis.sta_b2.T", "hexWetNTU_TX.sta_b2.T"}, autoscale=true, autoerase=true, autoreplot=true, diff --git a/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos b/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos index 65a1078c4f4..dc30e024d3d 100644 --- a/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos +++ b/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos @@ -2,8 +2,10 @@ compareVars := { "hexWetNTU.Q1_flow", "hexDis.Q1_flow", + "hexWetNTU_TX.Q1_flow", "hexWetNTU.sta_b2.T", "hexDis.sta_b2.T", + "hexWetNTU_TX.sta_b2.T", "RelHumOut_eps.phi", "RelHumOut_dis.phi", "hexWetNTU.dryWetCalcs.dryFra", From 8c9392223633c03494dd854070de54e1578fd243 Mon Sep 17 00:00:00 2001 From: Michael Wetter Date: Wed, 10 Mar 2021 07:38:40 -0800 Subject: [PATCH 34/69] Added start value to avoid warning in Optimica as w_a2_nominal is an iteration variable --- Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo index 0cb2b52d80c..94f414d968a 100644 --- a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo @@ -42,7 +42,9 @@ model WetCoilEffectivenessNTU annotation (Dialog( group="Nominal thermal performance", enable=not use_UA_nominal)); - parameter Modelica.SIunits.MassFraction w_a2_nominal(fixed=not use_UA_nominal) + parameter Modelica.SIunits.MassFraction w_a2_nominal( + start=0.01, + fixed=not use_UA_nominal) "Humidity ratio of inlet air at a rated condition (in kg/kg dry air)" annotation (Dialog( group="Nominal thermal performance", @@ -590,7 +592,7 @@ Buildings.Fluid.HeatExchangers.BaseClasses.WetCoilDryWetRegime.

    Medium 2 must be air due to the use of various psychrometric functions.

    When parameterizing this model with rated conditions (with the parameter -use_UA_nominal set to false), those should +use_UA_nominal set to false), those should correspond to a fully-dry or a fully-wet coil regime. The modeling uncertainty yielded by partially-wet rated conditions has not been assessed yet. @@ -634,7 +636,7 @@ Fuzzy identification of systems and its applications to modeling and control.  IEEE transactions on systems, man, and cybernetics, (1), pp.116-132.

    ", revisions="
      -
    • Jan 21, 2021, by Donghun Kim:
      First implementation of the fuzzy model. +
    • Jan 21, 2021, by Donghun Kim:
      First implementation of the fuzzy model. See issue 622 for more information.
    "), From fedf987736a63925a3d8255db26d946e44071529 Mon Sep 17 00:00:00 2001 From: Michael Wetter Date: Wed, 10 Mar 2021 08:07:15 -0800 Subject: [PATCH 35/69] Revised info section, removed wrong __Dymola_Commands --- .../HeatExchangers/WetCoilEffectivenessNTU.mo | 27 ++++++++++--------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo index 94f414d968a..ddff3fefc4e 100644 --- a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo @@ -154,7 +154,7 @@ protected r_nominal = r_nominal) "Model for convective heat transfer coefficient" annotation (Placement(transformation(extent={{-68,-13},{-50,9}}))); - BaseClasses.WetCoilDryWetRegime dryWetCalcs( + Buildings.Fluid.HeatExchangers.BaseClasses.WetCoilDryWetRegime dryWetCalcs( final cfg=flowRegime, final mWat_flow_nominal=m1_flow_nominal, final mAir_flow_nominal=m2_flow_nominal, @@ -537,23 +537,26 @@ equation textString="Air Side")}), Documentation(info="

    -This model describes a cooling coil that is capable of simulating fully-dry, +This model describes a cooling coil applicable for fully-dry, partially-wet, and fully-wet regimes. The model is developed for counter flow heat exchangers but is also applicable for the cross-flow configuration, although in the latter case it is recommended -to have over four tube rows (Elmahdy and Mitalas, 1977 and Braun, 1988). +to have more than four tube rows (Elmahdy and Mitalas, 1977 and Braun, 1988). The model can also be used for a heat exchanger which acts as both heating coil (for some period of time) and cooling coil (for the others). However, it is not recommended to use this model for heating coil only or for -cooling coil with no water condensation for computational efficiency. +cooling coil with no water condensation because for these situations, + +Buildings.Fluid.HeatExchangers.DryCoilEffectivenessNTU +computes faster.

    Main equations

    The coil model consists of two-equation sets, one for the fully-dry mode and -the other for the fully-wet mode. For the fully-dry mode, the ε-NTU +the other for the fully-wet mode. For the fully-dry mode, the ε-NTU approach (Elmahdy and Mitalas, 1977) is used. For the fully-wet mode, equations from Braun (1988) and Mitchell and Braun (2012a and b), -which are essentially the extension of the ε-NTU approach to simultaneous sensible +which are essentially the extension of the ε-NTU approach to simultaneous sensible and latent heat transfer, are utilized. The equation sets are switched depending on the switching criteria described below that determines the right mode based on a coil surface temperature and dew-point @@ -564,7 +567,7 @@ so-called Takagi-Sugeno fuzzy modeling (Takagi and Sugeno, 1985), which provides continuously differentiable model that can cover all fully-dry, partially-wet, and fully-wet regimes.

    -

    The switching rules are;

    +

    The switching rules are:

    • R1: If the coil surface temperature at the air inlet is lower than the dew-point temperature of air at inlet, then the cooling coil surface is fully-wet. @@ -593,14 +596,14 @@ Buildings.Fluid.HeatExchangers.BaseClasses.WetCoilDryWetRegime.

      When parameterizing this model with rated conditions (with the parameter use_UA_nominal set to false), those should -correspond to a fully-dry or a fully-wet coil regime. -The modeling uncertainty yielded by partially-wet rated conditions +correspond to a fully-dry or a fully-wet coil regime, because +the model uncertainty yielded by partially-wet rated conditions has not been assessed yet.

      The model uses steady-state physics. That is, no dynamics associated with water and coil materials are considered.

      The Lewis number, which relates the mass transfer coefficient to the heat transfer -coefficient, is assumed to be 1.

      +coefficient, is assumed to be 1.

      The model is not suitable for a cross-flow heat exchanger of which the number of passes is less than four.

      Validation

      @@ -639,7 +642,5 @@ Fuzzy identification of systems and its applications to modeling and control.
    • Jan 21, 2021, by Donghun Kim:
      First implementation of the fuzzy model. See issue 622 for more information.
    -"), - __Dymola_Commands(file= - "Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffNtuMassFlowFuzzy.mos")); +")); end WetCoilEffectivenessNTU; From 038da3348ebc3257f377ea873893152c63292e9b Mon Sep 17 00:00:00 2001 From: Michael Wetter Date: Wed, 10 Mar 2021 11:38:25 -0800 Subject: [PATCH 36/69] Reverted addition of dryFra This was added for validation purposes, but it introduces an event, and the protected variables is not used --- .../HeatExchangers/WetCoilCounterFlow.mo | 13 ++--- ...olingCoilHumidifyingHeating_ClosedLoop.txt | 16 +++--- ...CoolingCoilHumidifyingHeating_OpenLoop.txt | 18 +++---- ...es_IntegratedPrimaryLoadSideEconomizer.txt | 24 ++++----- ...s_IntegratedPrimarySecondaryEconomizer.txt | 24 ++++----- ...onIntegratedPrimarySecondaryEconomizer.txt | 22 ++++---- ...gs_Examples_DualFanDualDuct_ClosedLoop.txt | 54 +++++++++---------- ..._BuildingVAV_Examples_OneFloor_OneZone.txt | 14 ++--- ..._BuildingVAV_Examples_TwoFloor_TwoZone.txt | 10 ++-- ...Examples_Tutorial_SpaceCooling_System3.txt | 10 ++-- 10 files changed, 103 insertions(+), 102 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/WetCoilCounterFlow.mo b/Buildings/Fluid/HeatExchangers/WetCoilCounterFlow.mo index 5c67e7f7b47..1adf4caf0dc 100644 --- a/Buildings/Fluid/HeatExchangers/WetCoilCounterFlow.mo +++ b/Buildings/Fluid/HeatExchangers/WetCoilCounterFlow.mo @@ -28,11 +28,6 @@ model WetCoilCounterFlow Modelica.SIunits.MassFlowRate mWat_flow = sum(ele[i].vol2.mWat_flow for i in 1:nEle) "Water flow rate"; -protected - Real dryFra(final unit="1") = Modelica.Math.BooleanVectors.countTrue( - {abs(ele[i].vol2.mWat_flow) Date: Wed, 10 Mar 2021 11:43:33 -0800 Subject: [PATCH 37/69] Reformatted file --- .../BaseClasses/WetCoilDryWetRegime.mo | 56 +++++++++++-------- 1 file changed, 33 insertions(+), 23 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo index 9c3fbf9d6ab..3dea42db732 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo @@ -1,7 +1,6 @@ within Buildings.Fluid.HeatExchangers.BaseClasses; model WetCoilDryWetRegime "Model implementing the switching algorithm of the TK-fuzzy model for cooling coil application" - input Real Qfac; parameter Modelica.SIunits.MassFlowRate mWat_flow_nominal(min=0) "Nominal mass flow rate for water" @@ -10,6 +9,8 @@ model WetCoilDryWetRegime "Nominal mass flow rate for air" annotation(Dialog(group = "Nominal condition")); + input Real Qfac(final unit="1"); + input Buildings.Fluid.Types.HeatExchangerFlowRegime cfg= Buildings.Fluid.Types.HeatExchangerFlowRegime.CounterFlow; @@ -364,39 +365,48 @@ equation extent={{118,-52},{118,-64}}, lineColor={28,108,200}, textString="QSen")}), Diagram( - coordinateSystem(preserveAspectRatio=false, extent={{-140,-120},{140,120}}), - graphics={Text( - extent={{-100,120},{-20,80}}, - lineColor={28,108,200}, - fillColor={170,227,255}, - fillPattern=FillPattern.Forward, - horizontalAlignment=TextAlignment.Left, - textString="Note: please see text file for explicit -connections; there are too many -connections to show graphically here")}), + coordinateSystem(preserveAspectRatio=false, extent={{-140,-120},{140,120}})), Documentation(revisions="
    • Jan 21, 2021, by Donghun Kim:
      First implementation of the fuzzy model. -See issue 622 for more information.
    • +See issue 622 for more information. +
    ", info=" -

    The switching criteria for (counter-flow) cooling coil modes are as follows.

    -

    R1: If the coil surface temperature at the air inlet is lower than the dew-point +

    +This model implements the switching algorithm for the dry and wet regime. +

    +

    +The switching criteria for (counter-flow) cooling coil modes are as follows.

    +

    +R1: If the coil surface temperature at the air inlet is lower than the dew-point temperature at the inlet to the coil, then the cooling coil surface is fully-wet.

    -

    R2: If the surface temperature at the air outlet section is higher than +

    +R2: If the surface temperature at the air outlet section is higher than the dew-point temperature of the air at the inlet, then the cooling coil surface is fully-dry.

    -

    At each point of a simulation time step, the fuzzy-modeling approach determines +

    +At each point of a simulation time step, the fuzzy-modeling approach determines the weights for R1 and R2 respectively (namely μFW and μFD) from the dew-point and coil surface temperatures.

    -

    It calculates total and sensible heat transfer rates according to the weights as follows.

    -

    QtotFD Qtot,FDFW Qtot,FW

    -

    QsenFD Qsen,FDFW Qsen,FW

    -

    The fuzzy-modeling ensures μFW + μFD = 1, +

    +It calculates total and sensible heat transfer rates according to the weights as follows. +

    +

    +QtotFD Qtot,FDFW Qtot,FW +

    +

    +QsenFD Qsen,FDFW Qsen,FW +

    +

    +The fuzzy-modeling ensures μFW + μFD = 1, μFW >=0, μFD >=0, which means the fuzzy model outcomes of Qsen and Qtot are always convex combinations of heat transfer -rates for fully-dry and fully-wet modes and therefore are always bounded by them.

    -

    The modeling approach also results in n-th order differentiable model +rates for fully-dry and fully-wet modes and therefore are always bounded by them. +

    +

    +The modeling approach also results in n-th order differentiable model depending on the selection of the underlying membership functions. This cooling -coil model is once continuously differentiable even at the transition (or mode-switching) points.

    +coil model is once continuously differentiable even at the transition (or mode-switching) points. +

    ")); end WetCoilDryWetRegime; From 3b9584adfb8fc5e37b68ee16f367d4bf06734cc2 Mon Sep 17 00:00:00 2001 From: Michael Wetter Date: Wed, 10 Mar 2021 11:50:16 -0800 Subject: [PATCH 38/69] Revised documentation --- .../BaseClasses/WetCoilDryWetRegime.mo | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo index 3dea42db732..38299aa2566 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo @@ -386,27 +386,27 @@ R2: If the surface temperature at the air outlet section is higher than the dew-point temperature of the air at the inlet, then the cooling coil surface is fully-dry.

    At each point of a simulation time step, the fuzzy-modeling approach determines -the weights for R1 and R2 respectively (namely μFW and μFD) +the weights for R1 and R2 respectively (namely μFW and μFD) from the dew-point and coil surface temperatures.

    It calculates total and sensible heat transfer rates according to the weights as follows.

    -

    -QtotFD Qtot,FDFW Qtot,FW +

    +Q̇totFDtot,FDFW Qtot,FW

    -

    -QsenFD Qsen,FDFW Qsen,FW +

    +Q̇senFDsen,FDFW Qsen,FW

    -The fuzzy-modeling ensures μFW + μFD = 1, -μFW >=0, μFD >=0, which means the fuzzy -model outcomes of Qsen and Qtot are always convex combinations of heat transfer +The fuzzy-modeling ensures μFW + μFD = 1, +μFW >=0 and μFD >=0, which means the fuzzy +model outcomes of sen and tot are always convex combinations of heat transfer rates for fully-dry and fully-wet modes and therefore are always bounded by them.

    -The modeling approach also results in n-th order differentiable model -depending on the selection of the underlying membership functions. This cooling -coil model is once continuously differentiable even at the transition (or mode-switching) points. +The modeling approach also results in n-th order differentiable model +depending on the selection of the underlying membership functions. This cooling +coil model is once continuously differentiable at the mode switches.

    ")); end WetCoilDryWetRegime; From 5055e39b67501fc505a48be6c56f3e9e0142dce3 Mon Sep 17 00:00:00 2001 From: Michael Wetter Date: Wed, 10 Mar 2021 12:10:24 -0800 Subject: [PATCH 39/69] Disabled flow reversal --- .../Validation/WetCoilEffectivenessNTU.mo | 18 +++++++------ ...ers_Validation_WetCoilEffectivenessNTU.txt | 25 +++++++++---------- 2 files changed, 22 insertions(+), 21 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo index 2a8ace77116..cbc3a6f2237 100644 --- a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo @@ -69,10 +69,10 @@ model WetCoilEffectivenessNTU annotation (Placement(transformation(extent={{110,-70},{90,-50}}))); Sensors.MassFractionTwoPort senMasFraOut(redeclare package Medium = Medium_A, m_flow_nominal=m2_flow_nominal) "Water mass fraction of leaving air" - annotation (Placement(transformation(extent={{-110,10},{-130,-10}}))); + annotation (Placement(transformation(extent={{-110,-10},{-130,10}}))); Sensors.TemperatureTwoPort TDryBulOut(redeclare package Medium = Medium_A, m_flow_nominal=m2_flow_nominal) "Dry bulb temperature of leaving air" - annotation (Placement(transformation(extent={{-50,10},{-70,-10}}))); + annotation (Placement(transformation(extent={{-50,-10},{-70,10}}))); Buildings.Utilities.Psychrometrics.TWetBul_TDryBulXi wetBulOut(redeclare package Medium = Medium_A) "Computation of wet bulb temperature" annotation (Placement(transformation(extent={{-40,-90},{-20,-70}}))); @@ -103,8 +103,8 @@ model WetCoilEffectivenessNTU m1_flow_nominal=m1_flow_nominal, m2_flow_nominal=m2_flow_nominal, dp2_nominal=0, - allowFlowReversal1=true, - allowFlowReversal2=true, + allowFlowReversal1=false, + allowFlowReversal2=false, dp1_nominal=0, UA_nominal=UA_nominal, show_T=true, @@ -185,9 +185,10 @@ equation annotation (Line(points={{-130,0},{-140,0},{-140,-59.3333},{-160,-59.3333}}, color={0,127,255})); connect(TDryBulOut.T, wetBulOut.TDryBul) - annotation (Line(points={{-60,-11},{-60,-72},{-41,-72}}, color={0,0,127})); - connect(senMasFraOut.X, wetBulOut.Xi[1]) annotation (Line(points={{-120,-11}, - {-120,-80},{-41,-80}}, color={0,0,127})); + annotation (Line(points={{-60,11},{-60,14},{-44,14},{-44,-72},{-41,-72}}, + color={0,0,127})); + connect(senMasFraOut.X, wetBulOut.Xi[1]) annotation (Line(points={{-120,11},{ + -120,14},{-134,14},{-134,-80},{-41,-80}}, color={0,0,127})); connect(souAir.ports[1], senMasFraIn.port_a) annotation (Line(points={{120,-60},{110,-60}}, color={0,127,255})); connect(senMasFraIn.port_b, TDryBulIn.port_a) @@ -231,7 +232,8 @@ equation connect(souAir1.ports[1], hexWetNTU_TX.port_a2) annotation (Line(points={{120, -100},{0,-100},{0,-40},{-10,-40}}, color={0,127,255})); connect(sinAir.ports[3], hexWetNTU_TX.port_b2) annotation (Line(points={{-160, - -64.6667},{-130,-64.6667},{-130,-40},{-30,-40}}, color={0,127,255})); + -64.6667},{-150,-64.6667},{-150,-64},{-138,-64},{-138,-40},{-30,-40}}, + color={0,127,255})); connect(souWat2.ports[1], hexWetNTU_TX.port_a1) annotation (Line(points={{-160, -20},{-40,-20},{-40,-28},{-30,-28}}, color={0,127,255})); connect(w_a2.y[1], conversion.XiDry) annotation (Line(points={{175,-24},{172, diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt index 5af606ea2d7..2302df6b8eb 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt @@ -1,4 +1,4 @@ -last-generated=2021-02-22 +last-generated=2021-03-10 statistics-initialization= { "nonlinear": "0, 1, 1", @@ -7,24 +7,23 @@ statistics-initialization= statistics-simulation= { "linear": " ", - "nonlinear": "1, 1, 120, 1, 1, 1, 1", + "nonlinear": "1, 1, 91, 1, 1, 1, 1", "number of continuous time states": "11", "numerical Jacobians": "0" } time=[0e+00, 1e+02] -hexWetNTU.Q1_flow=[4.370540625e+04, 4.370848828125e+04, 4.37115703125e+04, 4.37146484375e+04, 4.37177265625e+04, 4.37208046875e+04, 4.37238828125e+04, 4.372695703125e+04, 4.373003125e+04, 4.37331015625e+04, 4.373617578125e+04, 4.37392421875e+04, 4.37423125e+04, 4.374537890625e+04, 4.37484453125e+04, 4.375151171875e+04, 4.375457421875e+04, 4.375763671875e+04, 4.376069921875e+04, 4.37637578125e+04, 4.376681640625e+04, 4.3769875e+04, 4.37729296875e+04, 4.37759296875e+04, 4.377755859375e+04, 4.377250390625e+04, 4.3754e+04, 4.37202421875e+04, 4.367780078125e+04, 4.3641015625e+04, 4.362915625e+04, 4.366283984375e+04, 4.376076171875e+04, 4.393730078125e+04, 4.42011640625e+04, 4.455494140625e+04, 4.499541796875e+04, 4.551432421875e+04, 4.6099453125e+04, 4.67359375e+04, 4.74076640625e+04, 4.809866015625e+04, 4.879437890625e+04, 4.948276953125e+04, 5.0155e+04, 5.080583203125e+04, 5.14335625e+04, 5.203958984375e+04, 5.26276484375e+04, 5.32027578125e+04, 5.377003515625e+04, 5.433358984375e+04, 5.489587109375e+04, 5.545784375e+04, 5.601969921875e+04, 5.658144531250001e+04, 5.714308593750001e+04, 5.770461718749999e+04, 5.826603906249999e+04, 5.882734765625e+04, 5.938854296875e+04, 5.9949625e+04, 6.051058984375e+04, 6.107143359375e+04, 6.16321640625e+04, 6.219276953125e+04, 6.275325e+04, 6.3313609375e+04, 6.387384375e+04, 6.443394921875e+04, 6.49939296875e+04, 6.55537734375e+04, 6.61134921875e+04, 6.6673078125e+04, 6.72325234375e+04, 6.77918359375e+04, 6.83510078125e+04, 6.8910046875e+04, 6.94689453125e+04, 7.00277109375e+04, 7.05863203125e+04, 7.1144796875e+04, 7.17031171875e+04, 7.2261296875e+04, 7.2819328125e+04, 7.33772109375e+04, 7.39349375e+04, 7.44925078125e+04, 7.50499296875e+04, 7.56071953125e+04, 7.61643125e+04, 7.6721265625e+04, 7.72780625e+04, 7.78346953125e+04, 7.8391171875e+04, 7.89474765625e+04, 7.9503625e+04, 8.00596015625e+04, 8.06154140625e+04, 8.11710625e+04, 8.17265390625e+04] +hexWetNTU.Q1_flow=[4.370540625e+04, 4.370848828125e+04, 4.37115703125e+04, 4.37146484375e+04, 4.37177265625e+04, 4.37208046875e+04, 4.37238828125e+04, 4.372695703125e+04, 4.373003125e+04, 4.37331015625e+04, 4.373617578125e+04, 4.37392421875e+04, 4.37423125e+04, 4.374537890625e+04, 4.37484453125e+04, 4.375151171875e+04, 4.375457421875e+04, 4.375763671875e+04, 4.376069921875e+04, 4.37637578125e+04, 4.376681640625e+04, 4.3769875e+04, 4.37729296875e+04, 4.37759296875e+04, 4.377755859375e+04, 4.377250390625e+04, 4.3754e+04, 4.37202421875e+04, 4.367780078125e+04, 4.3641015625e+04, 4.362915625e+04, 4.366283984375e+04, 4.376076171875e+04, 4.39373046875e+04, 4.42011640625e+04, 4.45549453125e+04, 4.4995421875e+04, 4.5514328125e+04, 4.6099453125e+04, 4.673594140625e+04, 4.740766796875e+04, 4.80986640625e+04, 4.879438671875e+04, 4.94827734375e+04, 5.015500390625e+04, 5.080583984375e+04, 5.14335703125e+04, 5.203959765625e+04, 5.262765625e+04, 5.3202765625e+04, 5.377004296875e+04, 5.433359765625e+04, 5.48958828125e+04, 5.545785546875e+04, 5.60197109375e+04, 5.658145703125001e+04, 5.714309765625001e+04, 5.770462890624999e+04, 5.826605078124999e+04, 5.882736328125e+04, 5.938855859375e+04, 5.9949640625e+04, 6.051060546875e+04, 6.107144921875e+04, 6.163217578125e+04, 6.219278125e+04, 6.2753265625e+04, 6.331362109375e+04, 6.387385546875e+04, 6.44339609375e+04, 6.49939375e+04, 6.555378125e+04, 6.61135e+04, 6.6673078125e+04, 6.72325234375e+04, 6.77918359375e+04, 6.8351015625e+04, 6.8910046875e+04, 6.94689453125e+04, 7.00276953125e+04, 7.05863046875e+04, 7.11447734375e+04, 7.170309375e+04, 7.2261265625e+04, 7.2819296875e+04, 7.3377171875e+04, 7.39348984375e+04, 7.449246875e+04, 7.50498828125e+04, 7.56071484375e+04, 7.61642578125e+04, 7.6721203125e+04, 7.7278e+04, 7.7834625e+04, 7.839109375e+04, 7.89473984375e+04, 7.9503546875e+04, 8.00595234375e+04, 8.0615328125e+04, 8.11709765625e+04, 8.17264453125e+04] hexDis.Q1_flow=[4.466667578125e+04, 4.466976953125e+04, 4.467286328125e+04, 4.4675953125e+04, 4.467904296875e+04, 4.468212890625e+04, 4.468521484375e+04, 4.468830078125e+04, 4.469138671875e+04, 4.469446875e+04, 4.469755078125e+04, 4.470062890625e+04, 4.47037109375e+04, 4.470678515625e+04, 4.470986328125e+04, 4.47129375e+04, 4.471601171875e+04, 4.47190859375e+04, 4.472215625e+04, 4.47252265625e+04, 4.4728296875e+04, 4.4757140625e+04, 4.48560078125e+04, 4.501259765625e+04, 4.5215859375e+04, 4.545576953125e+04, 4.57316875e+04, 4.603356640625e+04, 4.635917578125e+04, 4.670716015625e+04, 4.707447265625e+04, 4.745819140625e+04, 4.785771875e+04, 4.827180859375e+04, 4.86980859375e+04, 4.9134859375e+04, 4.958047265625e+04, 5.003900390625e+04, 5.050539453125e+04, 5.097692578125e+04, 5.1461328125e+04, 5.194901953125e+04, 5.244525e+04, 5.294666015625e+04, 5.345425390625e+04, 5.396700390625e+04, 5.448551953125e+04, 5.50072890625e+04, 5.553630859375e+04, 5.606481640625e+04, 5.66039453125e+04, 5.714230859375e+04, 5.76858046875e+04, 5.823389453125e+04, 5.878121875e+04, 5.933676953125001e+04, 5.989346484375001e+04, 6.044939062499999e+04, 6.100454687499999e+04, 6.155894140625e+04, 6.21125625e+04, 6.266541796875e+04, 6.321750390625e+04, 6.376882421875e+04, 6.431937109375e+04, 6.48691484375e+04, 6.541816015625e+04, 6.59663984375e+04, 6.65138671875e+04, 6.70605625e+04, 6.76064921875e+04, 6.81516484375e+04, 6.86960390625e+04, 6.92396484375e+04, 6.97824921875e+04, 7.03245703125e+04, 7.08658671875e+04, 7.14063984375e+04, 7.19461484375e+04, 7.24851328125e+04, 7.302334375e+04, 7.35607890625e+04, 7.4097453125e+04, 7.463334375e+04, 7.516846875e+04, 7.57028203125e+04, 7.6236390625e+04, 7.67691953125e+04, 7.73012265625e+04, 7.78324765625e+04, 7.83629609375e+04, 7.8892671875e+04, 7.9421609375e+04, 7.99497734375e+04, 8.04771640625e+04, 8.100378125e+04, 8.1529625e+04, 8.20546953125e+04, 8.25789921875e+04, 8.3102515625e+04, 8.3625265625e+04] -hexWetNTU_TX.Q1_flow=[4.372630859375e+04, 4.372939453125e+04, 4.373248046875e+04, 4.373556640625e+04, 4.37386484375e+04, 4.374173046875e+04, 4.374480859375e+04, 4.3747890625e+04, 4.375096875e+04, 4.375404296875e+04, 4.37571171875e+04, 4.376019140625e+04, 4.3763265625e+04, 4.37663359375e+04, 4.376940625e+04, 4.37724765625e+04, 4.377554296875e+04, 4.3778609375e+04, 4.378167578125e+04, 4.378473828125e+04, 4.378780078125e+04, 4.379086328125e+04, 4.379392578125e+04, 4.379692578125e+04, 4.379853125e+04, 4.379339453125e+04, 4.377478125e+04, 4.37409609375e+04, 4.369858203125e+04, 4.366204296875e+04, 4.365062890625e+04, 4.3684953125e+04, 4.3783671875e+04, 4.396112109375e+04, 4.422595703125e+04, 4.4580734375e+04, 4.502219140625e+04, 4.554203125e+04, 4.612802734375e+04, 4.67653125e+04, 4.743776953125e+04, 4.81294296875e+04, 4.882575390625e+04, 4.9514703125e+04, 5.01874609375e+04, 5.08387890625e+04, 5.146699609375e+04, 5.20734765625e+04, 5.26619609375e+04, 5.32374765625e+04, 5.380514453125e+04, 5.436907421875e+04, 5.493171875e+04, 5.54940546875e+04, 5.605626953125e+04, 5.661837890625001e+04, 5.718038281250001e+04, 5.774227343749999e+04, 5.830405859374999e+04, 5.886573046875e+04, 5.942728515625e+04, 5.998873046875e+04, 6.05500546875e+04, 6.111126171875e+04, 6.167234765625e+04, 6.223331640625e+04, 6.279416015625e+04, 6.335487890625e+04, 6.391547265625e+04, 6.44759375e+04, 6.503627734375e+04, 6.5596484375e+04, 6.61565546875e+04, 6.67165e+04, 6.72763046875e+04, 6.78359765625e+04, 6.8395515625e+04, 6.89549140625e+04, 6.9514171875e+04, 7.00732890625e+04, 7.06322578125e+04, 7.119109375e+04, 7.17497734375e+04, 7.23083125e+04, 7.28666953125e+04, 7.34249296875e+04, 7.3983015625e+04, 7.45409453125e+04, 7.50987265625e+04, 7.56563515625e+04, 7.62138203125e+04, 7.67711328125e+04, 7.732828125e+04, 7.78852734375e+04, 7.84421015625e+04, 7.89987734375e+04, 7.95552734375e+04, 8.0111609375e+04, 8.06677734375e+04, 8.12237734375e+04, 8.17796015625e+04] -hexWetNTU.sta_b2.T=[2.834466247558594e+02, 2.834474182128906e+02, 2.834482116699219e+02, 2.834490051269531e+02, 2.834497985839844e+02, 2.834505615234375e+02, 2.834513549804688e+02, 2.834521484375e+02, 2.834529113769531e+02, 2.834537048339844e+02, 2.834544982910156e+02, 2.834552917480469e+02, 2.834560546875e+02, 2.834568481445312e+02, 2.834576416015625e+02, 2.834584045410156e+02, 2.834591979980469e+02, 2.834599609375e+02, 2.834607543945312e+02, 2.834615478515625e+02, 2.834623107910156e+02, 2.834631042480469e+02, 2.834638977050781e+02, 2.834646911621094e+02, 2.834660034179688e+02, 2.834698181152344e+02, 2.834786376953125e+02, 2.834931640625e+02, 2.835109252929688e+02, 2.835265502929688e+02, 2.835562438964844e+02, 2.836055603027344e+02, 2.836679077148438e+02, 2.837427062988281e+02, 2.838287048339844e+02, 2.839239501953125e+02, 2.840260925292969e+02, 2.841325988769531e+02, 2.842407836914062e+02, 2.8434814453125e+02, 2.84452392578125e+02, 2.845516662597656e+02, 2.846445617675781e+02, 2.847303161621094e+02, 2.848086547851562e+02, 2.848799438476562e+02, 2.849449157714844e+02, 2.850046691894531e+02, 2.850605163574219e+02, 2.851136779785156e+02, 2.85165283203125e+02, 2.852161560058594e+02, 2.852666931152344e+02, 2.853171081542969e+02, 2.85367431640625e+02, 2.854176330566406e+02, 2.854677124023438e+02, 2.855177001953125e+02, 2.855675659179688e+02, 2.856173706054688e+02, 2.856670227050781e+02, 2.857166137695312e+02, 2.857660827636719e+02, 2.858154602050781e+02, 2.858647155761719e+02, 2.859138793945312e+02, 2.859629516601562e+02, 2.860119323730469e+02, 2.860608215332031e+02, 2.861095886230469e+02, 2.861582641601562e+02, 2.862068481445312e+02, 2.862553405761719e+02, 2.863037109375e+02, 2.863520202636719e+02, 2.864002075195312e+02, 2.864483337402344e+02, 2.86496337890625e+02, 2.865442504882812e+02, 2.865920715332031e+02, 2.866398010253906e+02, 2.866874389648438e+02, 2.867350158691406e+02, 2.86782470703125e+02, 2.86829833984375e+02, 2.868771057128906e+02, 2.8692431640625e+02, 2.869714050292969e+02, 2.870184326171875e+02, 2.870653686523438e+02, 2.871122131347656e+02, 2.871589660644531e+02, 2.872056274414062e+02, 2.87252197265625e+02, 2.872987060546875e+02, 2.873451232910156e+02, 2.873914489746094e+02, 2.874376831054688e+02, 2.874838256835938e+02, 2.875299072265625e+02, 2.875758972167969e+02] +hexWetNTU_TX.Q1_flow=[4.372630859375e+04, 4.372939453125e+04, 4.373248046875e+04, 4.373556640625e+04, 4.37386484375e+04, 4.374173046875e+04, 4.374480859375e+04, 4.3747890625e+04, 4.375096875e+04, 4.375404296875e+04, 4.37571171875e+04, 4.376019140625e+04, 4.3763265625e+04, 4.37663359375e+04, 4.376940625e+04, 4.37724765625e+04, 4.377554296875e+04, 4.3778609375e+04, 4.378167578125e+04, 4.378473828125e+04, 4.378780078125e+04, 4.379086328125e+04, 4.379392578125e+04, 4.379692578125e+04, 4.379853125e+04, 4.379339453125e+04, 4.377478125e+04, 4.37409609375e+04, 4.369858203125e+04, 4.366204296875e+04, 4.365062890625e+04, 4.3684953125e+04, 4.3783671875e+04, 4.396112109375e+04, 4.42259609375e+04, 4.458073828125e+04, 4.502219140625e+04, 4.554203125e+04, 4.612803125e+04, 4.676531640625e+04, 4.74377734375e+04, 4.812943359375e+04, 4.882576171875e+04, 4.95147109375e+04, 5.018746484375e+04, 5.0838796875e+04, 5.146700390625e+04, 5.2073484375e+04, 5.266196875e+04, 5.3237484375e+04, 5.380515234375e+04, 5.436908203125e+04, 5.493173046875e+04, 5.549406640625e+04, 5.605628125e+04, 5.661839453125001e+04, 5.718039453125001e+04, 5.774228906249999e+04, 5.830407421874999e+04, 5.88657421875e+04, 5.942730078125e+04, 5.99887421875e+04, 6.05500703125e+04, 6.111127734375e+04, 6.167236328125e+04, 6.2233328125e+04, 6.2794171875e+04, 6.3354890625e+04, 6.3915484375e+04, 6.447594921875e+04, 6.503628515625e+04, 6.55964921875e+04, 6.61565625e+04, 6.67165078125e+04, 6.72763125e+04, 6.7835984375e+04, 6.8395515625e+04, 6.89549140625e+04, 6.95141640625e+04, 7.00732734375e+04, 7.06322421875e+04, 7.11910703125e+04, 7.174975e+04, 7.230828125e+04, 7.28666640625e+04, 7.34248984375e+04, 7.39829765625e+04, 7.454090625e+04, 7.50986796875e+04, 7.56563046875e+04, 7.6213765625e+04, 7.67710703125e+04, 7.732821875e+04, 7.7885203125e+04, 7.844203125e+04, 7.89986953125e+04, 7.95551875e+04, 8.01115234375e+04, 8.06676875e+04, 8.12236875e+04, 8.1779515625e+04] +hexWetNTU.sta_b2.T=[2.834466247558594e+02, 2.834474182128906e+02, 2.834482116699219e+02, 2.834490051269531e+02, 2.834497985839844e+02, 2.834505615234375e+02, 2.834513549804688e+02, 2.834521484375e+02, 2.834529113769531e+02, 2.834537048339844e+02, 2.834544982910156e+02, 2.834552917480469e+02, 2.834560546875e+02, 2.834568481445312e+02, 2.834576416015625e+02, 2.834584045410156e+02, 2.834591979980469e+02, 2.834599609375e+02, 2.834607543945312e+02, 2.834615478515625e+02, 2.834623107910156e+02, 2.834631042480469e+02, 2.834638977050781e+02, 2.834646911621094e+02, 2.834660034179688e+02, 2.834698181152344e+02, 2.834786376953125e+02, 2.834931640625e+02, 2.835109252929688e+02, 2.835265502929688e+02, 2.835562438964844e+02, 2.836055603027344e+02, 2.836678771972656e+02, 2.837427062988281e+02, 2.838287048339844e+02, 2.839239196777344e+02, 2.840260925292969e+02, 2.84132568359375e+02, 2.842407836914062e+02, 2.8434814453125e+02, 2.84452392578125e+02, 2.845516662597656e+02, 2.846445617675781e+02, 2.847303161621094e+02, 2.848086547851562e+02, 2.848799438476562e+02, 2.849449157714844e+02, 2.850046691894531e+02, 2.850605163574219e+02, 2.851136779785156e+02, 2.85165283203125e+02, 2.852161560058594e+02, 2.852666931152344e+02, 2.853171081542969e+02, 2.85367431640625e+02, 2.854176025390625e+02, 2.854677124023438e+02, 2.855177001953125e+02, 2.855675659179688e+02, 2.856173706054688e+02, 2.856670227050781e+02, 2.857166137695312e+02, 2.857660827636719e+02, 2.858154602050781e+02, 2.858647155761719e+02, 2.859138793945312e+02, 2.859629516601562e+02, 2.860119323730469e+02, 2.860608215332031e+02, 2.861095886230469e+02, 2.861582641601562e+02, 2.862068481445312e+02, 2.862553405761719e+02, 2.863037109375e+02, 2.863520202636719e+02, 2.864002075195312e+02, 2.864483337402344e+02, 2.86496337890625e+02, 2.865442504882812e+02, 2.865920715332031e+02, 2.866398010253906e+02, 2.866874694824219e+02, 2.867350158691406e+02, 2.86782470703125e+02, 2.86829833984375e+02, 2.868771362304688e+02, 2.8692431640625e+02, 2.86971435546875e+02, 2.870184326171875e+02, 2.870653686523438e+02, 2.871122131347656e+02, 2.871589660644531e+02, 2.872056274414062e+02, 2.872522277832031e+02, 2.872987060546875e+02, 2.873451232910156e+02, 2.873914489746094e+02, 2.874376831054688e+02, 2.874838562011719e+02, 2.875299377441406e+02, 2.87575927734375e+02] hexDis.sta_b2.T=[2.830865783691406e+02, 2.8308740234375e+02, 2.830882568359375e+02, 2.830890808105469e+02, 2.830899047851562e+02, 2.830907287597656e+02, 2.83091552734375e+02, 2.830923767089844e+02, 2.830932006835938e+02, 2.83093994140625e+02, 2.830948181152344e+02, 2.830956420898438e+02, 2.830964660644531e+02, 2.830972900390625e+02, 2.830981140136719e+02, 2.830989379882812e+02, 2.830997619628906e+02, 2.831005859375e+02, 2.831014099121094e+02, 2.831022338867188e+02, 2.831030578613281e+02, 2.831119689941406e+02, 2.831403198242188e+02, 2.831811828613281e+02, 2.832298583984375e+02, 2.832833251953125e+02, 2.8334033203125e+02, 2.833992004394531e+02, 2.834593200683594e+02, 2.835202026367188e+02, 2.835814208984375e+02, 2.836426696777344e+02, 2.837037963867188e+02, 2.837646484375e+02, 2.838251037597656e+02, 2.838851623535156e+02, 2.8394482421875e+02, 2.840038452148438e+02, 2.840623474121094e+02, 2.841205139160156e+02, 2.841778259277344e+02, 2.842348022460938e+02, 2.842911376953125e+02, 2.843470153808594e+02, 2.844023132324219e+02, 2.844571533203125e+02, 2.845114135742188e+02, 2.845653076171875e+02, 2.846184997558594e+02, 2.84671630859375e+02, 2.847237243652344e+02, 2.847757873535156e+02, 2.848273010253906e+02, 2.848782653808594e+02, 2.8492919921875e+02, 2.84979248046875e+02, 2.850290832519531e+02, 2.850788879394531e+02, 2.851286926269531e+02, 2.85178466796875e+02, 2.852282409667969e+02, 2.852779541015625e+02, 2.853276977539062e+02, 2.853773803710938e+02, 2.854270629882812e+02, 2.854767150878906e+02, 2.855263671875e+02, 2.855759887695312e+02, 2.856255798339844e+02, 2.856751708984375e+02, 2.857247314453125e+02, 2.857742614746094e+02, 2.858237915039062e+02, 2.85873291015625e+02, 2.859227600097656e+02, 2.859722290039062e+02, 2.860216674804688e+02, 2.860710754394531e+02, 2.861204528808594e+02, 2.861698303222656e+02, 2.862191772460938e+02, 2.862684936523438e+02, 2.863178100585938e+02, 2.863670959472656e+02, 2.864163513183594e+02, 2.86465576171875e+02, 2.865148010253906e+02, 2.865639953613281e+02, 2.866131591796875e+02, 2.866623229980469e+02, 2.8671142578125e+02, 2.867605285644531e+02, 2.868096008300781e+02, 2.868586730957031e+02, 2.869076843261719e+02, 2.869566955566406e+02, 2.870056762695312e+02, 2.870546264648438e+02, 2.871035461425781e+02, 2.871524658203125e+02, 2.872013549804688e+02] -hexWetNTU_TX.sta_b2.T=[2.834388122558594e+02, 2.834396057128906e+02, 2.834403686523438e+02, 2.83441162109375e+02, 2.834419555664062e+02, 2.834427490234375e+02, 2.834435119628906e+02, 2.834443054199219e+02, 2.834450988769531e+02, 2.834458618164062e+02, 2.834466552734375e+02, 2.834474487304688e+02, 2.834482116699219e+02, 2.834490051269531e+02, 2.834497985839844e+02, 2.834505615234375e+02, 2.834513549804688e+02, 2.834521484375e+02, 2.834529113769531e+02, 2.834537048339844e+02, 2.834544677734375e+02, 2.834552612304688e+02, 2.834560546875e+02, 2.834568481445312e+02, 2.834581604003906e+02, 2.834620056152344e+02, 2.834708862304688e+02, 2.834854125976562e+02, 2.835031433105469e+02, 2.835187072753906e+02, 2.835487976074219e+02, 2.835982055664062e+02, 2.836606750488281e+02, 2.83735595703125e+02, 2.838216552734375e+02, 2.839169616699219e+02, 2.840191650390625e+02, 2.841257019042969e+02, 2.842339172363281e+02, 2.8434130859375e+02, 2.84445556640625e+02, 2.845447998046875e+02, 2.846376953125e+02, 2.847234191894531e+02, 2.848017578125e+02, 2.848730163574219e+02, 2.8493798828125e+02, 2.849977416992188e+02, 2.850535583496094e+02, 2.851067199707031e+02, 2.851583251953125e+02, 2.852091674804688e+02, 2.852597045898438e+02, 2.853100891113281e+02, 2.853603515625e+02, 2.854105529785156e+02, 2.854606323242188e+02, 2.855105895996094e+02, 2.855604553222656e+02, 2.856101989746094e+02, 2.856598815917969e+02, 2.857094116210938e+02, 2.857588806152344e+02, 2.858082275390625e+02, 2.858574829101562e+02, 2.859066467285156e+02, 2.859556884765625e+02, 2.86004638671875e+02, 2.860534973144531e+02, 2.861022644042969e+02, 2.861509094238281e+02, 2.861994934082031e+02, 2.862479553222656e+02, 2.862963256835938e+02, 2.863446044921875e+02, 2.863927917480469e+02, 2.864408874511719e+02, 2.864888610839844e+02, 2.865367736816406e+02, 2.865845947265625e+02, 2.866322937011719e+02, 2.86679931640625e+02, 2.867274780273438e+02, 2.8677490234375e+02, 2.86822265625e+02, 2.868695373535156e+02, 2.869167175292969e+02, 2.869638061523438e+02, 2.870108032226562e+02, 2.870577087402344e+02, 2.871045532226562e+02, 2.871512756347656e+02, 2.871979370117188e+02, 2.872445068359375e+02, 2.872909851074219e+02, 2.873373718261719e+02, 2.873836975097656e+02, 2.87429931640625e+02, 2.8747607421875e+02, 2.875221252441406e+02, 2.87568115234375e+02] -RelHumOut_eps.phi=[5e-01, 4.796792566776276e-01, 4.836453497409821e-01, 4.965376853942871e-01, 5.127103924751282e-01, 5.300831198692322e-01, 5.478909611701965e-01, 5.658518075942993e-01, 5.838640928268433e-01, 6.018860340118408e-01, 6.199080348014832e-01, 6.379231810569763e-01, 6.559280753135681e-01, 6.739234328269958e-01, 6.919095516204834e-01, 7.098859548568726e-01, 7.278523445129395e-01, 7.45808482170105e-01, 7.637546062469482e-01, 7.816908955574036e-01, 7.996172904968262e-01, 8.175338506698608e-01, 8.354405164718628e-01, 8.533369302749634e-01, 8.712148666381836e-01, 8.890204429626465e-01, 9.066341519355774e-01, 9.239411950111389e-01, 9.409316778182985e-01, 9.577640891075133e-01, 9.740594625473022e-01, 9.879724979400635e-01, 9.992371797561646e-01, 1.007629752159119e+00, 1.013020038604736e+00, 1.015442609786987e+00, 1.015109062194824e+00, 1.01238739490509e+00, 1.007746338844299e+00, 1.00174355506897e+00, 9.94927704334259e-01, 9.878712892532349e-01, 9.810457229614258e-01, 9.748525023460388e-01, 9.69569206237793e-01, 9.653655290603638e-01, 9.622778296470642e-01, 9.60254967212677e-01, 9.591320157051086e-01, 9.58723783493042e-01, 9.588257074356079e-01, 9.59222137928009e-01, 9.597870707511902e-01, 9.604143500328064e-01, 9.610629081726074e-01, 9.617176055908203e-01, 9.62369978427887e-01, 9.630185961723328e-01, 9.636627435684204e-01, 9.643021821975708e-01, 9.649368524551392e-01, 9.65566873550415e-01, 9.661922454833984e-01, 9.668129086494446e-01, 9.674290418624878e-01, 9.680407047271729e-01, 9.686477780342102e-01, 9.692502617835999e-01, 9.698483347892761e-01, 9.704421162605286e-01, 9.710314273834229e-01, 9.716163873672485e-01, 9.721969962120056e-01, 9.727734923362732e-01, 9.733456969261169e-01, 9.739136099815369e-01, 9.744774699211121e-01, 9.750374555587769e-01, 9.755934476852417e-01, 9.76145327091217e-01, 9.766932129859924e-01, 9.772370457649231e-01, 9.77776825428009e-01, 9.78312611579895e-01, 9.788443446159363e-01, 9.793720841407776e-01, 9.798957705497742e-01, 9.804154634475708e-01, 9.809314608573914e-01, 9.814442992210388e-01, 9.819533824920654e-01, 9.82458770275116e-01, 9.829604625701904e-01, 9.834584593772888e-01, 9.839528203010559e-01, 9.844436049461365e-01, 9.849307537078857e-01, 9.854143261909485e-01, 9.858943819999695e-01, 9.863709211349487e-01, 9.868420362472534e-01] -RelHumOut_dis.phi=[5e-01, 4.868944883346558e-01, 4.937932193279266e-01, 5.080428719520569e-01, 5.249926447868347e-01, 5.429288148880005e-01, 5.612213015556335e-01, 5.796377062797546e-01, 5.980943441390991e-01, 6.165568828582764e-01, 6.350172758102417e-01, 6.53469979763031e-01, 6.719120740890503e-01, 6.903442740440369e-01, 7.08766758441925e-01, 7.271791100502014e-01, 7.455810308456421e-01, 7.639725208282471e-01, 7.823536396026611e-01, 8.007245659828186e-01, 8.190848827362061e-01, 8.371081948280334e-01, 8.5308438539505e-01, 8.663970828056335e-01, 8.773807883262634e-01, 8.865193724632263e-01, 8.942079544067383e-01, 9.00779664516449e-01, 9.064733982086182e-01, 9.114585518836975e-01, 9.158722162246704e-01, 9.198173880577087e-01, 9.233663082122803e-01, 9.265850186347961e-01, 9.295242428779602e-01, 9.322243332862854e-01, 9.347103238105774e-01, 9.370092749595642e-01, 9.391550421714783e-01, 9.411537051200867e-01, 9.430233240127563e-01, 9.447868466377258e-01, 9.464405179023743e-01, 9.480149745941162e-01, 9.494937062263489e-01, 9.509090781211853e-01, 9.522463083267212e-01, 9.535328149795532e-01, 9.547502994537354e-01, 9.55923855304718e-01, 9.57045316696167e-01, 9.581204056739807e-01, 9.591612219810486e-01, 9.601534605026245e-01, 9.611179828643799e-01, 9.620478749275208e-01, 9.629413485527039e-01, 9.63814377784729e-01, 9.646768569946289e-01, 9.655335545539856e-01, 9.663856625556946e-01, 9.672336578369141e-01, 9.680777192115784e-01, 9.689176082611084e-01, 9.697535634040833e-01, 9.705856442451477e-01, 9.714136719703674e-01, 9.722377061843872e-01, 9.730578660964966e-01, 9.738742113113403e-01, 9.746866226196289e-01, 9.754952192306519e-01, 9.762999415397644e-01, 9.771010279655457e-01, 9.778982996940613e-01, 9.786918163299561e-01, 9.794816374778748e-01, 9.802680015563965e-01, 9.810507297515869e-01, 9.81829822063446e-01, 9.826053380966187e-01, 9.8337721824646e-01, 9.8414546251297e-01, 9.849101305007935e-01, 9.856711626052856e-01, 9.864286184310913e-01, 9.871824383735657e-01, 9.879327416419983e-01, 9.886795878410339e-01, 9.894235134124756e-01, 9.90164041519165e-01, 9.909012317657471e-01, 9.916350245475769e-01, 9.923654794692993e-01, 9.930926561355591e-01, 9.938164949417114e-01, 9.945370554924011e-01, 9.952543973922729e-01, 9.959684610366821e-01, 9.966793060302734e-01, 9.973840117454529e-01] -hexWetNTU.dryWetCalcs.dryFra=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999896883964539e-01, 9.996822476387024e-01, 9.97657835483551e-01, 9.911808371543884e-01, 9.771228432655334e-01, 9.529135227203368e-01, 9.170734882354737e-01, 8.693724870681763e-01, 8.107308745384216e-01, 7.429675459861755e-01, 6.684896945953369e-01, 5.89992880821228e-01, 5.102112889289856e-01, 4.317289590835571e-01, 3.568454086780548e-01, 2.874822318553925e-01, 2.251206934452057e-01, 1.707644462585449e-01, 1.249276623129845e-01, 8.765061944723129e-02, 5.854392424225807e-02, 3.68591845035553e-02, 2.158031240105629e-02, 1.152739208191633e-02, 5.464709363877773e-03, 2.206018660217524e-03, 7.110365550033748e-04, 1.646735909162089e-04, 2.278980537084863e-05, 1.324641857536335e-06, 1.500523971742496e-08, 4.276050433876799e-12, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -hexDis.dryFra=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.333333373069763e-01, 8.666666746139526e-01, 8.00000011920929e-01, 7.333333492279053e-01, 6.666666865348816e-01, 6.333333253860474e-01, 6.000000238418579e-01, 5.666666626930237e-01, 5.000000000000028e-01, 4.666666686534882e-01, 4.333333373069763e-01, 4.333333373069763e-01, 4.000000059604645e-01, 3.666666746139526e-01, 3.333333432674408e-01, 3.00000011920929e-01, 3.00000011920929e-01, 2.666666805744171e-01, 2.333333343267441e-01, 2.333333343267441e-01, 2.000000029802322e-01, 2.000000029802322e-01, 1.666666716337204e-01, 1.666666716337204e-01, 1.333333402872086e-01, 1.333333402872086e-01, 1.000000014901161e-01, 1.000000014901161e-01, 6.666667014360428e-02, 6.666667014360428e-02, 6.666667014360428e-02, 3.333333507180214e-02, 3.333333507180214e-02, 3.333333507180214e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -hexWetNTU.SHR=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.985707402229309e-01, 9.949048161506653e-01, 9.889982342720032e-01, 9.806062579154968e-01, 9.696928262710571e-01, 9.564260840415955e-01, 9.411467909812927e-01, 9.243190288543701e-01, 9.064731001853943e-01, 8.881492614746094e-01, 8.698489665985107e-01, 8.519970774650574e-01, 8.349185585975647e-01, 8.188273906707764e-01, 8.038284778594971e-01, 7.899286150932312e-01, 7.770543694496155e-01, 7.650746703147888e-01, 7.538261413574219e-01, 7.43139386177063e-01, 7.328643798828125e-01, 7.228900790214539e-01, 7.131518125534058e-01, 7.036215662956238e-01, 6.942890286445618e-01, 6.85148000717163e-01, 6.761926412582396e-01, 6.674175858497621e-01, 6.588175296783448e-01, 6.503874063491821e-01, 6.421223282814026e-01, 6.340175867080688e-01, 6.260687112808228e-01, 6.182712912559509e-01, 6.106212139129639e-01, 6.031143665313721e-01, 5.957469344139099e-01, 5.885151028633118e-01, 5.814152956008911e-01, 5.744439363479614e-01, 5.675977468490601e-01, 5.608734488487244e-01, 5.542678833007812e-01, 5.477780103683472e-01, 5.414008498191833e-01, 5.351336598396301e-01, 5.289735794067383e-01, 5.229181051254272e-01, 5.169644951820374e-01, 5.111103653907776e-01, 5.053533315658569e-01, 4.996910095214844e-01, 4.941211342811584e-01, 4.886415898799896e-01, 4.832501709461212e-01, 4.779448807239532e-01, 4.727237224578857e-01, 4.675847589969635e-01, 4.625260829925537e-01, 4.575459361076355e-01, 4.526425302028656e-01, 4.478141665458679e-01, 4.430591762065887e-01, 4.383759498596191e-01, 4.337629079818726e-01, 4.292185306549072e-01, 4.247413575649261e-01, 4.203299283981323e-01, 4.159829020500183e-01, 4.116988480091095e-01, 4.074765145778656e-01] -hexWetNTU.dryWetCalcs.w_FW=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.81505243957281e-09, 1.031147439789493e-05, 3.177387698087841e-04, 2.342179417610168e-03, 8.819157257676125e-03, 2.287718281149864e-02, 4.70864474773408e-02, 8.292653411626801e-02, 1.306274831295013e-01, 1.892691105604172e-01, 2.570324242115021e-01, 3.315103054046631e-01, 4.10007119178772e-01, 4.897887408733368e-01, 5.682710409164429e-01, 6.431546211242676e-01, 7.125177979469299e-01, 7.748792767524719e-01, 8.292355537414551e-01, 8.750723600387573e-01, 9.123494029045105e-01, 9.414560794830322e-01, 9.631408452987671e-01, 9.784196615219116e-01, 9.88472580909729e-01, 9.945352673530579e-01, 9.97793972492218e-01, 9.992889761924744e-01, 9.998353123664856e-01, 9.999772310256958e-01, 9.999986886978149e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] -hexWetNTU.dryWetCalcs.w_FD=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999896883964539e-01, 9.996822476387024e-01, 9.97657835483551e-01, 9.911808371543884e-01, 9.771228432655334e-01, 9.529135227203368e-01, 9.170734882354737e-01, 8.693724870681763e-01, 8.107308745384216e-01, 7.429675459861755e-01, 6.684896945953369e-01, 5.89992880821228e-01, 5.102112889289856e-01, 4.317289590835571e-01, 3.568454086780548e-01, 2.874822318553925e-01, 2.251206934452057e-01, 1.707644462585449e-01, 1.249276623129845e-01, 8.765061944723129e-02, 5.854392424225807e-02, 3.68591845035553e-02, 2.158031240105629e-02, 1.152739208191633e-02, 5.464709363877773e-03, 2.206018660217524e-03, 7.110365550033748e-04, 1.646735909162089e-04, 2.278980537084863e-05, 1.324641857536335e-06, 1.500523971742496e-08, 4.276050433876799e-12, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +hexWetNTU_TX.sta_b2.T=[2.834388122558594e+02, 2.834396057128906e+02, 2.834403686523438e+02, 2.83441162109375e+02, 2.834419555664062e+02, 2.834427490234375e+02, 2.834435119628906e+02, 2.834443054199219e+02, 2.834450988769531e+02, 2.834458618164062e+02, 2.834466552734375e+02, 2.834474487304688e+02, 2.834482116699219e+02, 2.834490051269531e+02, 2.834497985839844e+02, 2.834505615234375e+02, 2.834513549804688e+02, 2.834521484375e+02, 2.834529113769531e+02, 2.834537048339844e+02, 2.834544677734375e+02, 2.834552612304688e+02, 2.834560546875e+02, 2.834568481445312e+02, 2.834581604003906e+02, 2.834620056152344e+02, 2.834708862304688e+02, 2.834854125976562e+02, 2.835031433105469e+02, 2.835187072753906e+02, 2.835487976074219e+02, 2.835982055664062e+02, 2.836606750488281e+02, 2.83735595703125e+02, 2.838216552734375e+02, 2.839169616699219e+02, 2.840191650390625e+02, 2.841257019042969e+02, 2.842339172363281e+02, 2.8434130859375e+02, 2.84445556640625e+02, 2.845447998046875e+02, 2.846376953125e+02, 2.847234191894531e+02, 2.848017578125e+02, 2.848730163574219e+02, 2.8493798828125e+02, 2.849977416992188e+02, 2.850535583496094e+02, 2.851067199707031e+02, 2.851583251953125e+02, 2.852091674804688e+02, 2.852596740722656e+02, 2.853100891113281e+02, 2.853603515625e+02, 2.854105529785156e+02, 2.854606018066406e+02, 2.855105895996094e+02, 2.855604553222656e+02, 2.856101989746094e+02, 2.856598815917969e+02, 2.857094116210938e+02, 2.857588806152344e+02, 2.858082275390625e+02, 2.858574829101562e+02, 2.859066467285156e+02, 2.859556884765625e+02, 2.86004638671875e+02, 2.860534973144531e+02, 2.861022644042969e+02, 2.861509094238281e+02, 2.861994934082031e+02, 2.862479553222656e+02, 2.862963256835938e+02, 2.863446044921875e+02, 2.863927917480469e+02, 2.864408874511719e+02, 2.864888610839844e+02, 2.865367736816406e+02, 2.865845947265625e+02, 2.866322937011719e+02, 2.86679931640625e+02, 2.867274780273438e+02, 2.8677490234375e+02, 2.86822265625e+02, 2.868695373535156e+02, 2.869167175292969e+02, 2.869638061523438e+02, 2.870108032226562e+02, 2.870577087402344e+02, 2.871045532226562e+02, 2.871512756347656e+02, 2.871979370117188e+02, 2.872445068359375e+02, 2.872909851074219e+02, 2.8733740234375e+02, 2.873836975097656e+02, 2.87429931640625e+02, 2.8747607421875e+02, 2.875221252441406e+02, 2.87568115234375e+02] +RelHumOut_eps.phi=[5e-01, 4.796792566776276e-01, 4.836453497409821e-01, 4.965376853942871e-01, 5.127103924751282e-01, 5.300831198692322e-01, 5.478909611701965e-01, 5.658518075942993e-01, 5.838640928268433e-01, 6.018860340118408e-01, 6.199080348014832e-01, 6.379231810569763e-01, 6.559280753135681e-01, 6.739234328269958e-01, 6.919095516204834e-01, 7.098859548568726e-01, 7.278523445129395e-01, 7.45808482170105e-01, 7.637546062469482e-01, 7.816908955574036e-01, 7.996172904968262e-01, 8.175339102745056e-01, 8.354405760765076e-01, 8.533370494842529e-01, 8.712153434753418e-01, 8.890219330787659e-01, 9.066378474235535e-01, 9.239453673362732e-01, 9.409334659576417e-01, 9.577583670616149e-01, 9.740464091300964e-01, 9.879716634750366e-01, 9.992398619651794e-01, 1.007634162902832e+00, 1.013024806976318e+00, 1.015447616577148e+00, 1.015111804008484e+00, 1.012382626533508e+00, 1.007738471031189e+00, 1.001726746559143e+00, 9.949173927307129e-01, 9.878579378128052e-01, 9.810348749160767e-01, 9.7484290599823e-01, 9.6956467628479e-01, 9.653617143630981e-01, 9.622776508331299e-01, 9.602507948875427e-01, 9.591355919837952e-01, 9.58734393119812e-01, 9.588334560394287e-01, 9.592363238334656e-01, 9.597945809364319e-01, 9.604183435440063e-01, 9.610649347305298e-01, 9.617177844047546e-01, 9.62369978427887e-01, 9.630185961723328e-01, 9.636627435684204e-01, 9.64302122592926e-01, 9.649367928504944e-01, 9.655666947364807e-01, 9.661920666694641e-01, 9.66812789440155e-01, 9.674289226531982e-01, 9.680404663085938e-01, 9.686474800109863e-01, 9.692500233650208e-01, 9.69848096370697e-01, 9.704417586326599e-01, 9.710310697555542e-01, 9.716160297393799e-01, 9.721967577934265e-01, 9.727731347084045e-01, 9.733453392982483e-01, 9.739133715629578e-01, 9.744771718978882e-01, 9.750369191169739e-01, 9.755924940109253e-01, 9.761440753936768e-01, 9.766916036605835e-01, 9.772351384162903e-01, 9.777746796607971e-01, 9.783103466033936e-01, 9.788420796394348e-01, 9.793699383735657e-01, 9.798939228057861e-01, 9.804141521453857e-01, 9.809306263923645e-01, 9.814432859420776e-01, 9.819522500038147e-01, 9.824575185775757e-01, 9.829591512680054e-01, 9.834571480751038e-01, 9.839515089988708e-01, 9.844423532485962e-01, 9.84929621219635e-01, 9.854133725166321e-01, 9.858936071395874e-01, 9.86370325088501e-01, 9.868431687355042e-01] +RelHumOut_dis.phi=[5e-01, 4.868944883346558e-01, 4.937932193279266e-01, 5.080428719520569e-01, 5.249926447868347e-01, 5.429288148880005e-01, 5.612213015556335e-01, 5.796377062797546e-01, 5.980943441390991e-01, 6.165568828582764e-01, 6.350172758102417e-01, 6.53469979763031e-01, 6.719120740890503e-01, 6.903442740440369e-01, 7.08766758441925e-01, 7.271791100502014e-01, 7.455810308456421e-01, 7.639725208282471e-01, 7.823536396026611e-01, 8.007245659828186e-01, 8.190848827362061e-01, 8.371086716651917e-01, 8.531041741371155e-01, 8.66411566734314e-01, 8.773958683013916e-01, 8.865211009979248e-01, 8.942239284515381e-01, 9.007856249809265e-01, 9.064760804176331e-01, 9.114606380462646e-01, 9.158745408058167e-01, 9.198147654533386e-01, 9.233657121658325e-01, 9.265850186347961e-01, 9.295246005058289e-01, 9.322235584259033e-01, 9.347102046012878e-01, 9.370097517967224e-01, 9.391531348228455e-01, 9.411523342132568e-01, 9.430245757102966e-01, 9.447876214981079e-01, 9.464418292045593e-01, 9.480153918266296e-01, 9.494943022727966e-01, 9.50910210609436e-01, 9.522527456283569e-01, 9.535405039787292e-01, 9.54757034778595e-01, 9.559257030487061e-01, 9.570471048355103e-01, 9.581203460693359e-01, 9.591588973999023e-01, 9.60153341293335e-01, 9.611151218414307e-01, 9.620482325553894e-01, 9.629409909248352e-01, 9.638110995292664e-01, 9.646742939949036e-01, 9.655328989028931e-01, 9.663873910903931e-01, 9.672368168830872e-01, 9.680801630020142e-01, 9.689189195632935e-01, 9.697538614273071e-01, 9.705852866172791e-01, 9.714133143424988e-01, 9.722376465797424e-01, 9.7305828332901e-01, 9.73874568939209e-01, 9.746872186660767e-01, 9.754955768585205e-01, 9.763001799583435e-01, 9.771010279655457e-01, 9.778980612754822e-01, 9.786915183067322e-01, 9.794812202453613e-01, 9.802671670913696e-01, 9.810495972633362e-01, 9.81828510761261e-01, 9.826038479804993e-01, 9.833754897117615e-01, 9.841436147689819e-01, 9.849082231521606e-01, 9.856693744659424e-01, 9.864269495010376e-01, 9.871810674667358e-01, 9.879317283630371e-01, 9.886789321899414e-01, 9.894227981567383e-01, 9.90163266658783e-01, 9.909003973007202e-01, 9.916341304779053e-01, 9.923645853996277e-01, 9.930917024612427e-01, 9.93815541267395e-01, 9.945361614227295e-01, 9.952535629272461e-01, 9.959678053855896e-01, 9.966788291931152e-01, 9.973859190940857e-01] +hexWetNTU.dryWetCalcs.dryFra=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999896883964539e-01, 9.996822476387024e-01, 9.97657835483551e-01, 9.911808371543884e-01, 9.771228432655334e-01, 9.529135823249816e-01, 9.170734882354737e-01, 8.69372546672821e-01, 8.107308745384216e-01, 7.429676055908203e-01, 6.684896945953369e-01, 5.89992880821228e-01, 5.102112889289856e-01, 4.317289888858795e-01, 3.568454384803772e-01, 2.874822616577148e-01, 2.251207232475281e-01, 1.707644760608673e-01, 1.249276921153069e-01, 8.765064179897308e-02, 5.854394659399986e-02, 3.685919940471649e-02, 2.158032543957233e-02, 1.15274004638195e-02, 5.464714951813221e-03, 2.206021454185247e-03, 7.11037777364254e-04, 1.646740274736658e-04, 2.278989268234e-05, 1.324651293543866e-06, 1.500543689303413e-08, 4.27617056347751e-12, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +hexWetNTU.SHR=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.985707402229309e-01, 9.949047565460205e-01, 9.889982342720032e-01, 9.806062579154968e-01, 9.696928262710571e-01, 9.564260244369507e-01, 9.411467313766479e-01, 9.243189692497253e-01, 9.064730405807495e-01, 8.881492614746094e-01, 8.69848906993866e-01, 8.519970774650574e-01, 8.349184989929199e-01, 8.188273310661316e-01, 8.038284182548523e-01, 7.899285554885864e-01, 7.770543098449707e-01, 7.65074610710144e-01, 7.538261413574219e-01, 7.43139386177063e-01, 7.328643202781677e-01, 7.228900194168091e-01, 7.13151752948761e-01, 7.03621506690979e-01, 6.94288969039917e-01, 6.851479411125182e-01, 6.761925816535949e-01, 6.674175262451173e-01, 6.588174700737001e-01, 6.503873467445374e-01, 6.421222686767578e-01, 6.340175271034241e-01, 6.26068651676178e-01, 6.182712316513062e-01, 6.106211543083191e-01, 6.031143665313721e-01, 5.957468748092651e-01, 5.885151028633118e-01, 5.814152359962463e-01, 5.744439363479614e-01, 5.675977468490601e-01, 5.608734488487244e-01, 5.542678833007812e-01, 5.477779507637024e-01, 5.414008498191833e-01, 5.351336598396301e-01, 5.289735794067383e-01, 5.229181051254272e-01, 5.169644951820374e-01, 5.111104249954224e-01, 5.053533315658569e-01, 4.996910393238068e-01, 4.941211640834808e-01, 4.88641619682312e-01, 4.832502007484436e-01, 4.779449105262756e-01, 4.727237522602081e-01, 4.675847887992859e-01, 4.625261425971985e-01, 4.575459957122803e-01, 4.526425898075104e-01, 4.478141963481903e-01, 4.430592060089111e-01, 4.383759796619415e-01, 4.337629377841949e-01, 4.292185604572296e-01, 4.247413873672485e-01, 4.203299582004547e-01, 4.159829318523407e-01, 4.116988778114319e-01, 4.074765145778656e-01] +hexWetNTU.dryWetCalcs.w_FW=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.8150519954836e-09, 1.031147439789493e-05, 3.177387407049537e-04, 2.342179417610168e-03, 8.81915632635355e-03, 2.287718094885349e-02, 4.708644375205051e-02, 8.292652666568742e-02, 1.306274682283401e-01, 1.89269095659256e-01, 2.570324242115021e-01, 3.315102756023407e-01, 4.10007119178772e-01, 4.897887110710144e-01, 5.682709813117981e-01, 6.431545615196228e-01, 7.125177383422852e-01, 7.748792767524719e-01, 8.292354941368103e-01, 8.750723004341125e-01, 9.123493432998657e-01, 9.414560794830322e-01, 9.631407856941223e-01, 9.784196615219116e-01, 9.88472580909729e-01, 9.945352673530579e-01, 9.97793972492218e-01, 9.992889761924744e-01, 9.998353123664856e-01, 9.999772310256958e-01, 9.999986886978149e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] +hexWetNTU.dryWetCalcs.w_FD=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999896883964539e-01, 9.996822476387024e-01, 9.97657835483551e-01, 9.911808371543884e-01, 9.771228432655334e-01, 9.529135823249816e-01, 9.170734882354737e-01, 8.69372546672821e-01, 8.107308745384216e-01, 7.429676055908203e-01, 6.684896945953369e-01, 5.89992880821228e-01, 5.102112889289856e-01, 4.317289888858795e-01, 3.568454384803772e-01, 2.874822616577148e-01, 2.251207232475281e-01, 1.707644760608673e-01, 1.249276921153069e-01, 8.765064179897308e-02, 5.854394659399986e-02, 3.685919940471649e-02, 2.158032543957233e-02, 1.15274004638195e-02, 5.464714951813221e-03, 2.206021454185247e-03, 7.11037777364254e-04, 1.646740274736658e-04, 2.278989268234e-05, 1.324651293543866e-06, 1.500543689303413e-08, 4.27617056347751e-12, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] hexDis.UA_nominal=[4.748e+03, 4.748e+03] hexWetNTU.UA_nominal=[4.748e+03, 4.748e+03] hexWetNTU_TX.UA_nominal=[4.75475341796875e+03, 4.75475341796875e+03] From 83ed33873e6aef524018f36f4dbc2c7a23b47cbb Mon Sep 17 00:00:00 2001 From: Michael Wetter Date: Wed, 10 Mar 2021 12:12:49 -0800 Subject: [PATCH 40/69] Corrected capitalization of instance name --- .../Validation/WetCoilEffectivenessNTU.mo | 20 +++++++++---------- ...ers_Validation_WetCoilEffectivenessNTU.txt | 4 ++-- .../Validation/WetCoilEffectivenessNTU.mos | 2 +- ...ers.Validation.WetCoilEffectivenessNTU.mos | 4 ++-- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo index cbc3a6f2237..7339ae51f2d 100644 --- a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo @@ -53,7 +53,7 @@ model WetCoilEffectivenessNTU annotation (Placement(transformation(extent={{50,10},{30,30}}))); Buildings.Utilities.Psychrometrics.ToTotalAir conversion annotation (Placement(transformation(extent={{190,-90},{170,-70}}))); - Sensors.RelativeHumidityTwoPort RelHumIn(redeclare package Medium = Medium_A, + Sensors.RelativeHumidityTwoPort relHumIn(redeclare package Medium = Medium_A, m_flow_nominal=m2_flow_nominal) "Inlet relative humidity" annotation (Placement(transformation(extent={{40,-70},{20,-50}}))); Sensors.TemperatureTwoPort TDryBulIn(redeclare package Medium = Medium_A, @@ -135,10 +135,10 @@ model WetCoilEffectivenessNTU Sensors.TemperatureTwoPort TDryBulOut1(redeclare package Medium = Medium_A, m_flow_nominal=m2_flow_nominal) "Dry bulb temperature of leaving air" annotation (Placement(transformation(extent={{-50,50},{-70,70}}))); - Sensors.RelativeHumidityTwoPort RelHumOut_eps(redeclare package Medium = + Sensors.RelativeHumidityTwoPort relHumOut_eps(redeclare package Medium = Medium_A, m_flow_nominal=m2_flow_nominal) "Outlet relative humidity" annotation (Placement(transformation(extent={{-80,-10},{-100,10}}))); - Sensors.RelativeHumidityTwoPort RelHumOut_dis(redeclare package Medium = + Sensors.RelativeHumidityTwoPort relHumOut_dis(redeclare package Medium = Medium_A, m_flow_nominal=m2_flow_nominal) "Outlet relative humidity" annotation (Placement(transformation(extent={{-80,50},{-100,70}}))); Buildings.Fluid.HeatExchangers.WetCoilEffectivenessNTU hexWetNTU_TX( @@ -197,7 +197,7 @@ equation annotation (Line(points={{100,-49},{100,0},{119,0}}, color={0,0,127})); connect(TDryBulIn.T, wetBulIn.TDryBul) annotation (Line(points={{60,-49},{60,8},{119,8}}, color={0,0,127})); - connect(TDryBulIn.port_b, RelHumIn.port_a) + connect(TDryBulIn.port_b, relHumIn.port_a) annotation (Line(points={{50,-60},{40,-60}}, color={0,127,255})); connect(souWat1.ports[1], hexWetNTU.port_a1) annotation (Line(points={{-160,20}, {-30,20}}, color={0,127,255})); @@ -212,20 +212,20 @@ equation 0,40},{0,60},{-10,60}}, color={0,127,255})); connect(hexWetNTU.port_b2, TDryBulOut.port_a) annotation (Line(points={{-30,8}, {-40,8},{-40,0},{-50,0}}, color={0,127,255})); - connect(hexWetNTU.port_a2, RelHumIn.port_b) annotation (Line(points={{-10,8}, + connect(hexWetNTU.port_a2, relHumIn.port_b) annotation (Line(points={{-10,8}, {10,8},{10,-60},{20,-60}}, color={0,127,255})); connect(hexDis.port_b2, TDryBulOut1.port_a) annotation (Line(points={{-30,60},{-50,60}}, color={0,127,255})); connect(senMasFraOut1.port_b, sinAir.ports[2]) annotation (Line(points={{-130,60}, {-150,60},{-150,-62},{-160,-62}}, color={0,127,255})); - connect(TDryBulOut.port_b, RelHumOut_eps.port_a) annotation (Line(points={{ + connect(TDryBulOut.port_b, relHumOut_eps.port_a) annotation (Line(points={{ -70,0},{-76,0},{-76,0},{-80,0}}, color={0,127,255})); - connect(RelHumOut_eps.port_b, senMasFraOut.port_a) + connect(relHumOut_eps.port_b, senMasFraOut.port_a) annotation (Line(points={{-100,0},{-110,0}}, color={0,127,255})); - connect(TDryBulOut1.port_b, RelHumOut_dis.port_a) + connect(TDryBulOut1.port_b, relHumOut_dis.port_a) annotation (Line(points={{-70,60},{-80,60}}, color={0,127,255})); - connect(RelHumOut_dis.port_b, senMasFraOut1.port_a) + connect(relHumOut_dis.port_b, senMasFraOut1.port_a) annotation (Line(points={{-100,60},{-110,60}}, color={0,127,255})); connect(hexWetNTU_TX.port_b1, sinWat.ports[3]) annotation (Line(points={{-10,-28}, {20,-28},{20,17.3333},{30,17.3333}}, color={0,127,255})); @@ -270,7 +270,7 @@ A discretized wet coil model is also simulated for comparison.

    Note that the outlet air relative humidity may slightly exceed 100% when using -the epsilon-NTU model. +the epsilon-NTU model.

    The slight deviations we find are believed due to differences in the tolerance diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt index 2302df6b8eb..e801d89ba91 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt @@ -18,8 +18,8 @@ hexWetNTU_TX.Q1_flow=[4.372630859375e+04, 4.372939453125e+04, 4.373248046875e+04 hexWetNTU.sta_b2.T=[2.834466247558594e+02, 2.834474182128906e+02, 2.834482116699219e+02, 2.834490051269531e+02, 2.834497985839844e+02, 2.834505615234375e+02, 2.834513549804688e+02, 2.834521484375e+02, 2.834529113769531e+02, 2.834537048339844e+02, 2.834544982910156e+02, 2.834552917480469e+02, 2.834560546875e+02, 2.834568481445312e+02, 2.834576416015625e+02, 2.834584045410156e+02, 2.834591979980469e+02, 2.834599609375e+02, 2.834607543945312e+02, 2.834615478515625e+02, 2.834623107910156e+02, 2.834631042480469e+02, 2.834638977050781e+02, 2.834646911621094e+02, 2.834660034179688e+02, 2.834698181152344e+02, 2.834786376953125e+02, 2.834931640625e+02, 2.835109252929688e+02, 2.835265502929688e+02, 2.835562438964844e+02, 2.836055603027344e+02, 2.836678771972656e+02, 2.837427062988281e+02, 2.838287048339844e+02, 2.839239196777344e+02, 2.840260925292969e+02, 2.84132568359375e+02, 2.842407836914062e+02, 2.8434814453125e+02, 2.84452392578125e+02, 2.845516662597656e+02, 2.846445617675781e+02, 2.847303161621094e+02, 2.848086547851562e+02, 2.848799438476562e+02, 2.849449157714844e+02, 2.850046691894531e+02, 2.850605163574219e+02, 2.851136779785156e+02, 2.85165283203125e+02, 2.852161560058594e+02, 2.852666931152344e+02, 2.853171081542969e+02, 2.85367431640625e+02, 2.854176025390625e+02, 2.854677124023438e+02, 2.855177001953125e+02, 2.855675659179688e+02, 2.856173706054688e+02, 2.856670227050781e+02, 2.857166137695312e+02, 2.857660827636719e+02, 2.858154602050781e+02, 2.858647155761719e+02, 2.859138793945312e+02, 2.859629516601562e+02, 2.860119323730469e+02, 2.860608215332031e+02, 2.861095886230469e+02, 2.861582641601562e+02, 2.862068481445312e+02, 2.862553405761719e+02, 2.863037109375e+02, 2.863520202636719e+02, 2.864002075195312e+02, 2.864483337402344e+02, 2.86496337890625e+02, 2.865442504882812e+02, 2.865920715332031e+02, 2.866398010253906e+02, 2.866874694824219e+02, 2.867350158691406e+02, 2.86782470703125e+02, 2.86829833984375e+02, 2.868771362304688e+02, 2.8692431640625e+02, 2.86971435546875e+02, 2.870184326171875e+02, 2.870653686523438e+02, 2.871122131347656e+02, 2.871589660644531e+02, 2.872056274414062e+02, 2.872522277832031e+02, 2.872987060546875e+02, 2.873451232910156e+02, 2.873914489746094e+02, 2.874376831054688e+02, 2.874838562011719e+02, 2.875299377441406e+02, 2.87575927734375e+02] hexDis.sta_b2.T=[2.830865783691406e+02, 2.8308740234375e+02, 2.830882568359375e+02, 2.830890808105469e+02, 2.830899047851562e+02, 2.830907287597656e+02, 2.83091552734375e+02, 2.830923767089844e+02, 2.830932006835938e+02, 2.83093994140625e+02, 2.830948181152344e+02, 2.830956420898438e+02, 2.830964660644531e+02, 2.830972900390625e+02, 2.830981140136719e+02, 2.830989379882812e+02, 2.830997619628906e+02, 2.831005859375e+02, 2.831014099121094e+02, 2.831022338867188e+02, 2.831030578613281e+02, 2.831119689941406e+02, 2.831403198242188e+02, 2.831811828613281e+02, 2.832298583984375e+02, 2.832833251953125e+02, 2.8334033203125e+02, 2.833992004394531e+02, 2.834593200683594e+02, 2.835202026367188e+02, 2.835814208984375e+02, 2.836426696777344e+02, 2.837037963867188e+02, 2.837646484375e+02, 2.838251037597656e+02, 2.838851623535156e+02, 2.8394482421875e+02, 2.840038452148438e+02, 2.840623474121094e+02, 2.841205139160156e+02, 2.841778259277344e+02, 2.842348022460938e+02, 2.842911376953125e+02, 2.843470153808594e+02, 2.844023132324219e+02, 2.844571533203125e+02, 2.845114135742188e+02, 2.845653076171875e+02, 2.846184997558594e+02, 2.84671630859375e+02, 2.847237243652344e+02, 2.847757873535156e+02, 2.848273010253906e+02, 2.848782653808594e+02, 2.8492919921875e+02, 2.84979248046875e+02, 2.850290832519531e+02, 2.850788879394531e+02, 2.851286926269531e+02, 2.85178466796875e+02, 2.852282409667969e+02, 2.852779541015625e+02, 2.853276977539062e+02, 2.853773803710938e+02, 2.854270629882812e+02, 2.854767150878906e+02, 2.855263671875e+02, 2.855759887695312e+02, 2.856255798339844e+02, 2.856751708984375e+02, 2.857247314453125e+02, 2.857742614746094e+02, 2.858237915039062e+02, 2.85873291015625e+02, 2.859227600097656e+02, 2.859722290039062e+02, 2.860216674804688e+02, 2.860710754394531e+02, 2.861204528808594e+02, 2.861698303222656e+02, 2.862191772460938e+02, 2.862684936523438e+02, 2.863178100585938e+02, 2.863670959472656e+02, 2.864163513183594e+02, 2.86465576171875e+02, 2.865148010253906e+02, 2.865639953613281e+02, 2.866131591796875e+02, 2.866623229980469e+02, 2.8671142578125e+02, 2.867605285644531e+02, 2.868096008300781e+02, 2.868586730957031e+02, 2.869076843261719e+02, 2.869566955566406e+02, 2.870056762695312e+02, 2.870546264648438e+02, 2.871035461425781e+02, 2.871524658203125e+02, 2.872013549804688e+02] hexWetNTU_TX.sta_b2.T=[2.834388122558594e+02, 2.834396057128906e+02, 2.834403686523438e+02, 2.83441162109375e+02, 2.834419555664062e+02, 2.834427490234375e+02, 2.834435119628906e+02, 2.834443054199219e+02, 2.834450988769531e+02, 2.834458618164062e+02, 2.834466552734375e+02, 2.834474487304688e+02, 2.834482116699219e+02, 2.834490051269531e+02, 2.834497985839844e+02, 2.834505615234375e+02, 2.834513549804688e+02, 2.834521484375e+02, 2.834529113769531e+02, 2.834537048339844e+02, 2.834544677734375e+02, 2.834552612304688e+02, 2.834560546875e+02, 2.834568481445312e+02, 2.834581604003906e+02, 2.834620056152344e+02, 2.834708862304688e+02, 2.834854125976562e+02, 2.835031433105469e+02, 2.835187072753906e+02, 2.835487976074219e+02, 2.835982055664062e+02, 2.836606750488281e+02, 2.83735595703125e+02, 2.838216552734375e+02, 2.839169616699219e+02, 2.840191650390625e+02, 2.841257019042969e+02, 2.842339172363281e+02, 2.8434130859375e+02, 2.84445556640625e+02, 2.845447998046875e+02, 2.846376953125e+02, 2.847234191894531e+02, 2.848017578125e+02, 2.848730163574219e+02, 2.8493798828125e+02, 2.849977416992188e+02, 2.850535583496094e+02, 2.851067199707031e+02, 2.851583251953125e+02, 2.852091674804688e+02, 2.852596740722656e+02, 2.853100891113281e+02, 2.853603515625e+02, 2.854105529785156e+02, 2.854606018066406e+02, 2.855105895996094e+02, 2.855604553222656e+02, 2.856101989746094e+02, 2.856598815917969e+02, 2.857094116210938e+02, 2.857588806152344e+02, 2.858082275390625e+02, 2.858574829101562e+02, 2.859066467285156e+02, 2.859556884765625e+02, 2.86004638671875e+02, 2.860534973144531e+02, 2.861022644042969e+02, 2.861509094238281e+02, 2.861994934082031e+02, 2.862479553222656e+02, 2.862963256835938e+02, 2.863446044921875e+02, 2.863927917480469e+02, 2.864408874511719e+02, 2.864888610839844e+02, 2.865367736816406e+02, 2.865845947265625e+02, 2.866322937011719e+02, 2.86679931640625e+02, 2.867274780273438e+02, 2.8677490234375e+02, 2.86822265625e+02, 2.868695373535156e+02, 2.869167175292969e+02, 2.869638061523438e+02, 2.870108032226562e+02, 2.870577087402344e+02, 2.871045532226562e+02, 2.871512756347656e+02, 2.871979370117188e+02, 2.872445068359375e+02, 2.872909851074219e+02, 2.8733740234375e+02, 2.873836975097656e+02, 2.87429931640625e+02, 2.8747607421875e+02, 2.875221252441406e+02, 2.87568115234375e+02] -RelHumOut_eps.phi=[5e-01, 4.796792566776276e-01, 4.836453497409821e-01, 4.965376853942871e-01, 5.127103924751282e-01, 5.300831198692322e-01, 5.478909611701965e-01, 5.658518075942993e-01, 5.838640928268433e-01, 6.018860340118408e-01, 6.199080348014832e-01, 6.379231810569763e-01, 6.559280753135681e-01, 6.739234328269958e-01, 6.919095516204834e-01, 7.098859548568726e-01, 7.278523445129395e-01, 7.45808482170105e-01, 7.637546062469482e-01, 7.816908955574036e-01, 7.996172904968262e-01, 8.175339102745056e-01, 8.354405760765076e-01, 8.533370494842529e-01, 8.712153434753418e-01, 8.890219330787659e-01, 9.066378474235535e-01, 9.239453673362732e-01, 9.409334659576417e-01, 9.577583670616149e-01, 9.740464091300964e-01, 9.879716634750366e-01, 9.992398619651794e-01, 1.007634162902832e+00, 1.013024806976318e+00, 1.015447616577148e+00, 1.015111804008484e+00, 1.012382626533508e+00, 1.007738471031189e+00, 1.001726746559143e+00, 9.949173927307129e-01, 9.878579378128052e-01, 9.810348749160767e-01, 9.7484290599823e-01, 9.6956467628479e-01, 9.653617143630981e-01, 9.622776508331299e-01, 9.602507948875427e-01, 9.591355919837952e-01, 9.58734393119812e-01, 9.588334560394287e-01, 9.592363238334656e-01, 9.597945809364319e-01, 9.604183435440063e-01, 9.610649347305298e-01, 9.617177844047546e-01, 9.62369978427887e-01, 9.630185961723328e-01, 9.636627435684204e-01, 9.64302122592926e-01, 9.649367928504944e-01, 9.655666947364807e-01, 9.661920666694641e-01, 9.66812789440155e-01, 9.674289226531982e-01, 9.680404663085938e-01, 9.686474800109863e-01, 9.692500233650208e-01, 9.69848096370697e-01, 9.704417586326599e-01, 9.710310697555542e-01, 9.716160297393799e-01, 9.721967577934265e-01, 9.727731347084045e-01, 9.733453392982483e-01, 9.739133715629578e-01, 9.744771718978882e-01, 9.750369191169739e-01, 9.755924940109253e-01, 9.761440753936768e-01, 9.766916036605835e-01, 9.772351384162903e-01, 9.777746796607971e-01, 9.783103466033936e-01, 9.788420796394348e-01, 9.793699383735657e-01, 9.798939228057861e-01, 9.804141521453857e-01, 9.809306263923645e-01, 9.814432859420776e-01, 9.819522500038147e-01, 9.824575185775757e-01, 9.829591512680054e-01, 9.834571480751038e-01, 9.839515089988708e-01, 9.844423532485962e-01, 9.84929621219635e-01, 9.854133725166321e-01, 9.858936071395874e-01, 9.86370325088501e-01, 9.868431687355042e-01] -RelHumOut_dis.phi=[5e-01, 4.868944883346558e-01, 4.937932193279266e-01, 5.080428719520569e-01, 5.249926447868347e-01, 5.429288148880005e-01, 5.612213015556335e-01, 5.796377062797546e-01, 5.980943441390991e-01, 6.165568828582764e-01, 6.350172758102417e-01, 6.53469979763031e-01, 6.719120740890503e-01, 6.903442740440369e-01, 7.08766758441925e-01, 7.271791100502014e-01, 7.455810308456421e-01, 7.639725208282471e-01, 7.823536396026611e-01, 8.007245659828186e-01, 8.190848827362061e-01, 8.371086716651917e-01, 8.531041741371155e-01, 8.66411566734314e-01, 8.773958683013916e-01, 8.865211009979248e-01, 8.942239284515381e-01, 9.007856249809265e-01, 9.064760804176331e-01, 9.114606380462646e-01, 9.158745408058167e-01, 9.198147654533386e-01, 9.233657121658325e-01, 9.265850186347961e-01, 9.295246005058289e-01, 9.322235584259033e-01, 9.347102046012878e-01, 9.370097517967224e-01, 9.391531348228455e-01, 9.411523342132568e-01, 9.430245757102966e-01, 9.447876214981079e-01, 9.464418292045593e-01, 9.480153918266296e-01, 9.494943022727966e-01, 9.50910210609436e-01, 9.522527456283569e-01, 9.535405039787292e-01, 9.54757034778595e-01, 9.559257030487061e-01, 9.570471048355103e-01, 9.581203460693359e-01, 9.591588973999023e-01, 9.60153341293335e-01, 9.611151218414307e-01, 9.620482325553894e-01, 9.629409909248352e-01, 9.638110995292664e-01, 9.646742939949036e-01, 9.655328989028931e-01, 9.663873910903931e-01, 9.672368168830872e-01, 9.680801630020142e-01, 9.689189195632935e-01, 9.697538614273071e-01, 9.705852866172791e-01, 9.714133143424988e-01, 9.722376465797424e-01, 9.7305828332901e-01, 9.73874568939209e-01, 9.746872186660767e-01, 9.754955768585205e-01, 9.763001799583435e-01, 9.771010279655457e-01, 9.778980612754822e-01, 9.786915183067322e-01, 9.794812202453613e-01, 9.802671670913696e-01, 9.810495972633362e-01, 9.81828510761261e-01, 9.826038479804993e-01, 9.833754897117615e-01, 9.841436147689819e-01, 9.849082231521606e-01, 9.856693744659424e-01, 9.864269495010376e-01, 9.871810674667358e-01, 9.879317283630371e-01, 9.886789321899414e-01, 9.894227981567383e-01, 9.90163266658783e-01, 9.909003973007202e-01, 9.916341304779053e-01, 9.923645853996277e-01, 9.930917024612427e-01, 9.93815541267395e-01, 9.945361614227295e-01, 9.952535629272461e-01, 9.959678053855896e-01, 9.966788291931152e-01, 9.973859190940857e-01] +relHumOut_eps.phi=[5e-01, 4.796792566776276e-01, 4.836453497409821e-01, 4.965376853942871e-01, 5.127103924751282e-01, 5.300831198692322e-01, 5.478909611701965e-01, 5.658518075942993e-01, 5.838640928268433e-01, 6.018860340118408e-01, 6.199080348014832e-01, 6.379231810569763e-01, 6.559280753135681e-01, 6.739234328269958e-01, 6.919095516204834e-01, 7.098859548568726e-01, 7.278523445129395e-01, 7.45808482170105e-01, 7.637546062469482e-01, 7.816908955574036e-01, 7.996172904968262e-01, 8.175339102745056e-01, 8.354405760765076e-01, 8.533370494842529e-01, 8.712153434753418e-01, 8.890219330787659e-01, 9.066378474235535e-01, 9.239453673362732e-01, 9.409334659576417e-01, 9.577583670616149e-01, 9.740464091300964e-01, 9.879716634750366e-01, 9.992398619651794e-01, 1.007634162902832e+00, 1.013024806976318e+00, 1.015447616577148e+00, 1.015111804008484e+00, 1.012382626533508e+00, 1.007738471031189e+00, 1.001726746559143e+00, 9.949173927307129e-01, 9.878579378128052e-01, 9.810348749160767e-01, 9.7484290599823e-01, 9.6956467628479e-01, 9.653617143630981e-01, 9.622776508331299e-01, 9.602507948875427e-01, 9.591355919837952e-01, 9.58734393119812e-01, 9.588334560394287e-01, 9.592363238334656e-01, 9.597945809364319e-01, 9.604183435440063e-01, 9.610649347305298e-01, 9.617177844047546e-01, 9.62369978427887e-01, 9.630185961723328e-01, 9.636627435684204e-01, 9.64302122592926e-01, 9.649367928504944e-01, 9.655666947364807e-01, 9.661920666694641e-01, 9.66812789440155e-01, 9.674289226531982e-01, 9.680404663085938e-01, 9.686474800109863e-01, 9.692500233650208e-01, 9.69848096370697e-01, 9.704417586326599e-01, 9.710310697555542e-01, 9.716160297393799e-01, 9.721967577934265e-01, 9.727731347084045e-01, 9.733453392982483e-01, 9.739133715629578e-01, 9.744771718978882e-01, 9.750369191169739e-01, 9.755924940109253e-01, 9.761440753936768e-01, 9.766916036605835e-01, 9.772351384162903e-01, 9.777746796607971e-01, 9.783103466033936e-01, 9.788420796394348e-01, 9.793699383735657e-01, 9.798939228057861e-01, 9.804141521453857e-01, 9.809306263923645e-01, 9.814432859420776e-01, 9.819522500038147e-01, 9.824575185775757e-01, 9.829591512680054e-01, 9.834571480751038e-01, 9.839515089988708e-01, 9.844423532485962e-01, 9.84929621219635e-01, 9.854133725166321e-01, 9.858936071395874e-01, 9.86370325088501e-01, 9.868431687355042e-01] +relHumOut_dis.phi=[5e-01, 4.868944883346558e-01, 4.937932193279266e-01, 5.080428719520569e-01, 5.249926447868347e-01, 5.429288148880005e-01, 5.612213015556335e-01, 5.796377062797546e-01, 5.980943441390991e-01, 6.165568828582764e-01, 6.350172758102417e-01, 6.53469979763031e-01, 6.719120740890503e-01, 6.903442740440369e-01, 7.08766758441925e-01, 7.271791100502014e-01, 7.455810308456421e-01, 7.639725208282471e-01, 7.823536396026611e-01, 8.007245659828186e-01, 8.190848827362061e-01, 8.371086716651917e-01, 8.531041741371155e-01, 8.66411566734314e-01, 8.773958683013916e-01, 8.865211009979248e-01, 8.942239284515381e-01, 9.007856249809265e-01, 9.064760804176331e-01, 9.114606380462646e-01, 9.158745408058167e-01, 9.198147654533386e-01, 9.233657121658325e-01, 9.265850186347961e-01, 9.295246005058289e-01, 9.322235584259033e-01, 9.347102046012878e-01, 9.370097517967224e-01, 9.391531348228455e-01, 9.411523342132568e-01, 9.430245757102966e-01, 9.447876214981079e-01, 9.464418292045593e-01, 9.480153918266296e-01, 9.494943022727966e-01, 9.50910210609436e-01, 9.522527456283569e-01, 9.535405039787292e-01, 9.54757034778595e-01, 9.559257030487061e-01, 9.570471048355103e-01, 9.581203460693359e-01, 9.591588973999023e-01, 9.60153341293335e-01, 9.611151218414307e-01, 9.620482325553894e-01, 9.629409909248352e-01, 9.638110995292664e-01, 9.646742939949036e-01, 9.655328989028931e-01, 9.663873910903931e-01, 9.672368168830872e-01, 9.680801630020142e-01, 9.689189195632935e-01, 9.697538614273071e-01, 9.705852866172791e-01, 9.714133143424988e-01, 9.722376465797424e-01, 9.7305828332901e-01, 9.73874568939209e-01, 9.746872186660767e-01, 9.754955768585205e-01, 9.763001799583435e-01, 9.771010279655457e-01, 9.778980612754822e-01, 9.786915183067322e-01, 9.794812202453613e-01, 9.802671670913696e-01, 9.810495972633362e-01, 9.81828510761261e-01, 9.826038479804993e-01, 9.833754897117615e-01, 9.841436147689819e-01, 9.849082231521606e-01, 9.856693744659424e-01, 9.864269495010376e-01, 9.871810674667358e-01, 9.879317283630371e-01, 9.886789321899414e-01, 9.894227981567383e-01, 9.90163266658783e-01, 9.909003973007202e-01, 9.916341304779053e-01, 9.923645853996277e-01, 9.930917024612427e-01, 9.93815541267395e-01, 9.945361614227295e-01, 9.952535629272461e-01, 9.959678053855896e-01, 9.966788291931152e-01, 9.973859190940857e-01] hexWetNTU.dryWetCalcs.dryFra=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999896883964539e-01, 9.996822476387024e-01, 9.97657835483551e-01, 9.911808371543884e-01, 9.771228432655334e-01, 9.529135823249816e-01, 9.170734882354737e-01, 8.69372546672821e-01, 8.107308745384216e-01, 7.429676055908203e-01, 6.684896945953369e-01, 5.89992880821228e-01, 5.102112889289856e-01, 4.317289888858795e-01, 3.568454384803772e-01, 2.874822616577148e-01, 2.251207232475281e-01, 1.707644760608673e-01, 1.249276921153069e-01, 8.765064179897308e-02, 5.854394659399986e-02, 3.685919940471649e-02, 2.158032543957233e-02, 1.15274004638195e-02, 5.464714951813221e-03, 2.206021454185247e-03, 7.11037777364254e-04, 1.646740274736658e-04, 2.278989268234e-05, 1.324651293543866e-06, 1.500543689303413e-08, 4.27617056347751e-12, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] hexWetNTU.SHR=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.985707402229309e-01, 9.949047565460205e-01, 9.889982342720032e-01, 9.806062579154968e-01, 9.696928262710571e-01, 9.564260244369507e-01, 9.411467313766479e-01, 9.243189692497253e-01, 9.064730405807495e-01, 8.881492614746094e-01, 8.69848906993866e-01, 8.519970774650574e-01, 8.349184989929199e-01, 8.188273310661316e-01, 8.038284182548523e-01, 7.899285554885864e-01, 7.770543098449707e-01, 7.65074610710144e-01, 7.538261413574219e-01, 7.43139386177063e-01, 7.328643202781677e-01, 7.228900194168091e-01, 7.13151752948761e-01, 7.03621506690979e-01, 6.94288969039917e-01, 6.851479411125182e-01, 6.761925816535949e-01, 6.674175262451173e-01, 6.588174700737001e-01, 6.503873467445374e-01, 6.421222686767578e-01, 6.340175271034241e-01, 6.26068651676178e-01, 6.182712316513062e-01, 6.106211543083191e-01, 6.031143665313721e-01, 5.957468748092651e-01, 5.885151028633118e-01, 5.814152359962463e-01, 5.744439363479614e-01, 5.675977468490601e-01, 5.608734488487244e-01, 5.542678833007812e-01, 5.477779507637024e-01, 5.414008498191833e-01, 5.351336598396301e-01, 5.289735794067383e-01, 5.229181051254272e-01, 5.169644951820374e-01, 5.111104249954224e-01, 5.053533315658569e-01, 4.996910393238068e-01, 4.941211640834808e-01, 4.88641619682312e-01, 4.832502007484436e-01, 4.779449105262756e-01, 4.727237522602081e-01, 4.675847887992859e-01, 4.625261425971985e-01, 4.575459957122803e-01, 4.526425898075104e-01, 4.478141963481903e-01, 4.430592060089111e-01, 4.383759796619415e-01, 4.337629377841949e-01, 4.292185604572296e-01, 4.247413873672485e-01, 4.203299582004547e-01, 4.159829318523407e-01, 4.116988778114319e-01, 4.074765145778656e-01] hexWetNTU.dryWetCalcs.w_FW=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.8150519954836e-09, 1.031147439789493e-05, 3.177387407049537e-04, 2.342179417610168e-03, 8.81915632635355e-03, 2.287718094885349e-02, 4.708644375205051e-02, 8.292652666568742e-02, 1.306274682283401e-01, 1.89269095659256e-01, 2.570324242115021e-01, 3.315102756023407e-01, 4.10007119178772e-01, 4.897887110710144e-01, 5.682709813117981e-01, 6.431545615196228e-01, 7.125177383422852e-01, 7.748792767524719e-01, 8.292354941368103e-01, 8.750723004341125e-01, 9.123493432998657e-01, 9.414560794830322e-01, 9.631407856941223e-01, 9.784196615219116e-01, 9.88472580909729e-01, 9.945352673530579e-01, 9.97793972492218e-01, 9.992889761924744e-01, 9.998353123664856e-01, 9.999772310256958e-01, 9.999986886978149e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] diff --git a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos index de88f193164..dffc615ef56 100644 --- a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos +++ b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos @@ -27,7 +27,7 @@ createPlot( createPlot( id=1, subPlot=3, - y={"RelHumOut_eps.phi", "RelHumOut_dis.phi"}, + y={"relHumOut_eps.phi", "relHumOut_dis.phi"}, autoscale=true, autoerase=true, autoreplot=true, diff --git a/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos b/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos index dc30e024d3d..bf96d7dc290 100644 --- a/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos +++ b/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos @@ -6,8 +6,8 @@ compareVars := "hexWetNTU.sta_b2.T", "hexDis.sta_b2.T", "hexWetNTU_TX.sta_b2.T", - "RelHumOut_eps.phi", - "RelHumOut_dis.phi", + "relHumOut_eps.phi", + "relHumOut_dis.phi", "hexWetNTU.dryWetCalcs.dryFra", "hexDis.dryFra", "hexWetNTU.SHR", From 141c20d8df3375453618c4baba0eae13dc05f8e5 Mon Sep 17 00:00:00 2001 From: Michael Wetter Date: Wed, 10 Mar 2021 12:29:40 -0800 Subject: [PATCH 41/69] Checked out reference result from master --- ...xchangers_Examples_WetCoilCounterFlowPControl.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilCounterFlowPControl.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilCounterFlowPControl.txt index a0b746a27b9..2b999be8b15 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilCounterFlowPControl.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilCounterFlowPControl.txt @@ -1,4 +1,4 @@ -last-generated=2021-02-11 +last-generated=2019-08-15 statistics-initialization= { "nonlinear": "1", @@ -11,11 +11,11 @@ statistics-simulation= "number of continuous time states": "21", "numerical Jacobians": "0" } +hex.Q1_flow=[0e+00, 2.75704052734375e+03, 4.371005859375e+03, 4.677375e+03, 4.7174775390625e+03, 4.722662109375e+03, 4.72329736328125e+03, 4.7233720703125e+03, 4.72338134765625e+03, 4.6608818359375e+03, 4.5526396484375e+03, 4.44387939453125e+03, 4.3345947265625e+03, 4.22479052734375e+03, 4.114474609375e+03, 4.003642333984375e+03, 3.89230224609375e+03, 3.25621826171875e+03, 1.538723022460938e+03, 1.581404418945312e+03, 1.509588745117188e+03, 1.4076337890625e+03, 1.347940551757812e+03, 1.303876708984375e+03, 1.269434326171875e+03, 1.242593505859375e+03, 1.221019775390625e+03, 1.203020751953125e+03, 1.187399536132812e+03, 1.173252685546875e+03, 1.1598779296875e+03, 1.146697387695312e+03, 1.13321728515625e+03, 1.118972534179688e+03, 1.136582763671875e+03, 1.315557373046875e+03, 1.480904052734375e+03, 1.4316630859375e+03, 1.320226440429688e+03, 1.201593505859375e+03, 1.089307495117188e+03, 9.765219116210938e+02, 8.63369140625e+02, 7.528099365234375e+02, 6.526831665039062e+02, 5.573162231445312e+02, 4.817641296386719e+02, 4.253013305664062e+02, 3.693289184570312e+02, 3.133591918945312e+02, 2.5739013671875e+02, 2.014207305908203e+02, 1.454513702392578e+02, 8.948200988769531e+01, 3.351264572143519e+01, -2.245671463012731e+01, -7.842607879638707e+01, -1.343954467773438e+02, -1.903648071289062e+02, -2.463341674804688e+02, -3.023035278320312e+02, -3.582728881835938e+02, -4.142422485351562e+02, -4.702116088867188e+02, -5.222802124023438e+02, -5.182739868164062e+02, -5.18235595703125e+02, -5.182348022460938e+02, -5.182348022460938e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02] +hex.QLat2_flow=[0e+00, -1.601435302734375e+03, -2.71292431640625e+03, -2.933536865234375e+03, -2.9627333984375e+03, -2.96652734375e+03, -2.966994384765625e+03, -2.9670498046875e+03, -2.967056640625e+03, -2.929595947265625e+03, -2.85983447265625e+03, -2.789140625e+03, -2.717630126953125e+03, -2.6453076171875e+03, -2.572180908203125e+03, -2.49824853515625e+03, -2.423517578125e+03, -2.034744140625e+03, -7.645452880859375e+02, -7.779283447265625e+02, -7.315797119140625e+02, -6.561759643554688e+02, -6.114046630859375e+02, -5.786016235351562e+02, -5.528685913085938e+02, -5.327352294921875e+02, -5.164995727539062e+02, -5.029054260253906e+02, -4.910648193359374e+02, -4.803065490722656e+02, -4.701095886230469e+02, -4.600438232421875e+02, -4.497421569824219e+02, -4.388587951660156e+02, -4.478519592285156e+02, -5.72460205078125e+02, -7.019336547851562e+02, -6.691677856445312e+02, -5.86481689453125e+02, -4.99120849609375e+02, -4.1588232421875e+02, -3.321526184082031e+02, -2.478406219482422e+02, -1.675713348388672e+02, -9.693004608154297e+01, -3.401499938964844e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +hex.Q2_flow=[0e+00, -2.711677734375e+03, -4.32728759765625e+03, -4.6704111328125e+03, -4.7165322265625e+03, -4.7225419921875e+03, -4.7232822265625e+03, -4.7233701171875e+03, -4.723380859375e+03, -4.665443359375e+03, -4.5573935546875e+03, -4.448595703125e+03, -4.3392724609375e+03, -4.2294296875e+03, -4.1190751953125e+03, -4.008205322265625e+03, -3.8968271484375e+03, -3.336771240234375e+03, -1.559021362304688e+03, -1.57912060546875e+03, -1.513955322265625e+03, -1.410639282226562e+03, -1.349769165039062e+03, -1.305242919921875e+03, -1.270441040039062e+03, -1.243330932617188e+03, -1.221569458007812e+03, -1.203438598632812e+03, -1.187725952148438e+03, -1.173517456054688e+03, -1.16010498046875e+03, -1.146905639648438e+03, -1.133423095703125e+03, -1.119191650390625e+03, -1.133146118164062e+03, -1.306363159179688e+03, -1.477995483398438e+03, -1.434303588867188e+03, -1.323831787109375e+03, -1.205814819335938e+03, -1.093282104492188e+03, -9.804701538085938e+02, -8.672904663085938e+02, -7.573262939453125e+02, -6.572124633789062e+02, -5.62905029296875e+02, -4.89117431640625e+02, -4.331760864257812e+02, -3.77206787109375e+02, -3.212373046875e+02, -2.652679748535156e+02, -2.092985992431641e+02, -1.533292388916016e+02, -9.735987091064453e+01, -4.139051055908168e+01, 1.457884979248082e+01, 7.054821014404332e+01, 1.265175704956055e+02, 1.824869384765625e+02, 2.38456298828125e+02, 2.944256591796875e+02, 3.5039501953125e+02, 4.063643798828125e+02, 4.62333740234375e+02, 5.165213012695312e+02, 5.18233642578125e+02, 5.18235595703125e+02, 5.1823486328125e+02, 5.182348022460938e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02] time=[0e+00, 3.6e+03] -hex.Q1_flow=[0e+00, 2.757049072265625e+03, 4.3709970703125e+03, 4.67737548828125e+03, 4.71747705078125e+03, 4.722654296875e+03, 4.72329541015625e+03, 4.72337158203125e+03, 4.72338037109375e+03, 4.6608818359375e+03, 4.5526396484375e+03, 4.44387939453125e+03, 4.3345947265625e+03, 4.22479052734375e+03, 4.114474609375e+03, 4.003642333984375e+03, 3.89230224609375e+03, 3.25621826171875e+03, 1.53875439453125e+03, 1.581388061523438e+03, 1.50960107421875e+03, 1.407634887695312e+03, 1.347941040039062e+03, 1.303877685546875e+03, 1.269434936523438e+03, 1.242593139648438e+03, 1.221021118164062e+03, 1.2030205078125e+03, 1.187399780273438e+03, 1.173253051757812e+03, 1.159877685546875e+03, 1.146697998046875e+03, 1.133216796875e+03, 1.118973510742188e+03, 1.136584228515625e+03, 1.315557983398438e+03, 1.480896362304688e+03, 1.431656860351562e+03, 1.320226318359375e+03, 1.201511474609375e+03, 1.08930615234375e+03, 9.765215454101562e+02, 8.6336962890625e+02, 7.52765380859375e+02, 6.5268408203125e+02, 5.57281494140625e+02, 4.817546081542969e+02, 4.253046264648438e+02, 3.693291931152344e+02, 3.133594665527344e+02, 2.573900451660156e+02, 2.014207305908203e+02, 1.454513702392578e+02, 8.948200988769531e+01, 3.351264572143519e+01, -2.245671463012731e+01, -7.842607879638707e+01, -1.343954467773438e+02, -1.903648071289062e+02, -2.463341674804688e+02, -3.023035278320312e+02, -3.582728881835938e+02, -4.142422485351562e+02, -4.702116088867188e+02, -5.222802124023438e+02, -5.182739868164062e+02, -5.18235595703125e+02, -5.182348022460938e+02, -5.182348022460938e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02, -5.1823486328125e+02] -hex.Q2_flow=[0e+00, -2.71168505859375e+03, -4.3272822265625e+03, -4.670412109375e+03, -4.71653076171875e+03, -4.72253271484375e+03, -4.7232802734375e+03, -4.72336962890625e+03, -4.7233798828125e+03, -4.665443359375e+03, -4.5573935546875e+03, -4.448595703125e+03, -4.3392724609375e+03, -4.2294296875e+03, -4.1190751953125e+03, -4.008205322265625e+03, -3.8968271484375e+03, -3.336771240234375e+03, -1.55897998046875e+03, -1.57910498046875e+03, -1.513967529296875e+03, -1.410640625e+03, -1.349769897460938e+03, -1.30524365234375e+03, -1.270441772460938e+03, -1.24333056640625e+03, -1.221570922851562e+03, -1.2034384765625e+03, -1.187725952148438e+03, -1.173517944335938e+03, -1.160104614257812e+03, -1.146906127929688e+03, -1.133422607421875e+03, -1.1191923828125e+03, -1.133147705078125e+03, -1.30636376953125e+03, -1.47798779296875e+03, -1.434297241210938e+03, -1.323831787109375e+03, -1.205845703125e+03, -1.093279663085938e+03, -9.804696655273438e+02, -8.67291015625e+02, -7.573155517578125e+02, -6.572130737304688e+02, -5.628729858398438e+02, -4.8911181640625e+02, -4.33176513671875e+02, -3.772066955566406e+02, -3.212373352050781e+02, -2.652679443359375e+02, -2.092985992431641e+02, -1.533292388916016e+02, -9.735987091064453e+01, -4.139051055908168e+01, 1.457884979248082e+01, 7.054821014404332e+01, 1.265175704956055e+02, 1.824869384765625e+02, 2.38456298828125e+02, 2.944256591796875e+02, 3.5039501953125e+02, 4.063643798828125e+02, 4.62333740234375e+02, 5.165213012695312e+02, 5.18233642578125e+02, 5.18235595703125e+02, 5.1823486328125e+02, 5.182348022460938e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02, 5.1823486328125e+02] -hex.QLat2_flow=[0e+00, -1.601441528320312e+03, -2.71292041015625e+03, -2.933536865234375e+03, -2.962733154296875e+03, -2.966521728515625e+03, -2.9669931640625e+03, -2.96704931640625e+03, -2.967055908203125e+03, -2.929595947265625e+03, -2.85983447265625e+03, -2.789140625e+03, -2.717630126953125e+03, -2.6453076171875e+03, -2.572180908203125e+03, -2.49824853515625e+03, -2.423517578125e+03, -2.034744140625e+03, -7.64484130859375e+02, -7.779137573242188e+02, -7.315879516601562e+02, -6.561768188476562e+02, -6.114049682617188e+02, -5.7860205078125e+02, -5.52869140625e+02, -5.327350463867188e+02, -5.165005493164062e+02, -5.029054260253906e+02, -4.910648193359374e+02, -4.803068542480469e+02, -4.701093139648438e+02, -4.600442810058594e+02, -4.497417297363281e+02, -4.388592529296875e+02, -4.478530883789062e+02, -5.72460693359375e+02, -7.019293212890625e+02, -6.6916357421875e+02, -5.86481689453125e+02, -4.990892639160156e+02, -4.158782653808594e+02, -3.321520385742188e+02, -2.478411712646484e+02, -1.675281982421875e+02, -9.692990875244141e+01, -3.397085952758789e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -hex.m1_flow=[1.000000014901161e-01, 4.499713331460953e-02, 8.75592827796936e-02, 9.819523245096207e-02, 9.976439923048019e-02, 9.997084736824036e-02, 9.999652206897736e-02, 9.999959170818329e-02, 9.999989718198776e-02, 9.999998658895493e-02, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 7.787376642227173e-02, 2.821885421872139e-02, 3.229114040732384e-02, 3.142013400793076e-02, 2.997683919966221e-02, 2.969341725111008e-02, 2.980508096516132e-02, 3.021165728569031e-02, 3.089253604412079e-02, 3.181065618991852e-02, 3.294619172811509e-02, 3.429338708519936e-02, 3.585577756166458e-02, 3.764564171433449e-02, 3.968346118927002e-02, 4.199850186705589e-02, 4.462975636124611e-02, 4.980791360139847e-02, 6.852226704359055e-02, 9.176640212535858e-02, 9.871965646743774e-02, 9.982803463935852e-02, 9.997829049825668e-02, 9.99973937869072e-02, 9.999967366456985e-02, 9.999998658895493e-02, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01] hex.m2_flow=[1.71464279294014e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01] +hex.m1_flow=[1.000000014901161e-01, 4.499713331460953e-02, 8.755931258201599e-02, 9.819523245096207e-02, 9.976446628570557e-02, 9.997116029262543e-02, 9.999649971723557e-02, 9.999953955411911e-02, 9.999993443489075e-02, 9.999999403953552e-02, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 7.787376642227173e-02, 2.821899019181728e-02, 3.229160606861115e-02, 3.14197726547718e-02, 2.997682429850101e-02, 2.969340980052948e-02, 2.980503626167774e-02, 3.021164610981941e-02, 3.089254908263683e-02, 3.181061521172523e-02, 3.294620290398598e-02, 3.429337590932847e-02, 3.585576638579369e-02, 3.764564916491508e-02, 3.968343511223793e-02, 4.199852049350739e-02, 4.462969303131104e-02, 4.98078241944313e-02, 6.852222234010696e-02, 9.176713973283768e-02, 9.872009605169296e-02, 9.982802718877792e-02, 9.997863322496414e-02, 9.999746084213257e-02, 9.999970346689224e-02, 9.999999403953552e-02, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01, 1.000000014901161e-01] +con.u_m=[2.931499938964844e+02, 2.958224792480469e+02, 2.924381713867188e+02, 2.912311096191406e+02, 2.910527648925781e+02, 2.910289916992188e+02, 2.910260314941406e+02, 2.910256652832031e+02, 2.910256042480469e+02, 2.911280212402344e+02, 2.913914489746094e+02, 2.9165625e+02, 2.919188842773438e+02, 2.921793518066406e+02, 2.924376525878906e+02, 2.926937561035156e+02, 2.929476928710938e+02, 2.935419921875e+02, 2.974464721679688e+02, 2.976298522949219e+02, 2.976971435546875e+02, 2.978981018066406e+02, 2.980192565917969e+02, 2.981035766601562e+02, 2.98168701171875e+02, 2.9821875e+02, 2.982581481933594e+02, 2.982902526855469e+02, 2.983174438476562e+02, 2.983414916992188e+02, 2.983637390136719e+02, 2.983852233886719e+02, 2.984068603515625e+02, 2.984295043945312e+02, 2.984250793457031e+02, 2.981495056152344e+02, 2.97809326171875e+02, 2.978304138183594e+02, 2.980099792480469e+02, 2.982133178710938e+02, 2.984141540527344e+02, 2.986123657226562e+02, 2.988089599609375e+02, 2.990046997070312e+02, 2.992059936523438e+02, 2.994113464355469e+02, 2.996726379394531e+02, 3.000566711425781e+02, 3.004470520019531e+02, 3.008374328613281e+02, 3.012278442382812e+02, 3.016182250976562e+02, 3.020086364746094e+02, 3.023990173339844e+02, 3.027894287109375e+02, 3.031798400878906e+02, 3.035702209472656e+02, 3.039606323242188e+02, 3.043510131835938e+02, 3.047414245605469e+02, 3.051318054199219e+02, 3.05522216796875e+02, 3.0591259765625e+02, 3.063030090332031e+02, 3.066911010742188e+02, 3.067642822265625e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02] con.u_s=[2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.981499938964844e+02, 2.975499877929688e+02, 2.966499938964844e+02, 2.9575e+02, 2.948500061035156e+02, 2.939500122070312e+02, 2.930499877929688e+02, 2.921499938964844e+02, 2.9125e+02, 2.903500061035156e+02, 2.894500122070312e+02, 2.885499877929688e+02, 2.876499938964844e+02, 2.8675e+02, 2.858500061035156e+02, 2.849500122070312e+02, 2.840499877929688e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.831499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02, 2.881499938964844e+02] -con.u_m=[2.931499938964844e+02, 2.958224792480469e+02, 2.924381408691406e+02, 2.912311096191406e+02, 2.910527648925781e+02, 2.910290222167969e+02, 2.910260314941406e+02, 2.910256652832031e+02, 2.91025634765625e+02, 2.911280212402344e+02, 2.913914489746094e+02, 2.9165625e+02, 2.919188842773438e+02, 2.921793518066406e+02, 2.924376525878906e+02, 2.926937561035156e+02, 2.929476928710938e+02, 2.935419921875e+02, 2.974464721679688e+02, 2.976298828125e+02, 2.976971130371094e+02, 2.978981018066406e+02, 2.980192565917969e+02, 2.981035766601562e+02, 2.98168701171875e+02, 2.9821875e+02, 2.982581481933594e+02, 2.982902526855469e+02, 2.983174438476562e+02, 2.983414916992188e+02, 2.983637390136719e+02, 2.983852233886719e+02, 2.984068603515625e+02, 2.984295043945312e+02, 2.984250793457031e+02, 2.981495056152344e+02, 2.978093566894531e+02, 2.978304138183594e+02, 2.980099792480469e+02, 2.982133178710938e+02, 2.984141845703125e+02, 2.986123657226562e+02, 2.988089599609375e+02, 2.990047302246094e+02, 2.992059936523438e+02, 2.994114685058594e+02, 2.996727294921875e+02, 3.000567321777344e+02, 3.004470520019531e+02, 3.008374328613281e+02, 3.012278442382812e+02, 3.016182250976562e+02, 3.020086364746094e+02, 3.023990173339844e+02, 3.027894287109375e+02, 3.031798400878906e+02, 3.035702209472656e+02, 3.039606323242188e+02, 3.043510131835938e+02, 3.047414245605469e+02, 3.051318054199219e+02, 3.05522216796875e+02, 3.0591259765625e+02, 3.063030090332031e+02, 3.066911010742188e+02, 3.067642822265625e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02, 3.067648010253906e+02] From 6ea90efc02febb736991ec578903ea31addabad3 Mon Sep 17 00:00:00 2001 From: Michael Wetter Date: Wed, 10 Mar 2021 12:29:49 -0800 Subject: [PATCH 42/69] Reset nEle --- .../Fluid/HeatExchangers/Examples/WetCoilCounterFlowMassFlow.mo | 1 - 1 file changed, 1 deletion(-) diff --git a/Buildings/Fluid/HeatExchangers/Examples/WetCoilCounterFlowMassFlow.mo b/Buildings/Fluid/HeatExchangers/Examples/WetCoilCounterFlowMassFlow.mo index 652e2a0d793..4eeb96f5729 100644 --- a/Buildings/Fluid/HeatExchangers/Examples/WetCoilCounterFlowMassFlow.mo +++ b/Buildings/Fluid/HeatExchangers/Examples/WetCoilCounterFlowMassFlow.mo @@ -24,7 +24,6 @@ model WetCoilCounterFlowMassFlow T_a2_nominal, T_b2_nominal), show_T=true, - nEle=30, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial) annotation (Placement(transformation(extent={{80,20}, {100,40}}))); From 8c3b73f0d711826c6a9c013c306a3a8014a95860 Mon Sep 17 00:00:00 2001 From: Michael Wetter Date: Wed, 10 Mar 2021 12:30:08 -0800 Subject: [PATCH 43/69] Reset nEle --- ...xchangers_Examples_WetCoilCounterFlowMassFlow.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilCounterFlowMassFlow.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilCounterFlowMassFlow.txt index 53e81d1d5a3..10e4e10e994 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilCounterFlowMassFlow.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilCounterFlowMassFlow.txt @@ -1,13 +1,13 @@ -last-generated=2021-02-11 +last-generated=2021-03-10 statistics-simulation= { "linear": "0", "nonlinear": "0", - "number of continuous time states": "122", + "number of continuous time states": "18", "numerical Jacobians": "0" } time=[0e+00, 3.6e+03] -hex.Q2_flow=[0e+00, -3.110276611328125e+03, -3.58151513671875e+03, -3.61039599609375e+03, -3.61384130859375e+03, -3.61414501953125e+03, -3.614170654296875e+03, -3.61417333984375e+03, -3.61417431640625e+03, -3.614174560546875e+03, -3.614174560546875e+03, -3.385810791015625e+03, -3.153666259765625e+03, -2.900748046875e+03, -2.621957763671875e+03, -2.313746826171875e+03, -1.972105102539062e+03, -1.592129516601562e+03, -1.169521728515625e+03, -7.009871826171875e+02, -3.116614074707031e+02, -2.781609497070312e+02, -2.459864349365234e+02, -2.192055816650391e+02, -1.973345336914062e+02, -1.794876251220703e+02, -1.649358825683594e+02, -1.53082290649414e+02, -1.434377136230468e+02, -1.356002197265625e+02, -1.292404937744141e+02, -1.240881500244141e+02, -1.199218215942383e+02, -1.165603103637695e+02, -1.138550338745117e+02, -1.116838150024414e+02, -1.099468460083008e+02, -1.085623779296875e+02, -1.074634780883789e+02, -1.065951995849609e+02, -1.059123992919922e+02, -1.053780746459961e+02, -1.049619903564453e+02, -1.046394958496094e+02, -1.043906326293945e+02, -1.041992797851562e+02, -1.040525741577148e+02, -1.03940299987793e+02, -1.038544692993164e+02, -1.037888412475586e+02, -1.037386093139648e+02, -1.023245544433594e+02, -9.930433654785156e+01, -9.452988433837891e+01, -8.655982971191398e+01, -6.604895019531257e+01, -8.561934661865241e+01, -9.146358489990234e+01, -9.256145477294922e+01, -1.016159896850586e+02, -1.106873016357422e+02, -1.086308898925781e+02, -1.054670257568359e+02, -1.023225173950195e+02, -9.912492370605469e+01, -9.567884063720703e+01, -9.170217132568359e+01, -8.66962890625e+01, -7.955205535888672e+01, -6.640378570556641e+01, -4.904168701171875e+01, -5.117843246459961e+01, -5.297861862182617e+01, -5.453164672851562e+01, -5.58683967590332e+01, -5.701535797119141e+01, -5.805288696289062e+01, -5.898267364501953e+01, -5.979486465454102e+01, -6.053921890258789e+01, -6.11611442565918e+01, -6.172134017944336e+01, -6.219583129882812e+01, -6.256732177734375e+01, -6.29022331237793e+01, -6.315346145629883e+01, -6.331136322021484e+01, -6.343533706665039e+01, -6.348294830322266e+01, -6.34527702331543e+01, -6.338367462158203e+01, -6.326083755493164e+01, -6.307263565063477e+01, -6.283753967285156e+01, -6.258300399780273e+01, -6.227473831176758e+01, -6.191384124755859e+01, -6.156047821044922e+01, -6.117024230957031e+01, -6.074472045898438e+01, -6.030487060546875e+01] -hex.QLat2_flow=[0e+00, -1.770729370117188e+03, -2.23048828125e+03, -2.255543701171875e+03, -2.258554443359375e+03, -2.25882080078125e+03, -2.25884326171875e+03, -2.258845703125e+03, -2.258846435546875e+03, -2.2588466796875e+03, -2.258846923828125e+03, -2.10141015625e+03, -1.942261108398438e+03, -1.76729443359375e+03, -1.572004150390625e+03, -1.353193969726562e+03, -1.107199951171875e+03, -8.295072021484375e+02, -5.210032958984375e+02, -2.117844390869141e+02, -2.040449905395508e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -1.390436887741089e+00, -1.132792854309092e+01, -2.745977401733402e+01, -3.441253900527845e-01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -1.048616021871567e-01, -2.927575707435608e-01, -4.984182417392731e-01, -8.193886280059814e-01, -1.105189919471741e+00, -1.459927558898926e+00, -1.832384824752808e+00, -2.164078712463379e+00, -2.572776317596436e+00, -2.9644455909729e+00, -3.311381578445435e+00, -3.71753716468811e+00, -4.104832172393799e+00, -4.449301242828369e+00, -4.821104526519775e+00, -5.196287631988525e+00, -5.529552459716797e+00, -5.849367618560791e+00, -6.209599494934082e+00, -6.527639389038086e+00, -6.805487155914307e+00, -7.127359867095947e+00, -7.42711353302002e+00, -7.689456462860107e+00, -7.944731712341309e+00] -hex.port_a2.m_flow=[0e+00, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.121477708220482e-01, 8.411082625389099e-02, 5.607384815812111e-02, 2.803885564208013e-02, 6.551937985755592e-06, -2.79632508754732e-02, -5.592650175094604e-02, -8.388975262641907e-02, -1.118530035018921e-01, -1.398162543773651e-01, -1.260830163955688e-01, -1.120737865567207e-01, -9.806456416845322e-02, -8.40553417801857e-02, -7.004611939191818e-02, -5.603689327836037e-02, -4.202767089009285e-02, -2.801833488047123e-02, -1.401256117969751e-02, -3.578618816391099e-06, 0e+00, 0e+00, 0e+00, 0e+00, 2.86490828890068e-13, 0e+00, 2.86490828890068e-13, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -hex.port_b2.m_flow=[-1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.120000034570694e-01, -8.399999886751175e-02, -5.60000017285347e-02, -2.800000086426717e-02, 4.255494006912755e-16, 2.800000086426753e-02, 5.60000017285347e-02, 8.399999886751175e-02, 1.120000034570694e-01, 1.400000005960464e-01, 1.260000020265579e-01, 1.120000034570694e-01, 9.799999743700027e-02, 8.399999886751175e-02, 7.000000029802322e-02, 5.60000017285347e-02, 4.199999943375587e-02, 2.800000086426735e-02, 1.400000043213367e-02, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00] +hex.Q2_flow=[0e+00, -3.35724072265625e+03, -3.35776806640625e+03, -3.3577685546875e+03, -3.357768310546875e+03, -3.357768310546875e+03, -3.357768310546875e+03, -3.357768310546875e+03, -3.357768310546875e+03, -3.357768310546875e+03, -3.357768310546875e+03, -3.168929443359375e+03, -2.95691552734375e+03, -2.7232236328125e+03, -2.46500927734375e+03, -2.178970703125e+03, -1.8612109375e+03, -1.506968017578125e+03, -1.109796752929688e+03, -6.705416259765625e+02, -3.106672973632812e+02, -2.653861999511719e+02, -2.344584197998047e+02, -2.091910705566406e+02, -1.885671081542969e+02, -1.717531433105469e+02, -1.580615997314453e+02, -1.469261627197265e+02, -1.378809509277343e+02, -1.305425109863281e+02, -1.245958404541016e+02, -1.197823257446289e+02, -1.158906402587891e+02, -1.127478637695312e+02, -1.102123718261719e+02, -1.081687622070312e+02, -1.065231857299805e+02, -1.051992874145508e+02, -1.041350326538086e+02, -1.032801208496094e+02, -1.02593864440918e+02, -1.020433654785156e+02, -1.016021270751953e+02, -1.012488555908203e+02, -1.009661026000977e+02, -1.007395858764648e+02, -1.005583114624023e+02, -1.004132385253906e+02, -1.002971115112305e+02, -1.002042846679688e+02, -1.00129997253418e+02, -9.628464508056641e+01, -9.185540008544922e+01, -8.459843444824219e+01, -7.109683227539055e+01, -4.790125274658208e+01, -6.07230186462404e+01, -9.319252014160156e+01, -1.063787994384766e+02, -1.117153625488281e+02, -1.137839889526367e+02, -1.072048416137695e+02, -1.029885635375977e+02, -9.891802978515625e+01, -9.474623870849609e+01, -9.014743804931641e+01, -8.463392639160156e+01, -7.740571594238281e+01, -6.6995849609375e+01, -5.004901885986328e+01, -3.208780288696289e+01, -2.829523277282715e+01, -2.501420021057129e+01, -2.276480865478516e+01, -2.1202392578125e+01, -2.008987426757812e+01, -1.927111625671387e+01, -1.936482429504395e+01, -2.010286331176758e+01, -2.035625267028809e+01, -2.034379196166992e+01, -2.014639282226562e+01, -1.982208633422852e+01, -1.941048812866211e+01, -1.894001579284668e+01, -1.843130683898926e+01, -1.789902877807617e+01, -1.826605796813965e+01, -1.835028076171875e+01, -1.82096004486084e+01, -1.791963958740234e+01, -1.752897071838379e+01, -1.707181739807129e+01, -1.657237243652344e+01, -1.604782676696777e+01, -1.551060009002686e+01, -1.496734428405762e+01, -1.493306541442871e+01, -1.500292301177979e+01, -1.487347602844238e+01, -1.462802505493164e+01] +hex.QLat2_flow=[0e+00, -2.0986884765625e+03, -2.098995361328125e+03, -2.09899560546875e+03, -2.098995361328125e+03, -2.098995361328125e+03, -2.098995361328125e+03, -2.098995361328125e+03, -2.098995361328125e+03, -2.098995361328125e+03, -2.098995361328125e+03, -1.97084423828125e+03, -1.825814331054688e+03, -1.664005859375e+03, -1.4829150390625e+03, -1.279582763671875e+03, -1.050468994140625e+03, -7.912107543945312e+02, -4.959508361816406e+02, -1.815044097900391e+02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -2.005756616592602e+00, -1.835180664062487e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -8.479750752449036e-01, -2.874659061431885e+00, -3.850511789321899e+00, -4.272049427032471e+00, -4.383476257324219e+00, -4.323328495025635e+00, -4.168140411376953e+00, -3.963367938995361e+00, -3.737682342529297e+00, -3.507412195205688e+00, -4.554695606231689e+00, -5.319596290588379e+00, -5.644732475280762e+00, -5.723199367523193e+00, -5.660752296447754e+00, -5.517632961273193e+00, -5.329239368438721e+00, -5.116263866424561e+00, -4.891851425170898e+00, -4.664390563964844e+00, -5.085465431213379e+00, -5.822821140289307e+00, -6.148534774780273e+00, -6.246139049530029e+00] +hex.port_a2.m_flow=[0e+00, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.120196580886841e-01, 8.401474356651306e-02, 5.600982904434204e-02, 2.800508216023427e-02, 8.734673995655225e-07, -2.799555845558661e-02, -5.598987266421318e-02, -8.398351073265076e-02, -1.119800731539726e-01, -1.39975443482399e-01, -1.260110586881638e-01, -1.120098307728767e-01, -9.800859540700912e-02, -8.400736749172211e-02, -7.000613957643509e-02, -5.600491538643837e-02, -4.200368374586105e-02, -2.800245769321918e-02, -1.402722019702196e-02, -4.358233240964182e-07, 0e+00, 0e+00, -1.43245414445034e-13, 0e+00, 0e+00, 0e+00, 2.86490828890068e-13, 0e+00, 0e+00, -1.43245414445034e-13, 2.86490828890068e-13, 0e+00, 0e+00, 0e+00, -1.43245414445034e-13, 0e+00, 0e+00, 0e+00, -1.43245414445034e-13, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +hex.port_b2.m_flow=[-1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.120000034570694e-01, -8.399999886751175e-02, -5.60000017285347e-02, -2.800000086426717e-02, 4.255373436036178e-16, 2.800000086426753e-02, 5.60000017285347e-02, 8.399999886751175e-02, 1.120000034570694e-01, 1.400000005960464e-01, 1.260000020265579e-01, 1.120000034570694e-01, 9.799999743700027e-02, 8.399999886751175e-02, 7.000000029802322e-02, 5.60000017285347e-02, 4.199999943375587e-02, 2.800000086426735e-02, 1.400000043213367e-02, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00] From f6364f536fae8472a29fe48a544b5318ec54fb4e Mon Sep 17 00:00:00 2001 From: Michael Wetter Date: Wed, 10 Mar 2021 12:30:22 -0800 Subject: [PATCH 44/69] Removed storing protected variables --- .../Examples/WetCoilEffectivenessNTUMassFlow.mos | 3 --- .../HeatExchangers/Validation/WetCoilEffectivenessNTU.mos | 5 +---- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mos b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mos index 1d4136165d0..8604ee61fc6 100644 --- a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mos +++ b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mos @@ -1,11 +1,8 @@ -old_StoreProtectedVariables = Advanced.StoreProtectedVariables; -Advanced.StoreProtectedVariables = true; simulateModel("Buildings.Fluid.HeatExchangers.Examples.WetCoilEffectivenessNTUMassFlow", stopTime=3600, method="cvode", tolerance=1e-6, resultFile="WetCoilEffectivenessNTUMassFlow"); -Advanced.StoreProtectedVariables = old_StoreProtectedVariables; createPlot( id=1, position={0, 0, 782, 636}, diff --git a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos index dffc615ef56..7a70da28aec 100644 --- a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos +++ b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos @@ -1,11 +1,8 @@ -old_StoreProtectedVariables = Advanced.StoreProtectedVariables; -Advanced.StoreProtectedVariables = true; -simulateModel("Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU", +simulateModel("Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU", stopTime=100, method="cvode", tolerance=1e-6, resultFile="WetCoilEffectivenessNTU"); -Advanced.StoreProtectedVariables = old_StoreProtectedVariables; createPlot( id=1, position={59, 59, 1186, 1286}, From f4ac9ddb2c31fec4a35a3d14b7f229ca85b44a2b Mon Sep 17 00:00:00 2001 From: Michael Wetter Date: Wed, 10 Mar 2021 14:08:25 -0800 Subject: [PATCH 45/69] Reverted to master --- ...HeatExchangers_Examples_WetCoilCounterFlowMassFlow.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilCounterFlowMassFlow.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilCounterFlowMassFlow.txt index 10e4e10e994..8756b693e9b 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilCounterFlowMassFlow.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Examples_WetCoilCounterFlowMassFlow.txt @@ -1,4 +1,4 @@ -last-generated=2021-03-10 +last-generated=2019-08-15 statistics-simulation= { "linear": "0", @@ -6,8 +6,8 @@ statistics-simulation= "number of continuous time states": "18", "numerical Jacobians": "0" } -time=[0e+00, 3.6e+03] -hex.Q2_flow=[0e+00, -3.35724072265625e+03, -3.35776806640625e+03, -3.3577685546875e+03, -3.357768310546875e+03, -3.357768310546875e+03, -3.357768310546875e+03, -3.357768310546875e+03, -3.357768310546875e+03, -3.357768310546875e+03, -3.357768310546875e+03, -3.168929443359375e+03, -2.95691552734375e+03, -2.7232236328125e+03, -2.46500927734375e+03, -2.178970703125e+03, -1.8612109375e+03, -1.506968017578125e+03, -1.109796752929688e+03, -6.705416259765625e+02, -3.106672973632812e+02, -2.653861999511719e+02, -2.344584197998047e+02, -2.091910705566406e+02, -1.885671081542969e+02, -1.717531433105469e+02, -1.580615997314453e+02, -1.469261627197265e+02, -1.378809509277343e+02, -1.305425109863281e+02, -1.245958404541016e+02, -1.197823257446289e+02, -1.158906402587891e+02, -1.127478637695312e+02, -1.102123718261719e+02, -1.081687622070312e+02, -1.065231857299805e+02, -1.051992874145508e+02, -1.041350326538086e+02, -1.032801208496094e+02, -1.02593864440918e+02, -1.020433654785156e+02, -1.016021270751953e+02, -1.012488555908203e+02, -1.009661026000977e+02, -1.007395858764648e+02, -1.005583114624023e+02, -1.004132385253906e+02, -1.002971115112305e+02, -1.002042846679688e+02, -1.00129997253418e+02, -9.628464508056641e+01, -9.185540008544922e+01, -8.459843444824219e+01, -7.109683227539055e+01, -4.790125274658208e+01, -6.07230186462404e+01, -9.319252014160156e+01, -1.063787994384766e+02, -1.117153625488281e+02, -1.137839889526367e+02, -1.072048416137695e+02, -1.029885635375977e+02, -9.891802978515625e+01, -9.474623870849609e+01, -9.014743804931641e+01, -8.463392639160156e+01, -7.740571594238281e+01, -6.6995849609375e+01, -5.004901885986328e+01, -3.208780288696289e+01, -2.829523277282715e+01, -2.501420021057129e+01, -2.276480865478516e+01, -2.1202392578125e+01, -2.008987426757812e+01, -1.927111625671387e+01, -1.936482429504395e+01, -2.010286331176758e+01, -2.035625267028809e+01, -2.034379196166992e+01, -2.014639282226562e+01, -1.982208633422852e+01, -1.941048812866211e+01, -1.894001579284668e+01, -1.843130683898926e+01, -1.789902877807617e+01, -1.826605796813965e+01, -1.835028076171875e+01, -1.82096004486084e+01, -1.791963958740234e+01, -1.752897071838379e+01, -1.707181739807129e+01, -1.657237243652344e+01, -1.604782676696777e+01, -1.551060009002686e+01, -1.496734428405762e+01, -1.493306541442871e+01, -1.500292301177979e+01, -1.487347602844238e+01, -1.462802505493164e+01] hex.QLat2_flow=[0e+00, -2.0986884765625e+03, -2.098995361328125e+03, -2.09899560546875e+03, -2.098995361328125e+03, -2.098995361328125e+03, -2.098995361328125e+03, -2.098995361328125e+03, -2.098995361328125e+03, -2.098995361328125e+03, -2.098995361328125e+03, -1.97084423828125e+03, -1.825814331054688e+03, -1.664005859375e+03, -1.4829150390625e+03, -1.279582763671875e+03, -1.050468994140625e+03, -7.912107543945312e+02, -4.959508361816406e+02, -1.815044097900391e+02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -2.005756616592602e+00, -1.835180664062487e+01, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -8.479750752449036e-01, -2.874659061431885e+00, -3.850511789321899e+00, -4.272049427032471e+00, -4.383476257324219e+00, -4.323328495025635e+00, -4.168140411376953e+00, -3.963367938995361e+00, -3.737682342529297e+00, -3.507412195205688e+00, -4.554695606231689e+00, -5.319596290588379e+00, -5.644732475280762e+00, -5.723199367523193e+00, -5.660752296447754e+00, -5.517632961273193e+00, -5.329239368438721e+00, -5.116263866424561e+00, -4.891851425170898e+00, -4.664390563964844e+00, -5.085465431213379e+00, -5.822821140289307e+00, -6.148534774780273e+00, -6.246139049530029e+00] +hex.Q2_flow=[0e+00, -3.35724072265625e+03, -3.35776806640625e+03, -3.3577685546875e+03, -3.357768310546875e+03, -3.357768310546875e+03, -3.357768310546875e+03, -3.357768310546875e+03, -3.357768310546875e+03, -3.357768310546875e+03, -3.357768310546875e+03, -3.168929443359375e+03, -2.95691552734375e+03, -2.7232236328125e+03, -2.46500927734375e+03, -2.178970703125e+03, -1.8612109375e+03, -1.506968017578125e+03, -1.109796752929688e+03, -6.705416259765625e+02, -3.106672973632812e+02, -2.653861999511719e+02, -2.344584197998047e+02, -2.091910705566406e+02, -1.885671081542969e+02, -1.717531433105469e+02, -1.580615997314453e+02, -1.469261627197265e+02, -1.378809509277343e+02, -1.305425109863281e+02, -1.245958404541016e+02, -1.197823257446289e+02, -1.158906402587891e+02, -1.127478637695312e+02, -1.102123718261719e+02, -1.081687622070312e+02, -1.065231857299805e+02, -1.051992874145508e+02, -1.041350326538086e+02, -1.032801208496094e+02, -1.02593864440918e+02, -1.020433654785156e+02, -1.016021270751953e+02, -1.012488555908203e+02, -1.009661026000977e+02, -1.007395858764648e+02, -1.005583114624023e+02, -1.004132385253906e+02, -1.002971115112305e+02, -1.002042846679688e+02, -1.00129997253418e+02, -9.628464508056641e+01, -9.185540008544922e+01, -8.459843444824219e+01, -7.109683227539055e+01, -4.790125274658208e+01, -6.07230186462404e+01, -9.319252014160156e+01, -1.063787994384766e+02, -1.117153625488281e+02, -1.137839889526367e+02, -1.072048416137695e+02, -1.029885635375977e+02, -9.891802978515625e+01, -9.474623870849609e+01, -9.014743804931641e+01, -8.463392639160156e+01, -7.740571594238281e+01, -6.6995849609375e+01, -5.004901885986328e+01, -3.208780288696289e+01, -2.829523277282715e+01, -2.501420021057129e+01, -2.276480865478516e+01, -2.1202392578125e+01, -2.008987426757812e+01, -1.927111625671387e+01, -1.936482429504395e+01, -2.010286331176758e+01, -2.035625267028809e+01, -2.034379196166992e+01, -2.014639282226562e+01, -1.982208633422852e+01, -1.941048812866211e+01, -1.894001579284668e+01, -1.843130683898926e+01, -1.789902877807617e+01, -1.826605796813965e+01, -1.835028076171875e+01, -1.82096004486084e+01, -1.791963958740234e+01, -1.752897071838379e+01, -1.707181739807129e+01, -1.657237243652344e+01, -1.604782676696777e+01, -1.551060009002686e+01, -1.496734428405762e+01, -1.493306541442871e+01, -1.500292301177979e+01, -1.487347602844238e+01, -1.462802505493164e+01] +time=[0e+00, 3.6e+03] +hex.port_b2.m_flow=[-1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.120000034570694e-01, -8.399999886751175e-02, -5.60000017285347e-02, -2.800000086426717e-02, 4.255373436036178e-16, 2.800000086426753e-02, 5.60000017285347e-02, 8.399999886751175e-02, 1.120000034570694e-01, 1.400000005960464e-01, 1.260000020265579e-01, 1.120000034570694e-01, 9.799999743700027e-02, 8.399999886751175e-02, 7.000000029802322e-02, 5.60000017285347e-02, 4.199999943375587e-02, 2.800000086426735e-02, 1.400000043213367e-02, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, -0e+00] hex.port_a2.m_flow=[0e+00, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.400000005960464e-01, 1.120196580886841e-01, 8.401474356651306e-02, 5.600982904434204e-02, 2.800508216023427e-02, 8.734673995655225e-07, -2.799555845558661e-02, -5.598987266421318e-02, -8.398351073265076e-02, -1.119800731539726e-01, -1.39975443482399e-01, -1.260110586881638e-01, -1.120098307728767e-01, -9.800859540700912e-02, -8.400736749172211e-02, -7.000613957643509e-02, -5.600491538643837e-02, -4.200368374586105e-02, -2.800245769321918e-02, -1.402722019702196e-02, -4.358233240964182e-07, 0e+00, 0e+00, -1.43245414445034e-13, 0e+00, 0e+00, 0e+00, 2.86490828890068e-13, 0e+00, 0e+00, -1.43245414445034e-13, 2.86490828890068e-13, 0e+00, 0e+00, 0e+00, -1.43245414445034e-13, 0e+00, 0e+00, 0e+00, -1.43245414445034e-13, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -hex.port_b2.m_flow=[-1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.400000005960464e-01, -1.120000034570694e-01, -8.399999886751175e-02, -5.60000017285347e-02, -2.800000086426717e-02, 4.255373436036178e-16, 2.800000086426753e-02, 5.60000017285347e-02, 8.399999886751175e-02, 1.120000034570694e-01, 1.400000005960464e-01, 1.260000020265579e-01, 1.120000034570694e-01, 9.799999743700027e-02, 8.399999886751175e-02, 7.000000029802322e-02, 5.60000017285347e-02, 4.199999943375587e-02, 2.800000086426735e-02, 1.400000043213367e-02, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00] From 4e5bbf05cce36b848daf0fcfaf8a815149e22386 Mon Sep 17 00:00:00 2001 From: Michael Wetter Date: Wed, 10 Mar 2021 14:57:32 -0800 Subject: [PATCH 46/69] Set cpEff to 0 rather than infinity --- .../Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo index 38299aa2566..52cdf2e216d 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo @@ -18,7 +18,7 @@ model WetCoilDryWetRegime Modelica.Blocks.Interfaces.RealInput UAWat( final quantity="ThermalConductance", final unit="W/K") - "Product of heat transfer coefficient times area for \"water\" side" + "Product of heat transfer coefficient times area for water side" annotation (Placement(transformation(extent={{-160,100},{-140,120}}), iconTransformation(extent={{-160,100},{-140,120}}))); Modelica.Blocks.Interfaces.RealInput mWat_flow( From cbcd83830ed0cbb16768478a8c6e8df672d4709e Mon Sep 17 00:00:00 2001 From: Michael Wetter Date: Wed, 10 Mar 2021 15:04:25 -0800 Subject: [PATCH 47/69] Simplfied assertion and added component name --- .../HeatExchangers/BaseClasses/WetCoilUARated.mo | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo index fa9ec2e7a11..f75deff512c 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo @@ -98,7 +98,6 @@ protected parameter Boolean IsFulDry(fixed=false); parameter Boolean IsFulWet(fixed=false); - parameter Boolean IsParWet(fixed=false); initial equation @@ -116,10 +115,9 @@ initial equation IsFulDry=(X_wSatTWatIn>=X_wAirIn); IsFulWet=(X_wSatTWatOut<=X_wAirIn); - IsParWet= (not IsFulDry) and (not IsFulWet); - assert(not IsParWet, - "Cooling coil data under partially dry condition is not allowed at this moment. " + + assert(IsFulDry or IsFulWet, + "In " + getInstanceName() + ":Cooling coil data under partially dry condition is not allowed at this moment. " + "Specify either fully-dry or fully-wet nominal condition"); if IsFulDry then @@ -129,7 +127,7 @@ initial equation TWatIn, TWatOut)/Tunit*hunit; QTot_flow=LMED*UASta; - cpEff= Modelica.Constants.inf*cpunit; + cpEff= 0; UA= UASta*cpunit; else //fully wet // calculation of overall UAsta based on log mean enthalpy difference @@ -153,10 +151,9 @@ initial equation hAirOut=MediumA.h_default; IsFulDry=false; IsFulWet=false; - IsParWet=false; LMED=hunit; QTot_flow=LMED*UASta; - cpEff= Modelica.Constants.inf*cpunit; + cpEff= 0; end if; UAWat=UAAir/r_nominal; From d71deea19d1ece2d9e06b671cce7e0753fec1518 Mon Sep 17 00:00:00 2001 From: Michael Wetter Date: Wed, 10 Mar 2021 15:13:21 -0800 Subject: [PATCH 48/69] Revised documentation --- Buildings/Utilities/Psychrometrics/hSat_pTSat.mo | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Buildings/Utilities/Psychrometrics/hSat_pTSat.mo b/Buildings/Utilities/Psychrometrics/hSat_pTSat.mo index 7aaf8c0ebb0..968e98a6b55 100644 --- a/Buildings/Utilities/Psychrometrics/hSat_pTSat.mo +++ b/Buildings/Utilities/Psychrometrics/hSat_pTSat.mo @@ -55,14 +55,8 @@ issue 622 for more information. ", info="

    -This model is a convenience wrapper for calculating the enthalpy of saturated +Block to compute the enthalpy of saturated air given the saturation temperature and fluid pressure.

    - -

    -The model wraps several existing psychrometric functions and the -Buildings.Media.Air medium -library. -

    ")); end hSat_pTSat; From cc8853f34940f8bb9655cb25f9af0123ddb3746c Mon Sep 17 00:00:00 2001 From: Michael Wetter Date: Wed, 10 Mar 2021 15:15:55 -0800 Subject: [PATCH 49/69] Updated documentation to give better guidance --- Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo index f75deff512c..66c93824ca4 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo @@ -104,7 +104,7 @@ initial equation if not use_UA_nominal then assert(TAirOutTWatIn and TWatIn Date: Wed, 10 Mar 2021 15:58:53 -0800 Subject: [PATCH 50/69] Added new cooling coil to tutorial --- .../Examples/Tutorial/SpaceCooling/System2.mo | 28 +++++++++++------- .../Examples/Tutorial/SpaceCooling/System3.mo | 21 ++++++------- .../SpaceCooling/System2Temperatures.png | Bin 41682 -> 11730 bytes .../System3FlowRateClosedLoop.png | Bin 7592 -> 17321 bytes .../System3TemperaturesClosedLoop.png | Bin 17670 -> 35115 bytes ...Examples_Tutorial_SpaceCooling_System2.txt | 18 +++++------ ...Examples_Tutorial_SpaceCooling_System3.txt | 18 +++++------ 7 files changed, 46 insertions(+), 39 deletions(-) diff --git a/Buildings/Examples/Tutorial/SpaceCooling/System2.mo b/Buildings/Examples/Tutorial/SpaceCooling/System2.mo index 918b4c9f7d8..19d1a648076 100644 --- a/Buildings/Examples/Tutorial/SpaceCooling/System2.mo +++ b/Buildings/Examples/Tutorial/SpaceCooling/System2.mo @@ -79,12 +79,14 @@ model System2 dp2_nominal=200, eps=eps) "Heat recovery" annotation (Placement(transformation(extent={{-110,-36},{-90,-16}}))); - Buildings.Fluid.HeatExchangers.WetCoilCounterFlow cooCoi(redeclare package Medium1 = - MediumW, redeclare package Medium2 = MediumA, + Buildings.Fluid.HeatExchangers.WetCoilEffectivenessNTU cooCoi( + redeclare package Medium1 = MediumW, + redeclare package Medium2 = MediumA, m1_flow_nominal=mW_flow_nominal, m2_flow_nominal=mA_flow_nominal, dp1_nominal=6000, dp2_nominal=200, + use_UA_nominal=true, UA_nominal=-QCoiC_flow_nominal/ Buildings.Fluid.HeatExchangers.BaseClasses.lmtd( T_a1=THeaRecLvg, @@ -118,8 +120,8 @@ model System2 annotation (Placement(transformation(extent={{-160,40},{-140,60}}))); BoundaryConditions.WeatherData.Bus weaBus annotation (Placement(transformation(extent={{-120,40},{-100,60}}))); - Buildings.Controls.OBC.CDL.Continuous.Sources.Constant mAir_flow(k=mA_flow_nominal) - "Fan air flow rate" + Buildings.Controls.OBC.CDL.Continuous.Sources.Constant mAir_flow(k= + mA_flow_nominal) "Fan air flow rate" annotation (Placement(transformation(extent={{0,0},{20,20}}))); Buildings.Controls.OBC.CDL.Continuous.Sources.Constant mWat_flow(k=mW_flow_nominal) "Water flow rate" @@ -188,11 +190,11 @@ equation index=-1, extent={{-6,3},{-6,3}})); connect(fan.m_flow_in, mAir_flow.y) annotation (Line( - points={{49.8,-8},{49.8,10},{21,10}}, + points={{50,-8},{50,10},{22,10}}, color={0,0,127}, smooth=Smooth.None)); connect(mWat_flow.y, souWat.m_flow_in) annotation (Line( - points={{-59,-104},{-52,-104},{-52,-92},{-40,-92}}, + points={{-58,-104},{-52,-104},{-52,-92},{-42,-92}}, color={0,0,127}, smooth=Smooth.None)); connect(hex.port_b1, senTemHXOut.port_a) annotation (Line( @@ -419,8 +421,14 @@ We assign this value using the equation

    where is the exchanged heat and lmtd is the logarithmic mean temperature difference. -The computation of the UA is done using the -parameter assignment +The computation of the UA is done +by setting +

    +
    +use_UA_nominal=true
    +
    +

    +and then using the parameter assignment

       UA_nominal=-QCoiC_flow_nominal/
    @@ -440,9 +448,7 @@ In order to see the coil inlet and outlet temperatures, we set the parameter
       show_T = true
     

    -Its default value is false, as this setting can lead to faster computation -in large system models in which the flow rate crosses zero, because crossing zero -triggers the numerical solution for a state-event which can be computationally expensive. +Its default value is false.

    To use prescribed initial values for the state variables of the cooling coil, we set diff --git a/Buildings/Examples/Tutorial/SpaceCooling/System3.mo b/Buildings/Examples/Tutorial/SpaceCooling/System3.mo index 00656c4d8aa..ad03a922362 100644 --- a/Buildings/Examples/Tutorial/SpaceCooling/System3.mo +++ b/Buildings/Examples/Tutorial/SpaceCooling/System3.mo @@ -60,8 +60,7 @@ model System3 QCoiC_flow_nominal/(TWRet_nominal-TWSup_nominal)/4200 "Nominal water mass flow rate"; - Modelica.Thermal.HeatTransfer.Sources.PrescribedTemperature - TOut + Modelica.Thermal.HeatTransfer.Sources.PrescribedTemperature TOut "Outside temperature" annotation (Placement(transformation(extent={{-20,40},{0,60}}))); Modelica.Thermal.HeatTransfer.Sources.FixedHeatFlow preHea(Q_flow= @@ -80,21 +79,23 @@ model System3 dp2_nominal=200, eps=eps) "Heat recovery" annotation (Placement(transformation(extent={{-110,-36},{-90,-16}}))); - Buildings.Fluid.HeatExchangers.WetCoilCounterFlow cooCoi(redeclare package Medium1 = - MediumW, redeclare package Medium2 = MediumA, + Buildings.Fluid.HeatExchangers.WetCoilEffectivenessNTU cooCoi( + redeclare package Medium1 = MediumW, + redeclare package Medium2 = MediumA, m1_flow_nominal=mW_flow_nominal, m2_flow_nominal=mA_flow_nominal, dp1_nominal=6000, + dp2_nominal=200, + use_UA_nominal=true, UA_nominal=-QCoiC_flow_nominal/ Buildings.Fluid.HeatExchangers.BaseClasses.lmtd( T_a1=THeaRecLvg, T_b1=TASup_nominal, T_a2=TWSup_nominal, T_b2=TWRet_nominal), - dp2_nominal=200, show_T=true, energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial) "Cooling coil" - annotation (Placement( + annotation (Placement( transformation( extent={{-10,-10},{10,10}}, rotation=180, @@ -198,7 +199,7 @@ equation index=-1, extent={{-6,3},{-6,3}})); connect(fan.m_flow_in, mAir_flow.y) annotation (Line( - points={{49.8,-8},{49.8,10},{21,10}}, + points={{50,-8},{50,10},{22,10}}, color={0,0,127}, smooth=Smooth.None)); connect(hex.port_b1, senTemHXOut.port_a) annotation (Line( @@ -222,7 +223,7 @@ equation color={191,0,0}, smooth=Smooth.None)); connect(TRooSetPoi.y, con.reference) annotation (Line( - points={{-149,-80},{-136,-80},{-136,-94},{-122,-94}}, + points={{-148,-80},{-136,-80},{-136,-94},{-122,-94}}, color={0,0,127}, smooth=Smooth.None)); connect(vol.heatPort, senTemRoo.port) annotation (Line( @@ -234,11 +235,11 @@ equation color={0,0,127}, smooth=Smooth.None)); connect(con.y, mWat_flow.u) annotation (Line( - points={{-99,-100},{-82,-100}}, + points={{-98,-100},{-82,-100}}, color={255,0,255}, smooth=Smooth.None)); connect(mWat_flow.y, souWat.m_flow_in) annotation (Line( - points={{-59,-100},{-50,-100},{-50,-92},{-40,-92}}, + points={{-58,-100},{-50,-100},{-50,-92},{-42,-92}}, color={0,0,127}, smooth=Smooth.None)); annotation (Documentation(info=" diff --git a/Buildings/Resources/Images/Examples/Tutorial/SpaceCooling/System2Temperatures.png b/Buildings/Resources/Images/Examples/Tutorial/SpaceCooling/System2Temperatures.png index f79fb609fbb212b291ca89586749468b6f862a71..28f62ac4d9df91b65077f9e516063119f4ce1aba 100755 GIT binary patch literal 11730 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 literal 41682 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 HnFRhnGlu}+ diff --git a/Buildings/Resources/Images/Examples/Tutorial/SpaceCooling/System3FlowRateClosedLoop.png b/Buildings/Resources/Images/Examples/Tutorial/SpaceCooling/System3FlowRateClosedLoop.png index 7919e98ee6dc654de99b5570241ab2fdce104d59..5eee7fa390d583778e6fbbb7b86181dc1c8633d2 100644 GIT binary patch literal 17321 zcmdUXbyQUEyDxTw0V+tSga`zq4Fmou~X?EUUHp6B_*>sv+nd&dsb9j2h5IEIqGqf9}u z7fnI2%k$uV_@;(;aRUC?Yj+E!dJtZ22aVpqXIlHa5A0Q}P3#>X*&0)rT3K5fU$HZ^ zH8!@gdu(k#y$3HrL2;e}b?2t4Q{+UCqm!Ci*Ya#1irN0)-iu%Elu%y?dU)R6sd~2r z$LSkB=f9pG5cZ1wvvSbzrqn*JYtQ_y9_4!$`}>VS5_9wZi|1LDPo6z~u$=8FW^wDw z$7>>qk%4v&wel4)q(2usGkRQ&jW4Y?a#I@mo`9CY>j`UY>K^jj8(RUbyLR4wx_}WS ze&cr$%AGgQj{WysOeWa4F2wBj z=jZAA_zDiy)YzXt74P1=m*F_w8*$wc+uYo|!D!eNEp97J@ALL;_IZQtNHJ&ST$6_8 z?*Yth1(w>umsO-Fy>Bn~IL0ImOmybnL*9L@tfV=6mfgEDV6v|>*Ypa*DWuUdrLpmp z6zoSY$w&UIq>{{R%g~U;q^qXISHC~U$b;-+@Q3_(SFOe_#jB8WP+tSCIlim$CMsXV6_cJ_e z$Zy(6kDlt*gxjkP&7r=aP{Ab+l&hhC!y#D-1Qz(nvN5LyKFXh#a z@p|ryYWa_U-J;=8RfP7@oH~_2&~udw<<_lj_vUG8)hx7%qNnsOu^)@i%i~7|&HQKV z^INxXtEI>@$c0_KDW9T(vENv+c~38*EY# z{o})fZGFy4$tae3eY#BL?c28;`W0ne`4%a)!JH&`ytO~?c!DsP_|oYLqMGOC+G5H2 zR4Md?2uyNPwCmKbG?kP*s~*uTy>cym_r+kO%e*W5%>x4h;ygCj%=*8+I!sBa?oG)+ zefo4V^pM%w!dQf)XGO)Pv{g4|Ki+tKx)r8B(z9Cm=4LI)a%(LyTZw~% zM&%oGb>@8)<=na@iD6-9@7}rd7{(fzmXY!)9?PYDnkT)5;^X7_JvN*syNgv~Jl4`8 z1TE7KFu5sWRO4>#^PikA-S4t6dI7bzwLaamCgQr3Szy(}fs&Dy{t1uWjV-7x6HRkn zp4yt`NBWZb(*BvimNEW@k3vG2`ts#o3;8I~A$5=8dfNF#f_|w4-fcDKt*$+^k z{3Gx2udgJVcC4-i3oR-cq7|EnNT*uJhYt^HgDxAw>@(}iOLPAH{6PKc{D|%lgeE@B zeOSlEE{o>T17)kjAF;SVwc(~1xRZqY+Ta7dEG+@%ACV$<)%gtsf#WAmJc5ge*!+2E zL4@ez%VI~gETl!5z{q2Ba!s2eK7YP(ijmO@hB&j!80jbW(?y$yJ+yO--WFK*VPUO4 z{^GUo@R1{SoH*qqpQ)k&O2WvI(_BAcg{i_iD2FCkQE^%Qihsp+KkPipg_Kp;y%x@A z?87qFrlGF}W3Eel;pK(Q>Nc#dwl@`1JA{r24p|f`fTb-}iMekb{rmGS_oYtL!$*&{ zdNX;9I*`=!&D$3Gy_stJpN_(4w0(JTV7|vw9v;P{DLN}Pm7P#<`ij;ljC?4s6cTYW zHFH(74en~Jez!Mu>g>_0}A2zkSQ)2Kq-?enu; zhY#0Q?DalM8xPS@8HGa0$jhtS+vkx6pev8j3t!d#_~FCxV`s142xOCMPFKrV7)|gm z30}9og*R!Sqcv=;aCa4W(s5PW8M+3&K3Ql{`TCevuE~2=s>6OhKFagM4Y`(0^mqu^ zkUf4V08}&1+j(EOjufI8<|1Veh!wCi6W%X$*wOkA}{jImQq&uP}(%-hu3-1P_rR zH`$d>bMhp{u+(L7ym*o4$D-EkK#jjEjkd?1dU`u(s+HjyGl@o2(^xM&P}|ugzJ?n| zxomt)dRwm1h|S7lb5Ucmx11O}O6n~ymDrfM%^>Eah#qgfu#@d$?+h$)Qj5-S_n8L~ z+O7@17Ghd$mco!Mr9TQ%L4S!gX$_p-;sdoaUZc=WMDb)gwb z2~yZ^3J?&iN+$)8=-cPM9Hs4!%x88p>G99j<*v)>5H<2Vw>^+KInos4$SLW$RYoNG zKqHW_jC3xYkX0mv03G8}hsoxZ*#TCRVYROf$+R_936pq6-%ZJNX~M=*K|z6#+a!?z zvk8_mG5Fh$g;4y)T{Nk^t+(72zPf%zyP)3k{@9w`^JwQ`+I;Iiy%hNyC|T+fYrdOE6tFU6DS!(Q}X@$Kmva%suN>83- z%Ew4#!GahYZ_5}b;9?-Qj|nzTdv3dC>Erc|oZ(i5YqsWFXsBgrslj}0e!k~`YLX1i z6|FpW;<=))U%w)`R(xZo5=yHm8Xz@Umren=ohSDB+Q`*Om2~jizCzc?TVA9 zPQkL}fDlAL)BJ>#j)q($V9|ab(#5h1HiTO@9eR3k^w(|OQinz3lKCs#+>MJi!&l@i z+B0p4TaZQuSK70@{*dTCVDa)2Y;006k%EIZWg@3~N-ZFP$jHg5!QiXH-&>uRb|%FW z7WBinu(r*h*mIdKUtSnXi7{`85Rg$&(71Ewo zT4hezwINqBii(8Aw^jz|u0Fg`;61v3?_MN3AXSHe-SBh zTtfZ*{ZPqj?Yg%Y>A3I5np$`LR))$07V(da5?tAwkDl9X)o#Co$l(v?uyB~qaY{!d zN**^Z2qW|?VW(Oje8u^9cyoZ240-hJwe zsnKUyciWjU3^$9`C!xb+EqG(vA8}_@>S%cv=TVXmK&c63ud}L@IMiWM+OOqrVUb!y$W<~S50=|7qh z%i#V5V&F*RT3v>&#{l~juS<)*-sE8mysh@fefj#%`JCedXv1>gUS-%#MVG_qkBWKMHs!h7N+RtHbH&;7U*arKc`wLg>o zw}72HJi|QWL~|MVDrKl=@w+ZPi4w7sf|=e`;a(~qEtbY>SS^i#A~qI6#%Y_xoiUGP zIiF@206Ao|Z+okd5z@I@y6TVo@+X}+E)W)x@)6YxtILPu&d&LYULRVsr5`_j96iKv z-64pDLEI(p>R0moXQf9)-NFO~v7pi+p#R!WerlP$7|~bf0pdb(!LTd>o_|9Q92Bg( zP*J->LPC-Os*ORdhvX!ZAlJ@)C_HCm=6450M`L&G*^k6a^WL)JUeE1K9a435b%}cg z03RI^ogtt@1I@^!@Rl(n?kiuBCBDFA=O@;nHayFRbJ46T3wO1yDe%D!I1?LH$}@*V z+GhDZorBM)YU|e?F7?lptb1qZ>p;hulCSw;eaLeARe5sG+;UOBrFh0TaY(qoVQa;; zzTUdLIW}(^9~>r2I&0`7y7vr5bRP?pKQHzlYlbR0o=q-dbbT7HQRPEpmxXtpH^Hr2 zK{x>-CF@{rD16`8VgtqhnxcSIu!rv zO5Xc+&XGB9h0l>5rV(YaC;#TrZyAPnTslRHP{{|{Z=yP&QftiCgP{~KZH)YS^w`d6 zK{r^?T$qrM;WZ~9g}R{H_ge&(=m;mv&S6C_oAuzk`>7bY41H@n4;?ymmw{vF0Q;{0 z8OCkr=Kn2$^1qu4{I9gk%SV)AkV{ZdkdX83+a17=)CT;lq5pa91oKuKmS-CG)|VF= zYFCj%q+a`6FOMJBksha3`6y)Fn4bw`0Fq?CJ(j@+1yK(-U);&o zObD;R~!Hdh1tw#vmDyH~PP_&mF`cun+-D;TfMYvcHTFJDBmx{WaX zT?Vfs|L!b)crImj50zN#!h*f*ZcQjRcklkrOAee)mAJ%4{MI5*9Y&OvmiBL1zHCrK z`5p$qQp!C>=WioROr9Irz;KbQ&+d#hMUqb+D(dyIbLjxqBnlOzrDufpl4pT(4Q@RO z!YS_4r>pqg2ag<4DR)@}>TP43Tph;p&yr-K#9fzG7(N3NEMPk*jbA6Xg%mxa&t@p3f^!= z=fM+IH8mvQH`Jx1UI*VM7llC_A(zmC*1eg)Y!nqtc4Xi71h$Nto*oD`7r?N}2%?F< z`!187j(i8zZ2q)dyAk=SZ{JegR_CymfHnhsdDn=2TggeXq2@rSacE#8C02g#;q*o% z2Ec@BTyox6&A=2U?-jaavtRC-NU1cvIcsG!T`54aTD!dw&6Q(UvTC?meAAZC0aW zpL+`QY^rHfv^pg@xGJVUh-eK+1U4I3HnZXoDkce?N^hz{mj{1)ejE|ko~fAtb27t# zJpRu@fl#+6wacA2ae_|NKDAXu?l1z?)Vv*XjK(`jD4zkbQ`LTHr?nD6Y)(udR`A!B7+w+l{1yuESSN zt-gcEC@5H^p6kJRP(x;TZf}kE;XRd(QthlDSlI6yTXs37s{%?W0H=sM2Z ze+7tNTngj9@C=@tBz=VLKxmi3ZrgXeckd1g3Q7bX*8-Rqmx=5ee!#SVSLLAtGEM5k z;(%4ouN$olsJJ7D+_*(n((bIT8Kaia6?&GZLB+t>K`NA;S%P zOghX!E8|Cx9)b80?6N$S1+;cLDv%9f>=9mG(6Vb3R4=YJR1^^GuDXSPWv|bVW&Hma zWUqHgR5HJdFd&7f?MrTnTh8g1_We>hIqV5qSz@zqVk8(1$Qn z3*ZhmTN}>sk(amxv=Zy3OR|{Vd-fc;P6iZ;yJ5i1U~sn(?)r;c!zOW02023$1$W7e0O;T=!K;~_GVph)r?!bKxp6mms7 z8B+2wI(}(H`vRpa&V7ApjLLK6g`VdoI>VbB3)#_!2i^ZDDJf|cWNuqPv?6-}o`ie7 zc!6}VIZ)Vif=|Md<)gHYSCV@tNOT_t(jLfez+6h-ym=EsBOc<<7b13NASt;15ME$z z-@ZL$FFKzY2pAK}7=-8RtOdo~X%D%;c}4|^P&i6HDJ8`m)*7(hK z97V+KnZkIBb>i~fT;!0VZDqu{&(n5vU@>p=dko+A(5jkEzr<&o}UI~Egi zLk@@QqoQC5)G7TdL^ ztlr^ngl+gkmk?E5Yi4Plq70BnVA`cCY1SK0mx}~hT;EPEcx%p-zpSHSaz7~N&|f({Xus8 zpFe+~M1GL+3hA3nrF@;3)}L|3+|dnE9}GgxiwPP~6AcI3&v{hI)Bam=-^fjt;ohMcr7`rB_fFg+#|W7{-aqQ4 zKJ!?Y&AtZTga}f#18!@`ZUm!11|mNFRgpRu=5%yCC~SgCGm7+pW;#3>(8DSdKSf8! zImhb@6MRjQU(3>#t9uBi=6V-GW3sdUket*Te!)Q_-(Pn6Lwejp5`QDu_zKsx)SC_R z>K+tlHF$O5%4&UFs1k9O{dOP5b zat$9MO95JFEpxU5bwoj=9m(O)fyq#3j;y@qvd)Jb?tMj@1^8RQA$J+1-hTckreCW* z1tb6j=Koy+khc-NG_u6`F3-G829sw&0E>qGW$jg%2MhB}lCmW`VmS=O#!cm#i;E^g6 z+(2tc4L%c)QAyb~j03?VJG15UNfz|s&%eLC5OA9L9Z&gJf_ezHBl6+@A!FLk&Huj* zZU01*y?nVBCRon#gv-T%_1Zo?s*I;hxYGfQI+Uk+h*p#-OZo)rQc2!vix$yLxxYS8 zlA1-~2n!1fHTodpD7-v={(~gIu%A#Zy%Y64c|lN69e6NqL}O}CLO*~Bs;lLVHoMZE zjDGO(uMZ65BbVh#7$R<`PyZzk;W>ngQ1VtZn30kE5ACza7R;*b%KNLaWWk-c|B5T}aEFS5IIDN%1#pOI=(`Klh$6-t@O>eMst5rK z4geoOF{^=8+v~op3p9kWg`w{+!1Dqo^=I=ztb;|XE-n2AjE0LpZ&R5;SaYsMug)32 zXOh$doUM*HK!9gJybzE$vW@UcWi$lzm~14w$Y~zEi8Yty(O=9pqLN!H2@vO!fYL!c zJfN~5GAxWR)-=Xly~dxZDO(r7Kbw4HDpb#@a4KRe17On%`ba~xxOR1z&HxCC7~~Al zBQp%Dd=ODwPN*l*b-G-m&u#ua>$=|`P5?2%9BP=#enoisp+R>^1QLe?J~CDC@Th_M z`s(%Tbg-Y%i8*}&d78^|q{&6QqiH41hts0z`Ez;o70>n}e z*3h0Vx9!bk?A)_w6fLng_aNS@aA32F3lzexUZ|M`yl-k?VBpK50xkkOg05pY!05B6 z>i(x;RFWG%=ZbI4D(MiCa5nKq!p?JvX-WyNNu(ao3Ft|iQ;zs+nENocZ+(3D08a8l zGGse{{Mq%I}C~Y@>`0%0MBCuwIqElee3xjuIplyVK3$v&T#+8V1 z*vd2wI$C9;Ya-x0XLJhOs%zrckd6RT!^@X1&!X5^S*vp3LFVS_cuE^Dv4jJHG|33W zVE%}zzk2m59GVdZgi$ycKZ^^f7(`ohW_|m+Q}Q^!+c9}omj)D)L@q%H{|;e64yFL| zw?WsjCwSzH{p_DA6F}8$0Q@Z1VL99f|3ZKfVmv9#nXXuGgalSw4~>ijze)Zk2xx$D zc(GN5aJwf1h>JlA^VZ+rQ9BICCqb|Ru?Y)zfGv?{YeK>&?N1rE`}_lje}A_{hsd`CUIY;tJhXZRbDlp;~cM76qP*`A4?{(b9^D(<#Q7mcmj5H{rK8 zC#;D64A)J7P_Pp}L@Va>)NfLekD7qiRJ8fZ$hXb0(Jado4#=6ODN$a}VY+uxhCW&p zU7N*)%MV`-4FJ?9pshKqzXW9U3wol7UiLhcq1XCmEFz&g}&6T=b=; zXrnE@74WTSH8&C#kFIkzlIAv6=aYeCz{d2ki(~c5%>m7rf&69y{9=C#$}AbYk!MlE zh{1?;U}tGB6#LT*XwGg{UW57o&g8f3;s?gzKFqKA3>-N4P|9E>CN7`2-f!a<`pAMHj416vmu@oh)#NfPqQu=;)v) zB54C-KhePp`ZbrnVf+fm6e;KYpO@mk;Bp2xS2N5?UCFENHh;by+U%$D{J?_92H-_o zF0s@j%|WORVv&m$(*#GMjipfaXpdtbV&81bGgAR)a_2~g(#CzD-8j`Ve}cy?6Xcuq zZUuAmbkON>K)!Qwaoq=&pXa9oW@LbCBBKab2dG{h)0%6l5GCQR1w3RM7}f-!Ttw*Y z15}I)A|}-O5d4uRL(USP`_3$}40#Z7+k=A$rHs=n=b}aWC+$;{I{@hP>6l2SP^uX5 z^@&_jm|haw8+K|~9T9y?Nzh7wzf=HcHw=2q*5*1Z3T)La9odHEQ5m>Yz@;Q{4gC9AfNZ| z)skd_^Gur<8AR=+5&jES_taXQz{E7vw=Uq^0&^Q;2pr0ogyp@6nBXw>!1+yr1s;5V z8j$^=NZ+lNrd-wRAT*a3{Yc;8K`5}7AM7`;+?I>r|FIM03p)@l$yN_^r`U5$*fHr>&o8gn zye9~me@TGJan8H)5e)T6K@V|#3_)0hLR!*%h^t@3eJzi`o0yy&0R$uSWo`QEvxFCS zQWRpMEtsH!;KS4d6-rtxVy~Eh0t`CU7A79(b!Zi^`Pz*&vl1MvW76iqYiz6?3eDjM z1*<`WUO{p*k970<86Lg*>_+GgU8?(yYdG+84F_xJ^ z4-l?K6F2BKG6iT`STL>|&f^xP=bUq+A4xiBhK4siKX~{sALLmR_}wt@!zLifn*bAw zE&SpJ=dZ@>rIzI>U%&(yffK{MaI#n8)Zh})+EH5{*l+)~J_?{c!`U z>zjczD28`BMNhwU+tyu428T)w& zb`W%|z{toaCXJD1P!h@k^H%2ZcoyWFNf+5V=&>NfC>Y)_s6xUZU4Fc*k{kwOY}fyF zU+$yI{fKVI{KJ0q=LLfPjYm94{0T4uzszqK)WDHUKPE}5inVc00;&#V5zW}iGR>w> zmr671>b+SG?A;p%tJ;*42`V&F*r9b|2|D8t^d=Z#8kP!TH=={0Axl5$E$bA6<%^YU zMjY&zS>ff&x`)@hYY4NM8(X}u6a9=m)`@*|C=+<>&e{!;%McfnA^+w*4wyU=9o#Zz z&v5V~XoUk7Z0~uo8X4t_?b^jlFymR7e{6v5aMkZj)jQpG1~)N7**a)d=J#P5jxd0@BU;mb*Qc&3H(KMtQYiqH^U}(h8y%Gp zALM`=kpsFUhjq+N#JLfQlDl@W7>3uc++H;snRI!**g|Dd;J(Ng&BE zVxQ&}W@z9dK==Cy6=66WGv-_#nbg>GfRZ1xPQ-2O1gs<^VA0~vS9k)akq9w@?dsK^ z_OQW&h=&3fHYS8Ml>oJ5)_mj9iQS>K{l|P zoPK*L8p>C|6~Tt9Aerfeh7Yw-O?=@d<;4EEGaIy8(v0jyS$84e^!udw!0cpWDJv^G zUos7~Kl6|J2mwxlDA4Fal-`v=Jo>#*5U~+l5Sw*?5%4K~8ez1C^~i1_mT*XD9i+2L zV#XENJcwVN?Zy!NbR^GRD+CeZ7pY=W12xs_o!wVBs;FYJhMQS%NH+t9e5Rd9OC9anoB-~2wPDc0#1SUd`9q3 zmrY%p{}KiJ5x!@;fuigJ7BsbjCz|f7L!nrLAyr-Jj?DBc_gbtV~l zMG6Dv44Z;EJP1Wnn9E==&@8r1s@Xz>o}w+6Whj^jAEZE5gR2NWc~CL%%6-M|<2&B% za<2=8ci@yXx-lEqdDT#ptz~!sQ7x zEfW(C*tYGtHQseFf44unRu*O0yCvJ53qjfuiyMf*u11bUgLKiF)JNe21 zA@9J;$f7G*Jla$0=(j2Kq(jkexZZ{+2yg{@>$%KA|fHzzpo`5(y5%C^C zR9lWQLLD%piD1fcAzcjR-YwW@ZL;X35sF=e7oi7Z4`~vF#0)46VGE0q-=(7!c?dYQzg&+FM~q5HF}}G-Ks+Z|x~1yIwLwbjOOrdA zF1_%lSjTf!-C%OTLQDe4riN7D7z_q+rNG86kig9V5rxFOdpfm8!A*SmGB-WjybzhV zrRdlXF8qI)Py5#yLh>*F3tN^8_IB) z_vr7q+pQPwj~f`N@~ypN{l(4>o2C4*InIL zdq&n*W({dy$EByI>yNub%n$0_+}t$lW~87<47}2UXha*7{xu1}CndM)m%Aht7mLu) z(EJ#(O^Q7CI-8CZ-UzTYEe(YkoL_Bj21PZ>=gvh;qMsk-dq2PABpwQis|Vu1Me`|f zZOx^PKuBpVgdKx%aTgG<3UFC>$(lLfjfshgQ6aHGuZ3SkM8w?EQqDpFN8p4%sPU;O zHWXvV)|<`b@?H$3o1D;4?a+Mwt_ugp9u*5L-rlbVJG zPqF?mSjRYccr@hY{h%lwA0J-;vXH6KZD}I>R@{fV`T5}BVAeun7Sy!tbnhb;!!U_= zF2*e_InbOr!+HI>HiWNs_=WS40~F8j6v(68z+88ndJL`su((7mO>{EDuVMck3Cby- zDg$#13l(;1Widt#XXj!llTxr)ZZ$PEGZzUUMhUMv8l zk7v8b?9;Qel`so{Mp?_h_J2y;u3%GBQpz5zADO>QPste|9d`25+1GKL8dzBAkF!HQ ze#{siHbE&{TU&RT?xuLwb{m-pA6U*FO@=+_#AHbG8#8VI#4(BBhpOuO_U$FGSZPp@ za~?m)b-iwSSr)Ulwx(X@nB(QO8*&3@k{&qJayX$Y87n-%c>Tc$ij2zw9~;<8d$8f* z;l@o2l-?|3P#wI>@9%$vYMz+L%*n~wavUBU9F$Sl3#l2SWX782nY(M=jL7;+NcZV0hT(1 zQNpdLD+8|jj+uOtrDYbf?Z2~A^VO{jFu^#EA56t!<&BMv5w{ME%>oSZeH^SIuGiO* zsdT@+wKZ{k++4TJN$J;P)$;Q4oX#h;b#;MFBPv(Vs#;oFCKEsvJ#EMZFC!Pk39%6g zoZ)329);D_RXPR+0ZVyJ&2Z@Dg+EnCke!`*BCs@25@ z@3wpR@P@9gF2>0GAzZfkg(ApopS_ZklMyQtO4-4|q3c%EwD>NH&oTZne{BnTa9say r8$izAf-XT`M|L_B-hBEue-&$us~#4J-XINA1wrwnkfD{X$)DICGN)eEb6cLavB}lbUL+_oafCvbPg%-N>E-gSP(mO~A zErb>z)KEi!B;+jich0%bJuNl|C%ce%4LlX%Axwl}_!=9;&DE*Dedv=J_yFG26#w zdN3*I%3oA|u1L$%ZT$^>M2=;;X;}fYtZ;u^ZxO>7w_uavZaCmaJKxfc);}K7j?k!K^GqgB+v3s znD0Ka+B6d*H*>)sM{W~nA|f_LR}wv`1!4R_njPXa8Tewfja5Nw zOS0~M;`9tPR>$*uCR+@V*DHB*jXlqR#AV&Wv-%Q`^U+s38~yX~f3SuD2a{{@+)+(6 zZ}wBp#c_)1?>`zmKF94}W0T$SJ3GM^31*TKI?hV z92>a!&b!?_N&i&NBkO0gNW|=oYi1mea2x0+`C3G$inQaCX8H!j2TN*O%U75C3Lwaq z5oZGK(FvmBLdDup+efveT|ro&^XhPc`8#_r1N*ZeoeNm?jiS46i7n7um7lj6KRf-{ z-yW8o2-+ES;&qdr$jt-ofUc!NW8s>YX5^kB8nj(@S4UBIvChP-G^4xpJocKIY{1CHi!C zUmo9H%!YYW>YevQex;68k9asa=6)nNXle)Y%GGpdS?u=6xMSKPv>GPmg#3JVtWxWP zwIA=eI7?VtlrSlpPKsrwLZ_#HQW*rco&i)dcU-P9XP}J$cd(G{t30v@-&En$@Wc0-nV4_+y7qs*6V!K2@nS|zn5g3o zR&Vt^RqeucMOI;-&hFB>P|@p%Cz!(zhBIJPZ^}gWmn`Z`ckdv-`xc*CB2D(~T9T{D z>rJ#FLdlbr{CDaJfkRvdL4&}pbZNSBs^~%>mIh>0YY}>|RN|_*^GI?A-Za#fm3We0 zIoXuM{&X%DJafnk=_%pEypauMax^(6a}ef|V+L=btuq>06J_Q(H;XIu2|XFR78Bli z+2M6a7-?z|!Cn_W@#|{R!&GCN`N9}aI^Cz_+zb6D`>3Ci%4!N;FKJnB$HfgJz+LtI z_gKws=iRq4l`FzZbYqSaDZ*8;tGR*#=WomY`9#zMffT22Vb%4ka!!bd50R+oYaz2p zv7$xZnOyuvj9gG{v9s=2Mlkp+V!s6J=Gn%V*Ps5e$6_{3&LW6dt5{lR4w;#(Umt`f z?7fH~`8_}z*}nem&a!1_Ak%6>T}#6g5?NRZ^Oujbb(G^jXK*?Qeu2+o1*srR0w=C)Chy?&L6Nxa4!Ctf%+^Wu+#K1^OE z^cLvdhEoJlokN*sO~&0eg-e^>f6R02+^>Z>Y3(8@l#gyaQ;PH4cVXd_WmyRxkC~tF zqvRP0LURSN;c=vm({BKah|T$i3>)d2o-B;J|7nS4)H;BPss3y{3rgGEGCT z*vyCC#IITI23Z^rOUFxVCQVCEzjuCL+8%ySVTTuH$!Ox1-yXU7!ORpn5U6yLRMk;M zj)?ZW*!d5z_J2W=8bIyZO|;oq%at7_vklb|`tW;U&uVGsr`{aHVdrxDj7ZyNcj%jc zrG!zuQGLYqwUDw=0n-m#2^35t%EHfYsE+kX&`zdgmTn}fqmeLHNi;dUuXs_LPVfPl z^D@%K4ZRSG{oHy-N;KXmIf1F}i$E*PXY={iFmH?5#mmS-`>wq^=fZA<{JL-k1irUM z@9hjQhV2Kvl~aO9R#H)RW7N9w_()#M7dsk&sz06~RW~xET>+)DV5AsMd1l=8e@Q5L zRZWFCcS*6vAP`5J`I9h1`@#4;D^o(*a#mKBj_R&rbdfR-t!`H>L^rQz<8a5!-W?z^ z7pZ@OrT$4$`yb|^g=1GikSEHQ6)zf8&2&PUD9_rGTg^P^G|5_HI}x7L$i zd4@y~RPo?XNKe~NS*N$kg}igO+m5ctvv|n}pd|D)1Fjgc>3#D`lmc1G}!(EKM z02ub&8;no5lo-3?&ER-d=aGNR7sK~;q`jltj{mq$Cve(FG;nQXOPxEh!s`JP|EXl@ zDt*0J@>LKh?{Th-g?bRVnJZ`VS zeOHA&6*uy`V$o##`Re$5@1J#ibRtXWqTpheF_?~TLPu1gblidr?+Lvx_8sZ8q=A}Z zd3hQem{hz|ELx>n?`PDYxn4de#GP6_vbiU@*x=e@C-9~;6S7g!>!%c--kA2_49nc* z8O-EhG&Zpq?=@ka^Iz#=V61u(xyJSYr&E>fhh~|S0G1HfLaqJ1go#u<`X({jq4XJh z+Czip-Re39{*_mD!bT|-W`;rkxdbWMb6}58(m#jM{JXFvIyID>iLOe$1Ok;^&F$lp z3}barrQ`ggAi0h2ILGH0VWU4Ty>QMmNei&h4-;Abnz=C>y}ZZ;4fJRlFBPkMMo--7 zT4QLO(xd|nzKJYf8DG)$cY9_h3mm_4);f`W4eWK~zbL}~N51|W5^uf$e;yK%dDn`2 z4e!@En*D_o%JFg?l5w6r;`R#uxR7F4tCRh)e5yFv&IEN+{VinJNe?^xu$vH_PH-Ma4YB@mH>41rL$y z)mnqXyd`=nO`(mKTVDw;=oR}X zn_N`mO^oj_Sd{Vh#`(WF1Crm&(iPBk_tI`4<6NB`dWD!dETndi9C>8@ktjlo(l=<2 zVO8Q~5a>^G>z4n+IPZ<(!QCx$%E+(}VRU>f2X4HLhhFg6Bo*SnFsrybHzC0=H9+D! z+Icj#eTQarl^Q5*u-zj$WnFXBNij>3CSAo|4*YD6Yq-1sV6W z>)5306ekQ@pT@}@h*Qq=w^adrYlCTsz0qz&T8zeoe^0h==h(cHG8dsg$oUmP4zA)} zcOLW(7WdXYd}kE#RwXEIDBUEDNIgA^P{$nN=p)ix=(Z#+)0J|8=w@Lii0bvmeI!e4 zw6^sut6M;S7Q%V`E9o%VVD=7(9WpYxy%-txI}XCrkPjIcbdUiFWG%aG4a=fV3W6OgZPm2WGNoyaC{Q8(ZN z+*4w&r%(8+8%@Q`C#pBPtvWA>NvZ&UkYEes&K1(6WXts%Ro^RbC4c*Rmi*m4o)$Ld zs#jDGsKf@uX9}*UxyVm6zdIc8zjNqr{Ph>$rbm0Qz^1ewk$Y0!-nvGwUND25wcB3_ z)vDb2oJhgdE8y=RLZa<`c8B{p={uU_u9JQncWMH?b?I(fDWE+gmqEXKoC%;99%Q)r$yiu7sT2butGr$`Fe$*_binxuV!6`f{nH_M^ z0$za>i2#}0oiE~zYo#TcD-B&XqZ3Ir{S@^!|e0zgQfALqgJvb2rs<~&k zADG&vDfAci!{%0$BX@em$$fyTV3LpH^Qi2w!?e$# zLj8Lsl3RoIqT5gGA8+7pu&ftfoL{)ic6sgfQp~{_(7UPbU$u+7(bP_A8r^jnx>Z)Sto zv98w4jGl#PQT(QB1UpJhC&tEKi<|?2rraF_gsmtf%vhP3KS}9+4_{6trwJVBp!F44 z0cYtXNkoa-u+&C4X2cLdb$g7Y4`@?U4w(8`C(43Gv|3e0Zsy)@{>~}@9r+T60pSC^ zVg9EOc61nM@c(0UGC$XZ!b(JBeh1Z;H&4SxG3##=?Q8(Gc%BMCv>`c&qGqpOl+{AJ=b`uE{UG{yW8N>0{RGbeU zUMO_0?(Hf4o2jGIDoi{7?WxeeEJ$+u`IJ|W z4^iDC)m+MbEc@&?CMli}p&P^W1+X;O%@8I<-S6xcnd9q@Hzb9HGyL=lmwWH&_d>|U zI=*y!&ij51Of-gwmk%w8I@KOTV#U~hilIM}8IMvnC8M6x+xJ$0U%s3%1S?Z<_LyBV zw6TiuGy?-oN@g&B4csqhwRUFs>(oe$dDp5%+dP!bK1~b zr~3O^CR1o~AxmgMAF$b4zMP%>b=uNf?rF}oIsr=I^P?SU0%5m28NEk*%mI8dPTrM@ zzGzF?_=!ghT$dCiA%l3JMI7)sMO6H4QLK6k5E5~0A76_!&LXY!e!$v~ZbDx#P1Kg~ zTk;1L_Bwmndq4%sY9*-q`XL0|Rx6h3@xqMtg?8dzSx>nO>K?K$BE96U)ZN8S zKlyts=X&1AcD>sJvPGW7Qt1>wjt2gZ)L4?WkwP3lhGt(%Gc4s0F>EyZl<7h4W%P`q zq0d9ze7*R!A--SnB2PJdzX+3QI{479EtUVKKdOO8Tn0Ph*PQl@x=~V`hgeMA>;Gq1 zqKNuP-%9pk#`4MW$*2PQO)E)}&719)i+@i3A@dS9wS=4m4MO08-T`h2^9|AV?2ziI zXj9;5X7Q>rb5!e_JOwv$P&lN%EO7E$Z}g3i@sxVuw-z5w3R%Za5XH`}!2_krS%pkg zKO6?7MRQfsLUC_dN>W(89FST0-h2og(NE)?I8VqnWM`ue?iadNVqh?>Wa2{?6IU@7 zaH9Qobuv41k3B~N?MK+ma5{i;>-06QH{Y2U<`PYP0OjB@Vtkap=66?$F!YHlhP!6( z=!oKvByO8va_KoZ8=&OhbyO_T=Qy~N-=(lBb+zM_{I#c%%M_N9m(y)!nErgqbDW@8 zkcjZJDxqkm2OpDu_O$pwlm~6KS(Pu&4=v^g`!3;Y_dQ=21$Q2p<(nfU)hVwmr zmb`+3f?DdF&O`CU03mIIihbD+WG6GvoIh(0kpcma@?J;Yf%ZK{ReRPF$e5PB;Ue#Z%N41f&`4Ep1}wGpM`A)AS}={nCuGY(f!-Uy|dPx1)W&&IFj zEI8FZ(T?146tbRWW?(S>f|dGP)*+xX@S{W{Z922hiPR&bbJfi_q`mlmp^~L5!u#79 zGxA8&Y|yVi%e6^@fzqD4C;l@DlS64~@KPSJGOnIO6jx;iwB3kNtaNQXW3I15bJdfY z!NHUy)xI?r|73RGIR5upy3Y3;(TwG%PO(4Y#cXj*-A-S;I>ei0kS;(8XbcYyW?Ag! zi||(+iF0*@i^l9%ir&LyH^lE&RBLHQ(9q?Lq-(|q_j*}gGiXF7xC-gv?bo1qwm1{{ z&rM0bLKTZOKa(Ofl&umq#?fra-nJ)M&TMi7jd*$AnMUK>3uCQf(Ai*Sf{m z-_zGiO4v3h&hYCEq(RMvmvcL1$`8K@j`wrU!F_ug0^_;(^E?ndgNq9{7F_WK=>xoN zdcxN1kz0<4a>D$_R3|H>+C+k(^)F^Je)YRS4o~ScH{W=_q4yWeF4f?sT zu#792=Lq|6W#uD`qb+v3ZF(t_9+aX*xyTq}8HQ_a0WLv5%r04(C)Ro|)wG$r4|=6m zIml^rTt96LxI$AeR(W~6wYjt`_HnL=RuY2cthAG@U~YKFbx#0mlCgpfbL zq_+EulMb3R9Whw$Ta|n?)I)6PneNHjb7b?_ykvT^rEa|ynQ&;x&rR(l)uX$LFO!*3 z`NU30Z+DFoXDOn_zP5Y9aDAho<|E-{mES>%LIhI^N=y|!>^VfT;N~zsas7?_h6x@i z+<4=&0Ze}~mdQKwBR@L@(O7@%V$5S1bng4yo6|s0e3p;=te};n@ni`j1R3rxetf??| z|6#`19^*V6%zR)YD?v|3)IHyJNVN2_Uo+YDoo7ze0mBz!9;kPov501@lILSp$`G>I zO7I+)-FqReVFI=72#jj@PTM&@r}Hy;MJhTeA1cbTv-7>Luu1q!{PCuwyDhei)Ke8k ztxT}P2IBS}vPO)@{Wn#?t#%ek=zcP^kBES^(gA+&-7$|)_Gy) z(rJpD@&aTr-Pw-8Jpp{^fYm~$GhCXvoIQF51`j1F?8eTajh`J8LmsbwA(i5xi!4yS z`tr>J9z0a!f=4tBz7+N7^~ChnNJLXeYWCJ;(*f^VnKwDy0s>GE^JI&~Kb-NLN72*M z8wjokn+kN~myE;tQ+_&o+C^!?>FRqzv%mcuaY1hQjO4Fr`FAN2zjvA?C!B?^0eCq> zI3};Li8+87sHq=r6I@Tn$H^-vz@tl@-q`>5)5&(qxrIggm!Ui7KLd&aq^7L(v_$dM GhyMT?Z_ diff --git a/Buildings/Resources/Images/Examples/Tutorial/SpaceCooling/System3TemperaturesClosedLoop.png b/Buildings/Resources/Images/Examples/Tutorial/SpaceCooling/System3TemperaturesClosedLoop.png index bed0b17a89bc397fe86154e0903cae3ad4f59f08..622a93a6d7b915e9c1e7721b4b671a3bbd634616 100644 GIT binary patch literal 35115 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 literal 17670 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 Date: Mon, 15 Mar 2021 15:47:38 -0700 Subject: [PATCH 51/69] revised according to Michael's comments --- .../BaseClasses/WetCoilDryRegime.mo | 11 +- .../BaseClasses/WetCoilDryWetRegime.mo | 15 +- .../BaseClasses/WetCoilUARated.mo | 74 +++++---- .../BaseClasses/WetCoilWetRegime.mo | 143 +++++++++++------- .../WetCoilEffectivenessNTUMassFlow.mo | 8 - .../Validation/WetCoilEffectivenessNTU.mo | 7 +- 6 files changed, 151 insertions(+), 107 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo index 4ed0ac856b9..4ece1ad8c7b 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo @@ -28,9 +28,13 @@ model WetCoilDryRegime // -- misc. input Buildings.Fluid.Types.HeatExchangerFlowRegime cfg "The flow regime of the heat exchanger"; - input Modelica.SIunits.MassFlowRate mAir_flow_nominal; - input Modelica.SIunits.MassFlowRate mWat_flow_nominal; + input Modelica.SIunits.MassFlowRate mAir_flow_nominal + "Nominal mass flow rate for air"; + input Modelica.SIunits.MassFlowRate mWat_flow_nominal + "Nominal mass flow rate for water"; + parameter Real delta = 1E-3 "Small value used for smoothing"; + output Modelica.SIunits.HeatFlowRate QTot_flow "Heat transferred from water to air"; output Modelica.SIunits.Temperature TWatOut @@ -58,8 +62,7 @@ model WetCoilDryRegime output Modelica.SIunits.Temperature TSurAirOut "Surface Temperature at air outlet"; equation - UA = 1/ (1 / UAAir + 1 / UAWat) - "UA is for the overall coil (i.e., both sides)"; + UA = 1/ (1 / UAAir + 1 / UAWat); eps=epsilon_C( UA=UA, diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo index 52cdf2e216d..0b5168b3fd8 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo @@ -9,10 +9,12 @@ model WetCoilDryWetRegime "Nominal mass flow rate for air" annotation(Dialog(group = "Nominal condition")); - input Real Qfac(final unit="1"); + input Real Qfac(final unit="1") + "a smoothing factor to prevent division-by-zero"; input Buildings.Fluid.Types.HeatExchangerFlowRegime cfg= - Buildings.Fluid.Types.HeatExchangerFlowRegime.CounterFlow; + Buildings.Fluid.Types.HeatExchangerFlowRegime.CounterFlow + "heat exchanger configuration"; // -- Water Modelica.Blocks.Interfaces.RealInput UAWat( @@ -191,9 +193,14 @@ equation TAirInDewPoi=TDewIn.T; mu_FW= Buildings.Utilities.Math.Functions.spliceFunction( - pos=0,neg=1,x=fullywet.TSurAirIn-TAirInDewPoi,deltax=max(abs(fullydry.TSurAirOut- fullywet.TSurAirIn),1e-3)); + pos=0,neg=1,x=fullywet.TSurAirIn-TAirInDewPoi, + deltax=Buildings.Utilities.Math.Functions.smoothMax(abs(fullydry.TSurAirOut- fullywet.TSurAirIn),1e-2,1e-3)); + //max(abs(fullydry.TSurAirOut- fullywet.TSurAirIn),1e-3)); + mu_FD= Buildings.Utilities.Math.Functions.spliceFunction( - pos=1,neg=0,x=fullydry.TSurAirOut-TAirInDewPoi,deltax=max(abs(fullydry.TSurAirOut- fullywet.TSurAirIn),1e-3)); + pos=1,neg=0,x=fullydry.TSurAirOut-TAirInDewPoi, + deltax=Buildings.Utilities.Math.Functions.smoothMax(abs(fullydry.TSurAirOut- fullywet.TSurAirIn),1e-2,1e-3)); + //max(abs(fullydry.TSurAirOut- fullywet.TSurAirIn),1e-3)); w_FW=mu_FW/(mu_FW+mu_FD); w_FD=mu_FD/(mu_FW+mu_FD); diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo index 66c93824ca4..cf4d62897bd 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo @@ -28,12 +28,20 @@ model WetCoilUARated parameter Modelica.SIunits.MassFlowRate mWat_flow "Water mass flow rate at a rated condition"; parameter Modelica.SIunits.ThermalConductance UA - "UA is for the overall coil (i.e., both sides)"; + "the overall heat transfer coefficient for a fully dry condition"; parameter Real r_nominal(min=0, max=1) "Ratio between air-side and water-side convective heat transfer at nominal condition"; protected constant Modelica.SIunits.SpecificEnthalpy hfg= - Buildings.Utilities.Psychrometrics.Constants.h_fg; + Buildings.Utilities.Psychrometrics.Constants.h_fg + "Enthapy of vaporization of water"; + constant Modelica.SIunits.SpecificEnthalpy hunit=1 + "Physical dimension of specific enthalpy used for a unit conversion"; + constant Modelica.SIunits.Temperature Tunit=1 + "Physical dimension of temperature used for a unit conversion"; + constant Modelica.SIunits.SpecificHeatCapacity cpunit=1 + "Physical dimension of specific heat capacity used for a unit conversion"; + parameter Modelica.SIunits.MassFraction X_wAirOut(fixed=false) "Mass fraction of water in outgoing air at a rated condition"; parameter Modelica.SIunits.SpecificEnthalpy hAirIn(fixed=false) @@ -43,21 +51,39 @@ protected // calculates all thermodynamic properties based on inputs parameter MediumA.ThermodynamicState staAir=MediumA.setState_phX( - p=MediumA.p_default,h=MediumA.h_default,X=MediumA.X_default[1:MediumA.nXi]); + p=MediumA.p_default,h=MediumA.h_default,X=MediumA.X_default[1:MediumA.nXi]) + "Air media object"; parameter MediumW.ThermodynamicState staWat=MediumW.setState_phX( - p=MediumW.p_default,h=MediumW.h_default,X=MediumW.X_default[1:MediumW.nXi]); + p=MediumW.p_default,h=MediumW.h_default,X=MediumW.X_default[1:MediumW.nXi]) + "Water media object"; parameter Modelica.SIunits.SpecificHeatCapacity cpAir= - MediumA.specificHeatCapacityCp(staAir); + MediumA.specificHeatCapacityCp(staAir) + "Isobaric specific heat capacity of air"; parameter Modelica.SIunits.SpecificHeatCapacity cpw= - MediumW.specificHeatCapacityCp(staWat); + MediumW.specificHeatCapacityCp(staWat) + "Isobaric specific heat capacity of water"; parameter Modelica.SIunits.SpecificHeatCapacity cpEff(fixed=false, min= 0) "Effective specific heat: change in saturated moist air enthalpy with respect to temperature along the saturation line between inlet and outlet water temperatures"; - constant Modelica.SIunits.SpecificEnthalpy hunit=1; - constant Modelica.SIunits.Temperature Tunit=1; - constant Modelica.SIunits.SpecificHeatCapacity cpunit=1; + parameter Modelica.SIunits.SpecificEnthalpy LMED(fixed=false) + "Log mean enthalpy difference"; + + parameter Modelica.SIunits.MassFlowRate UASta(fixed=false, min=0) + "Overall heat transfer coefficient for enthalpy difference"; + parameter Modelica.SIunits.HeatFlowRate QTot_flow=mWat_flow*cpw*(TWatOut-TWatIn) + "Total heat flow from air to water stream"; + + parameter Modelica.SIunits.ThermalConductance UAAir(min=0,start=10,fixed=false) + "Air side convective heat transfer coefficient, including fin resistance"; + parameter Modelica.SIunits.ThermalConductance UAWat(min=0,start=20,fixed=false) + "Water side convective heat transfer coefficient"; + + parameter Boolean IsFulDry(fixed=false) + "Indicator of the fully-dry coil regime"; + parameter Boolean IsFulWet(fixed=false) + "Indicator of the fully-wet coil regime"; Modelica.SIunits.AbsolutePressure pSatTWatIn= Buildings.Utilities.Psychrometrics.Functions.saturationPressure(TWatIn) @@ -83,36 +109,20 @@ protected p=MediumA.p_default, T=TWatOut, X={X_wSatTWatOut,1-X_wSatTWatOut}) "Enthalpy of saturated moist air at the water oulet temperature"; - parameter Modelica.SIunits.SpecificEnthalpy LMED(fixed=false) - "Log mean enthalpy difference"; - - parameter Modelica.SIunits.MassFlowRate UASta(fixed=false, min=0) - "Overall heat transfer coefficient for enthalpy difference"; - parameter Modelica.SIunits.HeatFlowRate QTot_flow=mWat_flow*cpw*(TWatOut-TWatIn) - "Total heat flow from air to water stream"; - - parameter Modelica.SIunits.ThermalConductance UAAir(min=0,start=10,fixed=false) - "Air side convective heat transfer coefficient, including fin resistance"; - parameter Modelica.SIunits.ThermalConductance UAWat(min=0,start=20,fixed=false) - "Water side convective heat transfer coefficient"; +initial equation - parameter Boolean IsFulDry(fixed=false); - parameter Boolean IsFulWet(fixed=false); + hAirIn=MediumA.specificEnthalpy_pTX( + p=MediumA.p_default, T=TAirIn, X={X_wAirIn, 1-X_wAirIn}); + hAirOut=MediumA.specificEnthalpy_pTX( + p=MediumA.p_default, T=TAirOut, X={X_wAirOut, 1-X_wAirOut}); -initial equation + QTot_flow = mAir_flow*(hAirIn-hAirOut); if not use_UA_nominal then assert(TAirOutTWatIn and TWatIn=X_wAirIn); IsFulWet=(X_wSatTWatOut<=X_wAirIn); @@ -177,7 +187,7 @@ First implementation ", info="

    This model calculates the overall heat transfer coefficient, i.e., -UA-value, from cooling coil data at rated conditions. +UA-value, from cooling coil data at rated conditions.

    The main limitation of the current implementation is that the rated diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo index 250501add87..b05b2d75910 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo @@ -1,6 +1,14 @@ within Buildings.Fluid.HeatExchangers.BaseClasses; model WetCoilWetRegime "Fully wet coil model using esilon_C.mo function" + constant Real cpEff0=2050 "Used for scaling"; + constant Real cpWat0=4200 "Used for scaling"; + parameter Real delta = 1E-3 "Small value used for smoothing"; + constant Modelica.SIunits.SpecificHeatCapacity cpDum=1 + "Dummy cp to eliminate the warning message of the unit mismatch when using the eps-NTU model for the wet coil"; + constant Modelica.SIunits.TemperatureDifference dTWat=0.1; + parameter Real tau=6*60 + "Time constant for the state estimation: introduced to avoid the algebraic loop of the wet coil equations"; // - water input Modelica.SIunits.ThermalConductance UAWat @@ -47,16 +55,7 @@ model WetCoilWetRegime Real NonZerDelWatTem "Regularization water temperature difference betwee inlet and outlet"; - output Modelica.SIunits.HeatFlowRate QTot_flow - "Total heat flow from water to air stream"; - output Modelica.SIunits.HeatFlowRate QSen_flow - "Sensible heat flow from water to air stream"; - output Modelica.SIunits.Temperature TWatOut - "Temperature at the water outlet"; - output Modelica.SIunits.Temperature TSurAirIn - "Coil surface temperature at the air inlet"; - output Modelica.SIunits.Temperature TAirOut - "Temperature at the air outlet"; + Modelica.SIunits.SpecificEnthalpy hAirOut "Specific enthalpy of moist air at the air outlet"; Buildings.Utilities.Psychrometrics.hSat_pTSat hSatWatOutM(p=pAir,TSat=TWatOutEst) @@ -70,19 +69,16 @@ model WetCoilWetRegime Modelica.SIunits.SpecificEnthalpy hSatSurEff "Enthalpy of saturated moist air at the effective surface temperature"; - Buildings.Utilities.Psychrometrics.hSat_pTSat hSatSurEffM(p=pAir,TSat=TSurEff); - Buildings.Utilities.Psychrometrics.hSat_pTSat hSatSurEffMinM(p=pAir,TSat=273.15+1); + Buildings.Utilities.Psychrometrics.hSat_pTSat hSatSurEffM(p=pAir,TSat=TSurEff) + "An object to calculate the saturated enthalpy of moist air at the coil surface temperature"; + Buildings.Utilities.Psychrometrics.hSat_pTSat hSatSurEffMinM(p=pAir,TSat=273.15+1) + "An object to calculate a lower bound of the saturated enthalpy of moist + air at the coil surface temperature"; Modelica.SIunits.SpecificHeatCapacity cpEff - "Effective specific heat: change in enthalpy with respect to temperature along the saturation line at the local water temperature"; - constant Real cpEff0=2050 "Used for scaling"; - constant Real cpWat0=4200 "Used for scaling"; - parameter Real delta = 1E-3 "Small value used for smoothing"; - constant Modelica.SIunits.SpecificHeatCapacity cpDum=1 - "Dummy cp to eliminate the warning message of the unit mismatch when using the eps-NTU model for the wet coil"; - constant Modelica.SIunits.TemperatureDifference dTWat=0.1; - parameter Real tau=6*60 - "Time constant for the state estimation: introduced to avoid the algebraic loop of the wet coil equations"; + "Effective specific heat: change in enthalpy with respect to temperature + along the saturation line at the local water temperature"; + Modelica.SIunits.MassFlowRate UASta "Overall mass transfer coefficient for dry coil"; @@ -108,8 +104,18 @@ model WetCoilWetRegime Modelica.SIunits.Temperature TWatOutEst "State_estimation of Temperature of water at outlet"; + output Modelica.SIunits.HeatFlowRate QTot_flow + "Total heat flow from water to air stream"; + output Modelica.SIunits.HeatFlowRate QSen_flow + "Sensible heat flow from water to air stream"; + output Modelica.SIunits.Temperature TWatOut + "Temperature at the water outlet"; + output Modelica.SIunits.Temperature TSurAirIn + "Coil surface temperature at the air inlet"; + output Modelica.SIunits.Temperature TAirOut + "Temperature at the air outlet"; initial equation - TWatOutEst=0.5*(TWatIn+ TAirIn); //273.15+10; + TWatOutEst=0.5*(TWatIn+ TAirIn); equation @@ -174,47 +180,78 @@ for more information. ", info=" -

    This model implements the calculation for a 100% wet coil.

    -

    The equations from Braun (1988) and Mitchell and Braun (2012a and b), -which are essentially the extension of the ε-NTU approach to -simultaneous sensible and latent heat transfer, are utilized.

    -

    The mathematical equations are analogous to that of the sensible heat exchanger. -The key change is that the heat transfer is driven by an enthalpy difference -not by an temperature difference. -This change in the driving potential results in redefining capacitances and -heat transfer coefficients accordinlgy.

    -

    The total heat transfer rate is expressed as

    -

    Qtot=ε* C*min -(hair,in-hsat(Twat,in)),

    -

    where ε*=f(Cr*,NTU*) and f is the same epsilon-NTU relationships -(depending on the heat exchanger configuration) for the sensible heat exchanger.

    -

    hair,in and hsat(Twat,in) are the specific enthalpies -of the incoming moist air and saturated moist air at the water inlet temperature.

    -

    The capacitances of water and air streams are defined as

    -

    C*air=mair and -C*wat=mwatcp,wat/csat,

    -

    where csat is an specific heat capacity, which indicates the sensitivity +

    +This model implements the calculation for a 100% wet coil. +

    +

    +The equations from Braun (1988) and Mitchell and Braun (2012a and b), +which are essentially the extension of the ε-NTU approach to +simultaneous sensible and latent heat transfer, are utilized. +

    +

    +The mathematical equations are analogous to that of the sensible heat exchanger. +However, the key distinction is from that the heat transfer is driven by an enthalpy difference +not by an temperature difference. This change in the driving potential results in re-defining +capacitances and heat transfer coefficients accordinlgy. +

    + +

    +The total heat transfer rate is expressed as +

    +

    + Qtot=ε* C*min +(hair,in-hsat(Twat,in)), +

    +

    +where ε*=f(Cr*,NTU*) and f is the same ε-NTU relationships +(depending on the heat exchanger configuration) for the sensible heat exchanger. +

    +

    +hair,in and hsat(Twat,in) are +the specific enthalpies of the incoming moist air and saturated moist air +at the water inlet temperature. +

    +

    +The capacitances of water and air streams are defined as +

    +

    C*air=mair and +C*wat=mwatcp,wat/csat, +

    +

    +where csat is an specific heat capacity, which indicates the sensitivity of the enthalpy of the staturated moist air w.r.t. the temperature, and is defined -here as csat=(hsat(Twat,out)-hsat(Twat,in)) -/(Twat,out-Twat,in).

    -

    The capacitance ratio and minimum capacitance are naturally defined as

    -

    Cr*=min(C*air,C*wat)/max(C*air,C*wat) -and C*min=min(C*air,C*wat).

    -


    The number of transfer unit for the wet-coil is defined as NTU*=UA*/C*min, where

    -

    UA*=1/(1/(UAair/cp,air)+1/(UAwat/csat). +here as csat=(hsat(Twat,out)-hsat(Twat,in)) +/(Twat,out-Twat,in).

    +

    +The capacitance ratio and minimum capacitance are naturally defined as +

    +

    Cr*=min(C*air,C*wat)/max(C*air,C*wat) +and C*min=min(C*air,C*wat). +

    +


    +The number of transfer unit for the wet-coil is defined as NTU*=UA*/C*min, where +

    +

    +UA*=1/(1/(UAair/cp,air)+1/(UAwat/csat). +

    +

    References

    -

    Braun, James E. 1988. +

    +Braun, James E. 1988. "Methodologies for the Design and Control of Central Cooling Plants". PhD Thesis. University of Wisconsin - Madison. Available online.

    -

    Mitchell, John W., and James E. Braun. 2012a. +

    +Mitchell, John W., and James E. Braun. 2012a. Principles of heating, ventilation, and air conditioning in buildings. -Hoboken, N.J.: Wiley.

    -

    Mitchell, John W., and James E. Braun. 2012b. +Hoboken, N.J.: Wiley. +

    +

    +Mitchell, John W., and James E. Braun. 2012b. "Supplementary Material Chapter 2: Heat Exchangers for Cooling Applications". Excerpt from Principles of heating, ventilation, and air conditioning in buildings. Hoboken, N.J.: Wiley. diff --git a/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mo b/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mo index 5f5d608dceb..136d58847d2 100644 --- a/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mo +++ b/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mo @@ -84,13 +84,5 @@ is replaced here by Buildings.Fluid.HeatExchangers.WetCoilEffectivenessNTU.

    -

    -The two models match approximately (considering that - -Buildings.Fluid.HeatExchangers.WetCoilEffectivenessNTU -does not have dynamics) over the first half of the simulation but -do not agree well over the second half which subjects the model to -flow reversal. -

    ")); end WetCoilEffectivenessNTUMassFlow; diff --git a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo index 7339ae51f2d..110cc557295 100644 --- a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo @@ -30,7 +30,7 @@ model WetCoilEffectivenessNTU parameter Modelica.SIunits.MassFlowRate m2_flow_nominal = 2.646 "Nominal mass flow rate of air"; parameter Types.HeatExchangerConfiguration hexCon= - Types.HeatExchangerConfiguration.CrossFlowStream1MixedStream2Unmixed + Types.HeatExchangerConfiguration.CounterFlow "Heat exchanger configuration"; Buildings.Fluid.Sources.Boundary_pT sinAir( redeclare package Medium = Medium_A, @@ -272,11 +272,6 @@ A discretized wet coil model is also simulated for comparison. Note that the outlet air relative humidity may slightly exceed 100% when using the epsilon-NTU model.

    -

    -The slight deviations we find are believed due to differences in the tolerance -of the solver algorithms employed as well as differences in media property -calculations for air and water. -

    References

    Mitchell, John W., and James E. Braun. 2012. From 11cb3469beb7b7b2ee3d5663ba5ac317da24c39d Mon Sep 17 00:00:00 2001 From: Michael Wetter Date: Mon, 22 Mar 2021 18:07:46 -0700 Subject: [PATCH 52/69] Rewrote to make it easier to read --- .../HeatExchangers/BaseClasses/WetCoilWetRegime.mo | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo index b05b2d75910..f8044abf926 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilWetRegime.mo @@ -153,14 +153,16 @@ equation NTUAirSta = UAAir/(mAir_flow*cpAir); hSatSurEff = Buildings.Utilities.Math.Functions.smoothMax( - hSatSurEffMinM.hSat, hAirIn +(hAirOut - hAirIn) / - (1 - exp(-NTUAirSta)),delta*1E4); // NTUAirSta is bounded as long as UAAir>0 due to the regularization of mAir_flow + x1 = hSatSurEffMinM.hSat, + x2 = hAirIn +(hAirOut - hAirIn) / (1 - exp(-NTUAirSta)), + deltaX = delta*1E4); // NTUAirSta is bounded as long as UAAir>0 due to the regularization of mAir_flow hSatSurEffM.hSat=hSatSurEff; TAirOut = TSurEff +(TAirIn - TSurEff)*exp(-NTUAirSta); QSen_flow= Buildings.Utilities.Math.Functions.smoothMin( - mAir_flow*cpAir*(TAirIn-TAirOut),QTot_flow, - delta*mWatNonZer_flow*cpWat0*5); // the last term is only for regularization with DTWater=5oC + x1 = mAir_flow*cpAir*(TAirIn-TAirOut), + x2 = QTot_flow, + deltaX = delta*mWatNonZer_flow*cpWat0*5); // the last term is only for regularization with DTWater=5oC (TAirIn-TSurAirIn)*UAAir=(TSurAirIn-TWatOut)*UAWat; der(TWatOutEst)=-1/tau*TWatOutEst+1/tau*TWatOut; From d923952182c1295ea6cb721fad3f693635938610 Mon Sep 17 00:00:00 2001 From: Michael Wetter Date: Mon, 22 Mar 2021 18:19:15 -0700 Subject: [PATCH 53/69] Revised variable names --- .../BaseClasses/WetCoilDryWetRegime.mo | 22 ++++++------ .../BaseClasses/WetCoilUARated.mo | 34 +++++++++---------- 2 files changed, 28 insertions(+), 28 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo index 0b5168b3fd8..d8c377d1834 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo @@ -128,7 +128,7 @@ model WetCoilDryWetRegime Placement(transformation(extent={{-10,-10},{10,10}}, rotation=0, origin={150,-100}))); - Buildings.Fluid.HeatExchangers.BaseClasses.WetCoilDryRegime fullydry( + Buildings.Fluid.HeatExchangers.BaseClasses.WetCoilDryRegime fullyDry( UAWat=UAWat, mWat_flow=mWat_flow, cpWat=cpWat, @@ -143,7 +143,7 @@ model WetCoilDryWetRegime mAir_flow_nominal=mAir_flow_nominal, mWat_flow_nominal=mWat_flow_nominal) "Fully-dry coil model"; - Buildings.Fluid.HeatExchangers.BaseClasses.WetCoilWetRegime fullywet( + Buildings.Fluid.HeatExchangers.BaseClasses.WetCoilWetRegime fullyWet( UAWat=UAWat, mWat_flow=mWat_flow, cpWat=cpWat, @@ -180,7 +180,7 @@ protected Buildings.Utilities.Psychrometrics.pW_X pWIn(X_w=X_wAirIn,p_in=pAir); Buildings.Utilities.Psychrometrics.TDewPoi_pW TDewIn(p_w=pWIn.p_w); - //-- parameters for fuzzy logics + //-- Values for fuzzy logics Real mu_FW(final unit="1", min=0, max=1), mu_FD(unit="1",min=0, max=1) "Membership functions for Fully-Wet and Fully-Dry conditions"; Real w_FW(final unit="1", min=0, max=1), w_FD(unit="1",min=0, max=1) @@ -193,20 +193,20 @@ equation TAirInDewPoi=TDewIn.T; mu_FW= Buildings.Utilities.Math.Functions.spliceFunction( - pos=0,neg=1,x=fullywet.TSurAirIn-TAirInDewPoi, - deltax=Buildings.Utilities.Math.Functions.smoothMax(abs(fullydry.TSurAirOut- fullywet.TSurAirIn),1e-2,1e-3)); - //max(abs(fullydry.TSurAirOut- fullywet.TSurAirIn),1e-3)); + pos=0,neg=1,x=fullyWet.TSurAirIn-TAirInDewPoi, + deltax=Buildings.Utilities.Math.Functions.smoothMax(abs(fullyDry.TSurAirOut-fullyWet.TSurAirIn), 1e-2,1e-3)); + //max(abs(fullyDry.TSurAirOut- fullyWet.TSurAirIn),1e-3)); mu_FD= Buildings.Utilities.Math.Functions.spliceFunction( - pos=1,neg=0,x=fullydry.TSurAirOut-TAirInDewPoi, - deltax=Buildings.Utilities.Math.Functions.smoothMax(abs(fullydry.TSurAirOut- fullywet.TSurAirIn),1e-2,1e-3)); - //max(abs(fullydry.TSurAirOut- fullywet.TSurAirIn),1e-3)); + pos=1,neg=0,x=fullyDry.TSurAirOut-TAirInDewPoi, + deltax=Buildings.Utilities.Math.Functions.smoothMax(abs(fullyDry.TSurAirOut-fullyWet.TSurAirIn), 1e-2,1e-3)); + //max(abs(fullyDry.TSurAirOut- fullyWet.TSurAirIn),1e-3)); w_FW=mu_FW/(mu_FW+mu_FD); w_FD=mu_FD/(mu_FW+mu_FD); - QTot_flow= -(w_FW*fullywet.QTot_flow+w_FD*fullydry.QTot_flow)*Qfac; - QSen_flow= -(w_FW*fullywet.QSen_flow+w_FD*fullydry.QTot_flow)*Qfac; + QTot_flow= -(w_FW*fullyWet.QTot_flow+w_FD*fullyDry.QTot_flow)*Qfac; + QSen_flow= -(w_FW*fullyWet.QSen_flow+w_FD*fullyDry.QTot_flow)*Qfac; dryFra= w_FD; QLat_flow=QTot_flow-QSen_flow; diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo index cf4d62897bd..25d3773d979 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo @@ -35,12 +35,12 @@ protected constant Modelica.SIunits.SpecificEnthalpy hfg= Buildings.Utilities.Psychrometrics.Constants.h_fg "Enthapy of vaporization of water"; - constant Modelica.SIunits.SpecificEnthalpy hunit=1 - "Physical dimension of specific enthalpy used for a unit conversion"; - constant Modelica.SIunits.Temperature Tunit=1 - "Physical dimension of temperature used for a unit conversion"; - constant Modelica.SIunits.SpecificHeatCapacity cpunit=1 - "Physical dimension of specific heat capacity used for a unit conversion"; + constant Modelica.SIunits.SpecificEnthalpy hUnit=1 + "Physical dimension of specific enthalpy used for a unit conversion"; + constant Modelica.SIunits.Temperature TUnit=1 + "Physical dimension of temperature used for a unit conversion"; + constant Modelica.SIunits.SpecificHeatCapacity cpUnit=1 + "Physical dimension of specific heat capacity used for a unit conversion"; parameter Modelica.SIunits.MassFraction X_wAirOut(fixed=false) "Mass fraction of water in outgoing air at a rated condition"; @@ -60,8 +60,8 @@ protected parameter Modelica.SIunits.SpecificHeatCapacity cpAir= MediumA.specificHeatCapacityCp(staAir) "Isobaric specific heat capacity of air"; - parameter Modelica.SIunits.SpecificHeatCapacity cpw= - MediumW.specificHeatCapacityCp(staWat) + parameter Modelica.SIunits.SpecificHeatCapacity cpWat= + MediumW.specificHeatCapacityCp(staWat) "Isobaric specific heat capacity of water"; parameter Modelica.SIunits.SpecificHeatCapacity cpEff(fixed=false, min= 0) "Effective specific heat: change in saturated moist air enthalpy with respect to @@ -72,8 +72,8 @@ protected parameter Modelica.SIunits.MassFlowRate UASta(fixed=false, min=0) "Overall heat transfer coefficient for enthalpy difference"; - parameter Modelica.SIunits.HeatFlowRate QTot_flow=mWat_flow*cpw*(TWatOut-TWatIn) - "Total heat flow from air to water stream"; + parameter Modelica.SIunits.HeatFlowRate QTot_flow=mWat_flow*cpWat*(TWatOut - + TWatIn) "Total heat flow from air to water stream"; parameter Modelica.SIunits.ThermalConductance UAAir(min=0,start=10,fixed=false) "Air side convective heat transfer coefficient, including fin resistance"; @@ -135,17 +135,17 @@ initial equation TAirIn, TAirOut, TWatIn, - TWatOut)/Tunit*hunit; + TWatOut)/TUnit*hUnit; QTot_flow=LMED*UASta; cpEff= 0; - UA= UASta*cpunit; + UA= UASta*cpUnit; else //fully wet // calculation of overall UAsta based on log mean enthalpy difference LMED=Buildings.Fluid.HeatExchangers.BaseClasses.lmtd( - hAirIn/hunit*Tunit, - hAirOut/hunit*Tunit, - hSatTWatIn/hunit*Tunit, - hSatTWatOut/hunit*Tunit)/Tunit*hunit; + hAirIn/hUnit*TUnit, + hAirOut/hUnit*TUnit, + hSatTWatIn/hUnit*TUnit, + hSatTWatOut/hUnit*TUnit)/TUnit*hUnit; QTot_flow=LMED*UASta; cpEff= (hSatTWatOut-hSatTWatIn)/(TWatOut-TWatIn); UASta = (UAAir/cpAir)/(1 + (cpEff*UAAir)/(cpAir*UAWat)); @@ -161,7 +161,7 @@ initial equation hAirOut=MediumA.h_default; IsFulDry=false; IsFulWet=false; - LMED=hunit; + LMED=hUnit; QTot_flow=LMED*UASta; cpEff= 0; end if; From 403b1774919af897f946b9ba0757063b5ac0f299 Mon Sep 17 00:00:00 2001 From: Michael Wetter Date: Mon, 22 Mar 2021 18:20:43 -0700 Subject: [PATCH 54/69] Removed setting parameters to their defaults --- .../HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mo | 2 -- 1 file changed, 2 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mo b/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mo index 136d58847d2..de19adba5cc 100644 --- a/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mo +++ b/Buildings/Fluid/HeatExchangers/Examples/WetCoilEffectivenessNTUMassFlow.mo @@ -15,8 +15,6 @@ model WetCoilEffectivenessNTUMassFlow m1_flow_nominal=m1_flow_nominal, m2_flow_nominal=m2_flow_nominal, dp2_nominal(displayUnit="Pa") = 200, - allowFlowReversal1=true, - allowFlowReversal2=true, dp1_nominal(displayUnit="Pa") = 3000, use_UA_nominal=true, UA_nominal=Q_flow_nominal/Buildings.Fluid.HeatExchangers.BaseClasses.lmtd( From d81206fa38e81ba43d82e7c0ddfaa5b0a4b87896 Mon Sep 17 00:00:00 2001 From: Michael Wetter Date: Mon, 22 Mar 2021 18:26:22 -0700 Subject: [PATCH 55/69] Made parameter assignment final in local instance --- .../BaseClasses/WetCoilDryWetRegime.mo | 59 ++++++++++--------- 1 file changed, 31 insertions(+), 28 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo index d8c377d1834..3ad25a66f2c 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo @@ -129,36 +129,36 @@ model WetCoilDryWetRegime rotation=0, origin={150,-100}))); Buildings.Fluid.HeatExchangers.BaseClasses.WetCoilDryRegime fullyDry( - UAWat=UAWat, - mWat_flow=mWat_flow, - cpWat=cpWat, - TWatIn=TWatIn, - UAAir=UAAir, - mAir_flow=mAir_flow, - mWatNonZer_flow=mWatNonZer_flow, - mAirNonZer_flow=mAirNonZer_flow, - cpAir=cpAir, - TAirIn=TAirIn, + final UAWat=UAWat, + final mWat_flow=mWat_flow, + final cpWat=cpWat, + final TWatIn=TWatIn, + final UAAir=UAAir, + final mAir_flow=mAir_flow, + final mWatNonZer_flow=mWatNonZer_flow, + final mAirNonZer_flow=mAirNonZer_flow, + final cpAir=cpAir, + final TAirIn=TAirIn, final cfg=cfg, - mAir_flow_nominal=mAir_flow_nominal, - mWat_flow_nominal=mWat_flow_nominal) "Fully-dry coil model"; + final mAir_flow_nominal=mAir_flow_nominal, + final mWat_flow_nominal=mWat_flow_nominal) "Fully-dry coil model"; Buildings.Fluid.HeatExchangers.BaseClasses.WetCoilWetRegime fullyWet( - UAWat=UAWat, - mWat_flow=mWat_flow, - cpWat=cpWat, - TWatIn=TWatIn, - UAAir=UAAir, - mAir_flow=mAir_flow, - mWatNonZer_flow=mWatNonZer_flow, - mAirNonZer_flow=mAirNonZer_flow, - cpAir=cpAir, - TAirIn=TAirIn, + final UAWat=UAWat, + final mWat_flow=mWat_flow, + final cpWat=cpWat, + final TWatIn=TWatIn, + final UAAir=UAAir, + final mAir_flow=mAir_flow, + final mWatNonZer_flow=mWatNonZer_flow, + final mAirNonZer_flow=mAirNonZer_flow, + final cpAir=cpAir, + final TAirIn=TAirIn, final cfg=cfg, - mAir_flow_nominal=mAir_flow_nominal, - mWat_flow_nominal=mWat_flow_nominal, - pAir=pAir, - X_wAirIn=X_wAirIn) "Fully-wet coil model"; + final mAir_flow_nominal=mAir_flow_nominal, + final mWat_flow_nominal=mWat_flow_nominal, + final pAir=pAir, + final X_wAirIn=X_wAirIn) "Fully-wet coil model"; protected Modelica.SIunits.MassFlowRate mAirNonZer_flow(min=Modelica.Constants.eps)= @@ -177,8 +177,11 @@ protected Modelica.SIunits.Temperature TAirInDewPoi "Dew point temperature of incoming air"; - Buildings.Utilities.Psychrometrics.pW_X pWIn(X_w=X_wAirIn,p_in=pAir); - Buildings.Utilities.Psychrometrics.TDewPoi_pW TDewIn(p_w=pWIn.p_w); + Buildings.Utilities.Psychrometrics.pW_X pWIn( + final X_w=X_wAirIn, + final p_in=pAir); + Buildings.Utilities.Psychrometrics.TDewPoi_pW TDewIn( + final p_w=pWIn.p_w); //-- Values for fuzzy logics Real mu_FW(final unit="1", min=0, max=1), mu_FD(unit="1",min=0, max=1) From 77f49390868baa97453b4f4fe62ecb7d875628f8 Mon Sep 17 00:00:00 2001 From: Michael Wetter Date: Mon, 22 Mar 2021 18:28:59 -0700 Subject: [PATCH 56/69] Corrected variable capitalization --- .../HeatExchangers/BaseClasses/WetCoilUARated.mo | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo index 25d3773d979..c3476eca9cd 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo @@ -80,9 +80,9 @@ protected parameter Modelica.SIunits.ThermalConductance UAWat(min=0,start=20,fixed=false) "Water side convective heat transfer coefficient"; - parameter Boolean IsFulDry(fixed=false) + parameter Boolean isFulDry(fixed=false) "Indicator of the fully-dry coil regime"; - parameter Boolean IsFulWet(fixed=false) + parameter Boolean isFulWet(fixed=false) "Indicator of the fully-wet coil regime"; Modelica.SIunits.AbsolutePressure pSatTWatIn= @@ -123,14 +123,14 @@ initial equation "The rated condition is not for a cooling coil. " + "For a heating coil, use Buildings.Fluid.HeatExchangers.DryCoilEffectivenessNTU."); - IsFulDry=(X_wSatTWatIn>=X_wAirIn); - IsFulWet=(X_wSatTWatOut<=X_wAirIn); + isFulDry=(X_wSatTWatIn>=X_wAirIn); + isFulWet=(X_wSatTWatOut<=X_wAirIn); - assert(IsFulDry or IsFulWet, + assert(isFulDry or isFulWet, "In " + getInstanceName() + ":Cooling coil data under partially dry condition is not allowed at this moment. " + "Specify either fully-dry or fully-wet nominal condition"); - if IsFulDry then + if isFulDry then LMED=Buildings.Fluid.HeatExchangers.BaseClasses.lmtd( TAirIn, TAirOut, @@ -159,8 +159,8 @@ initial equation TWatOut=MediumA.T_default; hAirIn=MediumA.h_default; hAirOut=MediumA.h_default; - IsFulDry=false; - IsFulWet=false; + isFulDry=false; + isFulWet=false; LMED=hUnit; QTot_flow=LMED*UASta; cpEff= 0; From fa199e3e28ca944659c60adbc142d6887ac2e7ff Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Wed, 24 Mar 2021 10:04:31 -0700 Subject: [PATCH 57/69] Improve assert statement --- .../BaseClasses/WetCoilUARated.mo | 28 ++++++++++--------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo index c3476eca9cd..c0e468740ab 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo @@ -118,18 +118,22 @@ initial equation QTot_flow = mAir_flow*(hAirIn-hAirOut); - if not use_UA_nominal then - assert(TAirOutTWatIn and TWatIn= X_wAirIn) else true; + isFulWet = if not use_UA_nominal then (X_wSatTWatOut <= X_wAirIn) else true; - isFulDry=(X_wSatTWatIn>=X_wAirIn); - isFulWet=(X_wSatTWatOut<=X_wAirIn); + assert( + isFulDry or isFulWet, + "In " + getInstanceName() + + ": The nominal conditions correspond to a partially-wet coil regime. " + + "The modeling uncertainty under such conditions has not been assessed. " + + "Rather specify nominal conditions in fully-dry or fully-wet regime.", + level=AssertionLevel.warning); - assert(isFulDry or isFulWet, - "In " + getInstanceName() + ":Cooling coil data under partially dry condition is not allowed at this moment. " + - "Specify either fully-dry or fully-wet nominal condition"); + assert(use_UA_nominal or TAirOutTWatIn and TWatIn Date: Fri, 26 Mar 2021 15:35:21 -0700 Subject: [PATCH 58/69] Update validation model --- .../BaseClasses/WetCoilDryWetRegime.mo | 10 +++---- .../Validation/WetCoilEffectivenessNTU.mo | 14 ++++++--- ...ers_Validation_WetCoilEffectivenessNTU.txt | 30 +++++++++---------- .../Validation/WetCoilEffectivenessNTU.mos | 26 +++++++--------- ...ers.Validation.WetCoilEffectivenessNTU.mos | 5 +--- 5 files changed, 40 insertions(+), 45 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo index 3ad25a66f2c..779ad0c0db5 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo @@ -187,7 +187,7 @@ protected Real mu_FW(final unit="1", min=0, max=1), mu_FD(unit="1",min=0, max=1) "Membership functions for Fully-Wet and Fully-Dry conditions"; Real w_FW(final unit="1", min=0, max=1), w_FD(unit="1",min=0, max=1) - "Normailized weight functions for Fully-Wet and Fully-Dry conditions"; + "Normalized weight functions for Fully-Wet and Fully-Dry conditions"; Real dryFra(final unit="1", min=0, max=1) "Dry fraction, e.g., 0.3 means condensation occurs at 30% HX length from air inlet"; @@ -378,7 +378,7 @@ equation coordinateSystem(preserveAspectRatio=false, extent={{-140,-120},{140,120}})), Documentation(revisions="

      -
    • Jan 21, 2021, by Donghun Kim:
      First implementation of the fuzzy model. +
    • Jan 21, 2021, by Donghun Kim:
      First implementation of the fuzzy model. See issue 622 for more information.
    @@ -389,13 +389,13 @@ This model implements the switching algorithm for the dry and wet regime.

    The switching criteria for (counter-flow) cooling coil modes are as follows.

    -R1: If the coil surface temperature at the air inlet is lower than the dew-point +R1: If the coil surface temperature at the air inlet is lower than the dew-point temperature at the inlet to the coil, then the cooling coil surface is fully-wet.

    -R2: If the surface temperature at the air outlet section is higher than +R2: If the surface temperature at the air outlet section is higher than the dew-point temperature of the air at the inlet, then the cooling coil surface is fully-dry.

    -At each point of a simulation time step, the fuzzy-modeling approach determines +At each point of a simulation time step, the fuzzy-modeling approach determines the weights for R1 and R2 respectively (namely μFW and μFD) from the dew-point and coil surface temperatures.

    diff --git a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo index 110cc557295..0fe245ff4c4 100644 --- a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo @@ -109,7 +109,7 @@ model WetCoilEffectivenessNTU UA_nominal=UA_nominal, show_T=true, nEle=30, - energyDynamics=Modelica.Fluid.Types.Dynamics.SteadyState, + energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, tau1=0.1, tau2=0.1, tau_m=0.1) @@ -173,7 +173,8 @@ model WetCoilEffectivenessNTU "Source for water" annotation (Placement(transformation(extent={{-180,-30},{-160,-10}}))); Modelica.Blocks.Sources.CombiTimeTable w_a2(table=[0,0.0035383; 1,0.01765], - timeScale=100) "Absolute humidity of entering air" + timeScale=1000) + "Absolute humidity of entering air" annotation (Placement(transformation(extent={{196,-34},{176,-14}}))); equation connect(pAir.y, wetBulIn.p) annotation (Line(points={{119,-30},{112,-30},{112, @@ -262,11 +263,16 @@ model.

    Validation

    -The example is a steady-state analysis of a wet coil with constant air +The example simulates a wet coil with constant air and water inlet temperature and mass flow rate, and an increasing air inlet humidity which triggers the transition from a fully-dry to a fully-wet regime. The reference used for validation is the published experimental data. -A discretized wet coil model is also simulated for comparison. +A discretized wet coil model is also simulated for comparison. +To provide an accurate reference, the latter model is configured with 30 elements. +Under steady-state modeling assumptions, this creates a large system of +non-linear equations. To alleviate this effect, dynamics are considered but +the simulation time is increased to 1000 s to reproduce quasi steady-state +conditions.

    Note that the outlet air relative humidity may slightly exceed 100% when using diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt index e801d89ba91..9cfd144f3bc 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt @@ -1,4 +1,4 @@ -last-generated=2021-03-10 +last-generated=2021-03-26 statistics-initialization= { "nonlinear": "0, 1, 1", @@ -7,23 +7,21 @@ statistics-initialization= statistics-simulation= { "linear": " ", - "nonlinear": "1, 1, 91, 1, 1, 1, 1", - "number of continuous time states": "11", + "nonlinear": "1, 1, 1, 1, 1, 1", + "number of continuous time states": "131", "numerical Jacobians": "0" } -time=[0e+00, 1e+02] -hexWetNTU.Q1_flow=[4.370540625e+04, 4.370848828125e+04, 4.37115703125e+04, 4.37146484375e+04, 4.37177265625e+04, 4.37208046875e+04, 4.37238828125e+04, 4.372695703125e+04, 4.373003125e+04, 4.37331015625e+04, 4.373617578125e+04, 4.37392421875e+04, 4.37423125e+04, 4.374537890625e+04, 4.37484453125e+04, 4.375151171875e+04, 4.375457421875e+04, 4.375763671875e+04, 4.376069921875e+04, 4.37637578125e+04, 4.376681640625e+04, 4.3769875e+04, 4.37729296875e+04, 4.37759296875e+04, 4.377755859375e+04, 4.377250390625e+04, 4.3754e+04, 4.37202421875e+04, 4.367780078125e+04, 4.3641015625e+04, 4.362915625e+04, 4.366283984375e+04, 4.376076171875e+04, 4.39373046875e+04, 4.42011640625e+04, 4.45549453125e+04, 4.4995421875e+04, 4.5514328125e+04, 4.6099453125e+04, 4.673594140625e+04, 4.740766796875e+04, 4.80986640625e+04, 4.879438671875e+04, 4.94827734375e+04, 5.015500390625e+04, 5.080583984375e+04, 5.14335703125e+04, 5.203959765625e+04, 5.262765625e+04, 5.3202765625e+04, 5.377004296875e+04, 5.433359765625e+04, 5.48958828125e+04, 5.545785546875e+04, 5.60197109375e+04, 5.658145703125001e+04, 5.714309765625001e+04, 5.770462890624999e+04, 5.826605078124999e+04, 5.882736328125e+04, 5.938855859375e+04, 5.9949640625e+04, 6.051060546875e+04, 6.107144921875e+04, 6.163217578125e+04, 6.219278125e+04, 6.2753265625e+04, 6.331362109375e+04, 6.387385546875e+04, 6.44339609375e+04, 6.49939375e+04, 6.555378125e+04, 6.61135e+04, 6.6673078125e+04, 6.72325234375e+04, 6.77918359375e+04, 6.8351015625e+04, 6.8910046875e+04, 6.94689453125e+04, 7.00276953125e+04, 7.05863046875e+04, 7.11447734375e+04, 7.170309375e+04, 7.2261265625e+04, 7.2819296875e+04, 7.3377171875e+04, 7.39348984375e+04, 7.449246875e+04, 7.50498828125e+04, 7.56071484375e+04, 7.61642578125e+04, 7.6721203125e+04, 7.7278e+04, 7.7834625e+04, 7.839109375e+04, 7.89473984375e+04, 7.9503546875e+04, 8.00595234375e+04, 8.0615328125e+04, 8.11709765625e+04, 8.17264453125e+04] -hexDis.Q1_flow=[4.466667578125e+04, 4.466976953125e+04, 4.467286328125e+04, 4.4675953125e+04, 4.467904296875e+04, 4.468212890625e+04, 4.468521484375e+04, 4.468830078125e+04, 4.469138671875e+04, 4.469446875e+04, 4.469755078125e+04, 4.470062890625e+04, 4.47037109375e+04, 4.470678515625e+04, 4.470986328125e+04, 4.47129375e+04, 4.471601171875e+04, 4.47190859375e+04, 4.472215625e+04, 4.47252265625e+04, 4.4728296875e+04, 4.4757140625e+04, 4.48560078125e+04, 4.501259765625e+04, 4.5215859375e+04, 4.545576953125e+04, 4.57316875e+04, 4.603356640625e+04, 4.635917578125e+04, 4.670716015625e+04, 4.707447265625e+04, 4.745819140625e+04, 4.785771875e+04, 4.827180859375e+04, 4.86980859375e+04, 4.9134859375e+04, 4.958047265625e+04, 5.003900390625e+04, 5.050539453125e+04, 5.097692578125e+04, 5.1461328125e+04, 5.194901953125e+04, 5.244525e+04, 5.294666015625e+04, 5.345425390625e+04, 5.396700390625e+04, 5.448551953125e+04, 5.50072890625e+04, 5.553630859375e+04, 5.606481640625e+04, 5.66039453125e+04, 5.714230859375e+04, 5.76858046875e+04, 5.823389453125e+04, 5.878121875e+04, 5.933676953125001e+04, 5.989346484375001e+04, 6.044939062499999e+04, 6.100454687499999e+04, 6.155894140625e+04, 6.21125625e+04, 6.266541796875e+04, 6.321750390625e+04, 6.376882421875e+04, 6.431937109375e+04, 6.48691484375e+04, 6.541816015625e+04, 6.59663984375e+04, 6.65138671875e+04, 6.70605625e+04, 6.76064921875e+04, 6.81516484375e+04, 6.86960390625e+04, 6.92396484375e+04, 6.97824921875e+04, 7.03245703125e+04, 7.08658671875e+04, 7.14063984375e+04, 7.19461484375e+04, 7.24851328125e+04, 7.302334375e+04, 7.35607890625e+04, 7.4097453125e+04, 7.463334375e+04, 7.516846875e+04, 7.57028203125e+04, 7.6236390625e+04, 7.67691953125e+04, 7.73012265625e+04, 7.78324765625e+04, 7.83629609375e+04, 7.8892671875e+04, 7.9421609375e+04, 7.99497734375e+04, 8.04771640625e+04, 8.100378125e+04, 8.1529625e+04, 8.20546953125e+04, 8.25789921875e+04, 8.3102515625e+04, 8.3625265625e+04] -hexWetNTU_TX.Q1_flow=[4.372630859375e+04, 4.372939453125e+04, 4.373248046875e+04, 4.373556640625e+04, 4.37386484375e+04, 4.374173046875e+04, 4.374480859375e+04, 4.3747890625e+04, 4.375096875e+04, 4.375404296875e+04, 4.37571171875e+04, 4.376019140625e+04, 4.3763265625e+04, 4.37663359375e+04, 4.376940625e+04, 4.37724765625e+04, 4.377554296875e+04, 4.3778609375e+04, 4.378167578125e+04, 4.378473828125e+04, 4.378780078125e+04, 4.379086328125e+04, 4.379392578125e+04, 4.379692578125e+04, 4.379853125e+04, 4.379339453125e+04, 4.377478125e+04, 4.37409609375e+04, 4.369858203125e+04, 4.366204296875e+04, 4.365062890625e+04, 4.3684953125e+04, 4.3783671875e+04, 4.396112109375e+04, 4.42259609375e+04, 4.458073828125e+04, 4.502219140625e+04, 4.554203125e+04, 4.612803125e+04, 4.676531640625e+04, 4.74377734375e+04, 4.812943359375e+04, 4.882576171875e+04, 4.95147109375e+04, 5.018746484375e+04, 5.0838796875e+04, 5.146700390625e+04, 5.2073484375e+04, 5.266196875e+04, 5.3237484375e+04, 5.380515234375e+04, 5.436908203125e+04, 5.493173046875e+04, 5.549406640625e+04, 5.605628125e+04, 5.661839453125001e+04, 5.718039453125001e+04, 5.774228906249999e+04, 5.830407421874999e+04, 5.88657421875e+04, 5.942730078125e+04, 5.99887421875e+04, 6.05500703125e+04, 6.111127734375e+04, 6.167236328125e+04, 6.2233328125e+04, 6.2794171875e+04, 6.3354890625e+04, 6.3915484375e+04, 6.447594921875e+04, 6.503628515625e+04, 6.55964921875e+04, 6.61565625e+04, 6.67165078125e+04, 6.72763125e+04, 6.7835984375e+04, 6.8395515625e+04, 6.89549140625e+04, 6.95141640625e+04, 7.00732734375e+04, 7.06322421875e+04, 7.11910703125e+04, 7.174975e+04, 7.230828125e+04, 7.28666640625e+04, 7.34248984375e+04, 7.39829765625e+04, 7.454090625e+04, 7.50986796875e+04, 7.56563046875e+04, 7.6213765625e+04, 7.67710703125e+04, 7.732821875e+04, 7.7885203125e+04, 7.844203125e+04, 7.89986953125e+04, 7.95551875e+04, 8.01115234375e+04, 8.06676875e+04, 8.12236875e+04, 8.1779515625e+04] -hexWetNTU.sta_b2.T=[2.834466247558594e+02, 2.834474182128906e+02, 2.834482116699219e+02, 2.834490051269531e+02, 2.834497985839844e+02, 2.834505615234375e+02, 2.834513549804688e+02, 2.834521484375e+02, 2.834529113769531e+02, 2.834537048339844e+02, 2.834544982910156e+02, 2.834552917480469e+02, 2.834560546875e+02, 2.834568481445312e+02, 2.834576416015625e+02, 2.834584045410156e+02, 2.834591979980469e+02, 2.834599609375e+02, 2.834607543945312e+02, 2.834615478515625e+02, 2.834623107910156e+02, 2.834631042480469e+02, 2.834638977050781e+02, 2.834646911621094e+02, 2.834660034179688e+02, 2.834698181152344e+02, 2.834786376953125e+02, 2.834931640625e+02, 2.835109252929688e+02, 2.835265502929688e+02, 2.835562438964844e+02, 2.836055603027344e+02, 2.836678771972656e+02, 2.837427062988281e+02, 2.838287048339844e+02, 2.839239196777344e+02, 2.840260925292969e+02, 2.84132568359375e+02, 2.842407836914062e+02, 2.8434814453125e+02, 2.84452392578125e+02, 2.845516662597656e+02, 2.846445617675781e+02, 2.847303161621094e+02, 2.848086547851562e+02, 2.848799438476562e+02, 2.849449157714844e+02, 2.850046691894531e+02, 2.850605163574219e+02, 2.851136779785156e+02, 2.85165283203125e+02, 2.852161560058594e+02, 2.852666931152344e+02, 2.853171081542969e+02, 2.85367431640625e+02, 2.854176025390625e+02, 2.854677124023438e+02, 2.855177001953125e+02, 2.855675659179688e+02, 2.856173706054688e+02, 2.856670227050781e+02, 2.857166137695312e+02, 2.857660827636719e+02, 2.858154602050781e+02, 2.858647155761719e+02, 2.859138793945312e+02, 2.859629516601562e+02, 2.860119323730469e+02, 2.860608215332031e+02, 2.861095886230469e+02, 2.861582641601562e+02, 2.862068481445312e+02, 2.862553405761719e+02, 2.863037109375e+02, 2.863520202636719e+02, 2.864002075195312e+02, 2.864483337402344e+02, 2.86496337890625e+02, 2.865442504882812e+02, 2.865920715332031e+02, 2.866398010253906e+02, 2.866874694824219e+02, 2.867350158691406e+02, 2.86782470703125e+02, 2.86829833984375e+02, 2.868771362304688e+02, 2.8692431640625e+02, 2.86971435546875e+02, 2.870184326171875e+02, 2.870653686523438e+02, 2.871122131347656e+02, 2.871589660644531e+02, 2.872056274414062e+02, 2.872522277832031e+02, 2.872987060546875e+02, 2.873451232910156e+02, 2.873914489746094e+02, 2.874376831054688e+02, 2.874838562011719e+02, 2.875299377441406e+02, 2.87575927734375e+02] -hexDis.sta_b2.T=[2.830865783691406e+02, 2.8308740234375e+02, 2.830882568359375e+02, 2.830890808105469e+02, 2.830899047851562e+02, 2.830907287597656e+02, 2.83091552734375e+02, 2.830923767089844e+02, 2.830932006835938e+02, 2.83093994140625e+02, 2.830948181152344e+02, 2.830956420898438e+02, 2.830964660644531e+02, 2.830972900390625e+02, 2.830981140136719e+02, 2.830989379882812e+02, 2.830997619628906e+02, 2.831005859375e+02, 2.831014099121094e+02, 2.831022338867188e+02, 2.831030578613281e+02, 2.831119689941406e+02, 2.831403198242188e+02, 2.831811828613281e+02, 2.832298583984375e+02, 2.832833251953125e+02, 2.8334033203125e+02, 2.833992004394531e+02, 2.834593200683594e+02, 2.835202026367188e+02, 2.835814208984375e+02, 2.836426696777344e+02, 2.837037963867188e+02, 2.837646484375e+02, 2.838251037597656e+02, 2.838851623535156e+02, 2.8394482421875e+02, 2.840038452148438e+02, 2.840623474121094e+02, 2.841205139160156e+02, 2.841778259277344e+02, 2.842348022460938e+02, 2.842911376953125e+02, 2.843470153808594e+02, 2.844023132324219e+02, 2.844571533203125e+02, 2.845114135742188e+02, 2.845653076171875e+02, 2.846184997558594e+02, 2.84671630859375e+02, 2.847237243652344e+02, 2.847757873535156e+02, 2.848273010253906e+02, 2.848782653808594e+02, 2.8492919921875e+02, 2.84979248046875e+02, 2.850290832519531e+02, 2.850788879394531e+02, 2.851286926269531e+02, 2.85178466796875e+02, 2.852282409667969e+02, 2.852779541015625e+02, 2.853276977539062e+02, 2.853773803710938e+02, 2.854270629882812e+02, 2.854767150878906e+02, 2.855263671875e+02, 2.855759887695312e+02, 2.856255798339844e+02, 2.856751708984375e+02, 2.857247314453125e+02, 2.857742614746094e+02, 2.858237915039062e+02, 2.85873291015625e+02, 2.859227600097656e+02, 2.859722290039062e+02, 2.860216674804688e+02, 2.860710754394531e+02, 2.861204528808594e+02, 2.861698303222656e+02, 2.862191772460938e+02, 2.862684936523438e+02, 2.863178100585938e+02, 2.863670959472656e+02, 2.864163513183594e+02, 2.86465576171875e+02, 2.865148010253906e+02, 2.865639953613281e+02, 2.866131591796875e+02, 2.866623229980469e+02, 2.8671142578125e+02, 2.867605285644531e+02, 2.868096008300781e+02, 2.868586730957031e+02, 2.869076843261719e+02, 2.869566955566406e+02, 2.870056762695312e+02, 2.870546264648438e+02, 2.871035461425781e+02, 2.871524658203125e+02, 2.872013549804688e+02] -hexWetNTU_TX.sta_b2.T=[2.834388122558594e+02, 2.834396057128906e+02, 2.834403686523438e+02, 2.83441162109375e+02, 2.834419555664062e+02, 2.834427490234375e+02, 2.834435119628906e+02, 2.834443054199219e+02, 2.834450988769531e+02, 2.834458618164062e+02, 2.834466552734375e+02, 2.834474487304688e+02, 2.834482116699219e+02, 2.834490051269531e+02, 2.834497985839844e+02, 2.834505615234375e+02, 2.834513549804688e+02, 2.834521484375e+02, 2.834529113769531e+02, 2.834537048339844e+02, 2.834544677734375e+02, 2.834552612304688e+02, 2.834560546875e+02, 2.834568481445312e+02, 2.834581604003906e+02, 2.834620056152344e+02, 2.834708862304688e+02, 2.834854125976562e+02, 2.835031433105469e+02, 2.835187072753906e+02, 2.835487976074219e+02, 2.835982055664062e+02, 2.836606750488281e+02, 2.83735595703125e+02, 2.838216552734375e+02, 2.839169616699219e+02, 2.840191650390625e+02, 2.841257019042969e+02, 2.842339172363281e+02, 2.8434130859375e+02, 2.84445556640625e+02, 2.845447998046875e+02, 2.846376953125e+02, 2.847234191894531e+02, 2.848017578125e+02, 2.848730163574219e+02, 2.8493798828125e+02, 2.849977416992188e+02, 2.850535583496094e+02, 2.851067199707031e+02, 2.851583251953125e+02, 2.852091674804688e+02, 2.852596740722656e+02, 2.853100891113281e+02, 2.853603515625e+02, 2.854105529785156e+02, 2.854606018066406e+02, 2.855105895996094e+02, 2.855604553222656e+02, 2.856101989746094e+02, 2.856598815917969e+02, 2.857094116210938e+02, 2.857588806152344e+02, 2.858082275390625e+02, 2.858574829101562e+02, 2.859066467285156e+02, 2.859556884765625e+02, 2.86004638671875e+02, 2.860534973144531e+02, 2.861022644042969e+02, 2.861509094238281e+02, 2.861994934082031e+02, 2.862479553222656e+02, 2.862963256835938e+02, 2.863446044921875e+02, 2.863927917480469e+02, 2.864408874511719e+02, 2.864888610839844e+02, 2.865367736816406e+02, 2.865845947265625e+02, 2.866322937011719e+02, 2.86679931640625e+02, 2.867274780273438e+02, 2.8677490234375e+02, 2.86822265625e+02, 2.868695373535156e+02, 2.869167175292969e+02, 2.869638061523438e+02, 2.870108032226562e+02, 2.870577087402344e+02, 2.871045532226562e+02, 2.871512756347656e+02, 2.871979370117188e+02, 2.872445068359375e+02, 2.872909851074219e+02, 2.8733740234375e+02, 2.873836975097656e+02, 2.87429931640625e+02, 2.8747607421875e+02, 2.875221252441406e+02, 2.87568115234375e+02] -relHumOut_eps.phi=[5e-01, 4.796792566776276e-01, 4.836453497409821e-01, 4.965376853942871e-01, 5.127103924751282e-01, 5.300831198692322e-01, 5.478909611701965e-01, 5.658518075942993e-01, 5.838640928268433e-01, 6.018860340118408e-01, 6.199080348014832e-01, 6.379231810569763e-01, 6.559280753135681e-01, 6.739234328269958e-01, 6.919095516204834e-01, 7.098859548568726e-01, 7.278523445129395e-01, 7.45808482170105e-01, 7.637546062469482e-01, 7.816908955574036e-01, 7.996172904968262e-01, 8.175339102745056e-01, 8.354405760765076e-01, 8.533370494842529e-01, 8.712153434753418e-01, 8.890219330787659e-01, 9.066378474235535e-01, 9.239453673362732e-01, 9.409334659576417e-01, 9.577583670616149e-01, 9.740464091300964e-01, 9.879716634750366e-01, 9.992398619651794e-01, 1.007634162902832e+00, 1.013024806976318e+00, 1.015447616577148e+00, 1.015111804008484e+00, 1.012382626533508e+00, 1.007738471031189e+00, 1.001726746559143e+00, 9.949173927307129e-01, 9.878579378128052e-01, 9.810348749160767e-01, 9.7484290599823e-01, 9.6956467628479e-01, 9.653617143630981e-01, 9.622776508331299e-01, 9.602507948875427e-01, 9.591355919837952e-01, 9.58734393119812e-01, 9.588334560394287e-01, 9.592363238334656e-01, 9.597945809364319e-01, 9.604183435440063e-01, 9.610649347305298e-01, 9.617177844047546e-01, 9.62369978427887e-01, 9.630185961723328e-01, 9.636627435684204e-01, 9.64302122592926e-01, 9.649367928504944e-01, 9.655666947364807e-01, 9.661920666694641e-01, 9.66812789440155e-01, 9.674289226531982e-01, 9.680404663085938e-01, 9.686474800109863e-01, 9.692500233650208e-01, 9.69848096370697e-01, 9.704417586326599e-01, 9.710310697555542e-01, 9.716160297393799e-01, 9.721967577934265e-01, 9.727731347084045e-01, 9.733453392982483e-01, 9.739133715629578e-01, 9.744771718978882e-01, 9.750369191169739e-01, 9.755924940109253e-01, 9.761440753936768e-01, 9.766916036605835e-01, 9.772351384162903e-01, 9.777746796607971e-01, 9.783103466033936e-01, 9.788420796394348e-01, 9.793699383735657e-01, 9.798939228057861e-01, 9.804141521453857e-01, 9.809306263923645e-01, 9.814432859420776e-01, 9.819522500038147e-01, 9.824575185775757e-01, 9.829591512680054e-01, 9.834571480751038e-01, 9.839515089988708e-01, 9.844423532485962e-01, 9.84929621219635e-01, 9.854133725166321e-01, 9.858936071395874e-01, 9.86370325088501e-01, 9.868431687355042e-01] -relHumOut_dis.phi=[5e-01, 4.868944883346558e-01, 4.937932193279266e-01, 5.080428719520569e-01, 5.249926447868347e-01, 5.429288148880005e-01, 5.612213015556335e-01, 5.796377062797546e-01, 5.980943441390991e-01, 6.165568828582764e-01, 6.350172758102417e-01, 6.53469979763031e-01, 6.719120740890503e-01, 6.903442740440369e-01, 7.08766758441925e-01, 7.271791100502014e-01, 7.455810308456421e-01, 7.639725208282471e-01, 7.823536396026611e-01, 8.007245659828186e-01, 8.190848827362061e-01, 8.371086716651917e-01, 8.531041741371155e-01, 8.66411566734314e-01, 8.773958683013916e-01, 8.865211009979248e-01, 8.942239284515381e-01, 9.007856249809265e-01, 9.064760804176331e-01, 9.114606380462646e-01, 9.158745408058167e-01, 9.198147654533386e-01, 9.233657121658325e-01, 9.265850186347961e-01, 9.295246005058289e-01, 9.322235584259033e-01, 9.347102046012878e-01, 9.370097517967224e-01, 9.391531348228455e-01, 9.411523342132568e-01, 9.430245757102966e-01, 9.447876214981079e-01, 9.464418292045593e-01, 9.480153918266296e-01, 9.494943022727966e-01, 9.50910210609436e-01, 9.522527456283569e-01, 9.535405039787292e-01, 9.54757034778595e-01, 9.559257030487061e-01, 9.570471048355103e-01, 9.581203460693359e-01, 9.591588973999023e-01, 9.60153341293335e-01, 9.611151218414307e-01, 9.620482325553894e-01, 9.629409909248352e-01, 9.638110995292664e-01, 9.646742939949036e-01, 9.655328989028931e-01, 9.663873910903931e-01, 9.672368168830872e-01, 9.680801630020142e-01, 9.689189195632935e-01, 9.697538614273071e-01, 9.705852866172791e-01, 9.714133143424988e-01, 9.722376465797424e-01, 9.7305828332901e-01, 9.73874568939209e-01, 9.746872186660767e-01, 9.754955768585205e-01, 9.763001799583435e-01, 9.771010279655457e-01, 9.778980612754822e-01, 9.786915183067322e-01, 9.794812202453613e-01, 9.802671670913696e-01, 9.810495972633362e-01, 9.81828510761261e-01, 9.826038479804993e-01, 9.833754897117615e-01, 9.841436147689819e-01, 9.849082231521606e-01, 9.856693744659424e-01, 9.864269495010376e-01, 9.871810674667358e-01, 9.879317283630371e-01, 9.886789321899414e-01, 9.894227981567383e-01, 9.90163266658783e-01, 9.909003973007202e-01, 9.916341304779053e-01, 9.923645853996277e-01, 9.930917024612427e-01, 9.93815541267395e-01, 9.945361614227295e-01, 9.952535629272461e-01, 9.959678053855896e-01, 9.966788291931152e-01, 9.973859190940857e-01] -hexWetNTU.dryWetCalcs.dryFra=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999896883964539e-01, 9.996822476387024e-01, 9.97657835483551e-01, 9.911808371543884e-01, 9.771228432655334e-01, 9.529135823249816e-01, 9.170734882354737e-01, 8.69372546672821e-01, 8.107308745384216e-01, 7.429676055908203e-01, 6.684896945953369e-01, 5.89992880821228e-01, 5.102112889289856e-01, 4.317289888858795e-01, 3.568454384803772e-01, 2.874822616577148e-01, 2.251207232475281e-01, 1.707644760608673e-01, 1.249276921153069e-01, 8.765064179897308e-02, 5.854394659399986e-02, 3.685919940471649e-02, 2.158032543957233e-02, 1.15274004638195e-02, 5.464714951813221e-03, 2.206021454185247e-03, 7.11037777364254e-04, 1.646740274736658e-04, 2.278989268234e-05, 1.324651293543866e-06, 1.500543689303413e-08, 4.27617056347751e-12, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] -hexWetNTU.SHR=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.985707402229309e-01, 9.949047565460205e-01, 9.889982342720032e-01, 9.806062579154968e-01, 9.696928262710571e-01, 9.564260244369507e-01, 9.411467313766479e-01, 9.243189692497253e-01, 9.064730405807495e-01, 8.881492614746094e-01, 8.69848906993866e-01, 8.519970774650574e-01, 8.349184989929199e-01, 8.188273310661316e-01, 8.038284182548523e-01, 7.899285554885864e-01, 7.770543098449707e-01, 7.65074610710144e-01, 7.538261413574219e-01, 7.43139386177063e-01, 7.328643202781677e-01, 7.228900194168091e-01, 7.13151752948761e-01, 7.03621506690979e-01, 6.94288969039917e-01, 6.851479411125182e-01, 6.761925816535949e-01, 6.674175262451173e-01, 6.588174700737001e-01, 6.503873467445374e-01, 6.421222686767578e-01, 6.340175271034241e-01, 6.26068651676178e-01, 6.182712316513062e-01, 6.106211543083191e-01, 6.031143665313721e-01, 5.957468748092651e-01, 5.885151028633118e-01, 5.814152359962463e-01, 5.744439363479614e-01, 5.675977468490601e-01, 5.608734488487244e-01, 5.542678833007812e-01, 5.477779507637024e-01, 5.414008498191833e-01, 5.351336598396301e-01, 5.289735794067383e-01, 5.229181051254272e-01, 5.169644951820374e-01, 5.111104249954224e-01, 5.053533315658569e-01, 4.996910393238068e-01, 4.941211640834808e-01, 4.88641619682312e-01, 4.832502007484436e-01, 4.779449105262756e-01, 4.727237522602081e-01, 4.675847887992859e-01, 4.625261425971985e-01, 4.575459957122803e-01, 4.526425898075104e-01, 4.478141963481903e-01, 4.430592060089111e-01, 4.383759796619415e-01, 4.337629377841949e-01, 4.292185604572296e-01, 4.247413873672485e-01, 4.203299582004547e-01, 4.159829318523407e-01, 4.116988778114319e-01, 4.074765145778656e-01] -hexWetNTU.dryWetCalcs.w_FW=[0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 5.8150519954836e-09, 1.031147439789493e-05, 3.177387407049537e-04, 2.342179417610168e-03, 8.81915632635355e-03, 2.287718094885349e-02, 4.708644375205051e-02, 8.292652666568742e-02, 1.306274682283401e-01, 1.89269095659256e-01, 2.570324242115021e-01, 3.315102756023407e-01, 4.10007119178772e-01, 4.897887110710144e-01, 5.682709813117981e-01, 6.431545615196228e-01, 7.125177383422852e-01, 7.748792767524719e-01, 8.292354941368103e-01, 8.750723004341125e-01, 9.123493432998657e-01, 9.414560794830322e-01, 9.631407856941223e-01, 9.784196615219116e-01, 9.88472580909729e-01, 9.945352673530579e-01, 9.97793972492218e-01, 9.992889761924744e-01, 9.998353123664856e-01, 9.999772310256958e-01, 9.999986886978149e-01, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00] -hexWetNTU.dryWetCalcs.w_FD=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999896883964539e-01, 9.996822476387024e-01, 9.97657835483551e-01, 9.911808371543884e-01, 9.771228432655334e-01, 9.529135823249816e-01, 9.170734882354737e-01, 8.69372546672821e-01, 8.107308745384216e-01, 7.429676055908203e-01, 6.684896945953369e-01, 5.89992880821228e-01, 5.102112889289856e-01, 4.317289888858795e-01, 3.568454384803772e-01, 2.874822616577148e-01, 2.251207232475281e-01, 1.707644760608673e-01, 1.249276921153069e-01, 8.765064179897308e-02, 5.854394659399986e-02, 3.685919940471649e-02, 2.158032543957233e-02, 1.15274004638195e-02, 5.464714951813221e-03, 2.206021454185247e-03, 7.11037777364254e-04, 1.646740274736658e-04, 2.278989268234e-05, 1.324651293543866e-06, 1.500543689303413e-08, 4.27617056347751e-12, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] +time=[0e+00, 1e+03] +hexWetNTU.Q1_flow=[4.52515390625e+04, 4.525468359375e+04, 4.525782421875e+04, 4.526096484375e+04, 4.526410546875e+04, 4.52672421875e+04, 4.527037890625e+04, 4.5273515625e+04, 4.52766484375e+04, 4.527978515625e+04, 4.52829140625e+04, 4.5286046875e+04, 4.528917578125e+04, 4.529230078125e+04, 4.52954296875e+04, 4.52985546875e+04, 4.530167578125e+04, 4.530480078125e+04, 4.5307921875e+04, 4.531104296875e+04, 4.531416015625e+04, 4.531727734375e+04, 4.532038671875e+04, 4.532303515625e+04, 4.532248046875e+04, 4.531446484375e+04, 4.529840234375e+04, 4.52810546875e+04, 4.52765078125e+04, 4.530369140625e+04, 4.538308203125e+04, 4.55334765625e+04, 4.576958984375e+04, 4.610056640625e+04, 4.652946875e+04, 4.705343359375e+04, 4.766436328125e+04, 4.83499375e+04, 4.909481640625e+04, 4.988193359375e+04, 5.0693828125e+04, 5.15139375e+04, 5.23276953125e+04, 5.312344140625e+04, 5.389298046875e+04, 5.463180859375e+04, 5.533898046875e+04, 5.601665625e+04, 5.666936328125e+04, 5.73030234375e+04, 5.79238671875e+04, 5.853734765625e+04, 5.91473046875e+04, 5.97557578125e+04, 6.036339453125e+04, 6.097033203125e+04, 6.157658203125e+04, 6.218191015625e+04, 6.27866171875e+04, 6.339074609375e+04, 6.39942265625e+04, 6.459702734375e+04, 6.5199171875e+04, 6.58006875e+04, 6.6401515625e+04, 6.70016484375e+04, 6.76010625e+04, 6.8199875e+04, 6.87980234375e+04, 6.93954765625e+04, 6.999221875e+04, 7.0588265625e+04, 7.1183734375e+04, 7.1778515625e+04, 7.237259375e+04, 7.296596875e+04, 7.355871875e+04, 7.415084375e+04, 7.47422890625e+04, 7.53330390625e+04, 7.592309375e+04, 7.6512609375e+04, 7.710146875e+04, 7.76896875e+04, 7.82772421875e+04, 7.88641328125e+04, 7.94503671875e+04, 8.00359296875e+04, 8.06208125e+04, 8.120509375e+04, 8.17887578125e+04, 8.23717890625e+04, 8.29541796875e+04, 8.35359296875e+04, 8.4117046875e+04, 8.46975390625e+04, 8.5277390625e+04, 8.5856625e+04, 8.64352421875e+04, 8.70132421875e+04, 8.7590640625e+04] +hexDis.Q1_flow=[0e+00, 4.4669234375e+04, 4.46723203125e+04, 4.467541015625e+04, 4.46785e+04, 4.46815859375e+04, 4.468467578125e+04, 4.468776171875e+04, 4.469084375e+04, 4.469392578125e+04, 4.46970078125e+04, 4.470008984375e+04, 4.470316796875e+04, 4.470624609375e+04, 4.470932421875e+04, 4.47123984375e+04, 4.471547265625e+04, 4.4718546875e+04, 4.47216171875e+04, 4.47246875e+04, 4.47277578125e+04, 4.47402890625e+04, 4.481947265625e+04, 4.496365625e+04, 4.515535546875e+04, 4.5390171875e+04, 4.5656671875e+04, 4.59572109375e+04, 4.628015234375e+04, 4.662500390625e+04, 4.699030859375e+04, 4.737216796875e+04, 4.7771796875e+04, 4.81851640625e+04, 4.86111015625e+04, 4.90476953125e+04, 4.949297265625e+04, 4.99520390625e+04, 5.041895703125e+04, 5.08903671875e+04, 5.13755546875e+04, 5.186588671875e+04, 5.236070703125e+04, 5.286353515625e+04, 5.33710625e+04, 5.388561328125e+04, 5.44039140625e+04, 5.492725390625e+04, 5.54565234375e+04, 5.5986734375e+04, 5.652684375e+04, 5.7064578125e+04, 5.76100703125e+04, 5.815837109375e+04, 5.870573046875e+04, 5.92638984375e+04, 5.98203359375e+04, 6.037630078125e+04, 6.093153125e+04, 6.1485984375e+04, 6.20396640625e+04, 6.259257421875e+04, 6.314471484375e+04, 6.36960859375e+04, 6.424669140625e+04, 6.479652734375e+04, 6.534559375e+04, 6.5893890625e+04, 6.64414140625e+04, 6.6988171875e+04, 6.753415625e+04, 6.80793671875e+04, 6.86238125e+04, 6.9167484375e+04, 6.97103828125e+04, 7.0252515625e+04, 7.0793875e+04, 7.13344609375e+04, 7.18742734375e+04, 7.24133125e+04, 7.29515859375e+04, 7.34890859375e+04, 7.40258125e+04, 7.4561765625e+04, 7.50969453125e+04, 7.56313515625e+04, 7.6164984375e+04, 7.66978515625e+04, 7.72299375e+04, 7.77612578125e+04, 7.82918046875e+04, 7.88215703125e+04, 7.93505703125e+04, 7.9878796875e+04, 8.040625e+04, 8.0932921875e+04, 8.1458828125e+04, 8.19839609375e+04, 8.25083203125e+04, 8.303190625e+04, 8.3554671875e+04] +hexWetNTU_TX.Q1_flow=[4.527580859375e+04, 4.527895703125e+04, 4.528210546875e+04, 4.528525e+04, 4.528839453125e+04, 4.52915390625e+04, 4.52946796875e+04, 4.52978203125e+04, 4.530095703125e+04, 4.530409375e+04, 4.530723046875e+04, 4.53103671875e+04, 4.53135e+04, 4.53166328125e+04, 4.5319765625e+04, 4.532289453125e+04, 4.53260234375e+04, 4.53291484375e+04, 4.53322734375e+04, 4.53353984375e+04, 4.53385234375e+04, 4.534164453125e+04, 4.53447578125e+04, 4.53473984375e+04, 4.534679296875e+04, 4.5338703125e+04, 4.5322609375e+04, 4.5305359375e+04, 4.530108984375e+04, 4.5328765625e+04, 4.54088515625e+04, 4.55601171875e+04, 4.57972265625e+04, 4.612927734375e+04, 4.65592734375e+04, 4.70843203125e+04, 4.769628515625e+04, 4.83828359375e+04, 4.9128609375e+04, 4.991654296875e+04, 5.07291875e+04, 5.1549984375e+04, 5.23643828125e+04, 5.3160734375e+04, 5.393085546875e+04, 5.46702421875e+04, 5.537796484375e+04, 5.6056171875e+04, 5.670938671875e+04, 5.734353125e+04, 5.796483984375e+04, 5.857876171875e+04, 5.9189140625e+04, 5.979801171875e+04, 6.04060625e+04, 6.101341796875e+04, 6.1620078125e+04, 6.22258203125e+04, 6.28309375e+04, 6.343548046875e+04, 6.403937109375e+04, 6.46425859375e+04, 6.524514453125e+04, 6.58470703125e+04, 6.64483046875e+04, 6.70488515625e+04, 6.76486796875e+04, 6.82478984375e+04, 6.8846453125e+04, 6.94443203125e+04, 7.004146875e+04, 7.0637921875e+04, 7.1233796875e+04, 7.1828984375e+04, 7.24234765625e+04, 7.301725e+04, 7.361040625e+04, 7.42029375e+04, 7.47947890625e+04, 7.53859453125e+04, 7.597640625e+04, 7.65663203125e+04, 7.715559375e+04, 7.77442109375e+04, 7.83321640625e+04, 7.89194609375e+04, 7.950609375e+04, 8.00920625e+04, 8.06773515625e+04, 8.126203125e+04, 8.18461015625e+04, 8.242953125e+04, 8.30123203125e+04, 8.359446875e+04, 8.4175984375e+04, 8.4756875e+04, 8.5337125e+04, 8.59167578125e+04, 8.6495765625e+04, 8.7074171875e+04, 8.76519609375e+04] +hexWetNTU.sta_b2.T=[2.828675231933594e+02, 2.828683471679688e+02, 2.828692016601562e+02, 2.828700256347656e+02, 2.82870849609375e+02, 2.828716735839844e+02, 2.828725280761719e+02, 2.828733520507812e+02, 2.828741760253906e+02, 2.82875e+02, 2.828758544921875e+02, 2.828766784667969e+02, 2.828775024414062e+02, 2.828783264160156e+02, 2.82879150390625e+02, 2.828799743652344e+02, 2.828808288574219e+02, 2.828816528320312e+02, 2.828824768066406e+02, 2.8288330078125e+02, 2.828841247558594e+02, 2.828849487304688e+02, 2.828857727050781e+02, 2.828867797851562e+02, 2.828889770507812e+02, 2.828939514160156e+02, 2.829019470214844e+02, 2.829103393554688e+02, 2.829310913085938e+02, 2.829620056152344e+02, 2.830042114257812e+02, 2.830580749511719e+02, 2.83123291015625e+02, 2.831989440917969e+02, 2.83283447265625e+02, 2.833749389648438e+02, 2.834713134765625e+02, 2.835703125e+02, 2.836697082519531e+02, 2.837675170898438e+02, 2.838618774414062e+02, 2.839513549804688e+02, 2.84034912109375e+02, 2.841119689941406e+02, 2.841824035644531e+02, 2.842464904785156e+02, 2.843048706054688e+02, 2.843584594726562e+02, 2.844082641601562e+02, 2.844554138183594e+02, 2.845008850097656e+02, 2.845454711914062e+02, 2.845897216796875e+02, 2.846338500976562e+02, 2.84677978515625e+02, 2.847221069335938e+02, 2.847662658691406e+02, 2.848104553222656e+02, 2.848546447753906e+02, 2.848988342285156e+02, 2.849429931640625e+02, 2.849871826171875e+02, 2.850313720703125e+02, 2.850755615234375e+02, 2.851197509765625e+02, 2.851639404296875e+02, 2.852081298828125e+02, 2.852523498535156e+02, 2.852965393066406e+02, 2.853407287597656e+02, 2.853849487304688e+02, 2.854291687011719e+02, 2.85473388671875e+02, 2.855176086425781e+02, 2.855618286132812e+02, 2.856060485839844e+02, 2.856502685546875e+02, 2.856944885253906e+02, 2.857387390136719e+02, 2.85782958984375e+02, 2.858271789550781e+02, 2.858713989257812e+02, 2.859156188964844e+02, 2.859598083496094e+02, 2.860040283203125e+02, 2.860482482910156e+02, 2.860924377441406e+02, 2.861366577148438e+02, 2.861808776855469e+02, 2.862250671386719e+02, 2.862692565917969e+02, 2.863134460449219e+02, 2.863576354980469e+02, 2.864017944335938e+02, 2.864459838867188e+02, 2.864901428222656e+02, 2.865343017578125e+02, 2.865784606933594e+02, 2.866225891113281e+02, 2.86666748046875e+02, 2.867108459472656e+02] +hexDis.sta_b2.T=[2.931499938964844e+02, 2.830871887207031e+02, 2.830879821777344e+02, 2.830888061523438e+02, 2.830896301269531e+02, 2.830904541015625e+02, 2.830912780761719e+02, 2.830921020507812e+02, 2.830929260253906e+02, 2.8309375e+02, 2.830945739746094e+02, 2.830953979492188e+02, 2.830962219238281e+02, 2.830970458984375e+02, 2.830978698730469e+02, 2.830986938476562e+02, 2.830995178222656e+02, 2.83100341796875e+02, 2.831011657714844e+02, 2.831019897460938e+02, 2.831028137207031e+02, 2.831065063476562e+02, 2.831292724609375e+02, 2.831668701171875e+02, 2.8321337890625e+02, 2.83265869140625e+02, 2.833217468261719e+02, 2.833802185058594e+02, 2.834401245117188e+02, 2.835008544921875e+02, 2.835619812011719e+02, 2.83623291015625e+02, 2.836844787597656e+02, 2.837454833984375e+02, 2.838061218261719e+02, 2.838663635253906e+02, 2.839260864257812e+02, 2.839853210449219e+02, 2.840440979003906e+02, 2.84102294921875e+02, 2.841598815917969e+02, 2.842171020507812e+02, 2.842735290527344e+02, 2.843296813964844e+02, 2.843850402832031e+02, 2.84440185546875e+02, 2.844944763183594e+02, 2.845486145019531e+02, 2.846019287109375e+02, 2.846550598144531e+02, 2.8470751953125e+02, 2.847595825195312e+02, 2.848113403320312e+02, 2.848623962402344e+02, 2.84913330078125e+02, 2.849637451171875e+02, 2.850135498046875e+02, 2.850633850097656e+02, 2.851131896972656e+02, 2.851629638671875e+02, 2.852127380371094e+02, 2.852624816894531e+02, 2.853121948242188e+02, 2.853619079589844e+02, 2.854115905761719e+02, 2.854612426757812e+02, 2.855108947753906e+02, 2.855605163574219e+02, 2.856101379394531e+02, 2.856597290039062e+02, 2.857092895507812e+02, 2.857588195800781e+02, 2.85808349609375e+02, 2.858578491210938e+02, 2.859073486328125e+02, 2.85956787109375e+02, 2.860062561035156e+02, 2.860556640625e+02, 2.861050720214844e+02, 2.861544189453125e+02, 2.862037963867188e+02, 2.862531127929688e+02, 2.863024291992188e+02, 2.863517150878906e+02, 2.864009704589844e+02, 2.864502258300781e+02, 2.864994506835938e+02, 2.865486450195312e+02, 2.865978088378906e+02, 2.8664697265625e+02, 2.866961059570312e+02, 2.867452087402344e+02, 2.867942810058594e+02, 2.868433532714844e+02, 2.868923950195312e+02, 2.8694140625e+02, 2.869903869628906e+02, 2.870393371582031e+02, 2.870882873535156e+02, 2.8713720703125e+02, 2.871860961914062e+02] +hexWetNTU_TX.sta_b2.T=[2.828584289550781e+02, 2.828592834472656e+02, 2.82860107421875e+02, 2.828609313964844e+02, 2.828617553710938e+02, 2.828625793457031e+02, 2.828634338378906e+02, 2.828642578125e+02, 2.828650817871094e+02, 2.828659057617188e+02, 2.828667297363281e+02, 2.828675842285156e+02, 2.82868408203125e+02, 2.828692321777344e+02, 2.828700561523438e+02, 2.828708801269531e+02, 2.828717041015625e+02, 2.828725280761719e+02, 2.828733825683594e+02, 2.828742065429688e+02, 2.828750305175781e+02, 2.828758544921875e+02, 2.828766784667969e+02, 2.82877685546875e+02, 2.828798828125e+02, 2.828849182128906e+02, 2.828929138183594e+02, 2.829013366699219e+02, 2.829222717285156e+02, 2.829533386230469e+02, 2.829956359863281e+02, 2.830496520996094e+02, 2.831150207519531e+02, 2.831907653808594e+02, 2.83275390625e+02, 2.833669738769531e+02, 2.8346337890625e+02, 2.835624084472656e+02, 2.83661865234375e+02, 2.837596435546875e+02, 2.8385400390625e+02, 2.839434814453125e+02, 2.840270385742188e+02, 2.841040954589844e+02, 2.841744995117188e+02, 2.842385864257812e+02, 2.842969360351562e+02, 2.843504943847656e+02, 2.844002990722656e+02, 2.844474182128906e+02, 2.844928588867188e+02, 2.845374450683594e+02, 2.845816345214844e+02, 2.846257629394531e+02, 2.846698608398438e+02, 2.847139587402344e+02, 2.847580871582031e+02, 2.8480224609375e+02, 2.848464050292969e+02, 2.848905639648438e+02, 2.849347229003906e+02, 2.849788513183594e+02, 2.850230102539062e+02, 2.850671691894531e+02, 2.85111328125e+02, 2.85155517578125e+02, 2.851996765136719e+02, 2.852438659667969e+02, 2.852880249023438e+02, 2.853322143554688e+02, 2.853764038085938e+02, 2.854205932617188e+02, 2.854647827148438e+02, 2.855089721679688e+02, 2.855531921386719e+02, 2.855973815917969e+02, 2.856416015625e+02, 2.85685791015625e+02, 2.8572998046875e+02, 2.857742004394531e+02, 2.858183898925781e+02, 2.858625793457031e+02, 2.859067687988281e+02, 2.859509582519531e+02, 2.859951477050781e+02, 2.860393371582031e+02, 2.860835266113281e+02, 2.861277160644531e+02, 2.861719055175781e+02, 2.862160949707031e+02, 2.8626025390625e+02, 2.863044128417969e+02, 2.863485717773438e+02, 2.863927307128906e+02, 2.864368896484375e+02, 2.864810485839844e+02, 2.865251770019531e+02, 2.865693054199219e+02, 2.866134338378906e+02, 2.866575317382812e+02, 2.867016296386719e+02] +relHumOut_eps.phi=[5e-01, 4.923496544361115e-01, 5.111603736877441e-01, 5.299617052078247e-01, 5.487524271011353e-01, 5.675325989723206e-01, 5.863022208213806e-01, 6.050612926483154e-01, 6.238097548484802e-01, 6.425477266311646e-01, 6.612751483917236e-01, 6.799920797348022e-01, 6.986984610557556e-01, 7.173944115638733e-01, 7.360798120498657e-01, 7.547547221183777e-01, 7.734191417694092e-01, 7.920730710029602e-01, 8.107165694236755e-01, 8.293495774269104e-01, 8.479721546173096e-01, 8.66584300994873e-01, 8.851858973503113e-01, 9.037690162658691e-01, 9.222763776779175e-01, 9.406030178070068e-01, 9.587114453315735e-01, 9.767177104949951e-01, 9.932552576065063e-01, 1.007805705070496e+00, 1.019919395446777e+00, 1.029143095016479e+00, 1.035207152366638e+00, 1.038049936294556e+00, 1.037810206413269e+00, 1.034800291061401e+00, 1.029472351074219e+00, 1.022364139556885e+00, 1.014064431190491e+00, 1.005165338516235e+00, 9.962194561958313e-01, 9.877147674560547e-01, 9.800406694412231e-01, 9.734731912612915e-01, 9.68172013759613e-01, 9.641793370246887e-01, 9.614336490631104e-01, 9.597879648208618e-01, 9.590356945991516e-01, 9.589425325393677e-01, 9.592778086662292e-01, 9.598469138145447e-01, 9.605140686035156e-01, 9.612064361572266e-01, 9.618990421295166e-01, 9.625874757766724e-01, 9.632712006568909e-01, 9.63949978351593e-01, 9.646246433258057e-01, 9.652948379516602e-01, 9.659603238105774e-01, 9.666212797164917e-01, 9.672777652740479e-01, 9.679298400878906e-01, 9.685774445533752e-01, 9.692205786705017e-01, 9.6985924243927e-01, 9.704936146736145e-01, 9.711236953735352e-01, 9.717494249343872e-01, 9.723708033561707e-01, 9.729878306388855e-01, 9.736006855964661e-01, 9.742092490196228e-01, 9.748135805130005e-01, 9.754135608673096e-01, 9.760094881057739e-01, 9.766013622283936e-01, 9.771890640258789e-01, 9.7777259349823e-01, 9.783519506454468e-01, 9.789274334907532e-01, 9.794989228248596e-01, 9.800663590431213e-01, 9.806297421455383e-01, 9.811891317367554e-01, 9.817445278167725e-01, 9.822959303855896e-01, 9.82843279838562e-01, 9.833868741989136e-01, 9.839265942573547e-01, 9.844624400138855e-01, 9.849944114685059e-01, 9.855225682258606e-01, 9.860469102859497e-01, 9.865673780441284e-01, 9.870840907096863e-01, 9.875970482826233e-01, 9.881069660186768e-01, 9.886130690574646e-01, 9.891149401664734e-01] +relHumOut_dis.phi=[5e-01, 4.801923334598541e-01, 4.981439709663391e-01, 5.166705846786499e-01, 5.351910591125488e-01, 5.537007451057434e-01, 5.721999406814575e-01, 5.906887650489807e-01, 6.091671586036682e-01, 6.276351809501648e-01, 6.460928916931152e-01, 6.645402312278748e-01, 6.829771995544434e-01, 7.014039158821106e-01, 7.198202610015869e-01, 7.382262945175171e-01, 7.566220164299011e-01, 7.75007426738739e-01, 7.933825850486755e-01, 8.117473721504211e-01, 8.301019072532654e-01, 8.481107950210571e-01, 8.628172874450684e-01, 8.745313286781311e-01, 8.841043710708618e-01, 8.92108678817749e-01, 8.989577889442444e-01, 9.04832661151886e-01, 9.099851250648499e-01, 9.14537787437439e-01, 9.186073541641235e-01, 9.222663640975952e-01, 9.255706071853638e-01, 9.285917282104492e-01, 9.313624501228333e-01, 9.339205622673035e-01, 9.362637400627136e-01, 9.384452700614929e-01, 9.405050277709961e-01, 9.424068331718445e-01, 9.441946744918823e-01, 9.459020495414734e-01, 9.474785923957825e-01, 9.490083456039429e-01, 9.504233598709106e-01, 9.518063068389893e-01, 9.530869126319885e-01, 9.543457627296448e-01, 9.555163979530334e-01, 9.56662654876709e-01, 9.577510356903076e-01, 9.587949514389038e-01, 9.598153233528137e-01, 9.607766270637512e-01, 9.617245197296143e-01, 9.626367688179016e-01, 9.635007977485657e-01, 9.64362621307373e-01, 9.652206301689148e-01, 9.660743474960327e-01, 9.669238328933716e-01, 9.677693843841553e-01, 9.686108827590942e-01, 9.694483876228333e-01, 9.702818989753723e-01, 9.711114168167114e-01, 9.719369411468506e-01, 9.727585911750793e-01, 9.735764265060425e-01, 9.743903279304504e-01, 9.75200355052948e-01, 9.760065078735352e-01, 9.76809024810791e-01, 9.77607786655426e-01, 9.784027338027954e-01, 9.791939258575439e-01, 9.799814820289612e-01, 9.807654023170471e-01, 9.815456867218018e-01, 9.823222160339355e-01, 9.83095109462738e-01, 9.838646650314331e-01, 9.846306443214417e-01, 9.853931069374084e-01, 9.861519932746887e-01, 9.86907422542572e-01, 9.876592755317688e-01, 9.884076714515686e-01, 9.891525506973267e-01, 9.898942112922668e-01, 9.906325936317444e-01, 9.913676381111145e-01, 9.92099404335022e-01, 9.92827832698822e-01, 9.935530424118042e-01, 9.942749738693237e-01, 9.949937462806702e-01, 9.95709240436554e-01, 9.964210987091064e-01, 9.971297979354858e-01, 9.978358149528503e-01] +hexWetNTU.SHR=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1.000003576278687e+00, 9.989969730377197e-01, 9.966937899589539e-01, 9.925904870033264e-01, 9.862793684005737e-01, 9.775169491767883e-01, 9.662553071975708e-01, 9.526410698890686e-01, 9.369877576828003e-01, 9.197313785552979e-01, 9.013779163360596e-01, 8.824516534805298e-01, 8.634498119354248e-01, 8.448078036308289e-01, 8.268753290176392e-01, 8.099045753479004e-01, 7.94048011302948e-01, 7.793648242950439e-01, 7.658330798149109e-01, 7.533660531044006e-01, 7.418309450149536e-01, 7.310687303543091e-01, 7.209140658378601e-01, 7.112151384353638e-01, 7.018498778343201e-01, 6.927359104156494e-01, 6.83829128742218e-01, 6.751111745834351e-01, 6.665741801261902e-01, 6.582123041152954e-01, 6.500210762023926e-01, 6.419940590858459e-01, 6.341263055801392e-01, 6.264132857322693e-01, 6.188505291938782e-01, 6.114335060119629e-01, 6.041579842567444e-01, 5.970200896263123e-01, 5.900158286094666e-01, 5.83141565322876e-01, 5.763934254646301e-01, 5.697680115699768e-01, 5.632620453834534e-01, 5.568723082542419e-01, 5.505955815315247e-01, 5.444287657737732e-01, 5.383691191673279e-01, 5.324137806892395e-01, 5.265601277351379e-01, 5.208053588867188e-01, 5.151470303535461e-01, 5.095826983451843e-01, 5.041100978851318e-01, 4.9872687458992e-01, 4.934307336807251e-01, 4.882195889949799e-01, 4.830914437770844e-01, 4.780443012714386e-01, 4.73076194524765e-01, 4.681852757930756e-01, 4.63369756937027e-01, 4.58627849817276e-01, 4.539578258991241e-01, 4.493580460548401e-01, 4.448269307613373e-01, 4.403629004955292e-01, 4.359645247459412e-01, 4.316302537918091e-01, 4.273587465286255e-01, 4.231486022472382e-01, 4.189984500408173e-01, 4.149070680141449e-01, 4.10873144865036e-01, 4.068954586982727e-01] +hexDis.SHR=[0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.9959796667099e-01, 9.964629411697388e-01, 9.911325573921204e-01, 9.842371344566345e-01, 9.761489033699036e-01, 9.671937227249146e-01, 9.576058983802795e-01, 9.475848078727722e-01, 9.372069239616394e-01, 9.265676140785217e-01, 9.156988263130188e-01, 9.047637581825256e-01, 8.937314748764038e-01, 8.826766014099121e-01, 8.716500997543335e-01, 8.607543706893921e-01, 8.497627973556519e-01, 8.388912677764893e-01, 8.282014727592468e-01, 8.17502498626709e-01, 8.070180416107178e-01, 7.965641021728516e-01, 7.862549424171448e-01, 7.761443257331848e-01, 7.661017775535583e-01, 7.562750577926636e-01, 7.465407252311707e-01, 7.369807362556458e-01, 7.276453971862793e-01, 7.18296229839325e-01, 7.091842889785767e-01, 7.00225830078125e-01, 6.913521885871887e-01, 6.827065348625183e-01, 6.74108624458313e-01, 6.657329797744751e-01, 6.575115919113159e-01, 6.494516730308533e-01, 6.415461301803589e-01, 6.337897777557373e-01, 6.261787414550781e-01, 6.187091469764709e-01, 6.113770604133606e-01, 6.041787266731262e-01, 5.971103310585022e-01, 5.901684165000916e-01, 5.833497047424316e-01, 5.76650857925415e-01, 5.700686573982239e-01, 5.636001229286194e-01, 5.57242214679718e-01, 5.509921908378601e-01, 5.448472499847412e-01, 5.388047099113464e-01, 5.328620672225952e-01, 5.270167589187622e-01, 5.212665200233459e-01, 5.156088471412659e-01, 5.100415945053101e-01, 5.045625567436218e-01, 4.991697371006012e-01, 4.938609898090363e-01, 4.886343777179718e-01, 4.834879040718079e-01, 4.784197807312012e-01, 4.734281897544861e-01, 4.685113728046417e-01, 4.63667631149292e-01, 4.588953852653503e-01, 4.54193115234375e-01, 4.495591521263123e-01, 4.449920356273651e-01, 4.404902756214142e-01, 4.360525012016296e-01, 4.316772818565369e-01, 4.273633360862732e-01, 4.231093227863312e-01, 4.18913871049881e-01, 4.14775937795639e-01, 4.106950759887695e-01] hexDis.UA_nominal=[4.748e+03, 4.748e+03] hexWetNTU.UA_nominal=[4.748e+03, 4.748e+03] hexWetNTU_TX.UA_nominal=[4.75475341796875e+03, 4.75475341796875e+03] diff --git a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos index 7a70da28aec..b99bd28cbdc 100644 --- a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos +++ b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos @@ -1,5 +1,5 @@ simulateModel("Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU", - stopTime=100, + stopTime=1000, method="cvode", tolerance=1e-6, resultFile="WetCoilEffectivenessNTU"); @@ -7,25 +7,28 @@ createPlot( id=1, position={59, 59, 1186, 1286}, y={"hexWetNTU.Q1_flow", "hexDis.Q1_flow", "hexWetNTU_TX.Q1_flow"}, - autoscale=true, + range = {0, 1000, 1E4, 1E5}, + autoscale=false, autoerase=true, autoreplot=true, grid=true, color=true); createPlot( id=1, - subPlot=2, y={"hexWetNTU.sta_b2.T", "hexDis.sta_b2.T", "hexWetNTU_TX.sta_b2.T"}, - autoscale=true, + range={0.0, 1000.0, 8.0, 16.0}, + autoscale=false, autoerase=true, autoreplot=true, grid=true, - color=true); + color=true, + subPlot=102); createPlot( id=1, subPlot=3, y={"relHumOut_eps.phi", "relHumOut_dis.phi"}, - autoscale=true, + range={0.0, 1000.0, 0.4, 1.1}, + autoscale=false, autoerase=true, autoreplot=true, grid=true, @@ -33,7 +36,7 @@ createPlot( createPlot( id=2, position={1255, 58, 1140, 1286}, - y={"hexWetNTU.dryWetCalcs.dryFra", "hexDis.dryFra", "hexWetNTU.SHR"}, + y={"hexWetNTU.SHR", "hexDis.SHR"}, autoscale=true, autoerase=true, autoreplot=true, @@ -42,15 +45,6 @@ createPlot( createPlot( id=2, subPlot=2, - y={"hexWetNTU.dryWetCalcs.w_FW","hexWetNTU.dryWetCalcs.w_FD"}, - autoscale=true, - autoerase=true, - autoreplot=true, - grid=true, - color=true); -createPlot( - id=3, - position={771, 947, 952, 562}, y={"hexDis.UA_nominal", "hexWetNTU.UA_nominal", "hexWetNTU_TX.UA_nominal"}, autoscale=true, autoerase=true, diff --git a/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos b/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos index bf96d7dc290..70131857c4a 100644 --- a/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos +++ b/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos @@ -8,11 +8,8 @@ compareVars := "hexWetNTU_TX.sta_b2.T", "relHumOut_eps.phi", "relHumOut_dis.phi", - "hexWetNTU.dryWetCalcs.dryFra", - "hexDis.dryFra", "hexWetNTU.SHR", - "hexWetNTU.dryWetCalcs.w_FW", - "hexWetNTU.dryWetCalcs.w_FD", + "hexDis.SHR", "hexDis.UA_nominal", "hexWetNTU.UA_nominal", "hexWetNTU_TX.UA_nominal" From 5756405d61ea6e7ab33bb3dcb47a3b169ef33f0a Mon Sep 17 00:00:00 2001 From: Michael Wetter Date: Fri, 26 Mar 2021 16:04:11 -0700 Subject: [PATCH 59/69] Added dryFra as a public variable --- .../Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo | 4 ++-- Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo index 3ad25a66f2c..7b946f76dc8 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo @@ -160,6 +160,8 @@ model WetCoilDryWetRegime final pAir=pAir, final X_wAirIn=X_wAirIn) "Fully-wet coil model"; + Real dryFra(final unit="1", min=0, max=1) = dryWetCalcs.dryFra + "Dry fraction, 0.3 means condensation occurs at 30% heat exchange length from air inlet"; protected Modelica.SIunits.MassFlowRate mAirNonZer_flow(min=Modelica.Constants.eps)= Buildings.Utilities.Math.Functions.smoothMax( @@ -188,8 +190,6 @@ protected "Membership functions for Fully-Wet and Fully-Dry conditions"; Real w_FW(final unit="1", min=0, max=1), w_FD(unit="1",min=0, max=1) "Normailized weight functions for Fully-Wet and Fully-Dry conditions"; - Real dryFra(final unit="1", min=0, max=1) - "Dry fraction, e.g., 0.3 means condensation occurs at 30% HX length from air inlet"; equation diff --git a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo index ddff3fefc4e..e512a86d814 100644 --- a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo @@ -84,6 +84,8 @@ model WetCoilEffectivenessNTU Modelica.SIunits.MassFlowRate mWat_flow = dryWetCalcs.mCon_flow "Water flow rate of condensate removed from the air stream"; + Real dryFra(final unit="1", min=0, max=1) = dryWetCalcs.dryFra + "Dry fraction, 0.3 means condensation occurs at 30% heat exchange length from air inlet"; protected final parameter Modelica.SIunits.MassFraction X_w_a2_nominal=w_a2_nominal/(1+w_a2_nominal) "Water mass fraction of inlet air at a rated condition (in kg/kg total air)"; From c4bc608337678aa4a11c4bb660ce2f68c66a51bd Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Fri, 26 Mar 2021 16:20:44 -0700 Subject: [PATCH 60/69] Update experiment --- .../Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo index 0fe245ff4c4..475c340f997 100644 --- a/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mo @@ -248,7 +248,7 @@ equation annotation (Diagram(coordinateSystem(preserveAspectRatio=true, extent={{-200,-120},{200,120}})), experiment( - StopTime=100, + StopTime=1000, Tolerance=1e-06), __Dymola_Commands( file="Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos" From 3c81ab8a1e426176077409112361cf3ca2166419 Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Fri, 26 Mar 2021 16:20:54 -0700 Subject: [PATCH 61/69] Add validation in heating --- .../BaseClasses/WetCoilUARated.mo | 6 +- .../WetCoilEffectivenessNTUHeating.mo | 293 ++++++++++++++++++ .../HeatExchangers/Validation/package.order | 1 + 3 files changed, 297 insertions(+), 3 deletions(-) create mode 100644 Buildings/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTUHeating.mo diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo index c0e468740ab..676a84420b4 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo @@ -129,9 +129,9 @@ initial equation "Rather specify nominal conditions in fully-dry or fully-wet regime.", level=AssertionLevel.warning); - assert(use_UA_nominal or TAirOutTWatIn and TWatInTWatIn and TWatIn +Buildings.Fluid.HeatExchangers.WetCoilEffectivenessNTU +model. +

    +

    Validation

    +

    +The example simulates a wet coil with constant air +and water inlet temperature and mass flow rate, and an increasing air inlet +humidity which triggers the transition from a fully-dry to a fully-wet regime. +The reference used for validation is the published experimental data. +A discretized wet coil model is also simulated for comparison. +To provide an accurate reference, the latter model is configured with 30 elements. +Under steady-state modeling assumptions, this creates a large system of +non-linear equations. To alleviate this effect, dynamics are considered but +the simulation time is increased to 1000 s to reproduce quasi steady-state +conditions. +

    +

    +Note that the outlet air relative humidity may slightly exceed 100% when using +the epsilon-NTU model. +

    +

    References

    +

    +Mitchell, John W., and James E. Braun. 2012. +\"Supplementary Material Chapter 2: Heat Exchangers for Cooling Applications\". +Excerpt from Principles of heating, ventilation, and air conditioning in buildings. +Hoboken, N.J.: Wiley. Available online: + +http://bcs.wiley.com/he-bcs/Books?action=index&itemId=0470624574&bcsId=7185 +

    +", revisions=" +
      +
    • +April 19, 2017, by Michael Wetter:
      +Revised model to avoid mixing textual equations and connect statements. +
    • +
    • +March 17, 2017, by Michael O'Keefe:
      +First implementation. See + +issue 622 for more information. +
    • +
    +")); +end WetCoilEffectivenessNTUHeating; diff --git a/Buildings/Fluid/HeatExchangers/Validation/package.order b/Buildings/Fluid/HeatExchangers/Validation/package.order index 821b1c52bd1..5f44460ae3a 100644 --- a/Buildings/Fluid/HeatExchangers/Validation/package.order +++ b/Buildings/Fluid/HeatExchangers/Validation/package.order @@ -7,3 +7,4 @@ PrescribedOutlet_dynamic WetCoilDiscretizedInitialization WetCoilDiscretizedInitializationPerfectGases WetCoilEffectivenessNTU +WetCoilEffectivenessNTUHeating From 21a91b66778032d49ec0d7613d9a7c13778eaef7 Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Fri, 26 Mar 2021 16:44:52 -0700 Subject: [PATCH 62/69] Fix wrong assignment --- .../Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo index 7b946f76dc8..866c4ce78d5 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryWetRegime.mo @@ -160,7 +160,7 @@ model WetCoilDryWetRegime final pAir=pAir, final X_wAirIn=X_wAirIn) "Fully-wet coil model"; - Real dryFra(final unit="1", min=0, max=1) = dryWetCalcs.dryFra + Real dryFra(final unit="1", min=0, max=1) "Dry fraction, 0.3 means condensation occurs at 30% heat exchange length from air inlet"; protected Modelica.SIunits.MassFlowRate mAirNonZer_flow(min=Modelica.Constants.eps)= From b3b9759c51c9bc04e7b8c029a68bb6cbc0e7b140 Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Fri, 26 Mar 2021 16:50:49 -0700 Subject: [PATCH 63/69] Update mos and results with dry fraction --- ...HeatExchangers_Validation_WetCoilEffectivenessNTU.txt | 1 + .../Validation/WetCoilEffectivenessNTU.mos | 9 +++++++++ ...HeatExchangers.Validation.WetCoilEffectivenessNTU.mos | 1 + 3 files changed, 11 insertions(+) diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt index 9cfd144f3bc..47ea2d93753 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTU.txt @@ -22,6 +22,7 @@ relHumOut_eps.phi=[5e-01, 4.923496544361115e-01, 5.111603736877441e-01, 5.299617 relHumOut_dis.phi=[5e-01, 4.801923334598541e-01, 4.981439709663391e-01, 5.166705846786499e-01, 5.351910591125488e-01, 5.537007451057434e-01, 5.721999406814575e-01, 5.906887650489807e-01, 6.091671586036682e-01, 6.276351809501648e-01, 6.460928916931152e-01, 6.645402312278748e-01, 6.829771995544434e-01, 7.014039158821106e-01, 7.198202610015869e-01, 7.382262945175171e-01, 7.566220164299011e-01, 7.75007426738739e-01, 7.933825850486755e-01, 8.117473721504211e-01, 8.301019072532654e-01, 8.481107950210571e-01, 8.628172874450684e-01, 8.745313286781311e-01, 8.841043710708618e-01, 8.92108678817749e-01, 8.989577889442444e-01, 9.04832661151886e-01, 9.099851250648499e-01, 9.14537787437439e-01, 9.186073541641235e-01, 9.222663640975952e-01, 9.255706071853638e-01, 9.285917282104492e-01, 9.313624501228333e-01, 9.339205622673035e-01, 9.362637400627136e-01, 9.384452700614929e-01, 9.405050277709961e-01, 9.424068331718445e-01, 9.441946744918823e-01, 9.459020495414734e-01, 9.474785923957825e-01, 9.490083456039429e-01, 9.504233598709106e-01, 9.518063068389893e-01, 9.530869126319885e-01, 9.543457627296448e-01, 9.555163979530334e-01, 9.56662654876709e-01, 9.577510356903076e-01, 9.587949514389038e-01, 9.598153233528137e-01, 9.607766270637512e-01, 9.617245197296143e-01, 9.626367688179016e-01, 9.635007977485657e-01, 9.64362621307373e-01, 9.652206301689148e-01, 9.660743474960327e-01, 9.669238328933716e-01, 9.677693843841553e-01, 9.686108827590942e-01, 9.694483876228333e-01, 9.702818989753723e-01, 9.711114168167114e-01, 9.719369411468506e-01, 9.727585911750793e-01, 9.735764265060425e-01, 9.743903279304504e-01, 9.75200355052948e-01, 9.760065078735352e-01, 9.76809024810791e-01, 9.77607786655426e-01, 9.784027338027954e-01, 9.791939258575439e-01, 9.799814820289612e-01, 9.807654023170471e-01, 9.815456867218018e-01, 9.823222160339355e-01, 9.83095109462738e-01, 9.838646650314331e-01, 9.846306443214417e-01, 9.853931069374084e-01, 9.861519932746887e-01, 9.86907422542572e-01, 9.876592755317688e-01, 9.884076714515686e-01, 9.891525506973267e-01, 9.898942112922668e-01, 9.906325936317444e-01, 9.913676381111145e-01, 9.92099404335022e-01, 9.92827832698822e-01, 9.935530424118042e-01, 9.942749738693237e-01, 9.949937462806702e-01, 9.95709240436554e-01, 9.964210987091064e-01, 9.971297979354858e-01, 9.978358149528503e-01] hexWetNTU.SHR=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1.000003576278687e+00, 9.989969730377197e-01, 9.966937899589539e-01, 9.925904870033264e-01, 9.862793684005737e-01, 9.775169491767883e-01, 9.662553071975708e-01, 9.526410698890686e-01, 9.369877576828003e-01, 9.197313785552979e-01, 9.013779163360596e-01, 8.824516534805298e-01, 8.634498119354248e-01, 8.448078036308289e-01, 8.268753290176392e-01, 8.099045753479004e-01, 7.94048011302948e-01, 7.793648242950439e-01, 7.658330798149109e-01, 7.533660531044006e-01, 7.418309450149536e-01, 7.310687303543091e-01, 7.209140658378601e-01, 7.112151384353638e-01, 7.018498778343201e-01, 6.927359104156494e-01, 6.83829128742218e-01, 6.751111745834351e-01, 6.665741801261902e-01, 6.582123041152954e-01, 6.500210762023926e-01, 6.419940590858459e-01, 6.341263055801392e-01, 6.264132857322693e-01, 6.188505291938782e-01, 6.114335060119629e-01, 6.041579842567444e-01, 5.970200896263123e-01, 5.900158286094666e-01, 5.83141565322876e-01, 5.763934254646301e-01, 5.697680115699768e-01, 5.632620453834534e-01, 5.568723082542419e-01, 5.505955815315247e-01, 5.444287657737732e-01, 5.383691191673279e-01, 5.324137806892395e-01, 5.265601277351379e-01, 5.208053588867188e-01, 5.151470303535461e-01, 5.095826983451843e-01, 5.041100978851318e-01, 4.9872687458992e-01, 4.934307336807251e-01, 4.882195889949799e-01, 4.830914437770844e-01, 4.780443012714386e-01, 4.73076194524765e-01, 4.681852757930756e-01, 4.63369756937027e-01, 4.58627849817276e-01, 4.539578258991241e-01, 4.493580460548401e-01, 4.448269307613373e-01, 4.403629004955292e-01, 4.359645247459412e-01, 4.316302537918091e-01, 4.273587465286255e-01, 4.231486022472382e-01, 4.189984500408173e-01, 4.149070680141449e-01, 4.10873144865036e-01, 4.068954586982727e-01] hexDis.SHR=[0e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.9959796667099e-01, 9.964629411697388e-01, 9.911325573921204e-01, 9.842371344566345e-01, 9.761489033699036e-01, 9.671937227249146e-01, 9.576058983802795e-01, 9.475848078727722e-01, 9.372069239616394e-01, 9.265676140785217e-01, 9.156988263130188e-01, 9.047637581825256e-01, 8.937314748764038e-01, 8.826766014099121e-01, 8.716500997543335e-01, 8.607543706893921e-01, 8.497627973556519e-01, 8.388912677764893e-01, 8.282014727592468e-01, 8.17502498626709e-01, 8.070180416107178e-01, 7.965641021728516e-01, 7.862549424171448e-01, 7.761443257331848e-01, 7.661017775535583e-01, 7.562750577926636e-01, 7.465407252311707e-01, 7.369807362556458e-01, 7.276453971862793e-01, 7.18296229839325e-01, 7.091842889785767e-01, 7.00225830078125e-01, 6.913521885871887e-01, 6.827065348625183e-01, 6.74108624458313e-01, 6.657329797744751e-01, 6.575115919113159e-01, 6.494516730308533e-01, 6.415461301803589e-01, 6.337897777557373e-01, 6.261787414550781e-01, 6.187091469764709e-01, 6.113770604133606e-01, 6.041787266731262e-01, 5.971103310585022e-01, 5.901684165000916e-01, 5.833497047424316e-01, 5.76650857925415e-01, 5.700686573982239e-01, 5.636001229286194e-01, 5.57242214679718e-01, 5.509921908378601e-01, 5.448472499847412e-01, 5.388047099113464e-01, 5.328620672225952e-01, 5.270167589187622e-01, 5.212665200233459e-01, 5.156088471412659e-01, 5.100415945053101e-01, 5.045625567436218e-01, 4.991697371006012e-01, 4.938609898090363e-01, 4.886343777179718e-01, 4.834879040718079e-01, 4.784197807312012e-01, 4.734281897544861e-01, 4.685113728046417e-01, 4.63667631149292e-01, 4.588953852653503e-01, 4.54193115234375e-01, 4.495591521263123e-01, 4.449920356273651e-01, 4.404902756214142e-01, 4.360525012016296e-01, 4.316772818565369e-01, 4.273633360862732e-01, 4.231093227863312e-01, 4.18913871049881e-01, 4.14775937795639e-01, 4.106950759887695e-01] +hexWetNTU.dryFra=[1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 1e+00, 9.999983310699463e-01, 9.998849034309387e-01, 9.988121390342712e-01, 9.946662783622742e-01, 9.846232533454895e-01, 9.660599231719971e-01, 9.371673464775085e-01, 8.972097635269165e-01, 8.465237021446228e-01, 7.863519191741943e-01, 7.185930609703064e-01, 6.455349922180176e-01, 5.696163177490234e-01, 4.932373464107513e-01, 4.186206758022308e-01, 3.477143943309784e-01, 2.821265161037445e-01, 2.230824530124664e-01, 1.714024841785431e-01, 1.274983733892441e-01, 9.139077365398407e-02, 6.274726241827011e-02, 4.093944281339645e-02, 2.511460147798061e-02, 1.427620090544224e-02, 7.367095910012722e-03, 3.350530518218875e-03, 1.28490396309644e-03, 3.879490541294217e-04, 8.245313074439764e-05, 1.014943518384825e-05, 4.988528417015914e-07, 4.371088380139554e-09, 8.060999784342826e-13, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00, 0e+00] hexDis.UA_nominal=[4.748e+03, 4.748e+03] hexWetNTU.UA_nominal=[4.748e+03, 4.748e+03] hexWetNTU_TX.UA_nominal=[4.75475341796875e+03, 4.75475341796875e+03] diff --git a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos index b99bd28cbdc..fa351abe789 100644 --- a/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos +++ b/Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTU.mos @@ -45,6 +45,15 @@ createPlot( createPlot( id=2, subPlot=2, + y={"hexWetNTU.dryFra"}, + autoscale=true, + autoerase=true, + autoreplot=true, + grid=true, + color=true); +createPlot( + id=2, + subPlot=3, y={"hexDis.UA_nominal", "hexWetNTU.UA_nominal", "hexWetNTU_TX.UA_nominal"}, autoscale=true, autoerase=true, diff --git a/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos b/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos index 70131857c4a..0ff6a6ff07d 100644 --- a/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos +++ b/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTU.mos @@ -10,6 +10,7 @@ compareVars := "relHumOut_dis.phi", "hexWetNTU.SHR", "hexDis.SHR", + "hexWetNTU.dryFra", "hexDis.UA_nominal", "hexWetNTU.UA_nominal", "hexWetNTU_TX.UA_nominal" From c779fe2e92b4bc39857a2d554e29a2cf780b05aa Mon Sep 17 00:00:00 2001 From: kim1077 Date: Mon, 5 Apr 2021 13:52:54 -0700 Subject: [PATCH 64/69] added an assertion statement checking valididity of rated condition --- .../BaseClasses/WetCoilUARated.mo | 22 ++++++++++++------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo index 676a84420b4..83d1f3d406a 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo @@ -42,11 +42,12 @@ protected constant Modelica.SIunits.SpecificHeatCapacity cpUnit=1 "Physical dimension of specific heat capacity used for a unit conversion"; - parameter Modelica.SIunits.MassFraction X_wAirOut(fixed=false) - "Mass fraction of water in outgoing air at a rated condition"; - parameter Modelica.SIunits.SpecificEnthalpy hAirIn(fixed=false) + /*parameter Modelica.SIunits.MassFraction X_wAirOut(fixed=false) + "Mass fraction of water in outgoing air at a rated condition";*/ + parameter Modelica.SIunits.SpecificEnthalpy hAirIn = MediumA.specificEnthalpy_pTX( + p=MediumA.p_default, T=TAirIn, X={X_wAirIn, 1-X_wAirIn}) "Enthalpy of incoming moist air at a rated condition"; - parameter Modelica.SIunits.SpecificEnthalpy hAirOut(fixed=false) + parameter Modelica.SIunits.SpecificEnthalpy hAirOut = hAirIn- QTot_flow/mAir_flow "Enthalpy of outgoing moist air at a rated condition"; // calculates all thermodynamic properties based on inputs @@ -111,15 +112,20 @@ protected initial equation - hAirIn=MediumA.specificEnthalpy_pTX( +/* hAirIn=MediumA.specificEnthalpy_pTX( p=MediumA.p_default, T=TAirIn, X={X_wAirIn, 1-X_wAirIn}); hAirOut=MediumA.specificEnthalpy_pTX( - p=MediumA.p_default, T=TAirOut, X={X_wAirOut, 1-X_wAirOut}); + p=MediumA.p_default, T=TAirOut, X={X_wAirOut, 1-X_wAirOut});*/ + + //QTot_flow = mAir_flow*(hAirIn-hAirOut); + - QTot_flow = mAir_flow*(hAirIn-hAirOut); isFulDry = if not use_UA_nominal then (X_wSatTWatIn >= X_wAirIn) else true; isFulWet = if not use_UA_nominal then (X_wSatTWatOut <= X_wAirIn) else true; + assert( hAirOut >= hSatTWatIn and hAirIn >= hSatTWatOut or use_UA_nominal, + "The provided data indicates thtat the air enthlapy either at the air inlet or + at the outlet is unrealistically low. Check the rated condition."); assert( isFulDry or isFulWet, @@ -158,7 +164,7 @@ initial equation TAirIn=MediumA.T_default; TAirOut=MediumA.T_default; X_wAirIn=MediumA.X_default[1]; - X_wAirOut=MediumA.X_default[1]; + //X_wAirOut=MediumA.X_default[1]; TWatIn=MediumA.T_default; TWatOut=MediumA.T_default; hAirIn=MediumA.h_default; From 7748473ffef33de1f555f980cc5709df6a9ec0f8 Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Tue, 6 Apr 2021 17:20:40 -0700 Subject: [PATCH 65/69] Refactor with use_Q_flow_nominal T_a2_nominal is removed as it is not needed. --- .../BaseClasses/WetCoilDryRegime.mo | 4 +- .../BaseClasses/WetCoilUARated.mo | 135 ++++++++---------- .../WetCoilEffectivenessNTUMassFlow.mo | 1 - .../Validation/WetCoilEffectivenessNTU.mo | 15 +- .../WetCoilEffectivenessNTUHeating.mo | 25 ++-- .../HeatExchangers/WetCoilEffectivenessNTU.mo | 117 +++++++-------- ...ers_Validation_WetCoilEffectivenessNTU.txt | 26 ++-- ...idation_WetCoilEffectivenessNTUHeating.txt | 23 +++ .../Validation/WetCoilEffectivenessNTU.mos | 10 +- .../WetCoilEffectivenessNTUHeating.mos | 34 +++++ ...ers.Validation.WetCoilEffectivenessNTU.mos | 8 +- ...idation.WetCoilEffectivenessNTUHeating.mos | 12 ++ 12 files changed, 231 insertions(+), 179 deletions(-) create mode 100644 Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTUHeating.txt create mode 100644 Buildings/Resources/Scripts/Dymola/Fluid/HeatExchangers/Validation/WetCoilEffectivenessNTUHeating.mos create mode 100644 Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.HeatExchangers.Validation.WetCoilEffectivenessNTUHeating.mos diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo index 4ece1ad8c7b..bedffb2e009 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilDryRegime.mo @@ -32,9 +32,9 @@ model WetCoilDryRegime "Nominal mass flow rate for air"; input Modelica.SIunits.MassFlowRate mWat_flow_nominal "Nominal mass flow rate for water"; - + parameter Real delta = 1E-3 "Small value used for smoothing"; - + output Modelica.SIunits.HeatFlowRate QTot_flow "Heat transferred from water to air"; output Modelica.SIunits.Temperature TWatOut diff --git a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo index 83d1f3d406a..39b9b57ace2 100644 --- a/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo +++ b/Buildings/Fluid/HeatExchangers/BaseClasses/WetCoilUARated.mo @@ -9,20 +9,21 @@ model WetCoilUARated constrainedby Modelica.Media.Interfaces.PartialMedium "Water-side medium"; - parameter Boolean use_UA_nominal = false - "Set to true to specify UA_nominal, or to false to use nominal conditions" - annotation (Evaluate=true, - Dialog(group="Nominal thermal performance")); + parameter Boolean use_Q_flow_nominal = false + "Set to true to specify Q_flow_nominal and inlet conditions, or to false to specify UA_nominal" + annotation ( + Evaluate=true, + Dialog(group="Nominal thermal performance")); + parameter Modelica.SIunits.HeatFlowRate QTot_flow + "Nominal heat flow rate (positive for heat transfer from 1 to 2)"; parameter Modelica.SIunits.Temperature TAirIn "Air inlet temperature at a rated condition"; - parameter Modelica.SIunits.Temperature TAirOut - "Air outlet temperature at a rated condition"; + parameter Modelica.SIunits.MassFraction X_wAirIn "Mass fraction of water in inlet air at a rated condition"; parameter Modelica.SIunits.Temperature TWatIn "Water inlet temperature at a rated condition"; - parameter Modelica.SIunits.Temperature TWatOut - "Water outlet temperature at a rated condition"; + parameter Modelica.SIunits.MassFlowRate mAir_flow "Air mass flow rate at a rated condition"; parameter Modelica.SIunits.MassFlowRate mWat_flow @@ -31,6 +32,7 @@ model WetCoilUARated "the overall heat transfer coefficient for a fully dry condition"; parameter Real r_nominal(min=0, max=1) "Ratio between air-side and water-side convective heat transfer at nominal condition"; + protected constant Modelica.SIunits.SpecificEnthalpy hfg= Buildings.Utilities.Psychrometrics.Constants.h_fg @@ -41,92 +43,79 @@ protected "Physical dimension of temperature used for a unit conversion"; constant Modelica.SIunits.SpecificHeatCapacity cpUnit=1 "Physical dimension of specific heat capacity used for a unit conversion"; - - /*parameter Modelica.SIunits.MassFraction X_wAirOut(fixed=false) - "Mass fraction of water in outgoing air at a rated condition";*/ + parameter Modelica.SIunits.Temperature TAirOut(fixed=false) + "Air outlet temperature at a rated condition"; + parameter Modelica.SIunits.Temperature TWatOut= + TWatIn - QTot_flow / cpWat / mWat_flow + "Water outlet temperature at a rated condition"; parameter Modelica.SIunits.SpecificEnthalpy hAirIn = MediumA.specificEnthalpy_pTX( - p=MediumA.p_default, T=TAirIn, X={X_wAirIn, 1-X_wAirIn}) + p=MediumA.p_default, T=TAirIn, X={X_wAirIn, 1-X_wAirIn}) "Enthalpy of incoming moist air at a rated condition"; - parameter Modelica.SIunits.SpecificEnthalpy hAirOut = hAirIn- QTot_flow/mAir_flow - "Enthalpy of outgoing moist air at a rated condition"; - - // calculates all thermodynamic properties based on inputs parameter MediumA.ThermodynamicState staAir=MediumA.setState_phX( - p=MediumA.p_default,h=MediumA.h_default,X=MediumA.X_default[1:MediumA.nXi]) - "Air media object"; - parameter MediumW.ThermodynamicState staWat=MediumW.setState_phX( - p=MediumW.p_default,h=MediumW.h_default,X=MediumW.X_default[1:MediumW.nXi]) - "Water media object"; - + p=MediumA.p_default, h=hAirIn, X={X_wAirIn, 1-X_wAirIn}) + "Inlet air thermodynamic state"; parameter Modelica.SIunits.SpecificHeatCapacity cpAir= MediumA.specificHeatCapacityCp(staAir) "Isobaric specific heat capacity of air"; + parameter Modelica.SIunits.SpecificEnthalpy hAirOut= + hAirIn + QTot_flow / mAir_flow + "Enthalpy of outgoing moist air at a rated condition"; + parameter Modelica.SIunits.SpecificEnthalpy hWatIn = MediumW.specificEnthalpy_pTX( + p=MediumW.p_default, T=TWatIn, X=MediumW.X_default) + "Enthalpy of incoming moist air at a rated condition"; + parameter MediumW.ThermodynamicState staWat=MediumW.setState_phX( + p=MediumW.p_default, h=hWatIn, X=MediumW.X_default) + "Inlet water thermodynamic state"; parameter Modelica.SIunits.SpecificHeatCapacity cpWat= MediumW.specificHeatCapacityCp(staWat) "Isobaric specific heat capacity of water"; parameter Modelica.SIunits.SpecificHeatCapacity cpEff(fixed=false, min= 0) "Effective specific heat: change in saturated moist air enthalpy with respect to temperature along the saturation line between inlet and outlet water temperatures"; - parameter Modelica.SIunits.SpecificEnthalpy LMED(fixed=false) "Log mean enthalpy difference"; - - parameter Modelica.SIunits.MassFlowRate UASta(fixed=false, min=0) + parameter Modelica.SIunits.MassFlowRate UASta(fixed=false, min=0, start=1/(1/10+1/20)) "Overall heat transfer coefficient for enthalpy difference"; - parameter Modelica.SIunits.HeatFlowRate QTot_flow=mWat_flow*cpWat*(TWatOut - - TWatIn) "Total heat flow from air to water stream"; - parameter Modelica.SIunits.ThermalConductance UAAir(min=0,start=10,fixed=false) - "Air side convective heat transfer coefficient, including fin resistance"; + "Air side convective heat transfer coefficient, including fin resistance"; parameter Modelica.SIunits.ThermalConductance UAWat(min=0,start=20,fixed=false) - "Water side convective heat transfer coefficient"; - + "Water side convective heat transfer coefficient"; parameter Boolean isFulDry(fixed=false) - "Indicator of the fully-dry coil regime"; + "Indicator of the fully-dry coil regime"; parameter Boolean isFulWet(fixed=false) - "Indicator of the fully-wet coil regime"; - - Modelica.SIunits.AbsolutePressure pSatTWatIn= + "Indicator of the fully-wet coil regime"; + parameter Modelica.SIunits.AbsolutePressure pSatTWatIn= Buildings.Utilities.Psychrometrics.Functions.saturationPressure(TWatIn) "Saturation pressure of water at the water inlet temperature"; - Modelica.SIunits.MassFraction X_wSatTWatIn= + parameter Modelica.SIunits.MassFraction X_wSatTWatIn= Buildings.Utilities.Psychrometrics.Functions.X_pSatpphi( pSat=pSatTWatIn, p=MediumA.p_default, phi=1) "Mass fraction of water in saturated moist air at the water inlet temperature"; - Modelica.SIunits.SpecificEnthalpy hSatTWatIn= + parameter Modelica.SIunits.SpecificEnthalpy hSatTWatIn= Buildings.Media.Air.specificEnthalpy_pTX( p=MediumA.p_default, T=TWatIn, X={X_wSatTWatIn,1-X_wSatTWatIn}) "Enthalpy of saturated moist air at the water inlet temperature"; - - Modelica.SIunits.AbsolutePressure pSatTWatOut= + parameter Modelica.SIunits.AbsolutePressure pSatTWatOut= Buildings.Utilities.Psychrometrics.Functions.saturationPressure(TWatOut) "Saturation pressure of water at the water oulet temperature"; - Modelica.SIunits.MassFraction X_wSatTWatOut= + parameter Modelica.SIunits.MassFraction X_wSatTWatOut= Buildings.Utilities.Psychrometrics.Functions.X_pSatpphi( pSat=pSatTWatOut, p=MediumA.p_default, phi=1) "Mass fraction of water in saturated moist air at the water outlet temperature"; - Modelica.SIunits.SpecificEnthalpy hSatTWatOut= + parameter Modelica.SIunits.SpecificEnthalpy hSatTWatOut= Buildings.Media.Air.specificEnthalpy_pTX( p=MediumA.p_default, T=TWatOut, X={X_wSatTWatOut,1-X_wSatTWatOut}) "Enthalpy of saturated moist air at the water oulet temperature"; - initial equation - -/* hAirIn=MediumA.specificEnthalpy_pTX( - p=MediumA.p_default, T=TAirIn, X={X_wAirIn, 1-X_wAirIn}); - hAirOut=MediumA.specificEnthalpy_pTX( - p=MediumA.p_default, T=TAirOut, X={X_wAirOut, 1-X_wAirOut});*/ - - //QTot_flow = mAir_flow*(hAirIn-hAirOut); - - - - isFulDry = if not use_UA_nominal then (X_wSatTWatIn >= X_wAirIn) else true; - isFulWet = if not use_UA_nominal then (X_wSatTWatOut <= X_wAirIn) else true; - assert( hAirOut >= hSatTWatIn and hAirIn >= hSatTWatOut or use_UA_nominal, - "The provided data indicates thtat the air enthlapy either at the air inlet or - at the outlet is unrealistically low. Check the rated condition."); - + isFulDry = if use_Q_flow_nominal then (X_wSatTWatIn >= X_wAirIn) else true; + isFulWet = if use_Q_flow_nominal then (X_wSatTWatOut <= X_wAirIn) else true; + assert( + not use_Q_flow_nominal or + hAirOut >= hSatTWatIn and hAirIn >= hSatTWatOut or + hAirOut <= hSatTWatIn and hAirIn <= hSatTWatOut, + "In " + getInstanceName() + + ": The moist air enthalpy at the coil inlet or outlet is unrealistically low. " + + "Check the rated conditions."); assert( isFulDry or isFulWet, "In " + getInstanceName() + @@ -134,43 +123,41 @@ initial equation "The modeling uncertainty under such conditions has not been assessed. " + "Rather specify nominal conditions in fully-dry or fully-wet regime.", level=AssertionLevel.warning); - -// assert(use_UA_nominal or TAirOutTWatIn and TWatIn Date: Wed, 14 Apr 2021 09:06:47 -0700 Subject: [PATCH 66/69] Compute cp from entering fluid, update results This is a workaround for a bug in Dymola, see https://github.com/lbl-srg/modelica-buildings/issues/622#issuecomment-819635402 --- .../HeatExchangers/WetCoilEffectivenessNTU.mo | 18 ++++-------------- ...lidation_WetCoilEffectivenessNTUHeating.txt | 8 ++++---- 2 files changed, 8 insertions(+), 18 deletions(-) diff --git a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo index b9ebfede392..ca9289e7635 100644 --- a/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo +++ b/Buildings/Fluid/HeatExchangers/WetCoilEffectivenessNTU.mo @@ -163,13 +163,8 @@ protected Qfac=Qfac) "Dry/wet calculations block" annotation (Placement(transformation(extent={{-20,-40},{60,40}}))); - Modelica.Blocks.Sources.RealExpression cp_a1Exp( - final y = if allowFlowReversal1 - then - fra_a1 * Medium1.specificHeatCapacityCp(state_a1_inflow) - + fra_b1 * Medium1.specificHeatCapacityCp(state_b1_inflow) - else - Medium1.specificHeatCapacityCp(state_a1_inflow)) + Modelica.Blocks.Sources.RealExpression cp_a1Exp(final y= + Medium1.specificHeatCapacityCp(state_a1_inflow)) "Expression for cp of air" annotation (Placement(transformation(extent={{-44,18},{-30,30}}))); Modelica.Blocks.Sources.RealExpression XWat_a2Exp( @@ -193,13 +188,8 @@ protected Medium2.specificEnthalpy(state_a2_inflow)) "Specific enthalpy at port a2" annotation (Placement(transformation(extent={{-44,-18},{-30,-6}}))); - Modelica.Blocks.Sources.RealExpression cp_a2Exp( - final y = if allowFlowReversal2 - then - fra_a2 * Medium2.specificHeatCapacityCp(state_a2_inflow) - + fra_b2 * Medium2.specificHeatCapacityCp(state_b2_inflow) - else - Medium2.specificHeatCapacityCp(state_a2_inflow)) + Modelica.Blocks.Sources.RealExpression cp_a2Exp(final y= + Medium2.specificHeatCapacityCp(state_a2_inflow)) "Specific heat capacity at port a2" annotation (Placement(transformation(extent={{-44,-30},{-30,-18}}))); Modelica.Blocks.Sources.RealExpression TIn_a1Exp( diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTUHeating.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTUHeating.txt index f6468886660..99fc61dfa0f 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTUHeating.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_HeatExchangers_Validation_WetCoilEffectivenessNTUHeating.txt @@ -1,4 +1,4 @@ -last-generated=2021-04-06 +last-generated=2021-04-14 statistics-initialization= { "nonlinear": "1, 1", @@ -12,11 +12,11 @@ statistics-simulation= "numerical Jacobians": "0" } time=[0e+00, 1e+03] -hexDis.Q1_flow=[0e+00, -7.81854140625e+04, -7.795025e+04, -7.7715078125e+04, -7.747990625e+04, -7.72447421875e+04, -7.70095703125e+04, -7.67743984375e+04, -7.65392265625e+04, -7.63040546875e+04, -7.60688828125e+04, -7.58337109375e+04, -7.5598546875e+04, -7.5363375e+04, -7.5128203125e+04, -7.489303125e+04, -7.4657859375e+04, -7.44226875e+04, -7.4187515625e+04, -7.39523515625e+04, -7.37171796875e+04, -7.34820078125e+04, -7.32468359375e+04, -7.30116640625e+04, -7.27764921875e+04, -7.25413203125e+04, -7.230615625e+04, -7.2070984375e+04, -7.18358125e+04, -7.1600640625e+04, -7.136546875e+04, -7.1130296875e+04, -7.0895125e+04, -7.06599609375e+04, -7.04247890625e+04, -7.01896171875e+04, -6.99544453125e+04, -6.97192734375e+04, -6.94841015625e+04, -6.92489296875e+04, -6.9013765625e+04, -6.877859375e+04, -6.8543421875e+04, -6.830825e+04, -6.8073078125e+04, -6.783790625e+04, -6.7602734375e+04, -6.73675703125e+04, -6.71323984375e+04, -6.68972265625e+04, -6.66620546875e+04, -6.64268828125e+04, -6.61917109375e+04, -6.59565390625e+04, -6.5721375e+04, -6.548619921875e+04, -6.525103125e+04, -6.5015859375e+04, -6.47806875e+04, -6.454551953125e+04, -6.431034765625e+04, -6.407517578125e+04, -6.384000390625e+04, -6.36048359375e+04, -6.33696640625e+04, -6.31344921875e+04, -6.289932421875e+04, -6.266415234375e+04, -6.242898046875e+04, -6.219380859375e+04, -6.1958640625e+04, -6.172346875e+04, -6.1488296875e+04, -6.125312890625e+04, -6.101795703125e+04, -6.078278515625e+04, -6.054761328125e+04, -6.03124453125e+04, -6.00772734375e+04, -5.98421015625e+04, -5.960693359375e+04, -5.937176171875e+04, -5.913658984375e+04, -5.890141796875e+04, -5.866625e+04, -5.8431078125e+04, -5.819590625e+04, -5.796073828125e+04, -5.772556640625e+04, -5.749039453125e+04, -5.725522265625e+04, -5.70200546875e+04, -5.67848828125e+04, -5.65497109375e+04, -5.631454296875e+04, -5.607937109375e+04, -5.584419921875e+04, -5.560902734375e+04, -5.5373859375e+04, -5.51386875e+04, -5.4903515625e+04] -hexWetNTU_TX.Q1_flow=[-0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00, -0e+00] +hexDis.Q1_flow=[0e+00, -7.81854140625e+04, -7.795025e+04, -7.7715078125e+04, -7.74799140625e+04, -7.72447421875e+04, -7.70095703125e+04, -7.67743984375e+04, -7.65392265625e+04, -7.63040546875e+04, -7.60688828125e+04, -7.58337109375e+04, -7.5598546875e+04, -7.5363375e+04, -7.5128203125e+04, -7.489303125e+04, -7.4657859375e+04, -7.44226875e+04, -7.4187515625e+04, -7.39523515625e+04, -7.37171796875e+04, -7.34820078125e+04, -7.32468359375e+04, -7.30116640625e+04, -7.27764921875e+04, -7.25413203125e+04, -7.230615625e+04, -7.2070984375e+04, -7.18358125e+04, -7.1600640625e+04, -7.136546875e+04, -7.1130296875e+04, -7.0895125e+04, -7.06599609375e+04, -7.04247890625e+04, -7.01896171875e+04, -6.99544453125e+04, -6.97192734375e+04, -6.94841015625e+04, -6.92489296875e+04, -6.9013765625e+04, -6.877859375e+04, -6.8543421875e+04, -6.830825e+04, -6.8073078125e+04, -6.783790625e+04, -6.7602734375e+04, -6.73675703125e+04, -6.71323984375e+04, -6.68972265625e+04, -6.66620546875e+04, -6.64268828125e+04, -6.61917109375e+04, -6.59565390625e+04, -6.5721375e+04, -6.548619921875e+04, -6.525103125e+04, -6.5015859375e+04, -6.47806875e+04, -6.454551953125e+04, -6.431034765625e+04, -6.407517578125e+04, -6.384000390625e+04, -6.36048359375e+04, -6.33696640625e+04, -6.31344921875e+04, -6.289932421875e+04, -6.266415234375e+04, -6.242898046875e+04, -6.219380859375e+04, -6.1958640625e+04, -6.172346875e+04, -6.1488296875e+04, -6.125312890625e+04, -6.101795703125e+04, -6.078278515625e+04, -6.054761328125e+04, -6.03124453125e+04, -6.00772734375e+04, -5.98421015625e+04, -5.960693359375e+04, -5.937176171875e+04, -5.913658984375e+04, -5.890141796875e+04, -5.866625e+04, -5.8431078125e+04, -5.819590625e+04, -5.796073828125e+04, -5.772556640625e+04, -5.749039453125e+04, -5.725522265625e+04, -5.70200546875e+04, -5.67848828125e+04, -5.65497109375e+04, -5.631454296875e+04, -5.607937109375e+04, -5.584419921875e+04, -5.560902734375e+04, -5.5373859375e+04, -5.51386875e+04, -5.4903515625e+04] +hexWetNTU_TX.Q1_flow=[-7.934540625e+04, -7.9106171875e+04, -7.8867140625e+04, -7.8628296875e+04, -7.8389625e+04, -7.81511015625e+04, -7.7912703125e+04, -7.76744140625e+04, -7.7436203125e+04, -7.71980625e+04, -7.695996875e+04, -7.672190625e+04, -7.64838671875e+04, -7.62458359375e+04, -7.60078125e+04, -7.57697890625e+04, -7.5531765625e+04, -7.529375e+04, -7.50557265625e+04, -7.4817703125e+04, -7.45796875e+04, -7.43416640625e+04, -7.41036484375e+04, -7.3865625e+04, -7.36276015625e+04, -7.33895859375e+04, -7.31515625e+04, -7.2913546875e+04, -7.26755234375e+04, -7.24375e+04, -7.2199484375e+04, -7.19614609375e+04, -7.17234453125e+04, -7.1485421875e+04, -7.12473984375e+04, -7.10093828125e+04, -7.0771359375e+04, -7.053334375e+04, -7.02953203125e+04, -7.0057296875e+04, -6.981928125e+04, -6.95812578125e+04, -6.93432421875e+04, -6.910521875e+04, -6.88671953125e+04, -6.86291796875e+04, -6.839115625e+04, -6.8153140625e+04, -6.79151171875e+04, -6.76771015625e+04, -6.7439078125e+04, -6.72010546875e+04, -6.69630390625e+04, -6.6725015625e+04, -6.6487e+04, -6.62489765625e+04, -6.6010953125e+04, -6.57729375e+04, -6.55349140625e+04, -6.529689453125e+04, -6.5058875e+04, -6.482085546875e+04, -6.45828359375e+04, -6.43448125e+04, -6.410679296875e+04, -6.38687734375e+04, -6.363075390625e+04, -6.3392734375e+04, -6.31547109375e+04, -6.291669140625e+04, -6.2678671875e+04, -6.244065234375e+04, -6.22026328125e+04, -6.1964609375e+04, -6.172658984375e+04, -6.14885703125e+04, -6.125055078125e+04, -6.101253125e+04, -6.07745078125e+04, -6.053648828125e+04, -6.029846875e+04, -6.006044921875e+04, -5.98224296875e+04, -5.958441015625e+04, -5.934638671875e+04, -5.91083671875e+04, -5.887034765625e+04, -5.8632328125e+04, -5.839430859375e+04, -5.815628515625e+04, -5.7918265625e+04, -5.768024609375e+04, -5.74422265625e+04, -5.720420703125e+04, -5.696618359375e+04, -5.67281640625e+04, -5.649014453125e+04, -5.6252125e+04, -5.601410546875e+04, -5.57760859375e+04, -5.55380625e+04] hexDryNTU_T.Q1_flow=[-7.91153984375e+04, -7.88780546875e+04, -7.86407109375e+04, -7.8403359375e+04, -7.8166015625e+04, -7.7928671875e+04, -7.76913203125e+04, -7.74539765625e+04, -7.72166328125e+04, -7.697928125e+04, -7.67419375e+04, -7.650459375e+04, -7.62672421875e+04, -7.60298984375e+04, -7.57925546875e+04, -7.5555203125e+04, -7.5317859375e+04, -7.5080515625e+04, -7.4843171875e+04, -7.46058203125e+04, -7.43684765625e+04, -7.41311328125e+04, -7.389378125e+04, -7.36564375e+04, -7.341909375e+04, -7.31817421875e+04, -7.29443984375e+04, -7.27070546875e+04, -7.2469703125e+04, -7.2232359375e+04, -7.1995015625e+04, -7.17576640625e+04, -7.15203203125e+04, -7.12829765625e+04, -7.10456328125e+04, -7.080828125e+04, -7.05709375e+04, -7.033359375e+04, -7.00962421875e+04, -6.98588984375e+04, -6.96215546875e+04, -6.9384203125e+04, -6.9146859375e+04, -6.8909515625e+04, -6.86721640625e+04, -6.84348203125e+04, -6.81974765625e+04, -6.7960125e+04, -6.772278125e+04, -6.74854375e+04, -6.724809375e+04, -6.70107421875e+04, -6.67733984375e+04, -6.65360546875e+04, -6.6298703125e+04, -6.6061359375e+04, -6.5824015625e+04, -6.55866640625e+04, -6.53493203125e+04, -6.511197265625e+04, -6.487462890625e+04, -6.463728125e+04, -6.43999375e+04, -6.416258984375e+04, -6.39252421875e+04, -6.36878984375e+04, -6.345055078125e+04, -6.3213203125e+04, -6.2975859375e+04, -6.273851171875e+04, -6.25011640625e+04, -6.22638203125e+04, -6.202647265625e+04, -6.178912890625e+04, -6.155178125e+04, -6.131443359375e+04, -6.107708984375e+04, -6.08397421875e+04, -6.060239453125e+04, -6.036505078125e+04, -6.0127703125e+04, -5.9890359375e+04, -5.965301171875e+04, -5.94156640625e+04, -5.91783203125e+04, -5.894097265625e+04, -5.8703625e+04, -5.846628125e+04, -5.822893359375e+04, -5.799158984375e+04, -5.77542421875e+04, -5.751689453125e+04, -5.727955078125e+04, -5.7042203125e+04, -5.680485546875e+04, -5.656751171875e+04, -5.63301640625e+04, -5.60928203125e+04, -5.585547265625e+04, -5.5618125e+04, -5.538078125e+04] hexDis.sta_b2.T=[2.931499938964844e+02, 3.023950805664062e+02, 3.024577026367188e+02, 3.025200805664062e+02, 3.025824584960938e+02, 3.026448669433594e+02, 3.02707275390625e+02, 3.027696533203125e+02, 3.028320617675781e+02, 3.028944396972656e+02, 3.029568481445312e+02, 3.030192260742188e+02, 3.030816345214844e+02, 3.0314404296875e+02, 3.032064208984375e+02, 3.032688293457031e+02, 3.033312072753906e+02, 3.033936157226562e+02, 3.034560241699219e+02, 3.035184020996094e+02, 3.03580810546875e+02, 3.036431884765625e+02, 3.037055969238281e+02, 3.037680053710938e+02, 3.038303833007812e+02, 3.038927917480469e+02, 3.039551696777344e+02, 3.04017578125e+02, 3.040799865722656e+02, 3.041423645019531e+02, 3.042047729492188e+02, 3.042671508789062e+02, 3.043295593261719e+02, 3.043919372558594e+02, 3.04454345703125e+02, 3.045167541503906e+02, 3.045791320800781e+02, 3.046415405273438e+02, 3.047039184570312e+02, 3.047663269042969e+02, 3.048287353515625e+02, 3.0489111328125e+02, 3.049535217285156e+02, 3.050158996582031e+02, 3.050783081054688e+02, 3.051407165527344e+02, 3.052030944824219e+02, 3.052655029296875e+02, 3.05327880859375e+02, 3.053902893066406e+02, 3.054526672363281e+02, 3.055150756835938e+02, 3.055774841308594e+02, 3.056398620605469e+02, 3.057022705078125e+02, 3.057646484375e+02, 3.058270568847656e+02, 3.058894653320312e+02, 3.059518432617188e+02, 3.060142517089844e+02, 3.060766296386719e+02, 3.061390380859375e+02, 3.062014465332031e+02, 3.062638244628906e+02, 3.063262329101562e+02, 3.063886108398438e+02, 3.064510192871094e+02, 3.065133972167969e+02, 3.065758056640625e+02, 3.066382141113281e+02, 3.067005920410156e+02, 3.067630004882812e+02, 3.068253784179688e+02, 3.068877868652344e+02, 3.069501953125e+02, 3.070125732421875e+02, 3.070749816894531e+02, 3.071373596191406e+02, 3.071997680664062e+02, 3.072621765136719e+02, 3.073245544433594e+02, 3.07386962890625e+02, 3.074493408203125e+02, 3.075117492675781e+02, 3.075741577148438e+02, 3.076365356445312e+02, 3.076989440917969e+02, 3.077613220214844e+02, 3.0782373046875e+02, 3.078861083984375e+02, 3.079485168457031e+02, 3.080109252929688e+02, 3.080733032226562e+02, 3.081357116699219e+02, 3.081980895996094e+02, 3.08260498046875e+02, 3.083229064941406e+02, 3.083852844238281e+02, 3.084476928710938e+02, 3.085100708007812e+02, 3.085724792480469e+02] -hexWetNTU_TX.sta_b2.T=[2.731499938964844e+02, 2.732999877929688e+02, 2.734500122070312e+02, 2.736000061035156e+02, 2.7375e+02, 2.738999938964844e+02, 2.740499877929688e+02, 2.742000122070312e+02, 2.743500061035156e+02, 2.745e+02, 2.746499938964844e+02, 2.747999877929688e+02, 2.749500122070312e+02, 2.751000061035156e+02, 2.7525e+02, 2.753999938964844e+02, 2.755499877929688e+02, 2.757000122070312e+02, 2.758500061035156e+02, 2.76e+02, 2.761499938964844e+02, 2.762999877929688e+02, 2.764500122070312e+02, 2.766000061035156e+02, 2.7675e+02, 2.768999938964844e+02, 2.770499877929688e+02, 2.772000122070312e+02, 2.773500061035156e+02, 2.775e+02, 2.776499938964844e+02, 2.777999877929688e+02, 2.779500122070312e+02, 2.781000061035156e+02, 2.7825e+02, 2.783999938964844e+02, 2.785499877929688e+02, 2.787000122070312e+02, 2.788500061035156e+02, 2.79e+02, 2.791499938964844e+02, 2.792999877929688e+02, 2.794500122070312e+02, 2.796000061035156e+02, 2.7975e+02, 2.798999938964844e+02, 2.800499877929688e+02, 2.802000122070312e+02, 2.803500061035156e+02, 2.805e+02, 2.806499938964844e+02, 2.807999877929688e+02, 2.809500122070312e+02, 2.811000061035156e+02, 2.8125e+02, 2.813999938964844e+02, 2.815499877929688e+02, 2.817000122070312e+02, 2.818500061035156e+02, 2.82e+02, 2.821499938964844e+02, 2.822999877929688e+02, 2.824500122070312e+02, 2.826000061035156e+02, 2.8275e+02, 2.828999938964844e+02, 2.830499877929688e+02, 2.832000122070312e+02, 2.833500061035156e+02, 2.835e+02, 2.836499938964844e+02, 2.837999877929688e+02, 2.839500122070312e+02, 2.841000061035156e+02, 2.8425e+02, 2.843999938964844e+02, 2.845499877929688e+02, 2.847000122070312e+02, 2.848500061035156e+02, 2.85e+02, 2.851499938964844e+02, 2.852999877929688e+02, 2.854500122070312e+02, 2.856000061035156e+02, 2.8575e+02, 2.858999938964844e+02, 2.860499877929688e+02, 2.862000122070312e+02, 2.863500061035156e+02, 2.865e+02, 2.866499938964844e+02, 2.867999877929688e+02, 2.869500122070312e+02, 2.871000061035156e+02, 2.8725e+02, 2.873999938964844e+02, 2.875499877929688e+02, 2.877000122070312e+02, 2.878500061035156e+02, 2.88e+02, 2.881499938964844e+02] +hexWetNTU_TX.sta_b2.T=[3.027071533203125e+02, 3.027680358886719e+02, 3.028290100097656e+02, 3.028900451660156e+02, 3.029511108398438e+02, 3.030122680664062e+02, 3.030734558105469e+02, 3.031347045898438e+02, 3.031959533691406e+02, 3.032572631835938e+02, 3.033185729980469e+02, 3.033798828125e+02, 3.034411926269531e+02, 3.035025329589844e+02, 3.035638732910156e+02, 3.036252136230469e+02, 3.036865234375e+02, 3.037478637695312e+02, 3.038092041015625e+02, 3.038705444335938e+02, 3.03931884765625e+02, 3.039931945800781e+02, 3.040545349121094e+02, 3.041158752441406e+02, 3.041772155761719e+02, 3.042385559082031e+02, 3.042998657226562e+02, 3.043612060546875e+02, 3.044225463867188e+02, 3.0448388671875e+02, 3.045452270507812e+02, 3.046065673828125e+02, 3.046678771972656e+02, 3.047292175292969e+02, 3.047905578613281e+02, 3.048518981933594e+02, 3.049132385253906e+02, 3.049745483398438e+02, 3.05035888671875e+02, 3.050972290039062e+02, 3.051585693359375e+02, 3.052199096679688e+02, 3.052812194824219e+02, 3.053425598144531e+02, 3.054039001464844e+02, 3.054652404785156e+02, 3.055265808105469e+02, 3.05587890625e+02, 3.056492309570312e+02, 3.057105712890625e+02, 3.057719116210938e+02, 3.05833251953125e+02, 3.058945617675781e+02, 3.059559020996094e+02, 3.060172424316406e+02, 3.060785827636719e+02, 3.061399230957031e+02, 3.062012634277344e+02, 3.062625732421875e+02, 3.063239135742188e+02, 3.0638525390625e+02, 3.064465942382812e+02, 3.065079345703125e+02, 3.065692443847656e+02, 3.066305847167969e+02, 3.066919250488281e+02, 3.067532653808594e+02, 3.068146057128906e+02, 3.068759155273438e+02, 3.06937255859375e+02, 3.069985961914062e+02, 3.070599365234375e+02, 3.071212768554688e+02, 3.071825866699219e+02, 3.072439270019531e+02, 3.073052673339844e+02, 3.073666076660156e+02, 3.074279479980469e+02, 3.074892578125e+02, 3.075505981445312e+02, 3.076119384765625e+02, 3.076732788085938e+02, 3.07734619140625e+02, 3.077959289550781e+02, 3.078572692871094e+02, 3.079186096191406e+02, 3.079799499511719e+02, 3.080412902832031e+02, 3.081026306152344e+02, 3.081639404296875e+02, 3.082252807617188e+02, 3.0828662109375e+02, 3.083479614257812e+02, 3.084093017578125e+02, 3.084706115722656e+02, 3.085319519042969e+02, 3.085932922363281e+02, 3.086546325683594e+02, 3.087159729003906e+02, 3.087772827148438e+02, 3.08838623046875e+02] hexDryNTU_T.sta_b2.T=[3.026214904785156e+02, 3.026830749511719e+02, 3.027446594238281e+02, 3.028062438964844e+02, 3.028678283691406e+02, 3.029294128417969e+02, 3.029909973144531e+02, 3.030525817871094e+02, 3.031141662597656e+02, 3.031757507324219e+02, 3.032373352050781e+02, 3.032989196777344e+02, 3.033605041503906e+02, 3.034220886230469e+02, 3.034836730957031e+02, 3.035452575683594e+02, 3.036068420410156e+02, 3.036684265136719e+02, 3.037300109863281e+02, 3.037915954589844e+02, 3.038532104492188e+02, 3.03914794921875e+02, 3.039763793945312e+02, 3.040379638671875e+02, 3.040995483398438e+02, 3.041611328125e+02, 3.042227172851562e+02, 3.042843017578125e+02, 3.043458862304688e+02, 3.04407470703125e+02, 3.044690551757812e+02, 3.045306396484375e+02, 3.045922241210938e+02, 3.0465380859375e+02, 3.047153930664062e+02, 3.047769775390625e+02, 3.048385620117188e+02, 3.04900146484375e+02, 3.049617309570312e+02, 3.050233154296875e+02, 3.050848999023438e+02, 3.05146484375e+02, 3.052080688476562e+02, 3.052696533203125e+02, 3.053312377929688e+02, 3.05392822265625e+02, 3.054544067382812e+02, 3.055159912109375e+02, 3.055775756835938e+02, 3.056391906738281e+02, 3.057007751464844e+02, 3.057623596191406e+02, 3.058239440917969e+02, 3.058855285644531e+02, 3.059471130371094e+02, 3.060086975097656e+02, 3.060702819824219e+02, 3.061318664550781e+02, 3.061934509277344e+02, 3.062550354003906e+02, 3.063166198730469e+02, 3.063782043457031e+02, 3.064397888183594e+02, 3.065013732910156e+02, 3.065629577636719e+02, 3.066245422363281e+02, 3.066861267089844e+02, 3.067477111816406e+02, 3.068092956542969e+02, 3.068708801269531e+02, 3.069324645996094e+02, 3.069940490722656e+02, 3.070556335449219e+02, 3.071172180175781e+02, 3.071788024902344e+02, 3.072403869628906e+02, 3.073019714355469e+02, 3.073635864257812e+02, 3.074251708984375e+02, 3.074867553710938e+02, 3.0754833984375e+02, 3.076099243164062e+02, 3.076715087890625e+02, 3.077330932617188e+02, 3.07794677734375e+02, 3.078562622070312e+02, 3.079178466796875e+02, 3.079794311523438e+02, 3.08041015625e+02, 3.081026000976562e+02, 3.081641845703125e+02, 3.082257690429688e+02, 3.08287353515625e+02, 3.083489379882812e+02, 3.084105224609375e+02, 3.084721069335938e+02, 3.0853369140625e+02, 3.085952758789062e+02, 3.086568603515625e+02, 3.087184448242188e+02, 3.08780029296875e+02] hexDis.UA_nominal=[2.5445390625e+03, 2.5445390625e+03] hexWetNTU_TX.UA_nominal=[2.54964794921875e+03, 2.54964794921875e+03] From 359e729444d18f5fe667c54b95e8bb28a2f689bc Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Fri, 16 Apr 2021 09:20:45 -0700 Subject: [PATCH 67/69] Update parameter binding --- Buildings/Examples/Tutorial/SpaceCooling/System2.mo | 1 - Buildings/Examples/Tutorial/SpaceCooling/System3.mo | 1 - 2 files changed, 2 deletions(-) diff --git a/Buildings/Examples/Tutorial/SpaceCooling/System2.mo b/Buildings/Examples/Tutorial/SpaceCooling/System2.mo index 19d1a648076..391c7315a7b 100644 --- a/Buildings/Examples/Tutorial/SpaceCooling/System2.mo +++ b/Buildings/Examples/Tutorial/SpaceCooling/System2.mo @@ -86,7 +86,6 @@ model System2 m2_flow_nominal=mA_flow_nominal, dp1_nominal=6000, dp2_nominal=200, - use_UA_nominal=true, UA_nominal=-QCoiC_flow_nominal/ Buildings.Fluid.HeatExchangers.BaseClasses.lmtd( T_a1=THeaRecLvg, diff --git a/Buildings/Examples/Tutorial/SpaceCooling/System3.mo b/Buildings/Examples/Tutorial/SpaceCooling/System3.mo index ad03a922362..11e7c64a0fd 100644 --- a/Buildings/Examples/Tutorial/SpaceCooling/System3.mo +++ b/Buildings/Examples/Tutorial/SpaceCooling/System3.mo @@ -86,7 +86,6 @@ model System3 m2_flow_nominal=mA_flow_nominal, dp1_nominal=6000, dp2_nominal=200, - use_UA_nominal=true, UA_nominal=-QCoiC_flow_nominal/ Buildings.Fluid.HeatExchangers.BaseClasses.lmtd( T_a1=THeaRecLvg, From 15a467c9088d1878c74ccd7d9075cfedff2b5619 Mon Sep 17 00:00:00 2001 From: AntoineGautier Date: Fri, 16 Apr 2021 19:01:17 -0700 Subject: [PATCH 68/69] Update results --- ...I_ExportContainers_Validation_RoomHVAC.txt | 26 +++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_FMI_ExportContainers_Validation_RoomHVAC.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_FMI_ExportContainers_Validation_RoomHVAC.txt index 57e7fa1a313..e8954345383 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_FMI_ExportContainers_Validation_RoomHVAC.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_FMI_ExportContainers_Validation_RoomHVAC.txt @@ -1,23 +1,23 @@ -last-generated=2019-08-15 +last-generated=2021-04-16 statistics-initialization= { "linear": "0, 0", - "nonlinear": "0, 0, 1, 0, 0", + "nonlinear": "0, 1, 1, 0, 0, 0, 0, 0", "numerical Jacobians": "0" } statistics-simulation= { - "linear": "0, 0, 0, 0, 0, 0, 0, 0, 0", - "nonlinear": "0, 0, 1, 0, 0, 0, 1", - "number of continuous time states": "77", + "linear": "0, 0, 0, 0, 0, 0, 0, 0", + "nonlinear": "0, 0, 1, 0, 1, 1, 0, 0, 1", + "number of continuous time states": "65", "numerical Jacobians": "0" } -rooCon2.vol1.T=[2.931499938964844e+02, 2.941614379882812e+02, 2.946229858398438e+02, 2.947637329101562e+02, 2.947061767578125e+02, 2.945533752441406e+02, 2.94354736328125e+02, 2.941292419433594e+02, 2.93887939453125e+02, 2.936300659179688e+02, 2.932911376953125e+02, 2.928401794433594e+02, 2.923238220214844e+02, 2.918342895507812e+02, 2.914491577148438e+02, 2.911764221191406e+02, 2.909816284179688e+02, 2.908057556152344e+02, 2.905826416015625e+02, 2.90283935546875e+02, 2.899274597167969e+02, 2.89559326171875e+02, 2.892453308105469e+02, 2.890582580566406e+02, 2.890587768554688e+02, 2.892985229492188e+02, 2.898470764160156e+02, 2.907938537597656e+02, 2.920873413085938e+02, 2.935599365234375e+02, 2.950008850097656e+02, 2.963351745605469e+02, 2.975398254394531e+02, 2.970686950683594e+02, 2.967359619140625e+02, 2.964510803222656e+02, 2.973501586914062e+02, 2.962337951660156e+02, 2.969827270507812e+02, 2.96767578125e+02, 2.972510986328125e+02, 2.9680224609375e+02, 2.966003723144531e+02, 2.965549926757812e+02, 2.965749816894531e+02, 2.966329345703125e+02, 2.967414245605469e+02, 2.969012145996094e+02, 2.971078796386719e+02, 2.97353759765625e+02, 2.976327209472656e+02, 2.973072204589844e+02, 2.969391784667969e+02, 2.966236877441406e+02, 2.966581726074219e+02, 2.968983764648438e+02, 2.972385864257812e+02, 2.976152038574219e+02, 2.972875366210938e+02, 2.96901123046875e+02, 2.966054382324219e+02, 2.967227478027344e+02, 2.970361938476562e+02, 2.974270629882812e+02, 2.97626220703125e+02, 2.973722229003906e+02, 2.965950317382812e+02, 2.973240356445312e+02, 2.963128356933594e+02, 2.975716857910156e+02, 2.974058532714844e+02, 2.974440307617188e+02, 2.975234985351562e+02, 2.976116638183594e+02, 2.976541442871094e+02, 2.975975341796875e+02, 2.973223571777344e+02, 2.967292175292969e+02, 2.975648803710938e+02, 2.961282348632812e+02, 2.964501647949219e+02, 2.9644873046875e+02, 2.962528076171875e+02, 2.960047607421875e+02, 2.958076477050781e+02, 2.956900634765625e+02, 2.956312561035156e+02, 2.95602294921875e+02, 2.955708923339844e+02, 2.955234680175781e+02, 2.954657592773438e+02, 2.954020385742188e+02, 2.953349304199219e+02, 2.95265869140625e+02, 2.951956176757812e+02, 2.951246643066406e+02, 2.9505322265625e+02, 2.949814147949219e+02, 2.94909423828125e+02, 2.948373413085938e+02, 2.947651977539062e+02] -rooCon.vol.T=[2.931499938964844e+02, 2.941614379882812e+02, 2.946229858398438e+02, 2.947637329101562e+02, 2.947061767578125e+02, 2.945533752441406e+02, 2.94354736328125e+02, 2.941292419433594e+02, 2.93887939453125e+02, 2.936300659179688e+02, 2.932911376953125e+02, 2.928401794433594e+02, 2.923238220214844e+02, 2.918342895507812e+02, 2.914491577148438e+02, 2.911764221191406e+02, 2.909816284179688e+02, 2.908057556152344e+02, 2.905826416015625e+02, 2.90283935546875e+02, 2.899274597167969e+02, 2.89559326171875e+02, 2.892453308105469e+02, 2.890582580566406e+02, 2.890587768554688e+02, 2.892985229492188e+02, 2.898470764160156e+02, 2.907938537597656e+02, 2.920873413085938e+02, 2.935599365234375e+02, 2.950008850097656e+02, 2.963351745605469e+02, 2.975398254394531e+02, 2.970686950683594e+02, 2.967359619140625e+02, 2.964510803222656e+02, 2.973501586914062e+02, 2.962337951660156e+02, 2.969827270507812e+02, 2.96767578125e+02, 2.972510986328125e+02, 2.9680224609375e+02, 2.966003723144531e+02, 2.965549926757812e+02, 2.965749816894531e+02, 2.966329345703125e+02, 2.967414245605469e+02, 2.969012145996094e+02, 2.971078796386719e+02, 2.97353759765625e+02, 2.976327209472656e+02, 2.973072204589844e+02, 2.969391784667969e+02, 2.966236877441406e+02, 2.966581726074219e+02, 2.968983764648438e+02, 2.972385864257812e+02, 2.976152038574219e+02, 2.972875366210938e+02, 2.96901123046875e+02, 2.966054382324219e+02, 2.967227478027344e+02, 2.970361938476562e+02, 2.974270629882812e+02, 2.97626220703125e+02, 2.973722229003906e+02, 2.965950317382812e+02, 2.973240356445312e+02, 2.963128356933594e+02, 2.975716857910156e+02, 2.974058532714844e+02, 2.974440307617188e+02, 2.975234985351562e+02, 2.976116638183594e+02, 2.976541442871094e+02, 2.975975341796875e+02, 2.973223571777344e+02, 2.967292175292969e+02, 2.975648803710938e+02, 2.961282348632812e+02, 2.964501647949219e+02, 2.9644873046875e+02, 2.962528076171875e+02, 2.960047607421875e+02, 2.958076477050781e+02, 2.956900634765625e+02, 2.956312561035156e+02, 2.95602294921875e+02, 2.955708923339844e+02, 2.955234680175781e+02, 2.954657592773438e+02, 2.954020385742188e+02, 2.953349304199219e+02, 2.95265869140625e+02, 2.951956176757812e+02, 2.951246643066406e+02, 2.9505322265625e+02, 2.949814147949219e+02, 2.94909423828125e+02, 2.948373413085938e+02, 2.947651977539062e+02] -rooCon2.vol2.T=[2.931499938964844e+02, 2.941614379882812e+02, 2.946229858398438e+02, 2.947637329101562e+02, 2.947061767578125e+02, 2.945533752441406e+02, 2.94354736328125e+02, 2.941292419433594e+02, 2.93887939453125e+02, 2.936300659179688e+02, 2.932911376953125e+02, 2.928401794433594e+02, 2.923238220214844e+02, 2.918342895507812e+02, 2.914491577148438e+02, 2.911764221191406e+02, 2.909816284179688e+02, 2.908057556152344e+02, 2.905826416015625e+02, 2.90283935546875e+02, 2.899274597167969e+02, 2.89559326171875e+02, 2.892453308105469e+02, 2.890582580566406e+02, 2.890587768554688e+02, 2.892985229492188e+02, 2.898470764160156e+02, 2.907938537597656e+02, 2.920873413085938e+02, 2.935599365234375e+02, 2.950008850097656e+02, 2.963351745605469e+02, 2.975398254394531e+02, 2.970686950683594e+02, 2.967359619140625e+02, 2.964510803222656e+02, 2.973501586914062e+02, 2.962337951660156e+02, 2.969827270507812e+02, 2.96767578125e+02, 2.972510986328125e+02, 2.9680224609375e+02, 2.966003723144531e+02, 2.965549926757812e+02, 2.965749816894531e+02, 2.966329345703125e+02, 2.967414245605469e+02, 2.969012145996094e+02, 2.971078796386719e+02, 2.97353759765625e+02, 2.976327209472656e+02, 2.973072204589844e+02, 2.969391784667969e+02, 2.966236877441406e+02, 2.966581726074219e+02, 2.968983764648438e+02, 2.972385864257812e+02, 2.976152038574219e+02, 2.972875366210938e+02, 2.96901123046875e+02, 2.966054382324219e+02, 2.967227478027344e+02, 2.970361938476562e+02, 2.974270629882812e+02, 2.97626220703125e+02, 2.973722229003906e+02, 2.965950317382812e+02, 2.973240356445312e+02, 2.963128356933594e+02, 2.975716857910156e+02, 2.974058532714844e+02, 2.974440307617188e+02, 2.975234985351562e+02, 2.976116638183594e+02, 2.976541442871094e+02, 2.975975341796875e+02, 2.973223571777344e+02, 2.967292175292969e+02, 2.975648803710938e+02, 2.961282348632812e+02, 2.964501647949219e+02, 2.9644873046875e+02, 2.962528076171875e+02, 2.960047607421875e+02, 2.958076477050781e+02, 2.956900634765625e+02, 2.956312561035156e+02, 2.95602294921875e+02, 2.955708923339844e+02, 2.955234680175781e+02, 2.954657592773438e+02, 2.954020385742188e+02, 2.953349304199219e+02, 2.95265869140625e+02, 2.951956176757812e+02, 2.951246643066406e+02, 2.9505322265625e+02, 2.949814147949219e+02, 2.94909423828125e+02, 2.948373413085938e+02, 2.947651977539062e+02] -baseCase.vol.T=[2.931499938964844e+02, 2.942142028808594e+02, 2.946536865234375e+02, 2.947817993164062e+02, 2.947169494628906e+02, 2.945599365234375e+02, 2.943588562011719e+02, 2.941319580078125e+02, 2.938898315429688e+02, 2.936315002441406e+02, 2.932923583984375e+02, 2.928414001464844e+02, 2.923250732421875e+02, 2.918355407714844e+02, 2.914502868652344e+02, 2.911774291992188e+02, 2.909824523925781e+02, 2.908064880371094e+02, 2.905833435058594e+02, 2.902846984863281e+02, 2.899283142089844e+02, 2.895602111816406e+02, 2.892462158203125e+02, 2.890590209960938e+02, 2.890592651367188e+02, 2.892986755371094e+02, 2.898467407226562e+02, 2.907928466796875e+02, 2.92085693359375e+02, 2.935577087402344e+02, 2.949983825683594e+02, 2.963325805664062e+02, 2.975373229980469e+02, 2.970646667480469e+02, 2.967315673828125e+02, 2.964523010253906e+02, 2.973439331054688e+02, 2.962338562011719e+02, 2.969736633300781e+02, 2.968063354492188e+02, 2.972406311035156e+02, 2.967908020019531e+02, 2.965916442871094e+02, 2.965492858886719e+02, 2.965690002441406e+02, 2.966230163574219e+02, 2.96725830078125e+02, 2.968800048828125e+02, 2.970817260742188e+02, 2.973235778808594e+02, 2.975993347167969e+02, 2.973530578613281e+02, 2.969805908203125e+02, 2.966577758789062e+02, 2.966401672363281e+02, 2.96861083984375e+02, 2.971901245117188e+02, 2.975610961914062e+02, 2.973510131835938e+02, 2.969573974609375e+02, 2.966289978027344e+02, 2.966880187988281e+02, 2.969766235351562e+02, 2.973547668457031e+02, 2.975572204589844e+02, 2.973112487792969e+02, 2.965382080078125e+02, 2.972823791503906e+02, 2.963356323242188e+02, 2.9752099609375e+02, 2.973450317382812e+02, 2.973788757324219e+02, 2.974558715820312e+02, 2.975421142578125e+02, 2.975902099609375e+02, 2.975274353027344e+02, 2.97253662109375e+02, 2.966646423339844e+02, 2.975175170898438e+02, 2.9761376953125e+02, 2.97368408203125e+02, 2.969896850585938e+02, 2.965716552734375e+02, 2.961928100585938e+02, 2.959186401367188e+02, 2.95755615234375e+02, 2.956699829101562e+02, 2.956251831054688e+02, 2.955845031738281e+02, 2.955315856933594e+02, 2.954706726074219e+02, 2.954050903320312e+02, 2.953368530273438e+02, 2.952671508789062e+02, 2.951965026855469e+02, 2.951253356933594e+02, 2.950537414550781e+02, 2.949818420410156e+02, 2.949098205566406e+02, 2.948377075195312e+02, 2.947655639648438e+02] time=[1.5552e+07, 1.56384e+07] -baseCase.vol.Xi[1]=[9.999999776482582e-03, 1.042371708899736e-02, 1.028698217123747e-02, 1.007428113371134e-02, 9.89263691008091e-03, 9.790350683033466e-03, 9.710710495710373e-03, 9.632398374378681e-03, 9.553791955113411e-03, 9.458430111408234e-03, 9.25137847661972e-03, 8.967713452875614e-03, 8.698972873389721e-03, 8.530438877642155e-03, 8.476481772959232e-03, 8.485784754157066e-03, 8.506008423864841e-03, 8.485733531415462e-03, 8.419947698712349e-03, 8.337315171957016e-03, 8.249042555689812e-03, 8.16645473241806e-03, 8.123371750116348e-03, 8.167854510247707e-03, 8.32404475659132e-03, 8.615824393928051e-03, 9.127341210842133e-03, 9.960519149899483e-03, 1.100064814090729e-02, 1.203913707286119e-02, 1.286460645496845e-02, 1.354359928518534e-02, 1.407667901366949e-02, 1.417410746216774e-02, 1.387825608253479e-02, 1.315708644688129e-02, 1.312403939664364e-02, 1.229644194245338e-02, 1.222538575530052e-02, 1.176313124597073e-02, 1.117752213031054e-02, 1.031269412487745e-02, 9.589671157300472e-03, 9.085330180823803e-03, 8.660354651510715e-03, 8.329916745424271e-03, 8.139197714626789e-03, 8.132455870509148e-03, 8.270315825939178e-03, 8.448118343949318e-03, 8.550939150154591e-03, 8.4788603708148e-03, 8.257728070020676e-03, 7.996645756065845e-03, 7.818383164703846e-03, 7.838117890059948e-03, 8.053744211792946e-03, 8.371473290026188e-03, 8.687552064657211e-03, 8.893141523003578e-03, 8.895594626665115e-03, 8.774003945291042e-03, 8.667396381497383e-03, 8.761841803789139e-03, 9.503270499408245e-03, 1.045570336282253e-02, 1.105893310159445e-02, 1.12751042470336e-02, 1.128777675330639e-02, 1.122384145855904e-02, 1.106447912752628e-02, 1.097633596509695e-02, 1.105625461786985e-02, 1.116832345724106e-02, 1.126885879784822e-02, 1.132609881460667e-02, 1.13324848935008e-02, 1.129984483122826e-02, 1.121304929256439e-02, 1.107236929237843e-02, 1.090047508478165e-02, 1.062369626015425e-02, 1.028402708470821e-02, 9.953206405043602e-03, 9.65485256165266e-03, 9.18425340205431e-03, 8.603728376328945e-03, 8.120707236230373e-03, 7.945467717945576e-03, 8.048336021602154e-03, 8.272596634924412e-03, 8.507654070854187e-03, 8.650907315313816e-03, 8.676150813698769e-03, 8.653886616230011e-03, 8.650313131511211e-03, 8.728870190680027e-03, 8.894601836800575e-03, 9.086338803172112e-03, 9.28886141628027e-03, 9.495197795331478e-03] -rooCon2.vol2.Xi[1]=[9.999999776482582e-03, 1.042400579899549e-02, 1.028676796704531e-02, 1.007396262139082e-02, 9.892376139760017e-03, 9.790200740098953e-03, 9.710587561130524e-03, 9.632278233766556e-03, 9.553671814501286e-03, 9.458267129957676e-03, 9.251042269170284e-03, 8.967280387878418e-03, 8.698577992618084e-03, 8.53020790964365e-03, 8.476411923766136e-03, 8.485802449285984e-03, 8.506033569574356e-03, 8.485689759254456e-03, 8.419845253229141e-03, 8.337187580764294e-03, 8.248908445239067e-03, 8.166331797838211e-03, 8.123321458697319e-03, 8.167942054569721e-03, 8.324305526912212e-03, 8.616297505795956e-03, 9.128188714385033e-03, 9.961836971342564e-03, 1.100224535912275e-02, 1.204068399965763e-02, 1.286583486944437e-02, 1.354461442679167e-02, 1.407746132463217e-02, 1.41774071380496e-02, 1.388416439294815e-02, 1.316429488360882e-02, 1.312407851219177e-02, 1.230077259242535e-02, 1.222559995949268e-02, 1.17553249001503e-02, 1.117662992328405e-02, 1.031139679253101e-02, 9.588641114532948e-03, 9.084566496312618e-03, 8.659718558192253e-03, 8.329435251653194e-03, 8.138937875628471e-03, 8.132477290928364e-03, 8.270536549389362e-03, 8.448380045592785e-03, 8.551065810024738e-03, 8.478716015815735e-03, 8.257379755377769e-03, 7.996257394552231e-03, 7.81814381480217e-03, 7.838190533220768e-03, 8.054095320403576e-03, 8.371961303055286e-03, 8.688018657267094e-03, 8.893415331840515e-03, 8.895568549633026e-03, 8.77381581813097e-03, 8.66725854575634e-03, 8.762084878981113e-03, 9.504495188593864e-03, 1.045708637684584e-02, 1.10597675666213e-02, 1.1275390163064e-02, 1.128923613578081e-02, 1.122382376343012e-02, 1.106424350291491e-02, 1.097625121474266e-02, 1.105638034641743e-02, 1.116849202662706e-02, 1.12692192196846e-02, 1.132669486105442e-02, 1.133310236036777e-02, 1.130048558115959e-02, 1.121295336633921e-02, 1.107215601950884e-02, 1.090019289404154e-02, 1.06232576072216e-02, 1.028350833803415e-02, 9.952712804079056e-03, 9.654373861849308e-03, 9.183499962091446e-03, 8.602851070463657e-03, 8.120018988847733e-03, 7.945270277559757e-03, 8.04851483553648e-03, 8.272943086922169e-03, 8.507999591529369e-03, 8.651097305119038e-03, 8.676178753376007e-03, 8.653854019939899e-03, 8.650319650769234e-03, 8.729013614356518e-03, 8.894857950508595e-03, 9.08663310110569e-03, 9.289171546697617e-03, 9.495512582361698e-03] -rooCon.vol.Xi[1]=[9.999999776482582e-03, 1.042400579899549e-02, 1.028676796704531e-02, 1.007396262139082e-02, 9.892376139760017e-03, 9.790200740098953e-03, 9.710587561130524e-03, 9.632278233766556e-03, 9.553671814501286e-03, 9.458267129957676e-03, 9.251042269170284e-03, 8.967280387878418e-03, 8.698577992618084e-03, 8.53020790964365e-03, 8.476411923766136e-03, 8.485802449285984e-03, 8.506033569574356e-03, 8.485689759254456e-03, 8.419845253229141e-03, 8.337187580764294e-03, 8.248908445239067e-03, 8.166331797838211e-03, 8.123321458697319e-03, 8.167942054569721e-03, 8.324305526912212e-03, 8.616297505795956e-03, 9.128188714385033e-03, 9.961836971342564e-03, 1.100224535912275e-02, 1.204068399965763e-02, 1.286583486944437e-02, 1.354461442679167e-02, 1.407746132463217e-02, 1.41774071380496e-02, 1.388416439294815e-02, 1.316429488360882e-02, 1.312407851219177e-02, 1.230077259242535e-02, 1.222559995949268e-02, 1.17553249001503e-02, 1.117662992328405e-02, 1.031139679253101e-02, 9.588641114532948e-03, 9.084566496312618e-03, 8.659718558192253e-03, 8.329435251653194e-03, 8.138937875628471e-03, 8.132477290928364e-03, 8.270536549389362e-03, 8.448380045592785e-03, 8.551065810024738e-03, 8.478716015815735e-03, 8.257379755377769e-03, 7.996257394552231e-03, 7.81814381480217e-03, 7.838190533220768e-03, 8.054095320403576e-03, 8.371961303055286e-03, 8.688018657267094e-03, 8.893415331840515e-03, 8.895568549633026e-03, 8.77381581813097e-03, 8.66725854575634e-03, 8.762084878981113e-03, 9.504495188593864e-03, 1.045708637684584e-02, 1.10597675666213e-02, 1.1275390163064e-02, 1.128923613578081e-02, 1.122382376343012e-02, 1.106424350291491e-02, 1.097625121474266e-02, 1.105638034641743e-02, 1.116849202662706e-02, 1.12692192196846e-02, 1.132669486105442e-02, 1.133310236036777e-02, 1.130048558115959e-02, 1.121295336633921e-02, 1.107215601950884e-02, 1.090019289404154e-02, 1.06232576072216e-02, 1.028350833803415e-02, 9.952712804079056e-03, 9.654373861849308e-03, 9.183499962091446e-03, 8.602851070463657e-03, 8.120018988847733e-03, 7.945270277559757e-03, 8.04851483553648e-03, 8.272943086922169e-03, 8.507999591529369e-03, 8.651097305119038e-03, 8.676178753376007e-03, 8.653854019939899e-03, 8.650319650769234e-03, 8.729013614356518e-03, 8.894857950508595e-03, 9.08663310110569e-03, 9.289171546697617e-03, 9.495512582361698e-03] -rooCon2.vol1.Xi[1]=[9.999999776482582e-03, 1.042400579899549e-02, 1.028676796704531e-02, 1.007396262139082e-02, 9.892376139760017e-03, 9.790200740098953e-03, 9.710587561130524e-03, 9.632278233766556e-03, 9.553671814501286e-03, 9.458267129957676e-03, 9.251042269170284e-03, 8.967280387878418e-03, 8.698577992618084e-03, 8.53020790964365e-03, 8.476411923766136e-03, 8.485802449285984e-03, 8.506033569574356e-03, 8.485689759254456e-03, 8.419845253229141e-03, 8.337187580764294e-03, 8.248908445239067e-03, 8.166331797838211e-03, 8.123321458697319e-03, 8.167942054569721e-03, 8.324305526912212e-03, 8.616297505795956e-03, 9.128188714385033e-03, 9.961836971342564e-03, 1.100224535912275e-02, 1.204068399965763e-02, 1.286583486944437e-02, 1.354461442679167e-02, 1.407746132463217e-02, 1.41774071380496e-02, 1.388416439294815e-02, 1.316429488360882e-02, 1.312407851219177e-02, 1.230077259242535e-02, 1.222559995949268e-02, 1.17553249001503e-02, 1.117662992328405e-02, 1.031139679253101e-02, 9.588641114532948e-03, 9.084566496312618e-03, 8.659718558192253e-03, 8.329435251653194e-03, 8.138937875628471e-03, 8.132477290928364e-03, 8.270536549389362e-03, 8.448380045592785e-03, 8.551065810024738e-03, 8.478716015815735e-03, 8.257379755377769e-03, 7.996257394552231e-03, 7.81814381480217e-03, 7.838190533220768e-03, 8.054095320403576e-03, 8.371961303055286e-03, 8.688018657267094e-03, 8.893415331840515e-03, 8.895568549633026e-03, 8.77381581813097e-03, 8.66725854575634e-03, 8.762084878981113e-03, 9.504495188593864e-03, 1.045708637684584e-02, 1.10597675666213e-02, 1.1275390163064e-02, 1.128923613578081e-02, 1.122382376343012e-02, 1.106424350291491e-02, 1.097625121474266e-02, 1.105638034641743e-02, 1.116849202662706e-02, 1.12692192196846e-02, 1.132669486105442e-02, 1.133310236036777e-02, 1.130048558115959e-02, 1.121295336633921e-02, 1.107215601950884e-02, 1.090019289404154e-02, 1.06232576072216e-02, 1.028350833803415e-02, 9.952712804079056e-03, 9.654373861849308e-03, 9.183499962091446e-03, 8.602851070463657e-03, 8.120018988847733e-03, 7.945270277559757e-03, 8.04851483553648e-03, 8.272943086922169e-03, 8.507999591529369e-03, 8.651097305119038e-03, 8.676178753376007e-03, 8.653854019939899e-03, 8.650319650769234e-03, 8.729013614356518e-03, 8.894857950508595e-03, 9.08663310110569e-03, 9.289171546697617e-03, 9.495512582361698e-03] +baseCase.vol.T=[2.931499938964844e+02, 2.9425048828125e+02, 2.947109985351562e+02, 2.948216857910156e+02, 2.947297668457031e+02, 2.945500183105469e+02, 2.943324890136719e+02, 2.940941467285156e+02, 2.938443298339844e+02, 2.935798645019531e+02, 2.932278747558594e+02, 2.927585144042969e+02, 2.922265930175781e+02, 2.9173291015625e+02, 2.913568115234375e+02, 2.911001281738281e+02, 2.909212036132812e+02, 2.907548522949219e+02, 2.9053125e+02, 2.902245483398438e+02, 2.898583984375e+02, 2.894846496582031e+02, 2.891742248535156e+02, 2.890029907226562e+02, 2.890319519042969e+02, 2.893121337890625e+02, 2.899154663085938e+02, 2.909330749511719e+02, 2.922985534667969e+02, 2.938252563476562e+02, 2.952896423339844e+02, 2.966256408691406e+02, 2.97083251953125e+02, 2.968477478027344e+02, 2.966668395996094e+02, 2.968707580566406e+02, 2.966915893554688e+02, 2.974781799316406e+02, 2.968406677246094e+02, 2.9699560546875e+02, 2.971546630859375e+02, 2.966342468261719e+02, 2.969553833007812e+02, 2.975954895019531e+02, 2.968025207519531e+02, 2.972565612792969e+02, 2.971547546386719e+02, 2.970012512207031e+02, 2.974020385742188e+02, 2.967763671875e+02, 2.975953979492188e+02, 2.966305847167969e+02, 2.976841125488281e+02, 2.96753173828125e+02, 2.975359497070312e+02, 2.969306030273438e+02, 2.972986755371094e+02, 2.971161193847656e+02, 2.9705615234375e+02, 2.973097534179688e+02, 2.968118286132812e+02, 2.975184936523438e+02, 2.966413879394531e+02, 2.976917114257812e+02, 2.967234802246094e+02, 2.971243591308594e+02, 2.9705029296875e+02, 2.975801696777344e+02, 2.9735693359375e+02, 2.973885803222656e+02, 2.973710327148438e+02, 2.96744384765625e+02, 2.976260375976562e+02, 2.96739501953125e+02, 2.972796936035156e+02, 2.972763977050781e+02, 2.966588439941406e+02, 2.968338928222656e+02, 2.9687060546875e+02, 2.969947204589844e+02, 2.96998291015625e+02, 2.967456970214844e+02, 2.963947448730469e+02, 2.960581359863281e+02, 2.958187561035156e+02, 2.95685791015625e+02, 2.956239318847656e+02, 2.955957336425781e+02, 2.955640258789062e+02, 2.955147705078125e+02, 2.954551086425781e+02, 2.953898315429688e+02, 2.95321533203125e+02, 2.952516479492188e+02, 2.951808166503906e+02, 2.951094970703125e+02, 2.950377502441406e+02, 2.949657897949219e+02, 2.948936767578125e+02, 2.94821533203125e+02, 2.947493591308594e+02] +rooCon.vol.T=[2.931499938964844e+02, 2.941614379882812e+02, 2.946229858398438e+02, 2.947637329101562e+02, 2.947061767578125e+02, 2.945533752441406e+02, 2.94354736328125e+02, 2.941292419433594e+02, 2.93887939453125e+02, 2.936300659179688e+02, 2.932911376953125e+02, 2.928401794433594e+02, 2.923238220214844e+02, 2.918342895507812e+02, 2.914491577148438e+02, 2.911764221191406e+02, 2.909816284179688e+02, 2.908057556152344e+02, 2.905826416015625e+02, 2.90283935546875e+02, 2.899274597167969e+02, 2.89559326171875e+02, 2.892453308105469e+02, 2.890582580566406e+02, 2.890587768554688e+02, 2.892985229492188e+02, 2.898470764160156e+02, 2.907938537597656e+02, 2.920873413085938e+02, 2.935599365234375e+02, 2.950008850097656e+02, 2.963351745605469e+02, 2.975398254394531e+02, 2.970686950683594e+02, 2.967359619140625e+02, 2.964510803222656e+02, 2.973501586914062e+02, 2.962337951660156e+02, 2.969827270507812e+02, 2.96767578125e+02, 2.972510986328125e+02, 2.9680224609375e+02, 2.966003723144531e+02, 2.965549926757812e+02, 2.965749816894531e+02, 2.966329345703125e+02, 2.967414245605469e+02, 2.969012145996094e+02, 2.971078796386719e+02, 2.97353759765625e+02, 2.976327209472656e+02, 2.973072204589844e+02, 2.969391784667969e+02, 2.966236877441406e+02, 2.966581726074219e+02, 2.968983764648438e+02, 2.972385864257812e+02, 2.976152038574219e+02, 2.972875671386719e+02, 2.96901123046875e+02, 2.966054382324219e+02, 2.967227478027344e+02, 2.970361633300781e+02, 2.974270324707031e+02, 2.97626220703125e+02, 2.973722229003906e+02, 2.965950317382812e+02, 2.973240356445312e+02, 2.963128356933594e+02, 2.975716552734375e+02, 2.974058532714844e+02, 2.974440307617188e+02, 2.975234680175781e+02, 2.976116638183594e+02, 2.976541442871094e+02, 2.975975341796875e+02, 2.973223571777344e+02, 2.967292175292969e+02, 2.975648498535156e+02, 2.961282348632812e+02, 2.964501342773438e+02, 2.964486999511719e+02, 2.962528076171875e+02, 2.960047302246094e+02, 2.958076477050781e+02, 2.956900634765625e+02, 2.956312561035156e+02, 2.95602294921875e+02, 2.955708923339844e+02, 2.955234680175781e+02, 2.954657592773438e+02, 2.954020385742188e+02, 2.953349304199219e+02, 2.95265869140625e+02, 2.951956176757812e+02, 2.951246643066406e+02, 2.9505322265625e+02, 2.949814147949219e+02, 2.94909423828125e+02, 2.948373413085938e+02, 2.947651977539062e+02] +rooCon2.vol1.T=[2.931499938964844e+02, 2.941614379882812e+02, 2.946229858398438e+02, 2.947637329101562e+02, 2.947061767578125e+02, 2.945533752441406e+02, 2.94354736328125e+02, 2.941292419433594e+02, 2.93887939453125e+02, 2.936300659179688e+02, 2.932911376953125e+02, 2.928401794433594e+02, 2.923238220214844e+02, 2.918342895507812e+02, 2.914491577148438e+02, 2.911764221191406e+02, 2.909816284179688e+02, 2.908057556152344e+02, 2.905826416015625e+02, 2.90283935546875e+02, 2.899274597167969e+02, 2.89559326171875e+02, 2.892453308105469e+02, 2.890582580566406e+02, 2.890587768554688e+02, 2.892985229492188e+02, 2.898470764160156e+02, 2.907938537597656e+02, 2.920873413085938e+02, 2.935599365234375e+02, 2.950008850097656e+02, 2.963351745605469e+02, 2.975398254394531e+02, 2.970686950683594e+02, 2.967359619140625e+02, 2.964510803222656e+02, 2.973501586914062e+02, 2.962337951660156e+02, 2.969827270507812e+02, 2.96767578125e+02, 2.972510986328125e+02, 2.9680224609375e+02, 2.966003723144531e+02, 2.965549926757812e+02, 2.965749816894531e+02, 2.966329345703125e+02, 2.967414245605469e+02, 2.969012145996094e+02, 2.971078796386719e+02, 2.97353759765625e+02, 2.976327209472656e+02, 2.973072204589844e+02, 2.969391784667969e+02, 2.966236877441406e+02, 2.966581726074219e+02, 2.968983764648438e+02, 2.972385864257812e+02, 2.976152038574219e+02, 2.972875671386719e+02, 2.96901123046875e+02, 2.966054382324219e+02, 2.967227478027344e+02, 2.970361633300781e+02, 2.974270324707031e+02, 2.97626220703125e+02, 2.973722229003906e+02, 2.965950317382812e+02, 2.973240356445312e+02, 2.963128356933594e+02, 2.975716552734375e+02, 2.974058532714844e+02, 2.974440307617188e+02, 2.975234680175781e+02, 2.976116638183594e+02, 2.976541442871094e+02, 2.975975341796875e+02, 2.973223571777344e+02, 2.967292175292969e+02, 2.975648498535156e+02, 2.961282348632812e+02, 2.964501342773438e+02, 2.964486999511719e+02, 2.962528076171875e+02, 2.960047302246094e+02, 2.958076477050781e+02, 2.956900634765625e+02, 2.956312561035156e+02, 2.95602294921875e+02, 2.955708923339844e+02, 2.955234680175781e+02, 2.954657592773438e+02, 2.954020385742188e+02, 2.953349304199219e+02, 2.95265869140625e+02, 2.951956176757812e+02, 2.951246643066406e+02, 2.9505322265625e+02, 2.949814147949219e+02, 2.94909423828125e+02, 2.948373413085938e+02, 2.947651977539062e+02] +rooCon2.vol2.T=[2.931499938964844e+02, 2.941614379882812e+02, 2.946229858398438e+02, 2.947637329101562e+02, 2.947061767578125e+02, 2.945533752441406e+02, 2.94354736328125e+02, 2.941292419433594e+02, 2.93887939453125e+02, 2.936300659179688e+02, 2.932911376953125e+02, 2.928401794433594e+02, 2.923238220214844e+02, 2.918342895507812e+02, 2.914491577148438e+02, 2.911764221191406e+02, 2.909816284179688e+02, 2.908057556152344e+02, 2.905826416015625e+02, 2.90283935546875e+02, 2.899274597167969e+02, 2.89559326171875e+02, 2.892453308105469e+02, 2.890582580566406e+02, 2.890587768554688e+02, 2.892985229492188e+02, 2.898470764160156e+02, 2.907938537597656e+02, 2.920873413085938e+02, 2.935599365234375e+02, 2.950008850097656e+02, 2.963351745605469e+02, 2.975398254394531e+02, 2.970686950683594e+02, 2.967359619140625e+02, 2.964510803222656e+02, 2.973501586914062e+02, 2.962337951660156e+02, 2.969827270507812e+02, 2.96767578125e+02, 2.972510986328125e+02, 2.9680224609375e+02, 2.966003723144531e+02, 2.965549926757812e+02, 2.965749816894531e+02, 2.966329345703125e+02, 2.967414245605469e+02, 2.969012145996094e+02, 2.971078796386719e+02, 2.97353759765625e+02, 2.976327209472656e+02, 2.973072204589844e+02, 2.969391784667969e+02, 2.966236877441406e+02, 2.966581726074219e+02, 2.968983764648438e+02, 2.972385864257812e+02, 2.976152038574219e+02, 2.972875671386719e+02, 2.96901123046875e+02, 2.966054382324219e+02, 2.967227478027344e+02, 2.970361633300781e+02, 2.974270324707031e+02, 2.97626220703125e+02, 2.973722229003906e+02, 2.965950317382812e+02, 2.973240356445312e+02, 2.963128356933594e+02, 2.975716552734375e+02, 2.974058532714844e+02, 2.974440307617188e+02, 2.975234680175781e+02, 2.976116638183594e+02, 2.976541442871094e+02, 2.975975341796875e+02, 2.973223571777344e+02, 2.967292175292969e+02, 2.975648498535156e+02, 2.961282348632812e+02, 2.964501342773438e+02, 2.964486999511719e+02, 2.962528076171875e+02, 2.960047302246094e+02, 2.958076477050781e+02, 2.956900634765625e+02, 2.956312561035156e+02, 2.95602294921875e+02, 2.955708923339844e+02, 2.955234680175781e+02, 2.954657592773438e+02, 2.954020385742188e+02, 2.953349304199219e+02, 2.95265869140625e+02, 2.951956176757812e+02, 2.951246643066406e+02, 2.9505322265625e+02, 2.949814147949219e+02, 2.94909423828125e+02, 2.948373413085938e+02, 2.947651977539062e+02] +baseCase.vol.Xi[1]=[9.999999776482582e-03, 1.042388938367367e-02, 1.02919926866889e-02, 1.007963623851538e-02, 9.896314702928066e-03, 9.792465716600418e-03, 9.712697938084602e-03, 9.634385816752911e-03, 9.555789642035961e-03, 9.461935609579086e-03, 9.257901459932327e-03, 8.975116536021233e-03, 8.704931475222111e-03, 8.533168584108353e-03, 8.476885035634041e-03, 8.485200814902782e-03, 8.505763486027718e-03, 8.486976847052574e-03, 8.421872742474079e-03, 8.339518681168556e-03, 8.251267485320568e-03, 8.168359287083149e-03, 8.123554289340973e-03, 8.165503852069378e-03, 8.318596519529819e-03, 8.606620132923126e-03, 9.110415354371071e-03, 9.936245158314705e-03, 1.097325887531042e-02, 1.201482396572828e-02, 1.284570619463921e-02, 1.352791860699654e-02, 1.332569029182196e-02, 1.31045188754797e-02, 1.297991536557674e-02, 1.309289410710335e-02, 1.264835149049759e-02, 1.247511710971594e-02, 1.220777072012424e-02, 1.190971303731203e-02, 1.121189165860415e-02, 1.03356447070837e-02, 9.604348801076412e-03, 9.097104892134666e-03, 8.670181035995483e-03, 8.336860686540604e-03, 8.142000995576382e-03, 8.130538277328014e-03, 8.265877142548561e-03, 8.444000966846943e-03, 8.55010561645031e-03, 8.482834324240685e-03, 8.264306932687759e-03, 8.002819493412971e-03, 7.820967584848404e-03, 7.834989577531815e-03, 8.046639151871204e-03, 8.36300291121006e-03, 8.680328726768494e-03, 8.890305645763874e-03, 8.897533640265465e-03, 8.777525275945663e-03, 8.668797090649605e-03, 8.752959780395031e-03, 9.478578343987465e-03, 1.043447572737932e-02, 1.104878541082144e-02, 1.127281412482262e-02, 1.130167581140995e-02, 1.122806128114462e-02, 1.106876693665981e-02, 1.09759159386158e-02, 1.105355657637119e-02, 1.11654894426465e-02, 1.126761082559824e-02, 1.133021339774132e-02, 1.133946608752012e-02, 1.130931917577982e-02, 1.121675875037909e-02, 1.107620447874069e-02, 1.090601086616516e-02, 1.063176337629557e-02, 1.029282622039318e-02, 9.960988536477089e-03, 9.663850069046021e-03, 9.198266081511974e-03, 8.618227206170559e-03, 8.130124770104885e-03, 7.94575922191143e-03, 8.043798618018627e-03, 8.266340009868145e-03, 8.502357639372349e-03, 8.648935705423355e-03, 8.676358498632908e-03, 8.654501289129257e-03, 8.649698458611965e-03, 8.725493215024471e-03, 8.889976888895035e-03, 9.08131618052721e-03, 9.28365346044302e-03, 9.489967487752438e-03] +rooCon.vol.Xi[1]=[9.999999776482582e-03, 1.042400579899549e-02, 1.028676796704531e-02, 1.007396262139082e-02, 9.892376139760017e-03, 9.790201671421528e-03, 9.710587561130524e-03, 9.632278233766556e-03, 9.553671814501286e-03, 9.458267129957676e-03, 9.251042269170284e-03, 8.967280387878418e-03, 8.698577992618084e-03, 8.530208840966225e-03, 8.476411923766136e-03, 8.485802449285984e-03, 8.506033569574356e-03, 8.485688827931881e-03, 8.419845253229141e-03, 8.337187580764294e-03, 8.248908445239067e-03, 8.166328072547913e-03, 8.123321458697319e-03, 8.167942054569721e-03, 8.324305526912212e-03, 8.616296574473381e-03, 9.128189645707607e-03, 9.961836971342564e-03, 1.100224535912275e-02, 1.204068493098021e-02, 1.286583486944437e-02, 1.354461535811424e-02, 1.407746132463217e-02, 1.41774071380496e-02, 1.388416346162558e-02, 1.316429395228624e-02, 1.312407851219177e-02, 1.230077166110277e-02, 1.222559995949268e-02, 1.17553249001503e-02, 1.117662992328405e-02, 1.031139679253101e-02, 9.588641114532948e-03, 9.084566496312618e-03, 8.659718558192253e-03, 8.329435251653194e-03, 8.138937875628471e-03, 8.132477290928364e-03, 8.270536549389362e-03, 8.448380045592785e-03, 8.551065810024738e-03, 8.478716015815735e-03, 8.257379755377769e-03, 7.996257394552231e-03, 7.81814381480217e-03, 7.838190533220768e-03, 8.054095320403576e-03, 8.371961303055286e-03, 8.688018657267094e-03, 8.893415331840515e-03, 8.895568549633026e-03, 8.77381581813097e-03, 8.66725854575634e-03, 8.762084878981113e-03, 9.504495188593864e-03, 1.045708637684584e-02, 1.10597675666213e-02, 1.127539109438658e-02, 1.128923613578081e-02, 1.122382376343012e-02, 1.106424350291491e-02, 1.097625121474266e-02, 1.105638034641743e-02, 1.116849202662706e-02, 1.12692192196846e-02, 1.132669486105442e-02, 1.133310236036777e-02, 1.130048558115959e-02, 1.121295336633921e-02, 1.107215601950884e-02, 1.090019289404154e-02, 1.06232576072216e-02, 1.028350833803415e-02, 9.952712804079056e-03, 9.654374793171883e-03, 9.183499962091446e-03, 8.602851070463657e-03, 8.120018988847733e-03, 7.945270277559757e-03, 8.04851483553648e-03, 8.272943086922169e-03, 8.507999591529369e-03, 8.651097305119038e-03, 8.676178753376007e-03, 8.653854019939899e-03, 8.650319650769234e-03, 8.729012683033943e-03, 8.894857950508595e-03, 9.08663310110569e-03, 9.289171546697617e-03, 9.495512582361698e-03] +rooCon2.vol1.Xi[1]=[9.999999776482582e-03, 1.042400579899549e-02, 1.028676796704531e-02, 1.007396262139082e-02, 9.892376139760017e-03, 9.790201671421528e-03, 9.710587561130524e-03, 9.632278233766556e-03, 9.553671814501286e-03, 9.458267129957676e-03, 9.251042269170284e-03, 8.967280387878418e-03, 8.698577992618084e-03, 8.530208840966225e-03, 8.476411923766136e-03, 8.485802449285984e-03, 8.506033569574356e-03, 8.485688827931881e-03, 8.419845253229141e-03, 8.337187580764294e-03, 8.248908445239067e-03, 8.166328072547913e-03, 8.123321458697319e-03, 8.167942054569721e-03, 8.324305526912212e-03, 8.616296574473381e-03, 9.128189645707607e-03, 9.961836971342564e-03, 1.100224535912275e-02, 1.204068493098021e-02, 1.286583486944437e-02, 1.354461535811424e-02, 1.407746132463217e-02, 1.41774071380496e-02, 1.388416346162558e-02, 1.316429395228624e-02, 1.312407851219177e-02, 1.230077166110277e-02, 1.222559995949268e-02, 1.17553249001503e-02, 1.117662992328405e-02, 1.031139679253101e-02, 9.588641114532948e-03, 9.084566496312618e-03, 8.659718558192253e-03, 8.329435251653194e-03, 8.138937875628471e-03, 8.132477290928364e-03, 8.270536549389362e-03, 8.448380045592785e-03, 8.551065810024738e-03, 8.478716015815735e-03, 8.257379755377769e-03, 7.996257394552231e-03, 7.81814381480217e-03, 7.838190533220768e-03, 8.054095320403576e-03, 8.371961303055286e-03, 8.688018657267094e-03, 8.893415331840515e-03, 8.895568549633026e-03, 8.77381581813097e-03, 8.66725854575634e-03, 8.762084878981113e-03, 9.504495188593864e-03, 1.045708637684584e-02, 1.10597675666213e-02, 1.127539109438658e-02, 1.128923613578081e-02, 1.122382376343012e-02, 1.106424350291491e-02, 1.097625121474266e-02, 1.105638034641743e-02, 1.116849202662706e-02, 1.12692192196846e-02, 1.132669486105442e-02, 1.133310236036777e-02, 1.130048558115959e-02, 1.121295336633921e-02, 1.107215601950884e-02, 1.090019289404154e-02, 1.06232576072216e-02, 1.028350833803415e-02, 9.952712804079056e-03, 9.654374793171883e-03, 9.183499962091446e-03, 8.602851070463657e-03, 8.120018988847733e-03, 7.945270277559757e-03, 8.04851483553648e-03, 8.272943086922169e-03, 8.507999591529369e-03, 8.651097305119038e-03, 8.676178753376007e-03, 8.653854019939899e-03, 8.650319650769234e-03, 8.729012683033943e-03, 8.894857950508595e-03, 9.08663310110569e-03, 9.289171546697617e-03, 9.495512582361698e-03] +rooCon2.vol2.Xi[1]=[9.999999776482582e-03, 1.042400579899549e-02, 1.028676796704531e-02, 1.007396262139082e-02, 9.892376139760017e-03, 9.790201671421528e-03, 9.710587561130524e-03, 9.632278233766556e-03, 9.553671814501286e-03, 9.458267129957676e-03, 9.251042269170284e-03, 8.967280387878418e-03, 8.698577992618084e-03, 8.530208840966225e-03, 8.476411923766136e-03, 8.485802449285984e-03, 8.506033569574356e-03, 8.485688827931881e-03, 8.419845253229141e-03, 8.337187580764294e-03, 8.248908445239067e-03, 8.166328072547913e-03, 8.123321458697319e-03, 8.167942054569721e-03, 8.324305526912212e-03, 8.616296574473381e-03, 9.128189645707607e-03, 9.961836971342564e-03, 1.100224535912275e-02, 1.204068493098021e-02, 1.286583486944437e-02, 1.354461535811424e-02, 1.407746132463217e-02, 1.41774071380496e-02, 1.388416346162558e-02, 1.316429395228624e-02, 1.312407851219177e-02, 1.230077166110277e-02, 1.222559995949268e-02, 1.17553249001503e-02, 1.117662992328405e-02, 1.031139679253101e-02, 9.588641114532948e-03, 9.084566496312618e-03, 8.659718558192253e-03, 8.329435251653194e-03, 8.138937875628471e-03, 8.132477290928364e-03, 8.270536549389362e-03, 8.448380045592785e-03, 8.551065810024738e-03, 8.478716015815735e-03, 8.257379755377769e-03, 7.996257394552231e-03, 7.81814381480217e-03, 7.838190533220768e-03, 8.054095320403576e-03, 8.371961303055286e-03, 8.688018657267094e-03, 8.893415331840515e-03, 8.895568549633026e-03, 8.77381581813097e-03, 8.66725854575634e-03, 8.762084878981113e-03, 9.504495188593864e-03, 1.045708637684584e-02, 1.10597675666213e-02, 1.127539109438658e-02, 1.128923613578081e-02, 1.122382376343012e-02, 1.106424350291491e-02, 1.097625121474266e-02, 1.105638034641743e-02, 1.116849202662706e-02, 1.12692192196846e-02, 1.132669486105442e-02, 1.133310236036777e-02, 1.130048558115959e-02, 1.121295336633921e-02, 1.107215601950884e-02, 1.090019289404154e-02, 1.06232576072216e-02, 1.028350833803415e-02, 9.952712804079056e-03, 9.654374793171883e-03, 9.183499962091446e-03, 8.602851070463657e-03, 8.120018988847733e-03, 7.945270277559757e-03, 8.04851483553648e-03, 8.272943086922169e-03, 8.507999591529369e-03, 8.651097305119038e-03, 8.676178753376007e-03, 8.653854019939899e-03, 8.650319650769234e-03, 8.729012683033943e-03, 8.894857950508595e-03, 9.08663310110569e-03, 9.289171546697617e-03, 9.495512582361698e-03] From 9dc4cc12b9535b8c582bc1d041d2d0512aebaa3b Mon Sep 17 00:00:00 2001 From: Michael Wetter Date: Mon, 19 Apr 2021 13:58:54 -0700 Subject: [PATCH 69/69] Updated release notes for new cooling coil model --- Buildings/package.mo | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/Buildings/package.mo b/Buildings/package.mo index ddf85960cbc..89d2c803a0c 100644 --- a/Buildings/package.mo +++ b/Buildings/package.mo @@ -237,6 +237,14 @@ The new media Buildings.Media.Antifreeze.PropyleneGlycolWater allow of propylene-glycol water mixtures.
  • +A new cooling coil model Buildings.Fluid.HeatExchangers.WetCoilEffectivenessNTU +has been added. This model is applicable for fully-dry, partially-wet, and fully-wet regimes. +In contrast to Buildings.Fluid.HeatExchangers.WetCoilCounterFlow and +to Buildings.Fluid.HeatExchangers.WetCoilDiscretized, +this model uses the epsilon-NTU relationship rather than a spatial discretization of the coil. +This leads to fewer state variables and generally to a faster simulation. +
  • +
  • New simplified door models for bi-directional air exchange between thermal zones are implemented in Buildings.Airflow.Multizone.
  • @@ -392,6 +400,15 @@ to existing libraries: Two way valve with the flow characteristic of a butterfly valve.
    This is for IBPSA, issue 975. +Buildings.Fluid.HeatExchangers.WetCoilEffectivenessNTU + + Cooling coil model applicable for fully-dry, partially-wet, and fully-wet regimes. + In contrast to Buildings.Fluid.HeatExchangers.WetCoilCounterFlow and + to Buildings.Fluid.HeatExchangers.WetCoilDiscretized, + this model uses the epsilon-NTU relationship rather than a spatial discretization of the coil. + This leads to fewer state variables and generally to a faster simulation.
    + This is for issue 622. +

    @@ -757,8 +774,7 @@ have been improved in a Buildings.Controls.OBC.CDL.Logical.Sources.SampleTrigger
    Buildings.Controls.OBC.CDL.Logical.Sources.Pulse - Removed startTime parameter. Introduced shif" - + "t parameter.
    + Removed startTime parameter. Introduced shift parameter.
    This is for issue 2170 and issue 2282.