diff --git a/Buildings/Fluid/Humidifiers/BaseClasses/PerformanceCurveModifier.mo b/Buildings/Fluid/Humidifiers/BaseClasses/PerformanceCurveModifier.mo new file mode 100644 index 00000000000..f3d6052eac5 --- /dev/null +++ b/Buildings/Fluid/Humidifiers/BaseClasses/PerformanceCurveModifier.mo @@ -0,0 +1,95 @@ +within Buildings.Fluid.Humidifiers.BaseClasses; +block PerformanceCurveModifier + "Block for calculating modifier curves" + + parameter Buildings.Fluid.Humidifiers.Data.DXDehumidifier.Generic per + "Data record" + annotation (Placement(transformation(extent={{20,60},{40,80}}))); + + Modelica.Blocks.Interfaces.RealInput T + "Temperature" + annotation (Placement(transformation(extent={{-140,20},{-100,60}}), + iconTransformation(extent={{-140,20},{-100,60}}))); + + Modelica.Blocks.Interfaces.RealInput phi + "Relative Humidity" + annotation (Placement(transformation(extent={{-140,-60},{-100,-20}}))); + + Modelica.Blocks.Interfaces.RealOutput watRemMod + "Water removal modifier value" + annotation (Placement(transformation(extent={{100,30},{120,50}}), + iconTransformation(extent={{100,30},{120,50}}))); + + Modelica.Blocks.Interfaces.RealOutput eneFacMod + "Energy factor modifier value" + annotation (Placement(transformation(extent={{100,-50},{120,-30}}), + iconTransformation(extent={{100,-50},{120,-30}}))); + +equation + //-------------------------Part-load performance modifiers----------------------------// + // Compute the water removal and energy factor modifier fractions, using a biquadratic curve. + // Since the regression for capacity can have negative values + // (for unreasonable inputs), we constrain its return value to be + // non-negative. + watRemMod =Buildings.Utilities.Math.Functions.smoothMax( + x1=Buildings.Utilities.Math.Functions.biquadratic( + a=per.watRem, + x1=Modelica.Units.Conversions.to_degC(T), + x2=phi*100), + x2=0.001, + deltaX=0.0001); + + eneFacMod =Buildings.Utilities.Math.Functions.smoothMax( + x1=Buildings.Utilities.Math.Functions.biquadratic( + a=per.eneFac, + x1=Modelica.Units.Conversions.to_degC(T), + x2=phi*100), + x2=0.001, + deltaX=0.0001); + +annotation (Icon(coordinateSystem(preserveAspectRatio=false), graphics={ + Text( + extent={{-100,140},{100,100}}, + textColor={0,0,255}, + textString="%name"), Rectangle(extent={{-100,100},{100,-100}}, + lineColor={0,0,127}), + Rectangle( + extent={{-100,100},{100,-100}}, + lineColor={0,0,0}, + fillColor={255,255,255}, + fillPattern=FillPattern.Solid)}), Diagram( + coordinateSystem(preserveAspectRatio=false)), +Documentation(info=" +

Performance Curve Modifiers

+

+This block includes the following performance curve modifiers +

+

+The water removal modifier curve watRemMod is a biquadratic curve +with two independent variables: dry-bulb temperature and relative humidity of the +air entering the dehumidifier. +

+

watRemMod(Tin, phiin) = a1 ++ a2 Tin + a3 Tin2 ++ a4 phiin + a5 phiin2 ++ a6 Tin phiin +

+

+The energy factor modifier curve eneFacMod is a biquadratic curve +with two independent variables: dry-bulb temperature and relative humidity of the +air entering the dehumidifier. +

+

eneFacMod(Tin, phiin) = b1 ++ b2 Tin + b3 Tin2 ++ b4 phiin + b5 phiin2 ++ b6 Tin phiin +

+", revisions=" + +")); +end PerformanceCurveModifier; diff --git a/Buildings/Fluid/Humidifiers/BaseClasses/package.mo b/Buildings/Fluid/Humidifiers/BaseClasses/package.mo new file mode 100644 index 00000000000..7d988446b3f --- /dev/null +++ b/Buildings/Fluid/Humidifiers/BaseClasses/package.mo @@ -0,0 +1,13 @@ +within Buildings.Fluid.Humidifiers; +package BaseClasses "Package with base classes for Buildings.Fluid.Humidifiers" + extends Modelica.Icons.BasesPackage; + +annotation ( + Documentation(info=" +

+This package contains base classes that are used to construct the models in + +Buildings.Fluid.Humidifiers. +

+")); +end BaseClasses; diff --git a/Buildings/Fluid/Humidifiers/BaseClasses/package.order b/Buildings/Fluid/Humidifiers/BaseClasses/package.order new file mode 100644 index 00000000000..446742d0717 --- /dev/null +++ b/Buildings/Fluid/Humidifiers/BaseClasses/package.order @@ -0,0 +1 @@ +PerformanceCurveModifier diff --git a/Buildings/Fluid/Humidifiers/DXDehumidifier.mo b/Buildings/Fluid/Humidifiers/DXDehumidifier.mo new file mode 100644 index 00000000000..b26b5f57da2 --- /dev/null +++ b/Buildings/Fluid/Humidifiers/DXDehumidifier.mo @@ -0,0 +1,300 @@ +within Buildings.Fluid.Humidifiers; +model DXDehumidifier "DX dehumidifier" + extends Buildings.Fluid.Interfaces.PartialTwoPort; + + parameter Boolean addPowerToMedium = true + "Transfer power and heat to the fluid medium"; + + parameter Buildings.Fluid.Humidifiers.Data.DXDehumidifier.Generic per + "Performance data" + annotation (choicesAllMatching=true, + Placement(transformation(extent={{60,80},{80,100}}))); + + parameter Modelica.Units.SI.MassFlowRate mWat_flow_nominal( + final min=0) + "Rated water removal mass flow rate" + annotation (Dialog(group="Nominal condition")); + + parameter Modelica.Units.SI.MassFlowRate mAir_flow_nominal + "Nominal mass flow rate of air in the air stream" + annotation (Dialog(group="Nominal condition")); + + parameter Modelica.Units.SI.PressureDifference dp_nominal( + displayUnit="Pa") + "Pressure difference" + annotation (Dialog(group="Nominal condition")); + + parameter Real eneFac_nominal( + final min=0) + "Rated energy factor, in liter/kWh" + annotation (Dialog(group="Nominal condition")); + + Modelica.Blocks.Interfaces.BooleanInput uEna + "Enable signal" + annotation (Placement(transformation(extent={{-140,-66},{-100,-26}}), + iconTransformation(extent={{-120,30},{-100,50}}))); + + Modelica.Blocks.Interfaces.RealOutput T( + final unit="K", + displayUnit="degC", + final quantity="ThermodynamicTemperature") + "Outlet air medium temperature" + annotation (Placement(transformation(extent={{100,40},{140,80}}), + iconTransformation(extent={{100,30},{120,50}}))); + + Modelica.Blocks.Interfaces.RealOutput P( + final unit="W", + final quantity="Power") + "Power consumption rate" + annotation (Placement(transformation(extent={{100,-60},{140,-20}}), + iconTransformation(extent={{100,-50},{120,-30}}))); + + Modelica.Thermal.HeatTransfer.Sources.PrescribedHeatFlow preHeaFlo + "Heat transfer into medium from dehumidifying action" + annotation (Placement(transformation(extent={{-10,50},{10,70}}))); + + Modelica.Thermal.HeatTransfer.Sensors.HeatFlowSensor heaFloSen + "Sensor for measuring heat flow rate into medium during dehumidification" + annotation (Placement(transformation(extent={{20,70},{40,50}}))); + + Modelica.Thermal.HeatTransfer.Sensors.TemperatureSensor senTem + "Temperature sensor" + annotation (Placement(transformation(extent={{60,50},{80,70}}))); + + Buildings.Fluid.Sensors.TemperatureTwoPort senTIn( + redeclare package Medium = Medium, + final m_flow_nominal=mAir_flow_nominal) + "Inlet air temperature sensor" + annotation (Placement(transformation(extent={{-90,-10},{-70,10}}))); + + Buildings.Fluid.Humidifiers.Humidifier_u deHum( + redeclare package Medium = Medium, + final m_flow_nominal=mAir_flow_nominal, + final dp_nominal=dp_nominal, + final energyDynamics=Modelica.Fluid.Types.Dynamics.FixedInitial, + final mWat_flow_nominal=-mWat_flow_nominal) + "Baseclass for conditioning fluid medium" + annotation (Placement(transformation(extent={{60,-10},{80,10}}))); + + Buildings.Controls.OBC.CDL.Reals.Sources.Constant con( + final k=0) if not addPowerToMedium + "Zero source for heat flow rate if power is not added to fluid medium" + annotation (Placement(transformation(extent={{-50,80},{-30,100}}))); + + Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToRea + "Convert enable signal from Boolean to Real" + annotation (Placement(transformation(extent={{-90,-56},{-70,-36}}))); + + Modelica.Blocks.Routing.RealPassThrough QHea if addPowerToMedium + "Heat transfer into medium only if required" + annotation (Placement(transformation(extent={{-50,30},{-30,50}}))); + + Buildings.Controls.OBC.CDL.Reals.Multiply u + "Calculate non-zero humidity removal from inlet air only when component is enabled" + annotation (Placement(transformation(extent={{-40,-50},{-20,-30}}))); + + Buildings.Fluid.Sensors.RelativeHumidityTwoPort senRelHum( + redeclare package Medium = Medium, + final m_flow_nominal=mAir_flow_nominal) + "Inlet air relative humidity" + annotation (Placement(transformation(extent={{0,-10},{20,10}}))); + + Buildings.Controls.OBC.CDL.Reals.MultiplyByParameter eneFac(final k= + eneFac_nominal/(1000*3600)) + "Multiply energy factor modifier by nominal energy factor" + annotation (Placement(transformation(extent={{0,-110},{20,-90}}))); + + Buildings.Controls.OBC.CDL.Reals.MultiplyByParameter watRemRat(final k= + mWat_flow_nominal) + "Calculate water removal rate by multiplying water removal modifier by nominal removal rate" + annotation (Placement(transformation(extent={{0,-70},{20,-50}}))); + + Buildings.Controls.OBC.CDL.Reals.Divide PDeh + "Calculate dehumidification power consumption" + annotation (Placement(transformation(extent={{40,-90},{60,-70}}))); + + Buildings.Fluid.Humidifiers.BaseClasses.PerformanceCurveModifier perCurMod(per=per) + "Block for calculating modifier curves" + annotation (Placement(transformation(extent={{-50,-110},{-30,-90}}))); + +protected + constant Modelica.Units.SI.SpecificEnthalpy h_fg= Buildings.Utilities.Psychrometrics.Constants.h_fg + "Latent heat of water vapor"; + +equation + connect(preHeaFlo.port, heaFloSen.port_a) + annotation (Line(points={{10,60},{20,60}},color={191,0,0})); + connect(senTem.T, T) + annotation (Line(points={{81,60},{120,60}}, color={0,0,127})); + connect(heaFloSen.port_b, deHum.heatPort) + annotation (Line(points={{40,60},{50,60},{50,-6},{60,-6}}, + color={191,0,0})); + connect(heaFloSen.port_b, senTem.port) + annotation (Line(points={{40,60},{60,60}}, color={191,0,0})); + connect(port_a, senTIn.port_a) + annotation (Line(points={{-100,0},{-90,0}}, color={0,127,255})); + connect(deHum.port_b, port_b) + annotation (Line(points={{80,0},{100,0}}, color={0,127,255})); + connect(senRelHum.port_b, deHum.port_a) + annotation (Line(points={{20,0},{60,0}},color={0,127,255})); + connect(QHea.y, preHeaFlo.Q_flow) annotation (Line(points={{-29,40},{-20,40}, + {-20,60},{-10,60}},color={0,0,127})); + connect(u.y, deHum.u) annotation (Line(points={{-18,-40},{40,-40},{40,6},{59, + 6}}, color={0,0,127})); + connect(uEna, booToRea.u) + annotation (Line(points={{-120,-46},{-92,-46}}, color={255,0,255})); + connect(booToRea.y, u.u2) annotation (Line(points={{-68,-46},{-42,-46}}, + color={0,0,127})); + connect(con.y, preHeaFlo.Q_flow) annotation (Line(points={{-28,90},{-20,90},{ + -20,60},{-10,60}}, color={0,0,127})); + connect(u.y, watRemRat.u) annotation (Line(points={{-18,-40},{-10,-40},{-10, + -60},{-2,-60}}, color={0,0,127})); + connect(watRemRat.y, PDeh.u1) annotation (Line(points={{22,-60},{30,-60},{30,-74}, + {38,-74}}, color={0,0,127})); + connect(eneFac.y, PDeh.u2) annotation (Line(points={{22,-100},{30,-100},{30,-86}, + {38,-86}}, color={0,0,127})); + connect(PDeh.y, QHea.u) annotation (Line(points={{62,-80},{80,-80},{80,-20},{-56, + -20},{-56,40},{-52,40}}, color={0,0,127})); + connect(PDeh.y, P) annotation (Line(points={{62,-80},{80,-80},{80,-40},{120,-40}}, + color={0,0,127})); + connect(senRelHum.phi, perCurMod.phi) annotation (Line(points={{10.1,11},{10.1, + 20},{-60,20},{-60,-104},{-52,-104}}, color={0,0,127})); + connect(perCurMod.watRemMod, u.u1) annotation (Line(points={{-29,-96},{-20,-96}, + {-20,-60},{-52,-60},{-52,-34},{-42,-34}}, color={0,0,127})); + connect(perCurMod.eneFacMod, eneFac.u) annotation (Line(points={{-29,-104},{-20, + -104},{-20,-100},{-2,-100}}, color={0,0,127})); + connect(senTIn.port_b, senRelHum.port_a) + annotation (Line(points={{-70,0},{0,0}}, color={0,127,255})); + connect(senTIn.T, perCurMod.T) annotation (Line(points={{-80,11},{-80,20},{-64, + 20},{-64,-96},{-52,-96}}, color={0,0,127})); + +annotation (Icon(coordinateSystem(extent={{-100,-100},{100,100}}), graphics={ + Rectangle( + extent={{-70,60},{70,-60}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={95,95,95}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-101,5},{100,-4}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,0,255}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{0,-4},{100,5}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={255,0,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-100,5},{101,-5}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,0,0}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{-70,58},{70,-62}}, + lineColor={0,0,255}, + pattern=LinePattern.None, + fillColor={0,62,0}, + fillPattern=FillPattern.Solid), + Polygon( + points={{42,42},{54,34},{54,34},{42,28},{42,30},{50,34},{50,34},{42,40}, + {42,42}}, + lineColor={255,255,255}, + fillColor={255,255,255}, + fillPattern=FillPattern.Solid), + Rectangle( + extent={{58,-54},{54,52}}, + lineColor={255,255,255}, + fillColor={255,255,255}, + fillPattern=FillPattern.Solid), + Polygon( + points={{42,10},{54,2},{54,2},{42,-4},{42,-2},{50,2},{50,2},{42,8},{42, + 10}}, + lineColor={255,255,255}, + fillColor={255,255,255}, + fillPattern=FillPattern.Solid), + Polygon( + points={{42,-26},{54,-34},{54,-34},{42,-40},{42,-38},{50,-34},{50,-34}, + {42,-28},{42,-26}}, + lineColor={255,255,255}, + fillColor={255,255,255}, + fillPattern=FillPattern.Solid)}), +defaultComponentName="dxDeh", +Documentation(info=" +

+This is a zone air DX dehumidifier model based on the first principles and the +calculations as defined in the EnergyPlus model ZoneHVAC:Dehumidifier:DX. +While the EnergyPlus implementation adds the heat rejected by the condensor coil to the +zone air heat balance, this model assumes that this rejected heat is added to the +outlet air stream. +

+

+Two performance curves watRemMod and eneFacMod are specified +to characterize the change in water removal and energy consumption at non-rated inlet +air conditions. +

+

+The amount of exchanged moisture mWat_flow +is equal to +

+

wat_flow = watRemMod * ρ * +V̇flow_nominal +

+

+The amount of heat added to the air stream QHea is equal to +

+

hea = ṁwat_flow * hfg + Pdeh +

+

+Please note that the enthalpy of the exchanged moisture has been considered +and therefore the added heat flow to the connector equals to Pdeh. +

+

Pdeh = V̇flow_nominal * watRemMod / +(eneFacnominal * eneFacMod), +

+

+where VWat_flow_nominal is the rated water removal flow rate and +eneFac_nominal is the rated energy factor. hfg is the +enthalpy of vaporization of air. +

+

Performance Curve Modifiers

+

+The water removal modifier curve watRemMod is a biquadratic curve with +two independent variables: dry-bulb temperature and relative humidity of the air +entering the dehumidifier. +

+

watRemMod(Tin, phiin) = a1 ++ a2 Tin + a3 Tin2 + a4 phiin ++ a5 phiin2 + a6 Tin phiin +

+

+The energy factor modifier curve eneFacMod +is a biquadratic curve with two independent variables: dry-bulb temperature +and relative humidity of the air entering the dehumidifier. +

+

eneFacMod(Tin, phiin) = b1 ++ b2 Tin + b3 Tin 2 + +b4 phiin + b5 phiin 2 + +b6 Tin phiin +

+

References

+

+U.S. Department of Energy, + +EnergyPlus Version 22.1.0 Documentation: Engineering Reference. + +

+", +revisions=" + +"), + Diagram(coordinateSystem(extent={{-100,-120},{100,120}}))); +end DXDehumidifier; diff --git a/Buildings/Fluid/Humidifiers/Data/DXDehumidifier/EnergyPlus.mo b/Buildings/Fluid/Humidifiers/Data/DXDehumidifier/EnergyPlus.mo new file mode 100644 index 00000000000..eed58c50642 --- /dev/null +++ b/Buildings/Fluid/Humidifiers/Data/DXDehumidifier/EnergyPlus.mo @@ -0,0 +1,35 @@ +within Buildings.Fluid.Humidifiers.Data.DXDehumidifier; +record EnergyPlus + "Example data record for DX dehumidifier model from EnergyPlus" + + extends Buildings.Fluid.Humidifiers.Data.DXDehumidifier.Generic(watRem={-2.72487866408, + 0.100711983591,-9.90538285E-04,0.050053043874,-2.03629282E-04,-3.41750531E-04}, + eneFac={-2.38831907E+00,0.093047739452,-1.36970033E-03,0.066533716758,-3.43198063E-04, + -5.62490295E-04}); + + annotation (preferredView="info", + Documentation(info=" +

This is an example data record for the DX dehumidifier that uses parameters + from an EnergyPlus v23.1.0 Example model SingleFamilyHouse_HP_Slab_Dehumidification.idf. +

+", +revisions=" + +"), + Icon(graphics={ + Text( + extent={{-91,1},{-8,-54}}, + textColor={0,0,255}, + fontSize=16, + textString="watRem"), + Text( + extent={{2,-16},{94,-38}}, + textColor={0,0,255}, + textString="eneFac", + fontSize=16)})); +end EnergyPlus; diff --git a/Buildings/Fluid/Humidifiers/Data/DXDehumidifier/Generic.mo b/Buildings/Fluid/Humidifiers/Data/DXDehumidifier/Generic.mo new file mode 100644 index 00000000000..cef2ef61ff2 --- /dev/null +++ b/Buildings/Fluid/Humidifiers/Data/DXDehumidifier/Generic.mo @@ -0,0 +1,38 @@ +within Buildings.Fluid.Humidifiers.Data.DXDehumidifier; +record Generic + "Base data record for DX dehumidifier model" + + extends Modelica.Icons.Record; + + parameter Real watRem[6] + "Biquadratic coefficients for water removal modifier curve" + annotation (Dialog(group="Performance curves")); + + parameter Real eneFac[6] + "Biquadratic coefficients for energy factor modifier curve" + annotation (Dialog(group="Performance curves")); + + annotation (defaultComponentName="dxDehRec", + preferredView="info", + Documentation(info=" +

This is the base record for the DX dehumidifier which has the following data.

+ +", +revisions=" + +")); +end Generic; diff --git a/Buildings/Fluid/Humidifiers/Data/DXDehumidifier/package.mo b/Buildings/Fluid/Humidifiers/Data/DXDehumidifier/package.mo new file mode 100644 index 00000000000..feaa4d28278 --- /dev/null +++ b/Buildings/Fluid/Humidifiers/Data/DXDehumidifier/package.mo @@ -0,0 +1,11 @@ +within Buildings.Fluid.Humidifiers.Data; +package DXDehumidifier + "Package with data record for DX dehumidifier" + extends Modelica.Icons.MaterialPropertiesPackage; + +annotation (Documentation(info=" +

+This package contains data records for the zone air DX dehumidifier. +

+")); +end DXDehumidifier; diff --git a/Buildings/Fluid/Humidifiers/Data/DXDehumidifier/package.order b/Buildings/Fluid/Humidifiers/Data/DXDehumidifier/package.order new file mode 100644 index 00000000000..c2cd81c38a6 --- /dev/null +++ b/Buildings/Fluid/Humidifiers/Data/DXDehumidifier/package.order @@ -0,0 +1,2 @@ +EnergyPlus +Generic diff --git a/Buildings/Fluid/Humidifiers/Data/package.mo b/Buildings/Fluid/Humidifiers/Data/package.mo new file mode 100644 index 00000000000..1497aa41b29 --- /dev/null +++ b/Buildings/Fluid/Humidifiers/Data/package.mo @@ -0,0 +1,11 @@ +within Buildings.Fluid.Humidifiers; +package Data + "Package with data records for classes in Humidifiers package" + extends Modelica.Icons.MaterialPropertiesPackage; + +annotation (Documentation(info=" +

+This package contains data records for the classes in the Humidifiers package. +

+")); +end Data; diff --git a/Buildings/Fluid/Humidifiers/Data/package.order b/Buildings/Fluid/Humidifiers/Data/package.order new file mode 100644 index 00000000000..70bf708730d --- /dev/null +++ b/Buildings/Fluid/Humidifiers/Data/package.order @@ -0,0 +1 @@ +DXDehumidifier diff --git a/Buildings/Fluid/Humidifiers/Validation/DXDehumidifier.mo b/Buildings/Fluid/Humidifiers/Validation/DXDehumidifier.mo new file mode 100644 index 00000000000..1625702ebd1 --- /dev/null +++ b/Buildings/Fluid/Humidifiers/Validation/DXDehumidifier.mo @@ -0,0 +1,213 @@ +within Buildings.Fluid.Humidifiers.Validation; +model DXDehumidifier "Validation model for DX dehumidifier" + extends Modelica.Icons.Example; + package Medium = Buildings.Media.Air + "Fluid medium"; + + parameter Modelica.Units.SI.MassFlowRate m_flow_nominal=0.13545 + "Nominal mass flow rate"; + + parameter Modelica.Units.SI.Time tStepAve = 3600 + "Time-step used to average out Modelica results for comparison with EPlus results"; + + parameter Buildings.Fluid.Humidifiers.Data.DXDehumidifier.EnergyPlus per + "Zone air DX dehumidifier curve" + annotation (Placement(transformation(extent={{-40,66},{-20,86}}))); + + Buildings.Fluid.Humidifiers.DXDehumidifier dxDeh( + redeclare package Medium = Medium, + mWat_flow_nominal=5.805556e-5, + final addPowerToMedium=true, + final mAir_flow_nominal=m_flow_nominal, + final dp_nominal=100, + final eneFac_nominal=3.412, + final per=per) + "DX dehumidifier" + annotation (Placement(transformation(extent={{-50,-28},{-30,-8}}))); + + Buildings.Fluid.Sources.MassFlowSource_T boundary( + redeclare package Medium = Medium, + final use_Xi_in=true, + final use_m_flow_in=true, + final use_T_in=true, + nPorts=1) + "Mass flow source for coil inlet air" + annotation (Placement(transformation(extent={{-82,-28},{-62,-8}}))); + + Buildings.Fluid.Sources.Boundary_pT sin( + redeclare package Medium = Medium, + final p(displayUnit="Pa") = 101325, + final T=294.15, + nPorts=1) + "Sink" + annotation (Placement(transformation(extent={{0,-28},{-20,-8}}))); + + Buildings.Utilities.Psychrometrics.ToTotalAir toTotAirIn + "Convert humidity ratio per kg dry air to humidity ratio per kg total air for coil inlet air" + annotation (Placement(transformation(extent={{-120,-60},{-100,-40}}))); + + Buildings.Utilities.IO.BCVTB.From_degC TIn_K + "Converts degC to K" + annotation (Placement(transformation(extent={{-120,10},{-100,30}}))); + + Buildings.Controls.OBC.CDL.Conversions.BooleanToReal booToReaFanEna + "Convert fan enable signal to real value" + annotation (Placement(transformation(extent={{-160,-20},{-140,0}}))); + + Buildings.Controls.OBC.CDL.Reals.MultiplyByParameter gai( + final k=m_flow_nominal) + "Calculate inlet air mass flow rate from component enable signal" + annotation (Placement(transformation(extent={{-120,-20},{-100,0}}))); + + Modelica.Blocks.Sources.RealExpression watRemRatMod( + final y=-dxDeh.deHum.mWat_flow) + "Water removal mass flow rate (Modelica)" + annotation (Placement(transformation(extent={{20,30},{40,50}}))); + + Modelica.Blocks.Math.Mean mWatMod( + final f=1/tStepAve) + "Average out Modelica results over time" + annotation (Placement(transformation(extent={{60,30},{80,50}}))); + + Modelica.Blocks.Math.Mean mWat_engPlu( + final f=1/tStepAve) + "Average out EnergyPlus results over time" + annotation (Placement(transformation(extent={{140,30},{160,50}}))); + + Modelica.Blocks.Sources.RealExpression watRemRat_engPlu( + final y=datRea.y[4]) + "Water removal mass flow rate (EnergyPlus)" + annotation (Placement(transformation(extent={{100,30},{120,50}}))); + + Modelica.Blocks.Sources.RealExpression airHeaRatMod( + final y=dxDeh.P) + "Air heating rate (Modelica)" + annotation (Placement(transformation(extent={{20,-10},{40,10}}))); + + Modelica.Blocks.Math.Mean PMod( + final f=1/tStepAve) + "Average out Modelica results over time" + annotation (Placement(transformation(extent={{60,-10},{80,10}}))); + + Modelica.Blocks.Math.Mean P_engPlu( + final f=1/tStepAve) + "Average out EnergyPlus results over time" + annotation (Placement(transformation(extent={{140,-10},{160,10}}))); + + Modelica.Blocks.Sources.RealExpression dehPowRat_engPlu( + final y=datRea.y[5]) + "DX dehumidifier power rate (EnergyPlus)" + annotation (Placement(transformation(extent={{100,-10},{120,10}}))); + + Modelica.Blocks.Sources.RealExpression dehHeaRatMod( + final y=dxDeh.heaFloSen.Q_flow - + dxDeh.deHum.mWat_flow*Buildings.Utilities.Psychrometrics.Constants.h_fg) + "DX dehumidifier heating rate (Modelica)" + annotation (Placement(transformation(extent={{20,-50},{40,-30}}))); + + Modelica.Blocks.Math.Mean QHeaMod( + final f=1/tStepAve) + "Average out Modelica results over time" + annotation (Placement(transformation(extent={{60,-50},{80,-30}}))); + + Modelica.Blocks.Math.Mean QHea_engPlu( + final f=1/tStepAve) + "Average out EnergyPlus results over time" + annotation (Placement(transformation(extent={{140,-50},{160,-30}}))); + + Modelica.Blocks.Sources.RealExpression dehHeaRat_engPlu( + final y=datRea.y[3]) + "DX dehumidifier heating rate (EnergyPlus)" + annotation (Placement(transformation(extent={{100,-50},{120,-30}}))); + + Modelica.Blocks.Sources.CombiTimeTable datRea( + final tableOnFile=true, + final fileName=Modelica.Utilities.Files.loadResource( + "modelica://Buildings/Resources/Data/Fluid/Humidifiers/DXDehumidifier/DXDehumidifier.dat"), + final columns=2:15, + final tableName="EnergyPlus", + final smoothness=Modelica.Blocks.Types.Smoothness.ConstantSegments, + final shiftTime(displayUnit="d")) + "Reader for energy plus reference results" + annotation (Placement(transformation(extent={{-160,60},{-140,80}}))); + +protected + Controls.OBC.CDL.Discrete.Sampler sam(final samplePeriod=3600) + "Sampling the part load ratio" + annotation (Placement(transformation(extent={{-120,60},{-100,80}}))); +protected + Controls.OBC.CDL.Logical.VariablePulse plrToPul(final period=3600) + "Convert part load ratio signal to on-off signal" + annotation (Placement(transformation(extent={{-88,60},{-68,80}}))); +equation + connect(watRemRatMod.y, mWatMod.u) + annotation (Line(points={{41,40},{58,40}}, color={0,0,127})); + connect(watRemRat_engPlu.y, mWat_engPlu.u) + annotation (Line(points={{121,40},{138,40}}, color={0,0,127})); + connect(airHeaRatMod.y, PMod.u) + annotation (Line(points={{41,0},{58,0}}, color={0,0,127})); + connect(dehPowRat_engPlu.y, P_engPlu.u) + annotation (Line(points={{121,0},{138,0}}, color={0,0,127})); + connect(dehHeaRatMod.y, QHeaMod.u) + annotation (Line(points={{41,-40},{58,-40}}, color={0,0,127})); + connect(dehHeaRat_engPlu.y, QHea_engPlu.u) + annotation (Line(points={{121,-40},{138,-40}}, color={0,0,127})); + connect(toTotAirIn.XiTotalAir, boundary.Xi_in[1]) annotation (Line(points={{-99,-50}, + {-90,-50},{-90,-22},{-84,-22}}, color={0,0,127})); + connect(TIn_K.Kelvin, boundary.T_in) annotation (Line(points={{-99,19.8},{-90, + 19.8},{-90,-14},{-84,-14}}, color={0,0,127})); + connect(booToReaFanEna.y, gai.u) + annotation (Line(points={{-138,-10},{-122,-10}}, color={0,0,127})); + connect(datRea.y[11], TIn_K.Celsius) annotation (Line(points={{-139,70},{-130, + 70},{-130,19.6},{-122,19.6}}, color={0,0,127})); + connect(datRea.y[10], toTotAirIn.XiDry) annotation (Line(points={{-139,70},{ + -130,70},{-130,-50},{-121,-50}}, color={0,0,127})); + connect(gai.y, boundary.m_flow_in) + annotation (Line(points={{-98,-10},{-84,-10}}, color={0,0,127})); + connect(dxDeh.port_a, boundary.ports[1]) + annotation (Line(points={{-50,-18},{-62,-18}}, color={0,127,255})); + connect(sin.ports[1], dxDeh.port_b) + annotation (Line(points={{-20,-18},{-30,-18}}, color={0,127,255})); + + connect(datRea.y[8], sam.u) + annotation (Line(points={{-139,70},{-122,70}}, color={0,0,127})); + connect(sam.y, plrToPul.u) + annotation (Line(points={{-98,70},{-90,70}}, color={0,0,127})); + connect(plrToPul.y, booToReaFanEna.u) annotation (Line(points={{-66,70},{-56, + 70},{-56,40},{-170,40},{-170,-10},{-162,-10}}, color={255,0,255})); + connect(plrToPul.y, dxDeh.uEna) annotation (Line(points={{-66,70},{-56,70},{ + -56,-14},{-51,-14}}, color={255,0,255})); +annotation (Icon(coordinateSystem(preserveAspectRatio=false, extent={{-100,-100}, + {100,100}})), Diagram(coordinateSystem(preserveAspectRatio=false, + extent={{-180,-100},{180,100}})), +experiment(StartTime=12960000, StopTime=15120000, Tolerance=1e-6), + __Dymola_Commands(file="modelica://Buildings/Resources/Scripts/Dymola/Fluid/Humidifiers/Validation/DXDehumidifier.mos" + "Simulate and Plot"), +Documentation(info=" +

+This is a validation model for the zone air DX dehumidifier model + +Buildings.Fluid.Humidifiers.DXDehumidifier. The inlet air conditions such as +the dry bulb temperature and humidity ratio are read from an EnergyPlus data file. +The module plrToPul translates the runtime fraction from EnergyPlus +to an on-off signal for the DX dehumidifier. +

+

+The generated plots show that DX dehumidifier removes an amount of water +that is similar to the reference EnergyPlus results, while consuming a similar amount +of power and adding similar amount of heat to the outlet air stream. The +comparison of the outlet air conditions such as the dry bulb temperature and humidity +ratio is not considered here because EnergyPlus adds the rejected heat directly +to the zone air balance and sets the dry bulb temperature of the dehumidifier's +outlet air equal to that of the inlet air. +

+", +revisions=" + +")); +end DXDehumidifier; diff --git a/Buildings/Fluid/Humidifiers/Validation/package.order b/Buildings/Fluid/Humidifiers/Validation/package.order index 22d34d74875..0b4b3e81cc2 100644 --- a/Buildings/Fluid/Humidifiers/Validation/package.order +++ b/Buildings/Fluid/Humidifiers/Validation/package.order @@ -1,3 +1,4 @@ +DXDehumidifier SprayAirWasher_X SprayAirWasher_X_dynamic SteamHumidifier_X diff --git a/Buildings/Fluid/Humidifiers/package.order b/Buildings/Fluid/Humidifiers/package.order index 7edcb74fa7a..9007bb297b9 100644 --- a/Buildings/Fluid/Humidifiers/package.order +++ b/Buildings/Fluid/Humidifiers/package.order @@ -1,5 +1,8 @@ +DXDehumidifier Humidifier_u SprayAirWasher_X SteamHumidifier_X +Data Examples Validation +BaseClasses diff --git a/Buildings/Resources/Data/Fluid/Humidifiers/DXDehumidifier/DXDehumidifier.dat b/Buildings/Resources/Data/Fluid/Humidifiers/DXDehumidifier/DXDehumidifier.dat new file mode 100644 index 00000000000..420dee05e9c --- /dev/null +++ b/Buildings/Resources/Data/Fluid/Humidifiers/DXDehumidifier/DXDehumidifier.dat @@ -0,0 +1,619 @@ +#1 +double EnergyPlus(601,15) +#This file contains the results from the EnergyPlus simulation +#Column 0: Time in seconds +#Column 1: WEST ZONE:Zone Air Temperature [C](Hourly) +#Column 2: WEST ZONE:Zone Air Relative Humidity [%](Hourly) +#Column 3: WEST ZONE DEHUMIDIFIER:Zone Dehumidifier Sensible Heating Rate [W](Hourly) +#Column 4: WEST ZONE DEHUMIDIFIER:Zone Dehumidifier Removed Water Mass Flow Rate [kg/s](Hourly) +#Column 5: WEST ZONE DEHUMIDIFIER:Zone Dehumidifier Electricity Rate [W](Hourly) +#Column 6: ZONE1DEHUMIDIFIERINLET:System Node Mass Flow Rate [kg/s](Hourly) +#Column 7: Environment:Site Outdoor Air Drybulb Temperature [C](Hourly) +#Column 8: WEST ZONE DEHUMIDIFIER:Zone Dehumidifier Part Load Ratio [](Hourly) +#Column 9: WEST ZONE DEHUMIDIFIER:Zone Dehumidifier Runtime Fraction [](Hourly) +#Column 10: ZONE1DEHUMIDIFIERINLET:System Node Humidity Ratio [kgWater/kgDryAir](Hourly) +#Column 11: ZONE1DEHUMIDIFIERINLET:System Node Temperature [C](Hourly) +#Column 12: DEHUMIDIFIER OUTLET NODE:System Node Temperature [C](Hourly) +#Column 13: DEHUMIDIFIER OUTLET NODE:System Node Humidity Ratio [kgWater/kgDryAir](Hourly) +#Column 14: WEST ZONE DEHUMIDIFIER:Zone Dehumidifier Outlet Air Temperature [C](Hourly) +12960000,2.829e+01,4.495e+01,2.135e+02,5.503e-05,7.947e+01,1.745e-02,2.029e+01,1.288e-01,1.288e-01,1.114e-02,2.829e+01,2.829e+01,1.035e-02,3.128e+01 +12963600,2.805e+01,4.496e+01,2.088e+02,5.389e-05,7.758e+01,1.726e-02,1.970e+01,1.274e-01,1.274e-01,1.098e-02,2.805e+01,2.805e+01,1.020e-02,3.100e+01 +12967200,2.782e+01,4.496e+01,1.900e+02,4.907e-05,7.044e+01,1.586e-02,1.915e+01,1.171e-01,1.171e-01,1.082e-02,2.782e+01,2.782e+01,1.005e-02,3.074e+01 +12970800,2.758e+01,4.497e+01,1.915e+02,4.951e-05,7.089e+01,1.616e-02,1.834e+01,1.193e-01,1.193e-01,1.067e-02,2.759e+01,2.759e+01,9.698e-03,3.125e+01 +12974400,2.736e+01,4.497e+01,2.117e+02,5.476e-05,7.824e+01,1.804e-02,1.780e+01,1.332e-01,1.332e-01,1.051e-02,2.736e+01,2.736e+01,9.603e-03,3.080e+01 +12978000,2.713e+01,4.497e+01,1.840e+02,4.763e-05,6.791e+01,1.585e-02,1.694e+01,1.170e-01,1.170e-01,1.036e-02,2.714e+01,2.714e+01,9.554e-03,3.016e+01 +12981600,2.700e+01,4.498e+01,3.990e+01,1.033e-05,1.472e+01,3.459e-03,1.641e+01,2.554e-02,2.554e-02,1.026e-02,2.700e+01,2.700e+01,9.767e-03,2.888e+01 +12985200,2.718e+01,4.471e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.782e+01,0.000e+00,0.000e+00,1.030e-02,2.718e+01,2.718e+01,1.030e-02,2.718e+01 +12988800,2.768e+01,4.460e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.946e+01,0.000e+00,0.000e+00,1.057e-02,2.767e+01,2.767e+01,1.057e-02,2.767e+01 +12992400,2.857e+01,4.489e+01,2.959e+02,7.611e-05,1.106e+02,2.385e-02,2.056e+01,1.761e-01,1.761e-01,1.121e-02,2.855e+01,2.855e+01,1.025e-02,3.215e+01 +12996000,2.959e+01,4.491e+01,5.810e+02,1.487e-04,2.193e+02,4.500e-02,2.196e+01,3.323e-01,3.323e-01,1.190e-02,2.957e+01,2.957e+01,1.075e-02,3.397e+01 +12999600,3.043e+01,4.495e+01,7.643e+02,1.945e-04,2.916e+02,5.715e-02,2.305e+01,4.219e-01,4.219e-01,1.252e-02,3.042e+01,3.042e+01,1.081e-02,3.692e+01 +13003200,3.103e+01,4.501e+01,1.060e+03,2.684e-04,4.076e+02,7.736e-02,2.360e+01,5.712e-01,5.712e-01,1.298e-02,3.102e+01,3.102e+01,1.090e-02,3.901e+01 +13006800,3.129e+01,4.496e+01,7.462e+02,1.886e-04,2.883e+02,5.398e-02,2.415e+01,3.985e-01,3.985e-01,1.317e-02,3.129e+01,3.129e+01,1.149e-02,3.778e+01 +13010400,3.174e+01,4.496e+01,8.764e+02,2.204e-04,3.415e+02,6.229e-02,2.470e+01,4.599e-01,4.599e-01,1.351e-02,3.173e+01,3.173e+01,1.174e-02,3.856e+01 +13014000,3.237e+01,4.499e+01,1.109e+03,2.770e-04,4.369e+02,7.703e-02,2.500e+01,5.687e-01,5.687e-01,1.402e-02,3.236e+01,3.236e+01,1.186e-02,4.073e+01 +13017600,3.290e+01,4.505e+01,1.167e+03,2.898e-04,4.647e+02,7.945e-02,2.500e+01,5.866e-01,5.866e-01,1.448e-02,3.289e+01,3.289e+01,1.199e-02,4.263e+01 +13021200,3.305e+01,4.504e+01,1.123e+03,2.783e-04,4.485e+02,7.602e-02,2.470e+01,5.612e-01,5.612e-01,1.461e-02,3.306e+01,3.306e+01,1.248e-02,4.141e+01 +13024800,3.253e+01,4.504e+01,1.050e+03,2.617e-04,4.148e+02,7.234e-02,2.359e+01,5.341e-01,5.341e-01,1.419e-02,3.255e+01,3.255e+01,1.214e-02,4.052e+01 +13028400,3.178e+01,4.498e+01,7.819e+02,1.966e-04,3.047e+02,5.548e-02,2.194e+01,4.096e-01,4.096e-01,1.357e-02,3.179e+01,3.179e+01,1.203e-02,3.771e+01 +13032000,3.111e+01,4.497e+01,5.729e+02,1.450e-04,2.208e+02,4.170e-02,2.054e+01,3.079e-01,3.079e-01,1.305e-02,3.112e+01,3.112e+01,1.183e-02,3.580e+01 +13035600,3.058e+01,4.493e+01,4.571e+02,1.162e-04,1.747e+02,3.397e-02,1.888e+01,2.508e-01,2.508e-01,1.264e-02,3.059e+01,3.059e+01,1.162e-02,3.452e+01 +13039200,3.012e+01,4.491e+01,3.859e+02,9.843e-05,1.466e+02,2.919e-02,1.785e+01,2.155e-01,2.155e-01,1.231e-02,3.013e+01,3.013e+01,1.141e-02,3.356e+01 +13042800,2.976e+01,4.494e+01,2.998e+02,7.664e-05,1.134e+02,2.303e-02,1.790e+01,1.700e-01,1.700e-01,1.206e-02,2.976e+01,2.976e+01,1.117e-02,3.314e+01 +13046400,2.947e+01,4.495e+01,2.249e+02,5.762e-05,8.478e+01,1.748e-02,1.795e+01,1.291e-01,1.291e-01,1.186e-02,2.948e+01,2.948e+01,1.109e-02,3.240e+01 +13050000,2.923e+01,4.495e+01,2.450e+02,6.284e-05,9.207e+01,1.924e-02,1.805e+01,1.420e-01,1.420e-01,1.167e-02,2.923e+01,2.923e+01,1.080e-02,3.254e+01 +13053600,2.900e+01,4.496e+01,1.862e+02,4.784e-05,6.982e+01,1.477e-02,1.815e+01,1.090e-01,1.090e-01,1.151e-02,2.900e+01,2.900e+01,1.075e-02,3.187e+01 +13057200,2.877e+01,4.496e+01,2.029e+02,5.219e-05,7.591e+01,1.624e-02,1.820e+01,1.199e-01,1.199e-01,1.136e-02,2.878e+01,2.878e+01,1.050e-02,3.202e+01 +13060800,2.856e+01,4.496e+01,1.772e+02,4.562e-05,6.614e+01,1.431e-02,1.825e+01,1.057e-01,1.057e-01,1.121e-02,2.857e+01,2.857e+01,1.041e-02,3.158e+01 +13064400,2.836e+01,4.497e+01,1.837e+02,4.732e-05,6.842e+01,1.496e-02,1.805e+01,1.105e-01,1.105e-01,1.107e-02,2.836e+01,2.836e+01,1.017e-02,3.175e+01 +13068000,2.816e+01,4.498e+01,1.850e+02,4.772e-05,6.880e+01,1.521e-02,1.694e+01,1.123e-01,1.123e-01,1.093e-02,2.816e+01,2.816e+01,9.994e-03,3.172e+01 +13071600,2.802e+01,4.495e+01,1.768e+02,4.563e-05,6.568e+01,1.463e-02,1.585e+01,1.080e-01,1.080e-01,1.083e-02,2.802e+01,2.802e+01,1.010e-02,3.077e+01 +13075200,2.828e+01,4.494e+01,1.776e+02,4.576e-05,6.613e+01,1.454e-02,1.616e+01,1.074e-01,1.074e-01,1.098e-02,2.827e+01,2.827e+01,9.985e-03,3.205e+01 +13078800,2.919e+01,4.489e+01,3.778e+02,9.684e-05,1.421e+02,2.965e-02,1.782e+01,2.189e-01,2.189e-01,1.156e-02,2.917e+01,2.917e+01,1.053e-02,3.308e+01 +13082400,3.019e+01,4.490e+01,5.633e+02,1.436e-04,2.143e+02,4.256e-02,1.946e+01,3.142e-01,3.142e-01,1.226e-02,3.018e+01,3.018e+01,1.114e-02,3.447e+01 +13086000,3.098e+01,4.496e+01,8.981e+02,2.275e-04,3.454e+02,6.578e-02,2.056e+01,4.857e-01,4.857e-01,1.286e-02,3.097e+01,3.097e+01,1.096e-02,3.827e+01 +13089600,3.154e+01,4.501e+01,1.099e+03,2.771e-04,4.263e+02,7.875e-02,2.166e+01,5.814e-01,5.814e-01,1.330e-02,3.153e+01,3.153e+01,1.119e-02,3.966e+01 +13093200,3.171e+01,4.500e+01,9.368e+02,2.358e-04,3.645e+02,6.666e-02,2.276e+01,4.921e-01,4.921e-01,1.344e-02,3.171e+01,3.171e+01,1.156e-02,3.899e+01 +13096800,3.199e+01,4.498e+01,9.676e+02,2.427e-04,3.785e+02,6.825e-02,2.330e+01,5.039e-01,5.039e-01,1.364e-02,3.198e+01,3.198e+01,1.175e-02,3.932e+01 +13100400,3.264e+01,4.500e+01,1.110e+03,2.763e-04,4.396e+02,7.635e-02,2.360e+01,5.637e-01,5.637e-01,1.417e-02,3.263e+01,3.263e+01,1.200e-02,4.109e+01 +13104000,3.312e+01,4.506e+01,1.299e+03,3.216e-04,5.193e+02,8.773e-02,2.446e+01,6.477e-01,6.477e-01,1.459e-02,3.312e+01,3.312e+01,1.197e-02,4.340e+01 +13107600,3.328e+01,4.501e+01,1.129e+03,2.787e-04,4.532e+02,7.582e-02,2.444e+01,5.597e-01,5.597e-01,1.472e-02,3.328e+01,3.328e+01,1.239e-02,4.241e+01 +13111200,3.296e+01,4.497e+01,6.988e+02,1.733e-04,2.786e+02,4.750e-02,2.334e+01,3.507e-01,3.507e-01,1.444e-02,3.297e+01,3.297e+01,1.286e-02,3.915e+01 +13114800,3.243e+01,4.496e+01,6.437e+02,1.607e-04,2.539e+02,4.461e-02,2.168e+01,3.294e-01,3.294e-01,1.401e-02,3.244e+01,3.244e+01,1.263e-02,3.781e+01 +13118400,3.170e+01,4.499e+01,8.149e+02,2.051e-04,3.170e+02,5.796e-02,1.887e+01,4.279e-01,4.279e-01,1.344e-02,3.171e+01,3.171e+01,1.184e-02,3.785e+01 +13122000,3.096e+01,4.497e+01,7.201e+02,1.825e-04,2.767e+02,5.273e-02,1.552e+01,3.893e-01,3.893e-01,1.287e-02,3.097e+01,3.097e+01,1.131e-02,3.694e+01 +13125600,3.029e+01,4.498e+01,5.565e+02,1.418e-04,2.118e+02,4.182e-02,1.304e+01,3.088e-01,3.088e-01,1.238e-02,3.030e+01,3.030e+01,1.102e-02,3.548e+01 +13129200,2.972e+01,4.495e+01,4.921e+02,1.259e-04,1.859e+02,3.783e-02,1.251e+01,2.793e-01,2.793e-01,1.196e-02,2.973e+01,2.973e+01,1.091e-02,3.374e+01 +13132800,2.930e+01,4.494e+01,3.282e+02,8.418e-05,1.234e+02,2.571e-02,1.305e+01,1.898e-01,1.898e-01,1.166e-02,2.930e+01,2.930e+01,1.079e-02,3.262e+01 +13136400,2.893e+01,4.493e+01,3.073e+02,7.897e-05,1.151e+02,2.443e-02,1.330e+01,1.804e-01,1.804e-01,1.141e-02,2.894e+01,2.894e+01,1.050e-02,3.241e+01 +13140000,2.858e+01,4.494e+01,2.715e+02,6.989e-05,1.013e+02,2.190e-02,1.330e+01,1.617e-01,1.617e-01,1.118e-02,2.859e+01,2.859e+01,1.044e-02,3.141e+01 +13143600,2.825e+01,4.494e+01,2.894e+02,7.461e-05,1.077e+02,2.368e-02,1.330e+01,1.749e-01,1.749e-01,1.097e-02,2.826e+01,2.826e+01,1.013e-02,3.144e+01 +13147200,2.793e+01,4.495e+01,2.826e+02,7.297e-05,1.048e+02,2.348e-02,1.305e+01,1.734e-01,1.734e-01,1.076e-02,2.793e+01,2.793e+01,9.827e-03,3.145e+01 +13150800,2.760e+01,4.496e+01,2.134e+02,5.516e-05,7.900e+01,1.798e-02,1.250e+01,1.328e-01,1.328e-01,1.055e-02,2.760e+01,2.760e+01,9.734e-03,3.069e+01 +13154400,2.746e+01,4.496e+01,2.455e+01,6.346e-06,9.080e+00,2.083e-03,1.306e+01,1.538e-02,1.538e-02,1.046e-02,2.745e+01,2.745e+01,1.011e-02,2.880e+01 +13158000,2.768e+01,4.457e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.588e+01,0.000e+00,0.000e+00,1.050e-02,2.767e+01,2.767e+01,1.050e-02,2.767e+01 +13161600,2.831e+01,4.411e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.892e+01,0.000e+00,0.000e+00,1.079e-02,2.830e+01,2.830e+01,1.079e-02,2.830e+01 +13165200,2.924e+01,4.464e+01,9.550e+01,2.444e-05,3.605e+01,7.418e-03,2.086e+01,5.477e-02,5.477e-02,1.153e-02,2.923e+01,2.923e+01,1.109e-02,3.090e+01 +13168800,3.035e+01,4.489e+01,5.437e+02,1.383e-04,2.074e+02,4.077e-02,2.226e+01,3.010e-01,3.010e-01,1.239e-02,3.034e+01,3.034e+01,1.109e-02,3.531e+01 +13172400,3.123e+01,4.492e+01,7.528e+02,1.903e-04,2.907e+02,5.464e-02,2.361e+01,4.034e-01,4.034e-01,1.305e-02,3.122e+01,3.122e+01,1.160e-02,3.679e+01 +13176000,3.192e+01,4.500e+01,1.017e+03,2.554e-04,3.972e+02,7.183e-02,2.440e+01,5.303e-01,5.303e-01,1.361e-02,3.191e+01,3.191e+01,1.148e-02,4.015e+01 +13179600,3.217e+01,4.497e+01,8.427e+02,2.111e-04,3.306e+02,5.898e-02,2.470e+01,4.354e-01,4.354e-01,1.383e-02,3.217e+01,3.217e+01,1.198e-02,3.933e+01 +13183200,3.253e+01,4.500e+01,1.045e+03,2.606e-04,4.130e+02,7.215e-02,2.500e+01,5.327e-01,5.327e-01,1.412e-02,3.252e+01,3.252e+01,1.196e-02,4.094e+01 +13186800,3.294e+01,4.508e+01,1.461e+03,3.625e-04,5.820e+02,9.929e-02,2.500e+01,7.331e-01,7.331e-01,1.450e-02,3.293e+01,3.293e+01,1.164e-02,4.410e+01 +13190400,3.316e+01,4.512e+01,1.582e+03,3.915e-04,6.330e+02,1.066e-01,2.500e+01,7.871e-01,7.871e-01,1.470e-02,3.315e+01,3.315e+01,1.164e-02,4.513e+01 +13194000,3.305e+01,4.506e+01,1.328e+03,3.289e-04,5.306e+02,8.984e-02,2.470e+01,6.633e-01,6.633e-01,1.462e-02,3.306e+01,3.306e+01,1.199e-02,4.333e+01 +13197600,3.256e+01,4.501e+01,8.280e+02,2.064e-04,3.274e+02,5.704e-02,2.415e+01,4.211e-01,4.211e-01,1.420e-02,3.257e+01,3.257e+01,1.257e-02,3.890e+01 +13201200,3.198e+01,4.497e+01,6.423e+02,1.611e-04,2.512e+02,4.525e-02,2.278e+01,3.341e-01,3.341e-01,1.372e-02,3.199e+01,3.199e+01,1.241e-02,3.703e+01 +13204800,3.136e+01,4.497e+01,6.313e+02,1.594e-04,2.442e+02,4.554e-02,2.053e+01,3.362e-01,3.362e-01,1.324e-02,3.138e+01,3.138e+01,1.172e-02,3.721e+01 +13208400,3.077e+01,4.496e+01,5.690e+02,1.444e-04,2.181e+02,4.199e-02,1.828e+01,3.100e-01,3.100e-01,1.278e-02,3.078e+01,3.078e+01,1.158e-02,3.539e+01 +13212000,3.027e+01,4.492e+01,3.937e+02,1.003e-04,1.498e+02,2.963e-02,1.776e+01,2.187e-01,2.187e-01,1.239e-02,3.028e+01,3.028e+01,1.149e-02,3.373e+01 +13215600,2.987e+01,4.493e+01,3.453e+02,8.823e-05,1.307e+02,2.640e-02,1.718e+01,1.949e-01,1.949e-01,1.211e-02,2.988e+01,2.988e+01,1.127e-02,3.306e+01 +13219200,2.949e+01,4.493e+01,3.498e+02,8.960e-05,1.318e+02,2.716e-02,1.641e+01,2.005e-01,2.005e-01,1.184e-02,2.949e+01,2.949e+01,1.085e-02,3.325e+01 +13222800,2.916e+01,4.494e+01,2.438e+02,6.256e-05,9.153e+01,1.920e-02,1.670e+01,1.417e-01,1.417e-01,1.162e-02,2.917e+01,2.917e+01,1.086e-02,3.205e+01 +13226400,2.887e+01,4.495e+01,2.586e+02,6.649e-05,9.681e+01,2.062e-02,1.670e+01,1.523e-01,1.523e-01,1.143e-02,2.887e+01,2.887e+01,1.057e-02,3.213e+01 +13230000,2.857e+01,4.494e+01,2.473e+02,6.366e-05,9.226e+01,1.997e-02,1.614e+01,1.474e-01,1.474e-01,1.123e-02,2.858e+01,2.858e+01,1.049e-02,3.139e+01 +13233600,2.825e+01,4.495e+01,3.047e+02,7.856e-05,1.133e+02,2.495e-02,1.499e+01,1.842e-01,1.842e-01,1.102e-02,2.826e+01,2.826e+01,1.018e-02,3.143e+01 +13237200,2.793e+01,4.497e+01,1.897e+02,4.896e-05,7.039e+01,1.573e-02,1.415e+01,1.162e-01,1.162e-01,1.081e-02,2.793e+01,2.793e+01,9.978e-03,3.107e+01 +13240800,2.784e+01,4.492e+01,4.926e+00,1.272e-06,1.827e+00,4.111e-04,1.476e+01,3.035e-03,3.035e-03,1.074e-02,2.784e+01,2.784e+01,1.059e-02,2.843e+01 +13244400,2.799e+01,4.452e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.672e+01,0.000e+00,0.000e+00,1.074e-02,2.798e+01,2.798e+01,1.074e-02,2.798e+01 +13248000,2.826e+01,4.381e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.892e+01,0.000e+00,0.000e+00,1.074e-02,2.826e+01,2.826e+01,1.074e-02,2.826e+01 +13251600,2.870e+01,4.268e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.112e+01,0.000e+00,0.000e+00,1.074e-02,2.869e+01,2.869e+01,1.074e-02,2.869e+01 +13255200,2.930e+01,4.121e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.332e+01,0.000e+00,0.000e+00,1.074e-02,2.929e+01,2.929e+01,1.074e-02,2.929e+01 +13258800,2.980e+01,4.004e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.501e+01,0.000e+00,0.000e+00,1.074e-02,2.980e+01,2.980e+01,1.074e-02,2.980e+01 +13262400,3.008e+01,3.937e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.641e+01,0.000e+00,0.000e+00,1.074e-02,3.008e+01,3.008e+01,1.074e-02,3.008e+01 +13266000,3.023e+01,3.902e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.806e+01,0.000e+00,0.000e+00,1.074e-02,3.022e+01,3.022e+01,1.074e-02,3.022e+01 +13269600,3.051e+01,3.836e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.859e+01,0.000e+00,0.000e+00,1.074e-02,3.051e+01,3.051e+01,1.074e-02,3.051e+01 +13273200,3.065e+01,3.806e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.693e+01,0.000e+00,0.000e+00,1.074e-02,3.065e+01,3.065e+01,1.074e-02,3.065e+01 +13276800,3.059e+01,3.818e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.474e+01,0.000e+00,0.000e+00,1.074e-02,3.059e+01,3.059e+01,1.074e-02,3.059e+01 +13280400,3.059e+01,3.815e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.359e+01,0.000e+00,0.000e+00,1.074e-02,3.059e+01,3.059e+01,1.074e-02,3.059e+01 +13284000,3.055e+01,3.823e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.360e+01,0.000e+00,0.000e+00,1.074e-02,3.055e+01,3.055e+01,1.074e-02,3.055e+01 +13287600,3.023e+01,3.890e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.248e+01,0.000e+00,0.000e+00,1.074e-02,3.024e+01,3.024e+01,1.074e-02,3.024e+01 +13291200,2.957e+01,4.041e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.024e+01,0.000e+00,0.000e+00,1.074e-02,2.958e+01,2.958e+01,1.074e-02,2.958e+01 +13294800,2.904e+01,4.166e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.859e+01,0.000e+00,0.000e+00,1.074e-02,2.905e+01,2.905e+01,1.074e-02,2.905e+01 +13298400,2.865e+01,4.261e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.805e+01,0.000e+00,0.000e+00,1.074e-02,2.866e+01,2.866e+01,1.074e-02,2.866e+01 +13302000,2.832e+01,4.345e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.749e+01,0.000e+00,0.000e+00,1.074e-02,2.832e+01,2.832e+01,1.074e-02,2.832e+01 +13305600,2.799e+01,4.429e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.726e+01,0.000e+00,0.000e+00,1.074e-02,2.799e+01,2.799e+01,1.074e-02,2.799e+01 +13309200,2.776e+01,4.486e+01,3.287e+01,8.492e-06,1.218e+01,2.759e-03,1.750e+01,2.037e-02,2.037e-02,1.074e-02,2.776e+01,2.776e+01,1.038e-02,2.912e+01 +13312800,2.760e+01,4.499e+01,1.170e+02,3.024e-05,4.333e+01,9.866e-03,1.776e+01,7.284e-02,7.284e-02,1.067e-02,2.760e+01,2.760e+01,9.700e-03,3.127e+01 +13316400,2.746e+01,4.498e+01,1.190e+02,3.078e-05,4.403e+01,1.010e-02,1.886e+01,7.459e-02,7.459e-02,1.058e-02,2.746e+01,2.746e+01,9.717e-03,3.072e+01 +13320000,2.731e+01,4.498e+01,1.254e+02,3.243e-05,4.632e+01,1.071e-02,1.940e+01,7.908e-02,7.908e-02,1.049e-02,2.732e+01,2.732e+01,9.627e-03,3.055e+01 +13323600,2.716e+01,4.498e+01,9.996e+01,2.586e-05,3.690e+01,8.597e-03,1.915e+01,6.347e-02,6.347e-02,1.039e-02,2.716e+01,2.716e+01,9.537e-03,3.038e+01 +13327200,2.711e+01,4.497e+01,7.278e+00,1.883e-06,2.686e+00,6.282e-04,1.890e+01,4.638e-03,4.638e-03,1.035e-02,2.711e+01,2.711e+01,1.000e-02,2.843e+01 +13330800,2.729e+01,4.447e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.032e+01,0.000e+00,0.000e+00,1.035e-02,2.729e+01,2.729e+01,1.035e-02,2.729e+01 +13334400,2.769e+01,4.345e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.251e+01,0.000e+00,0.000e+00,1.035e-02,2.768e+01,2.768e+01,1.035e-02,2.768e+01 +13338000,2.823e+01,4.208e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.503e+01,0.000e+00,0.000e+00,1.035e-02,2.822e+01,2.822e+01,1.035e-02,2.822e+01 +13341600,2.879e+01,4.073e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.782e+01,0.000e+00,0.000e+00,1.035e-02,2.878e+01,2.878e+01,1.035e-02,2.878e+01 +13345200,2.914e+01,3.988e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.946e+01,0.000e+00,0.000e+00,1.035e-02,2.914e+01,2.914e+01,1.035e-02,2.914e+01 +13348800,2.933e+01,3.941e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,3.030e+01,0.000e+00,0.000e+00,1.035e-02,2.932e+01,2.932e+01,1.035e-02,2.932e+01 +13352400,2.945e+01,3.912e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.974e+01,0.000e+00,0.000e+00,1.035e-02,2.945e+01,2.945e+01,1.035e-02,2.945e+01 +13356000,2.950e+01,3.900e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.946e+01,0.000e+00,0.000e+00,1.035e-02,2.950e+01,2.950e+01,1.035e-02,2.950e+01 +13359600,2.976e+01,3.842e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.970e+01,0.000e+00,0.000e+00,1.035e-02,2.976e+01,2.976e+01,1.035e-02,2.976e+01 +13363200,2.989e+01,3.812e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.940e+01,0.000e+00,0.000e+00,1.035e-02,2.989e+01,2.989e+01,1.035e-02,2.989e+01 +13366800,2.985e+01,3.818e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.884e+01,0.000e+00,0.000e+00,1.035e-02,2.985e+01,2.985e+01,1.035e-02,2.985e+01 +13370400,2.971e+01,3.846e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.749e+01,0.000e+00,0.000e+00,1.035e-02,2.971e+01,2.971e+01,1.035e-02,2.971e+01 +13374000,2.948e+01,3.898e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.640e+01,0.000e+00,0.000e+00,1.035e-02,2.949e+01,2.949e+01,1.035e-02,2.949e+01 +13377600,2.919e+01,3.968e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.524e+01,0.000e+00,0.000e+00,1.035e-02,2.919e+01,2.919e+01,1.035e-02,2.919e+01 +13381200,2.889e+01,4.038e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.303e+01,0.000e+00,0.000e+00,1.035e-02,2.890e+01,2.890e+01,1.035e-02,2.890e+01 +13384800,2.859e+01,4.114e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.028e+01,0.000e+00,0.000e+00,1.035e-02,2.860e+01,2.860e+01,1.035e-02,2.860e+01 +13388400,2.822e+01,4.204e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.804e+01,0.000e+00,0.000e+00,1.035e-02,2.822e+01,2.822e+01,1.035e-02,2.822e+01 +13392000,2.786e+01,4.289e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.720e+01,0.000e+00,0.000e+00,1.035e-02,2.787e+01,2.787e+01,1.035e-02,2.787e+01 +13395600,2.761e+01,4.351e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.776e+01,0.000e+00,0.000e+00,1.035e-02,2.761e+01,2.761e+01,1.035e-02,2.761e+01 +13399200,2.744e+01,4.395e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.805e+01,0.000e+00,0.000e+00,1.035e-02,2.744e+01,2.744e+01,1.035e-02,2.744e+01 +13402800,2.722e+01,4.454e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.805e+01,0.000e+00,0.000e+00,1.035e-02,2.722e+01,2.722e+01,1.035e-02,2.722e+01 +13406400,2.703e+01,4.496e+01,5.543e+01,1.435e-05,2.044e+01,4.804e-03,1.830e+01,3.547e-02,3.547e-02,1.034e-02,2.703e+01,2.703e+01,9.741e-03,2.929e+01 +13410000,2.692e+01,4.498e+01,6.508e+01,1.685e-05,2.399e+01,5.662e-03,1.805e+01,4.180e-02,4.180e-02,1.027e-02,2.692e+01,2.692e+01,9.678e-03,2.917e+01 +13413600,2.700e+01,4.472e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.750e+01,0.000e+00,0.000e+00,1.026e-02,2.700e+01,2.700e+01,1.026e-02,2.700e+01 +13417200,2.726e+01,4.428e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.720e+01,0.000e+00,0.000e+00,1.030e-02,2.725e+01,2.725e+01,1.030e-02,2.725e+01 +13420800,2.745e+01,4.485e+01,1.178e+02,3.045e-05,4.361e+01,9.982e-03,1.695e+01,7.369e-02,7.369e-02,1.055e-02,2.744e+01,2.744e+01,1.004e-02,2.936e+01 +13424400,2.824e+01,4.491e+01,4.152e+02,1.070e-04,1.546e+02,3.400e-02,1.670e+01,2.510e-01,2.510e-01,1.106e-02,2.822e+01,2.822e+01,9.960e-03,3.238e+01 +13428000,2.907e+01,4.495e+01,7.647e+02,1.964e-04,2.868e+02,6.042e-02,1.695e+01,4.461e-01,4.461e-01,1.162e-02,2.906e+01,2.906e+01,9.891e-03,3.564e+01 +13431600,2.971e+01,4.496e+01,8.227e+02,2.105e-04,3.108e+02,6.334e-02,1.832e+01,4.677e-01,4.677e-01,1.207e-02,2.970e+01,2.970e+01,1.041e-02,3.602e+01 +13435200,3.027e+01,4.500e+01,1.035e+03,2.637e-04,3.937e+02,7.780e-02,2.026e+01,5.744e-01,5.744e-01,1.249e-02,3.027e+01,3.027e+01,1.040e-02,3.825e+01 +13438800,3.030e+01,4.504e+01,1.009e+03,2.572e-04,3.837e+02,7.572e-02,2.054e+01,5.590e-01,5.590e-01,1.252e-02,3.030e+01,3.030e+01,1.048e-02,3.808e+01 +13442400,3.040e+01,4.504e+01,1.082e+03,2.756e-04,4.120e+02,8.093e-02,2.030e+01,5.975e-01,5.975e-01,1.259e-02,3.039e+01,3.039e+01,1.038e-02,3.884e+01 +13446000,3.088e+01,4.500e+01,1.031e+03,2.614e-04,3.956e+02,7.572e-02,2.060e+01,5.590e-01,5.590e-01,1.294e-02,3.087e+01,3.087e+01,1.093e-02,3.859e+01 +13449600,3.130e+01,4.504e+01,1.234e+03,3.117e-04,4.767e+02,8.913e-02,2.085e+01,6.580e-01,6.580e-01,1.328e-02,3.129e+01,3.129e+01,1.072e-02,4.115e+01 +13453200,3.127e+01,4.506e+01,1.092e+03,2.761e-04,4.214e+02,7.890e-02,2.024e+01,5.825e-01,5.825e-01,1.328e-02,3.128e+01,3.128e+01,1.094e-02,4.024e+01 +13456800,3.077e+01,4.500e+01,8.482e+02,2.154e-04,3.250e+02,6.247e-02,1.859e+01,4.612e-01,4.612e-01,1.288e-02,3.078e+01,3.078e+01,1.110e-02,3.760e+01 +13460400,3.011e+01,4.498e+01,6.219e+02,1.587e-04,2.360e+02,4.704e-02,1.668e+01,3.473e-01,3.473e-01,1.239e-02,3.012e+01,3.012e+01,1.104e-02,3.527e+01 +13464000,2.936e+01,4.500e+01,7.228e+02,1.854e-04,2.717e+02,5.632e-02,1.499e+01,4.158e-01,4.158e-01,1.186e-02,2.938e+01,2.938e+01,1.033e-02,3.521e+01 +13467600,2.867e+01,4.497e+01,5.202e+02,1.339e-04,1.942e+02,4.176e-02,1.384e+01,3.083e-01,3.083e-01,1.138e-02,2.868e+01,2.868e+01,1.021e-02,3.313e+01 +13471200,2.813e+01,4.494e+01,4.108e+02,1.060e-04,1.526e+02,3.378e-02,1.305e+01,2.494e-01,2.494e-01,1.101e-02,2.814e+01,2.814e+01,1.012e-02,3.150e+01 +13474800,2.768e+01,4.494e+01,3.522e+02,9.102e-05,1.304e+02,2.957e-02,1.280e+01,2.183e-01,2.183e-01,1.072e-02,2.768e+01,2.768e+01,9.641e-03,3.175e+01 +13478400,2.729e+01,4.495e+01,2.857e+02,7.393e-05,1.055e+02,2.443e-02,1.280e+01,1.804e-01,1.804e-01,1.048e-02,2.729e+01,2.729e+01,9.568e-03,3.072e+01 +13482000,2.692e+01,4.497e+01,2.885e+02,7.472e-05,1.063e+02,2.511e-02,1.280e+01,1.854e-01,1.854e-01,1.026e-02,2.692e+01,2.692e+01,9.363e-03,3.029e+01 +13485600,2.656e+01,4.496e+01,2.558e+02,6.631e-05,9.408e+01,2.266e-02,1.250e+01,1.673e-01,1.673e-01,1.004e-02,2.657e+01,2.657e+01,9.261e-03,2.951e+01 +13489200,2.620e+01,4.496e+01,2.972e+02,7.708e-05,1.091e+02,2.681e-02,1.164e+01,1.979e-01,1.979e-01,9.827e-03,2.620e+01,2.620e+01,8.964e-03,2.945e+01 +13492800,2.582e+01,4.497e+01,2.627e+02,6.815e-05,9.631e+01,2.416e-02,1.110e+01,1.784e-01,1.784e-01,9.609e-03,2.583e+01,2.583e+01,8.810e-03,2.884e+01 +13496400,2.552e+01,4.497e+01,1.519e+02,3.941e-05,5.564e+01,1.418e-02,1.110e+01,1.047e-01,1.047e-01,9.429e-03,2.552e+01,2.552e+01,8.643e-03,2.848e+01 +13500000,2.553e+01,4.477e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.196e+01,0.000e+00,0.000e+00,9.388e-03,2.553e+01,2.553e+01,9.388e-03,2.553e+01 +13503600,2.594e+01,4.388e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.422e+01,0.000e+00,0.000e+00,9.428e-03,2.593e+01,2.593e+01,9.428e-03,2.593e+01 +13507200,2.676e+01,4.295e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.784e+01,0.000e+00,0.000e+00,9.682e-03,2.674e+01,2.674e+01,9.682e-03,2.674e+01 +13510800,2.785e+01,4.315e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.168e+01,0.000e+00,0.000e+00,1.037e-02,2.783e+01,2.783e+01,1.037e-02,2.783e+01 +13514400,2.880e+01,4.458e+01,1.475e+02,3.786e-05,5.539e+01,1.168e-02,2.416e+01,8.622e-02,8.622e-02,1.135e-02,2.879e+01,2.879e+01,1.086e-02,3.063e+01 +13518000,2.982e+01,4.489e+01,5.103e+02,1.304e-04,1.932e+02,3.913e-02,2.642e+01,2.889e-01,2.889e-01,1.214e-02,2.981e+01,2.981e+01,1.103e-02,3.404e+01 +13521600,3.070e+01,4.493e+01,7.429e+02,1.887e-04,2.845e+02,5.500e-02,2.836e+01,4.061e-01,4.061e-01,1.280e-02,3.068e+01,3.068e+01,1.109e-02,3.725e+01 +13525200,3.110e+01,4.494e+01,6.726e+02,1.703e-04,2.590e+02,4.904e-02,2.976e+01,3.621e-01,3.621e-01,1.312e-02,3.110e+01,3.110e+01,1.167e-02,3.665e+01 +13528800,3.155e+01,4.494e+01,8.325e+02,2.098e-04,3.231e+02,5.969e-02,3.085e+01,4.407e-01,4.407e-01,1.347e-02,3.154e+01,3.154e+01,1.171e-02,3.831e+01 +13532400,3.224e+01,4.499e+01,1.041e+03,2.604e-04,4.092e+02,7.269e-02,3.141e+01,5.367e-01,5.367e-01,1.404e-02,3.223e+01,3.223e+01,1.189e-02,4.056e+01 +13536000,3.278e+01,4.502e+01,1.176e+03,2.924e-04,4.670e+02,8.045e-02,3.195e+01,5.940e-01,5.940e-01,1.451e-02,3.277e+01,3.277e+01,1.227e-02,4.151e+01 +13539600,3.298e+01,4.501e+01,1.027e+03,2.547e-04,4.095e+02,6.976e-02,3.108e+01,5.150e-01,5.150e-01,1.468e-02,3.298e+01,3.298e+01,1.267e-02,4.082e+01 +13543200,3.269e+01,4.496e+01,7.049e+02,1.754e-04,2.795e+02,4.840e-02,2.944e+01,3.573e-01,3.573e-01,1.443e-02,3.269e+01,3.269e+01,1.304e-02,3.811e+01 +13546800,3.220e+01,4.495e+01,5.155e+02,1.290e-04,2.024e+02,3.604e-02,2.778e+01,2.661e-01,2.661e-01,1.404e-02,3.221e+01,3.221e+01,1.290e-02,3.659e+01 +13550400,3.168e+01,4.496e+01,5.193e+02,1.307e-04,2.021e+02,3.700e-02,2.614e+01,2.732e-01,2.732e-01,1.362e-02,3.169e+01,3.169e+01,1.239e-02,3.646e+01 +13554000,3.126e+01,4.491e+01,3.450e+02,8.716e-05,1.334e+02,2.497e-02,2.616e+01,1.844e-01,1.844e-01,1.327e-02,3.126e+01,3.126e+01,1.234e-02,3.484e+01 +13557600,3.101e+01,4.495e+01,2.023e+02,5.122e-05,7.790e+01,1.480e-02,2.695e+01,1.093e-01,1.093e-01,1.308e-02,3.101e+01,3.101e+01,1.222e-02,3.433e+01 +13561200,3.083e+01,4.496e+01,1.649e+02,4.182e-05,6.334e+01,1.215e-02,2.695e+01,8.967e-02,8.967e-02,1.294e-02,3.083e+01,3.083e+01,1.208e-02,3.413e+01 +13564800,3.066e+01,4.496e+01,1.885e+02,4.786e-05,7.219e+01,1.397e-02,2.614e+01,1.032e-01,1.032e-01,1.281e-02,3.066e+01,3.066e+01,1.184e-02,3.438e+01 +13568400,3.046e+01,4.495e+01,1.876e+02,4.773e-05,7.165e+01,1.402e-02,2.474e+01,1.035e-01,1.035e-01,1.266e-02,3.046e+01,3.046e+01,1.181e-02,3.372e+01 +13572000,3.024e+01,4.496e+01,1.903e+02,4.849e-05,7.247e+01,1.434e-02,2.390e+01,1.059e-01,1.059e-01,1.251e-02,3.024e+01,3.024e+01,1.166e-02,3.347e+01 +13575600,3.006e+01,4.497e+01,1.359e+02,3.467e-05,5.163e+01,1.031e-02,2.415e+01,7.615e-02,7.615e-02,1.238e-02,3.006e+01,3.006e+01,1.148e-02,3.348e+01 +13579200,2.992e+01,4.497e+01,1.220e+02,3.114e-05,4.624e+01,9.308e-03,2.384e+01,6.872e-02,6.872e-02,1.228e-02,2.993e+01,2.993e+01,1.150e-02,3.290e+01 +13582800,2.978e+01,4.497e+01,1.332e+02,3.404e-05,5.041e+01,1.022e-02,2.305e+01,7.544e-02,7.544e-02,1.217e-02,2.978e+01,2.978e+01,1.129e-02,3.317e+01 +13586400,2.970e+01,4.499e+01,3.272e+01,8.366e-06,1.237e+01,2.519e-03,2.305e+01,1.860e-02,1.860e-02,1.212e-02,2.970e+01,2.970e+01,1.129e-02,3.287e+01 +13590000,2.974e+01,4.498e+01,5.113e+01,1.307e-05,1.935e+01,3.932e-03,2.416e+01,2.903e-02,2.903e-02,1.214e-02,2.974e+01,2.974e+01,1.114e-02,3.354e+01 +13593600,3.011e+01,4.493e+01,2.096e+02,5.343e-05,7.975e+01,1.587e-02,2.530e+01,1.172e-01,1.172e-01,1.238e-02,3.010e+01,3.010e+01,1.115e-02,3.479e+01 +13597200,3.088e+01,4.491e+01,6.255e+02,1.585e-04,2.405e+02,4.594e-02,2.499e+01,3.392e-01,3.392e-01,1.294e-02,3.087e+01,3.087e+01,1.162e-02,3.594e+01 +13600800,3.163e+01,4.497e+01,9.423e+02,2.373e-04,3.663e+02,6.730e-02,2.415e+01,4.969e-01,4.969e-01,1.354e-02,3.162e+01,3.162e+01,1.166e-02,3.887e+01 +13604400,3.210e+01,4.505e+01,1.373e+03,3.440e-04,5.382e+02,9.624e-02,2.222e+01,7.106e-01,7.106e-01,1.394e-02,3.210e+01,3.210e+01,1.120e-02,4.271e+01 +13608000,3.234e+01,4.508e+01,1.451e+03,3.628e-04,5.713e+02,1.009e-01,2.060e+01,7.446e-01,7.446e-01,1.414e-02,3.233e+01,3.233e+01,1.133e-02,4.327e+01 +13611600,3.241e+01,4.502e+01,9.524e+02,2.379e-04,3.752e+02,6.603e-02,2.172e+01,4.875e-01,4.875e-01,1.419e-02,3.241e+01,3.241e+01,1.221e-02,4.011e+01 +13615200,3.265e+01,4.503e+01,1.190e+03,2.964e-04,4.711e+02,8.178e-02,2.336e+01,6.038e-01,6.038e-01,1.438e-02,3.264e+01,3.264e+01,1.214e-02,4.133e+01 +13618800,3.311e+01,4.505e+01,1.321e+03,3.272e-04,5.284e+02,8.929e-02,2.390e+01,6.592e-01,6.592e-01,1.477e-02,3.310e+01,3.310e+01,1.215e-02,4.337e+01 +13622400,3.356e+01,4.506e+01,1.299e+03,3.197e-04,5.247e+02,8.636e-02,2.476e+01,6.376e-01,6.376e-01,1.517e-02,3.355e+01,3.355e+01,1.264e-02,4.350e+01 +13626000,3.377e+01,4.500e+01,1.005e+03,2.464e-04,4.080e+02,6.632e-02,2.560e+01,4.896e-01,4.896e-01,1.535e-02,3.377e+01,3.377e+01,1.337e-02,4.160e+01 +13629600,3.351e+01,4.496e+01,7.333e+02,1.805e-04,2.959e+02,4.883e-02,2.616e+01,3.605e-01,3.605e-01,1.511e-02,3.352e+01,3.352e+01,1.363e-02,3.933e+01 +13633200,3.300e+01,4.496e+01,6.564e+02,1.626e-04,2.621e+02,4.453e-02,2.584e+01,3.288e-01,3.288e-01,1.466e-02,3.301e+01,3.301e+01,1.332e-02,3.824e+01 +13636800,3.243e+01,4.497e+01,6.049e+02,1.510e-04,2.387e+02,4.191e-02,2.444e+01,3.094e-01,3.094e-01,1.418e-02,3.244e+01,3.244e+01,1.292e-02,3.734e+01 +13640400,3.194e+01,4.492e+01,4.611e+02,1.157e-04,1.803e+02,3.254e-02,2.359e+01,2.402e-01,2.402e-01,1.376e-02,3.195e+01,3.195e+01,1.282e-02,3.562e+01 +13644000,3.154e+01,4.493e+01,3.970e+02,1.000e-04,1.541e+02,2.845e-02,2.330e+01,2.100e-01,2.100e-01,1.344e-02,3.154e+01,3.154e+01,1.238e-02,3.560e+01 +13647600,3.121e+01,4.493e+01,2.674e+02,6.757e-05,1.033e+02,1.941e-02,2.330e+01,1.433e-01,1.433e-01,1.319e-02,3.122e+01,3.122e+01,1.238e-02,3.434e+01 +13651200,3.097e+01,4.494e+01,1.997e+02,5.057e-05,7.683e+01,1.463e-02,2.330e+01,1.080e-01,1.080e-01,1.301e-02,3.097e+01,3.097e+01,1.214e-02,3.429e+01 +13654800,3.076e+01,4.495e+01,2.424e+02,6.150e-05,9.295e+01,1.791e-02,2.274e+01,1.322e-01,1.322e-01,1.284e-02,3.076e+01,3.076e+01,1.187e-02,3.449e+01 +13658400,3.052e+01,4.495e+01,2.117e+02,5.381e-05,8.090e+01,1.578e-02,2.195e+01,1.165e-01,1.165e-01,1.266e-02,3.053e+01,3.053e+01,1.186e-02,3.357e+01 +13662000,3.030e+01,4.496e+01,2.057e+02,5.237e-05,7.837e+01,1.546e-02,2.195e+01,1.141e-01,1.141e-01,1.250e-02,3.031e+01,3.031e+01,1.154e-02,3.397e+01 +13665600,3.013e+01,4.496e+01,1.724e+02,4.397e-05,6.554e+01,1.305e-02,2.195e+01,9.638e-02,9.638e-02,1.235e-02,3.013e+01,3.013e+01,1.151e-02,3.334e+01 +13669200,2.994e+01,4.497e+01,1.258e+02,3.211e-05,4.772e+01,9.583e-03,2.140e+01,7.075e-02,7.075e-02,1.222e-02,2.994e+01,2.994e+01,1.149e-02,3.271e+01 +13672800,3.003e+01,4.467e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.196e+01,0.000e+00,0.000e+00,1.219e-02,3.002e+01,3.002e+01,1.219e-02,3.002e+01 +13676400,3.049e+01,4.373e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.392e+01,0.000e+00,0.000e+00,1.224e-02,3.048e+01,3.048e+01,1.224e-02,3.048e+01 +13680000,3.114e+01,4.334e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.642e+01,0.000e+00,0.000e+00,1.259e-02,3.113e+01,3.113e+01,1.259e-02,3.113e+01 +13683600,3.193e+01,4.442e+01,1.369e+02,3.422e-05,5.385e+01,9.583e-03,2.836e+01,7.075e-02,7.075e-02,1.350e-02,3.191e+01,3.191e+01,1.308e-02,3.352e+01 +13687200,3.301e+01,4.488e+01,5.857e+02,1.450e-04,2.342e+02,3.975e-02,2.915e+01,2.935e-01,2.935e-01,1.452e-02,3.300e+01,3.300e+01,1.331e-02,3.775e+01 +13690800,3.390e+01,4.496e+01,1.049e+03,2.565e-04,4.275e+02,6.894e-02,3.001e+01,5.089e-01,5.089e-01,1.530e-02,3.389e+01,3.389e+01,1.332e-02,4.174e+01 +13694400,3.465e+01,4.498e+01,1.070e+03,2.584e-04,4.442e+02,6.838e-02,3.085e+01,5.049e-01,5.049e-01,1.598e-02,3.464e+01,3.464e+01,1.384e-02,4.321e+01 +13698000,3.504e+01,4.497e+01,9.509e+02,2.282e-04,3.987e+02,5.994e-02,3.222e+01,4.425e-01,4.425e-01,1.636e-02,3.504e+01,3.504e+01,1.458e-02,4.219e+01 +13701600,3.550e+01,4.498e+01,1.161e+03,2.757e-04,4.938e+02,7.186e-02,3.132e+01,5.305e-01,5.305e-01,1.678e-02,3.549e+01,3.549e+01,1.461e-02,4.433e+01 +13705200,3.589e+01,4.506e+01,2.068e+03,4.870e-04,8.905e+02,1.261e-01,2.686e+01,9.312e-01,9.312e-01,1.720e-02,3.589e+01,3.589e+01,1.353e-02,5.091e+01 +13708800,3.594e+01,4.502e+01,2.137e+03,5.024e-04,9.221e+02,1.302e-01,2.384e+01,9.611e-01,9.611e-01,1.722e-02,3.593e+01,3.593e+01,1.336e-02,5.177e+01 +13712400,3.577e+01,4.509e+01,1.551e+03,3.668e-04,6.645e+02,9.504e-02,2.386e+01,7.016e-01,7.016e-01,1.708e-02,3.577e+01,3.577e+01,1.425e-02,4.732e+01 +13716000,3.523e+01,4.505e+01,1.157e+03,2.765e-04,4.877e+02,7.228e-02,2.415e+01,5.337e-01,5.337e-01,1.655e-02,3.524e+01,3.524e+01,1.439e-02,4.399e+01 +13719600,3.453e+01,4.499e+01,8.753e+02,2.120e-04,3.621e+02,5.616e-02,2.192e+01,4.146e-01,4.146e-01,1.589e-02,3.455e+01,3.455e+01,1.425e-02,4.108e+01 +13723200,3.386e+01,4.496e+01,7.959e+02,1.949e-04,3.238e+02,5.237e-02,1.914e+01,3.867e-01,3.867e-01,1.527e-02,3.387e+01,3.387e+01,1.365e-02,4.024e+01 +13726800,3.328e+01,4.493e+01,5.707e+02,1.409e-04,2.291e+02,3.837e-02,1.805e+01,2.832e-01,2.832e-01,1.475e-02,3.329e+01,3.329e+01,1.359e-02,3.785e+01 +13730400,3.279e+01,4.493e+01,5.410e+02,1.345e-04,2.150e+02,3.703e-02,1.668e+01,2.734e-01,2.734e-01,1.433e-02,3.280e+01,3.280e+01,1.312e-02,3.752e+01 +13734000,3.233e+01,4.491e+01,4.484e+02,1.121e-04,1.765e+02,3.121e-02,1.560e+01,2.305e-01,2.305e-01,1.395e-02,3.234e+01,3.234e+01,1.305e-02,3.582e+01 +13737600,3.193e+01,4.491e+01,3.835e+02,9.625e-05,1.499e+02,2.710e-02,1.585e+01,2.001e-01,2.001e-01,1.363e-02,3.194e+01,3.194e+01,1.257e-02,3.606e+01 +13741200,3.159e+01,4.493e+01,3.015e+02,7.594e-05,1.172e+02,2.158e-02,1.641e+01,1.593e-01,1.593e-01,1.337e-02,3.160e+01,3.160e+01,1.243e-02,3.522e+01 +13744800,3.128e+01,4.494e+01,2.803e+02,7.079e-05,1.084e+02,2.029e-02,1.670e+01,1.498e-01,1.498e-01,1.314e-02,3.129e+01,3.129e+01,1.227e-02,3.464e+01 +13748400,3.099e+01,4.494e+01,2.695e+02,6.824e-05,1.037e+02,1.972e-02,1.695e+01,1.456e-01,1.456e-01,1.293e-02,3.100e+01,3.100e+01,1.207e-02,3.432e+01 +13752000,3.072e+01,4.495e+01,2.547e+02,6.463e-05,9.762e+01,1.883e-02,1.720e+01,1.390e-01,1.390e-01,1.273e-02,3.073e+01,3.073e+01,1.187e-02,3.402e+01 +13755600,3.047e+01,4.496e+01,1.951e+02,4.960e-05,7.451e+01,1.456e-02,1.776e+01,1.075e-01,1.075e-01,1.255e-02,3.047e+01,3.047e+01,1.170e-02,3.373e+01 +13759200,3.032e+01,4.498e+01,8.350e+01,2.126e-05,3.184e+01,6.270e-03,1.861e+01,4.629e-02,4.629e-02,1.244e-02,3.032e+01,3.032e+01,1.160e-02,3.356e+01 +13762800,3.033e+01,4.498e+01,4.815e+01,1.226e-05,1.837e+01,3.617e-03,1.915e+01,2.670e-02,2.670e-02,1.245e-02,3.033e+01,3.033e+01,1.160e-02,3.357e+01 +13766400,3.072e+01,4.493e+01,1.919e+02,4.868e-05,7.363e+01,1.419e-02,2.001e+01,1.048e-01,1.048e-01,1.271e-02,3.071e+01,3.071e+01,1.168e-02,3.465e+01 +13770000,3.159e+01,4.489e+01,5.448e+02,1.371e-04,2.120e+02,3.896e-02,2.060e+01,2.877e-01,2.877e-01,1.334e-02,3.157e+01,3.157e+01,1.205e-02,3.655e+01 +13773600,3.245e+01,4.495e+01,9.058e+02,2.261e-04,3.574e+02,6.279e-02,2.172e+01,4.636e-01,4.636e-01,1.405e-02,3.243e+01,3.243e+01,1.219e-02,3.966e+01 +13777200,3.312e+01,4.498e+01,1.131e+03,2.799e-04,4.527e+02,7.648e-02,2.448e+01,5.646e-01,5.646e-01,1.462e-02,3.311e+01,3.311e+01,1.243e-02,4.171e+01 +13780800,3.377e+01,4.499e+01,1.109e+03,2.718e-04,4.505e+02,7.318e-02,2.641e+01,5.403e-01,5.403e-01,1.518e-02,3.376e+01,3.376e+01,1.295e-02,4.256e+01 +13784400,3.407e+01,4.499e+01,9.929e+02,2.424e-04,4.059e+02,6.483e-02,2.614e+01,4.786e-01,4.786e-01,1.546e-02,3.407e+01,3.407e+01,1.353e-02,4.173e+01 +13788000,3.429e+01,4.504e+01,1.352e+03,3.287e-04,5.560e+02,8.751e-02,2.530e+01,6.461e-01,6.461e-01,1.568e-02,3.429e+01,3.429e+01,1.311e-02,4.450e+01 +13791600,3.482e+01,4.505e+01,1.311e+03,3.161e-04,5.462e+02,8.329e-02,2.470e+01,6.149e-01,6.149e-01,1.616e-02,3.481e+01,3.481e+01,1.363e-02,4.495e+01 +13795200,3.529e+01,4.507e+01,1.582e+03,3.777e-04,6.680e+02,9.871e-02,2.440e+01,7.288e-01,7.288e-01,1.663e-02,3.528e+01,3.528e+01,1.370e-02,4.714e+01 +13798800,3.528e+01,4.508e+01,1.520e+03,3.629e-04,6.421e+02,9.481e-02,2.384e+01,6.999e-01,6.999e-01,1.666e-02,3.529e+01,3.529e+01,1.366e-02,4.741e+01 +13802400,3.474e+01,4.506e+01,1.148e+03,2.770e-04,4.772e+02,7.305e-02,2.218e+01,5.393e-01,5.393e-01,1.615e-02,3.475e+01,3.475e+01,1.394e-02,4.360e+01 +13806000,3.398e+01,4.500e+01,8.891e+02,2.173e-04,3.627e+02,5.817e-02,2.085e+01,4.295e-01,4.295e-01,1.545e-02,3.399e+01,3.399e+01,1.371e-02,4.089e+01 +13809600,3.330e+01,4.496e+01,7.105e+02,1.754e-04,2.855e+02,4.768e-02,2.029e+01,3.520e-01,3.520e-01,1.485e-02,3.331e+01,3.331e+01,1.338e-02,3.908e+01 +13813200,3.279e+01,4.494e+01,4.774e+02,1.186e-04,1.897e+02,3.267e-02,2.030e+01,2.412e-01,2.412e-01,1.440e-02,3.279e+01,3.279e+01,1.326e-02,3.727e+01 +13816800,3.238e+01,4.491e+01,4.127e+02,1.031e-04,1.627e+02,2.869e-02,2.029e+01,2.118e-01,2.118e-01,1.407e-02,3.239e+01,3.239e+01,1.305e-02,3.634e+01 +13820400,3.200e+01,4.492e+01,3.509e+02,8.800e-05,1.374e+02,2.473e-02,2.000e+01,1.826e-01,1.826e-01,1.377e-02,3.201e+01,3.201e+01,1.282e-02,3.568e+01 +13824000,3.167e+01,4.493e+01,2.774e+02,6.978e-05,1.080e+02,1.978e-02,2.030e+01,1.460e-01,1.460e-01,1.352e-02,3.167e+01,3.167e+01,1.264e-02,3.508e+01 +13827600,3.139e+01,4.496e+01,2.412e+02,6.085e-05,9.348e+01,1.739e-02,2.085e+01,1.284e-01,1.284e-01,1.333e-02,3.140e+01,3.140e+01,1.239e-02,3.499e+01 +13831200,3.117e+01,4.495e+01,2.069e+02,5.230e-05,7.984e+01,1.504e-02,2.110e+01,1.111e-01,1.111e-01,1.316e-02,3.117e+01,3.117e+01,1.235e-02,3.429e+01 +13834800,3.096e+01,4.497e+01,1.406e+02,3.562e-05,5.413e+01,1.030e-02,2.196e+01,7.606e-02,7.606e-02,1.301e-02,3.096e+01,3.096e+01,1.209e-02,3.450e+01 +13838400,3.082e+01,4.497e+01,1.398e+02,3.545e-05,5.369e+01,1.030e-02,2.250e+01,7.606e-02,7.606e-02,1.292e-02,3.082e+01,3.082e+01,1.200e-02,3.434e+01 +13842000,3.067e+01,4.497e+01,1.169e+02,2.968e-05,4.480e+01,8.664e-03,2.220e+01,6.396e-02,6.396e-02,1.281e-02,3.067e+01,3.067e+01,1.201e-02,3.373e+01 +13845600,3.055e+01,4.499e+01,6.561e+01,1.667e-05,2.510e+01,4.884e-03,2.220e+01,3.605e-02,3.605e-02,1.274e-02,3.055e+01,3.055e+01,1.177e-02,3.425e+01 +13849200,3.048e+01,4.499e+01,3.718e+01,9.451e-06,1.421e+01,2.775e-03,2.276e+01,2.049e-02,2.049e-02,1.270e-02,3.048e+01,3.048e+01,1.179e-02,3.395e+01 +13852800,3.044e+01,4.499e+01,7.432e+01,1.890e-05,2.838e+01,5.557e-03,2.162e+01,4.103e-02,4.103e-02,1.266e-02,3.044e+01,3.044e+01,1.170e-02,3.413e+01 +13856400,3.036e+01,4.498e+01,1.028e+02,2.616e-05,3.921e+01,7.709e-03,1.914e+01,5.691e-02,5.691e-02,1.259e-02,3.036e+01,3.036e+01,1.174e-02,3.361e+01 +13860000,3.024e+01,4.496e+01,1.851e+02,4.717e-05,7.048e+01,1.396e-02,1.693e+01,1.030e-01,1.030e-01,1.248e-02,3.024e+01,3.024e+01,1.158e-02,3.368e+01 +13863600,3.007e+01,4.496e+01,1.291e+02,3.294e-05,4.906e+01,9.796e-03,1.585e+01,7.232e-02,7.232e-02,1.235e-02,3.008e+01,3.008e+01,1.156e-02,3.307e+01 +13867200,2.993e+01,4.497e+01,1.288e+02,3.288e-05,4.883e+01,9.823e-03,1.610e+01,7.252e-02,7.252e-02,1.225e-02,2.994e+01,2.994e+01,1.136e-02,3.334e+01 +13870800,2.981e+01,4.497e+01,1.205e+02,3.078e-05,4.560e+01,9.236e-03,1.610e+01,6.819e-02,6.819e-02,1.215e-02,2.981e+01,2.981e+01,1.127e-02,3.319e+01 +13874400,2.968e+01,4.497e+01,1.528e+02,3.908e-05,5.775e+01,1.178e-02,1.585e+01,8.696e-02,8.696e-02,1.205e-02,2.968e+01,2.968e+01,1.111e-02,3.326e+01 +13878000,2.953e+01,4.497e+01,1.619e+02,4.146e-05,6.109e+01,1.256e-02,1.585e+01,9.274e-02,9.274e-02,1.193e-02,2.953e+01,2.953e+01,1.110e-02,3.267e+01 +13881600,2.932e+01,4.495e+01,2.439e+02,6.254e-05,9.176e+01,1.908e-02,1.610e+01,1.409e-01,1.409e-01,1.177e-02,2.933e+01,2.933e+01,1.095e-02,3.244e+01 +13885200,2.909e+01,4.496e+01,1.911e+02,4.905e-05,7.170e+01,1.509e-02,1.610e+01,1.114e-01,1.114e-01,1.160e-02,2.909e+01,2.909e+01,1.079e-02,3.218e+01 +13888800,2.888e+01,4.495e+01,2.160e+02,5.553e-05,8.088e+01,1.722e-02,1.610e+01,1.271e-01,1.271e-01,1.145e-02,2.889e+01,2.889e+01,1.064e-02,3.195e+01 +13892400,2.862e+01,4.495e+01,2.740e+02,7.053e-05,1.023e+02,2.208e-02,1.610e+01,1.630e-01,1.630e-01,1.126e-02,2.862e+01,2.862e+01,1.046e-02,3.165e+01 +13896000,2.831e+01,4.495e+01,2.612e+02,6.733e-05,9.724e+01,2.133e-02,1.610e+01,1.574e-01,1.574e-01,1.105e-02,2.832e+01,2.832e+01,1.021e-02,3.150e+01 +13899600,2.798e+01,4.495e+01,3.345e+02,8.636e-05,1.242e+02,2.772e-02,1.498e+01,2.047e-01,2.047e-01,1.082e-02,2.799e+01,2.799e+01,9.941e-03,3.133e+01 +13903200,2.756e+01,4.495e+01,3.573e+02,9.238e-05,1.322e+02,3.016e-02,1.278e+01,2.227e-01,2.227e-01,1.055e-02,2.757e+01,2.757e+01,9.629e-03,3.103e+01 +13906800,2.711e+01,4.496e+01,3.415e+02,8.841e-05,1.260e+02,2.943e-02,1.195e+01,2.173e-01,2.173e-01,1.027e-02,2.712e+01,2.712e+01,9.322e-03,3.071e+01 +13910400,2.675e+01,4.497e+01,2.374e+02,6.151e-05,8.740e+01,2.083e-02,1.276e+01,1.538e-01,1.538e-01,1.005e-02,2.676e+01,2.676e+01,9.218e-03,2.991e+01 +13914000,2.646e+01,4.497e+01,2.202e+02,5.708e-05,8.095e+01,1.961e-02,1.330e+01,1.448e-01,1.448e-01,9.881e-03,2.646e+01,2.646e+01,9.056e-03,2.957e+01 +13917600,2.616e+01,4.497e+01,2.381e+02,6.175e-05,8.741e+01,2.152e-02,1.330e+01,1.589e-01,1.589e-01,9.709e-03,2.617e+01,2.617e+01,8.848e-03,2.941e+01 +13921200,2.586e+01,4.497e+01,2.088e+02,5.417e-05,7.657e+01,1.917e-02,1.330e+01,1.415e-01,1.415e-01,9.534e-03,2.587e+01,2.587e+01,8.781e-03,2.871e+01 +13924800,2.557e+01,4.497e+01,2.229e+02,5.784e-05,8.168e+01,2.079e-02,1.330e+01,1.535e-01,1.535e-01,9.366e-03,2.557e+01,2.557e+01,8.532e-03,2.872e+01 +13928400,2.529e+01,4.498e+01,1.577e+02,4.092e-05,5.774e+01,1.491e-02,1.305e+01,1.101e-01,1.101e-01,9.212e-03,2.530e+01,2.530e+01,8.390e-03,2.840e+01 +13932000,2.518e+01,4.495e+01,2.841e+01,7.371e-06,1.040e+01,2.707e-03,1.422e+01,1.999e-02,1.999e-02,9.140e-03,2.518e+01,2.518e+01,8.731e-03,2.672e+01 +13935600,2.542e+01,4.433e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.672e+01,0.000e+00,0.000e+00,9.136e-03,2.542e+01,2.542e+01,9.136e-03,2.542e+01 +13939200,2.582e+01,4.330e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.861e+01,0.000e+00,0.000e+00,9.136e-03,2.581e+01,2.581e+01,9.136e-03,2.581e+01 +13942800,2.633e+01,4.201e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.026e+01,0.000e+00,0.000e+00,9.136e-03,2.632e+01,2.632e+01,9.136e-03,2.632e+01 +13946400,2.681e+01,4.084e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.196e+01,0.000e+00,0.000e+00,9.136e-03,2.680e+01,2.680e+01,9.136e-03,2.680e+01 +13950000,2.709e+01,4.017e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.305e+01,0.000e+00,0.000e+00,9.136e-03,2.708e+01,2.708e+01,9.136e-03,2.708e+01 +13953600,2.735e+01,3.955e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.386e+01,0.000e+00,0.000e+00,9.136e-03,2.735e+01,2.735e+01,9.136e-03,2.735e+01 +13957200,2.760e+01,3.897e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.470e+01,0.000e+00,0.000e+00,9.136e-03,2.759e+01,2.759e+01,9.136e-03,2.759e+01 +13960800,2.785e+01,3.838e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.530e+01,0.000e+00,0.000e+00,9.136e-03,2.785e+01,2.785e+01,9.136e-03,2.785e+01 +13964400,2.799e+01,3.807e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.560e+01,0.000e+00,0.000e+00,9.136e-03,2.798e+01,2.798e+01,9.136e-03,2.798e+01 +13968000,2.803e+01,3.795e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.560e+01,0.000e+00,0.000e+00,9.136e-03,2.803e+01,2.803e+01,9.136e-03,2.803e+01 +13971600,2.795e+01,3.811e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.530e+01,0.000e+00,0.000e+00,9.136e-03,2.795e+01,2.795e+01,9.136e-03,2.795e+01 +13975200,2.786e+01,3.831e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.470e+01,0.000e+00,0.000e+00,9.136e-03,2.786e+01,2.786e+01,9.136e-03,2.786e+01 +13978800,2.761e+01,3.889e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.384e+01,0.000e+00,0.000e+00,9.136e-03,2.761e+01,2.761e+01,9.136e-03,2.761e+01 +13982400,2.720e+01,3.984e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.162e+01,0.000e+00,0.000e+00,9.136e-03,2.721e+01,2.721e+01,9.136e-03,2.721e+01 +13986000,2.673e+01,4.099e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.802e+01,0.000e+00,0.000e+00,9.136e-03,2.674e+01,2.674e+01,9.136e-03,2.674e+01 +13989600,2.625e+01,4.215e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.585e+01,0.000e+00,0.000e+00,9.136e-03,2.626e+01,2.626e+01,9.136e-03,2.626e+01 +13993200,2.583e+01,4.321e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.499e+01,0.000e+00,0.000e+00,9.136e-03,2.584e+01,2.584e+01,9.136e-03,2.584e+01 +13996800,2.552e+01,4.401e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.440e+01,0.000e+00,0.000e+00,9.136e-03,2.553e+01,2.553e+01,9.136e-03,2.553e+01 +14000400,2.523e+01,4.477e+01,3.296e+01,8.552e-06,1.207e+01,3.148e-03,1.471e+01,2.324e-02,2.324e-02,9.133e-03,2.523e+01,2.523e+01,8.816e-03,2.643e+01 +14004000,2.501e+01,4.498e+01,1.652e+02,4.286e-05,6.046e+01,1.590e-02,1.414e+01,1.174e-01,1.174e-01,9.057e-03,2.501e+01,2.501e+01,8.203e-03,2.824e+01 +14007600,2.476e+01,4.498e+01,1.647e+02,4.275e-05,6.029e+01,1.607e-02,1.386e+01,1.186e-01,1.186e-01,8.923e-03,2.477e+01,2.477e+01,8.214e-03,2.745e+01 +14011200,2.451e+01,4.498e+01,2.002e+02,5.193e-05,7.323e+01,1.982e-02,1.359e+01,1.463e-01,1.463e-01,8.787e-03,2.451e+01,2.451e+01,8.000e-03,2.748e+01 +14014800,2.426e+01,4.498e+01,1.167e+02,3.027e-05,4.270e+01,1.171e-02,1.280e+01,8.645e-02,8.645e-02,8.648e-03,2.426e+01,2.426e+01,7.960e-03,2.686e+01 +14018400,2.430e+01,4.474e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.336e+01,0.000e+00,0.000e+00,8.616e-03,2.429e+01,2.429e+01,8.616e-03,2.429e+01 +14022000,2.473e+01,4.381e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.532e+01,0.000e+00,0.000e+00,8.652e-03,2.472e+01,2.472e+01,8.652e-03,2.472e+01 +14025600,2.548e+01,4.303e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.782e+01,0.000e+00,0.000e+00,8.880e-03,2.546e+01,2.546e+01,8.880e-03,2.546e+01 +14029200,2.628e+01,4.383e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.946e+01,0.000e+00,0.000e+00,9.490e-03,2.626e+01,2.626e+01,9.490e-03,2.626e+01 +14032800,2.715e+01,4.489e+01,3.476e+02,8.992e-05,1.284e+02,2.990e-02,2.086e+01,2.208e-01,2.208e-01,1.025e-02,2.714e+01,2.714e+01,9.398e-03,3.035e+01 +14036400,2.800e+01,4.494e+01,6.796e+02,1.754e-04,2.523e+02,5.627e-02,2.084e+01,4.155e-01,4.155e-01,1.079e-02,2.798e+01,2.798e+01,9.285e-03,3.367e+01 +14040000,2.843e+01,4.502e+01,1.044e+03,2.690e-04,3.886e+02,8.470e-02,1.944e+01,6.253e-01,6.253e-01,1.109e-02,2.843e+01,2.843e+01,8.869e-03,3.684e+01 +14043600,2.855e+01,4.496e+01,6.698e+02,1.726e-04,2.497e+02,5.412e-02,1.890e+01,3.995e-01,3.995e-01,1.115e-02,2.855e+01,2.855e+01,9.661e-03,3.418e+01 +14047200,2.899e+01,4.494e+01,6.784e+02,1.743e-04,2.542e+02,5.381e-02,2.058e+01,3.973e-01,3.973e-01,1.143e-02,2.897e+01,2.897e+01,1.008e-02,3.409e+01 +14050800,2.958e+01,4.499e+01,9.223e+02,2.362e-04,3.478e+02,7.135e-02,2.220e+01,5.268e-01,5.268e-01,1.187e-02,2.957e+01,2.957e+01,9.992e-03,3.671e+01 +14054400,3.002e+01,4.503e+01,1.089e+03,2.782e-04,4.129e+02,8.275e-02,2.220e+01,6.109e-01,6.109e-01,1.219e-02,3.001e+01,3.001e+01,9.779e-03,3.919e+01 +14058000,2.998e+01,4.507e+01,1.085e+03,2.775e-04,4.108e+02,8.247e-02,2.139e+01,6.089e-01,6.089e-01,1.217e-02,2.998e+01,2.998e+01,1.004e-02,3.810e+01 +14061600,2.936e+01,4.503e+01,8.394e+02,2.153e-04,3.156e+02,6.530e-02,1.999e+01,4.821e-01,4.821e-01,1.174e-02,2.937e+01,2.937e+01,1.004e-02,3.584e+01 +14065200,2.866e+01,4.499e+01,6.090e+02,1.568e-04,2.273e+02,4.888e-02,1.884e+01,3.609e-01,3.609e-01,1.126e-02,2.867e+01,2.867e+01,9.870e-03,3.393e+01 +14068800,2.805e+01,4.496e+01,4.860e+02,1.255e-04,1.804e+02,4.011e-02,1.774e+01,2.962e-01,2.962e-01,1.085e-02,2.806e+01,2.806e+01,9.699e-03,3.239e+01 +14072400,2.753e+01,4.494e+01,3.652e+02,9.444e-05,1.351e+02,3.085e-02,1.664e+01,2.278e-01,2.278e-01,1.051e-02,2.754e+01,2.754e+01,9.542e-03,3.120e+01 +14076000,2.713e+01,4.496e+01,2.984e+02,7.725e-05,1.101e+02,2.571e-02,1.585e+01,1.898e-01,1.898e-01,1.026e-02,2.714e+01,2.714e+01,9.314e-03,3.073e+01 +14079600,2.680e+01,4.497e+01,2.251e+02,5.831e-05,8.289e+01,1.971e-02,1.529e+01,1.455e-01,1.455e-01,1.007e-02,2.681e+01,2.681e+01,9.277e-03,2.979e+01 +14083200,2.651e+01,4.497e+01,2.240e+02,5.806e-05,8.237e+01,1.989e-02,1.500e+01,1.469e-01,1.469e-01,9.891e-03,2.651e+01,2.651e+01,9.015e-03,2.981e+01 +14086800,2.623e+01,4.497e+01,2.071e+02,5.371e-05,7.606e+01,1.866e-02,1.414e+01,1.377e-01,1.377e-01,9.728e-03,2.624e+01,2.624e+01,8.960e-03,2.913e+01 +14090400,2.593e+01,4.497e+01,2.325e+02,6.033e-05,8.530e+01,2.126e-02,1.330e+01,1.570e-01,1.570e-01,9.553e-03,2.593e+01,2.593e+01,8.702e-03,2.914e+01 +14094000,2.566e+01,4.498e+01,1.643e+02,4.263e-05,6.023e+01,1.524e-02,1.416e+01,1.125e-01,1.125e-01,9.401e-03,2.567e+01,2.567e+01,8.609e-03,2.865e+01 +14097600,2.546e+01,4.498e+01,1.364e+02,3.540e-05,4.998e+01,1.279e-02,1.530e+01,9.446e-02,9.446e-02,9.289e-03,2.547e+01,2.547e+01,8.505e-03,2.842e+01 +14101200,2.528e+01,4.499e+01,1.103e+02,2.863e-05,4.041e+01,1.045e-02,1.585e+01,7.712e-02,7.712e-02,9.188e-03,2.528e+01,2.528e+01,8.367e-03,2.838e+01 +14104800,2.519e+01,4.500e+01,2.132e+01,5.531e-06,7.809e+00,2.029e-03,1.610e+01,1.498e-02,1.498e-02,9.141e-03,2.519e+01,2.519e+01,8.369e-03,2.811e+01 +14108400,2.527e+01,4.496e+01,4.001e+00,1.038e-06,1.466e+00,3.809e-04,1.666e+01,2.812e-03,2.812e-03,9.169e-03,2.526e+01,2.526e+01,8.851e-03,2.646e+01 +14112000,2.584e+01,4.460e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.832e+01,0.000e+00,0.000e+00,9.404e-03,2.583e+01,2.583e+01,9.404e-03,2.583e+01 +14115600,2.681e+01,4.479e+01,1.812e+02,4.689e-05,6.689e+01,1.566e-02,2.026e+01,1.156e-01,1.156e-01,1.001e-02,2.680e+01,2.680e+01,9.461e-03,2.886e+01 +14119200,2.772e+01,4.492e+01,6.111e+02,1.579e-04,2.264e+02,5.121e-02,2.166e+01,3.781e-01,3.781e-01,1.060e-02,2.771e+01,2.771e+01,9.266e-03,3.276e+01 +14122800,2.843e+01,4.493e+01,7.083e+02,1.825e-04,2.639e+02,5.752e-02,2.220e+01,4.246e-01,4.246e-01,1.106e-02,2.842e+01,2.842e+01,9.579e-03,3.403e+01 +14126400,2.902e+01,4.499e+01,8.521e+02,2.190e-04,3.192e+02,6.746e-02,2.251e+01,4.980e-01,4.980e-01,1.147e-02,2.901e+01,2.901e+01,9.629e-03,3.598e+01 +14130000,2.916e+01,4.501e+01,8.167e+02,2.097e-04,3.063e+02,6.423e-02,2.250e+01,4.742e-01,4.742e-01,1.159e-02,2.917e+01,2.917e+01,9.845e-03,3.577e+01 +14133600,2.935e+01,4.500e+01,9.590e+02,2.460e-04,3.605e+02,7.488e-02,2.108e+01,5.528e-01,5.528e-01,1.170e-02,2.934e+01,2.934e+01,9.785e-03,3.662e+01 +14137200,2.985e+01,4.500e+01,9.520e+02,2.434e-04,3.601e+02,7.283e-02,2.112e+01,5.377e-01,5.377e-01,1.205e-02,2.984e+01,2.984e+01,1.015e-02,3.705e+01 +14140800,3.030e+01,4.503e+01,1.086e+03,2.768e-04,4.131e+02,8.154e-02,2.251e+01,6.020e-01,6.020e-01,1.238e-02,3.030e+01,3.030e+01,1.006e-02,3.915e+01 +14144400,3.040e+01,4.501e+01,9.050e+02,2.305e-04,3.449e+02,6.770e-02,2.280e+01,4.998e-01,4.998e-01,1.245e-02,3.040e+01,3.040e+01,1.064e-02,3.734e+01 +14148000,3.003e+01,4.497e+01,6.476e+02,1.653e-04,2.457e+02,4.912e-02,2.250e+01,3.626e-01,3.626e-01,1.219e-02,3.004e+01,3.004e+01,1.067e-02,3.581e+01 +14151600,2.952e+01,4.496e+01,5.045e+02,1.293e-04,1.901e+02,3.911e-02,2.195e+01,2.887e-01,2.887e-01,1.183e-02,2.953e+01,2.953e+01,1.078e-02,3.351e+01 +14155200,2.898e+01,4.496e+01,4.638e+02,1.192e-04,1.737e+02,3.677e-02,2.114e+01,2.715e-01,2.715e-01,1.145e-02,2.899e+01,2.899e+01,1.048e-02,3.268e+01 +14158800,2.847e+01,4.494e+01,3.882e+02,1.000e-04,1.447e+02,3.144e-02,2.029e+01,2.321e-01,2.321e-01,1.111e-02,2.847e+01,2.847e+01,1.010e-02,3.228e+01 +14162400,2.807e+01,4.494e+01,3.272e+02,8.443e-05,1.215e+02,2.699e-02,1.944e+01,1.992e-01,1.992e-01,1.084e-02,2.807e+01,2.807e+01,9.953e-03,3.142e+01 +14166000,2.772e+01,4.497e+01,2.487e+02,6.425e-05,9.213e+01,2.084e-02,1.859e+01,1.539e-01,1.539e-01,1.062e-02,2.772e+01,2.772e+01,9.700e-03,3.121e+01 +14169600,2.744e+01,4.497e+01,1.904e+02,4.924e-05,7.042e+01,1.617e-02,1.830e+01,1.194e-01,1.194e-01,1.046e-02,2.745e+01,2.745e+01,9.646e-03,3.051e+01 +14173200,2.718e+01,4.497e+01,2.075e+02,5.370e-05,7.660e+01,1.783e-02,1.805e+01,1.316e-01,1.316e-01,1.030e-02,2.719e+01,2.719e+01,9.401e-03,3.060e+01 +14176800,2.693e+01,4.498e+01,1.846e+02,4.781e-05,6.804e+01,1.606e-02,1.780e+01,1.186e-01,1.186e-01,1.015e-02,2.693e+01,2.693e+01,9.310e-03,3.012e+01 +14180400,2.671e+01,4.498e+01,1.586e+02,4.108e-05,5.837e+01,1.394e-02,1.780e+01,1.029e-01,1.029e-01,1.002e-02,2.671e+01,2.671e+01,9.184e-03,2.986e+01 +14184000,2.651e+01,4.498e+01,1.688e+02,4.375e-05,6.208e+01,1.500e-02,1.750e+01,1.108e-01,1.108e-01,9.901e-03,2.651e+01,2.651e+01,9.026e-03,2.981e+01 +14187600,2.630e+01,4.498e+01,1.188e+02,3.079e-05,4.363e+01,1.065e-02,1.750e+01,7.866e-02,7.866e-02,9.780e-03,2.631e+01,2.631e+01,9.010e-03,2.921e+01 +14191200,2.621e+01,4.499e+01,3.216e+01,8.337e-06,1.181e+01,2.900e-03,1.805e+01,2.141e-02,2.141e-02,9.720e-03,2.621e+01,2.621e+01,9.193e-03,2.819e+01 +14194800,2.634e+01,4.481e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.947e+01,0.000e+00,0.000e+00,9.754e-03,2.634e+01,2.634e+01,9.754e-03,2.634e+01 +14198400,2.689e+01,4.454e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.141e+01,0.000e+00,0.000e+00,1.001e-02,2.688e+01,2.688e+01,1.001e-02,2.688e+01 +14202000,2.785e+01,4.480e+01,1.692e+02,4.363e-05,6.296e+01,1.396e-02,2.306e+01,1.031e-01,1.031e-01,1.066e-02,2.783e+01,2.783e+01,1.014e-02,2.980e+01 +14205600,2.882e+01,4.492e+01,6.392e+02,1.644e-04,2.392e+02,5.106e-02,2.476e+01,3.770e-01,3.770e-01,1.133e-02,2.880e+01,2.880e+01,9.938e-03,3.409e+01 +14209200,2.952e+01,4.495e+01,7.828e+02,2.005e-04,2.950e+02,6.077e-02,2.616e+01,4.486e-01,4.486e-01,1.182e-02,2.950e+01,2.950e+01,1.017e-02,3.578e+01 +14212800,3.015e+01,4.498e+01,8.965e+02,2.287e-04,3.406e+02,6.778e-02,2.695e+01,5.004e-01,5.004e-01,1.227e-02,3.014e+01,3.014e+01,1.042e-02,3.722e+01 +14216400,3.039e+01,4.498e+01,7.886e+02,2.008e-04,3.005e+02,5.905e-02,2.776e+01,4.359e-01,4.359e-01,1.246e-02,3.039e+01,3.039e+01,1.082e-02,3.667e+01 +14220000,3.082e+01,4.492e+01,7.389e+02,1.874e-04,2.836e+02,5.443e-02,2.916e+01,4.019e-01,4.019e-01,1.276e-02,3.081e+01,3.081e+01,1.121e-02,3.675e+01 +14223600,3.152e+01,4.498e+01,9.441e+02,2.380e-04,3.663e+02,6.769e-02,3.000e+01,4.997e-01,4.997e-01,1.332e-02,3.151e+01,3.151e+01,1.138e-02,3.896e+01 +14227200,3.204e+01,4.505e+01,1.231e+03,3.087e-04,4.818e+02,8.649e-02,2.970e+01,6.385e-01,6.385e-01,1.375e-02,3.203e+01,3.203e+01,1.137e-02,4.124e+01 +14230800,3.215e+01,4.501e+01,9.927e+02,2.487e-04,3.893e+02,6.949e-02,2.970e+01,5.131e-01,5.131e-01,1.384e-02,3.215e+01,3.215e+01,1.187e-02,3.977e+01 +14234400,3.183e+01,4.496e+01,6.700e+02,1.684e-04,2.613e+02,4.745e-02,2.970e+01,3.503e-01,3.503e-01,1.358e-02,3.184e+01,3.184e+01,1.222e-02,3.709e+01 +14238000,3.133e+01,4.494e+01,5.021e+02,1.268e-04,1.943e+02,3.622e-02,2.915e+01,2.674e-01,2.674e-01,1.319e-02,3.134e+01,3.134e+01,1.203e-02,3.583e+01 +14241600,3.090e+01,4.492e+01,4.238e+02,1.074e-04,1.628e+02,3.112e-02,2.778e+01,2.298e-01,2.298e-01,1.285e-02,3.090e+01,3.090e+01,1.188e-02,3.465e+01 +14245200,3.052e+01,4.493e+01,3.147e+02,8.002e-05,1.202e+02,2.346e-02,2.614e+01,1.732e-01,1.732e-01,1.257e-02,3.052e+01,3.052e+01,1.171e-02,3.378e+01 +14248800,3.021e+01,4.495e+01,2.549e+02,6.495e-05,9.700e+01,1.922e-02,2.585e+01,1.419e-01,1.419e-01,1.235e-02,3.022e+01,3.022e+01,1.128e-02,3.430e+01 +14252400,3.000e+01,4.496e+01,1.491e+02,3.806e-05,5.660e+01,1.135e-02,2.610e+01,8.376e-02,8.376e-02,1.220e-02,3.001e+01,3.001e+01,1.136e-02,3.321e+01 +14256000,2.984e+01,4.497e+01,1.573e+02,4.019e-05,5.957e+01,1.205e-02,2.554e+01,8.895e-02,8.895e-02,1.208e-02,2.984e+01,2.984e+01,1.114e-02,3.344e+01 +14259600,2.968e+01,4.497e+01,1.291e+02,3.301e-05,4.878e+01,9.948e-03,2.500e+01,7.344e-02,7.344e-02,1.197e-02,2.968e+01,2.968e+01,1.114e-02,3.284e+01 +14263200,2.952e+01,4.497e+01,1.451e+02,3.715e-05,5.473e+01,1.126e-02,2.444e+01,8.312e-02,8.312e-02,1.186e-02,2.952e+01,2.952e+01,1.093e-02,3.308e+01 +14266800,2.935e+01,4.497e+01,1.467e+02,3.761e-05,5.524e+01,1.147e-02,2.359e+01,8.465e-02,8.465e-02,1.175e-02,2.935e+01,2.935e+01,1.098e-02,3.226e+01 +14270400,2.917e+01,4.497e+01,1.869e+02,4.796e-05,7.020e+01,1.471e-02,2.305e+01,1.086e-01,1.086e-01,1.162e-02,2.917e+01,2.917e+01,1.070e-02,3.268e+01 +14274000,2.899e+01,4.497e+01,1.120e+02,2.877e-05,4.201e+01,8.878e-03,2.250e+01,6.554e-02,6.554e-02,1.150e-02,2.900e+01,2.900e+01,1.074e-02,3.186e+01 +14277600,2.895e+01,4.494e+01,7.782e+00,1.999e-06,2.917e+00,6.187e-04,2.251e+01,4.568e-03,4.568e-03,1.145e-02,2.895e+01,2.895e+01,1.124e-02,2.976e+01 +14281200,2.916e+01,4.457e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.361e+01,0.000e+00,0.000e+00,1.150e-02,2.916e+01,2.916e+01,1.150e-02,2.916e+01 +14284800,2.965e+01,4.454e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.501e+01,0.000e+00,0.000e+00,1.182e-02,2.965e+01,2.965e+01,1.182e-02,2.965e+01 +14288400,3.054e+01,4.488e+01,3.718e+02,9.441e-05,1.423e+02,2.765e-02,2.616e+01,2.042e-01,2.042e-01,1.253e-02,3.052e+01,3.052e+01,1.157e-02,3.422e+01 +14292000,3.156e+01,4.491e+01,7.328e+02,1.845e-04,2.848e+02,5.246e-02,2.751e+01,3.873e-01,3.873e-01,1.332e-02,3.155e+01,3.155e+01,1.174e-02,3.764e+01 +14295600,3.232e+01,4.497e+01,9.567e+02,2.391e-04,3.767e+02,6.656e-02,2.886e+01,4.914e-01,4.914e-01,1.394e-02,3.230e+01,3.230e+01,1.197e-02,3.997e+01 +14299200,3.290e+01,4.503e+01,1.172e+03,2.909e-04,4.664e+02,7.980e-02,2.970e+01,5.891e-01,5.891e-01,1.444e-02,3.289e+01,3.289e+01,1.207e-02,4.214e+01 +14302800,3.313e+01,4.497e+01,9.032e+02,2.235e-04,3.614e+02,6.103e-02,3.056e+01,4.506e-01,4.506e-01,1.463e-02,3.313e+01,3.313e+01,1.286e-02,4.006e+01 +14306400,3.353e+01,4.497e+01,1.048e+03,2.577e-04,4.229e+02,6.978e-02,3.141e+01,5.152e-01,5.152e-01,1.496e-02,3.352e+01,3.352e+01,1.293e-02,4.151e+01 +14310000,3.425e+01,4.498e+01,1.089e+03,2.649e-04,4.475e+02,7.063e-02,3.170e+01,5.214e-01,5.214e-01,1.561e-02,3.424e+01,3.424e+01,1.354e-02,4.244e+01 +14313600,3.482e+01,4.506e+01,1.432e+03,3.451e-04,5.969e+02,9.093e-02,3.170e+01,6.713e-01,6.713e-01,1.616e-02,3.481e+01,3.481e+01,1.344e-02,4.572e+01 +14317200,3.495e+01,4.506e+01,1.257e+03,3.022e-04,5.252e+02,7.940e-02,3.139e+01,5.862e-01,5.862e-01,1.629e-02,3.495e+01,3.495e+01,1.388e-02,4.463e+01 +14320800,3.461e+01,4.496e+01,8.774e+02,2.122e-04,3.637e+02,5.616e-02,3.085e+01,4.146e-01,4.146e-01,1.596e-02,3.462e+01,3.462e+01,1.413e-02,4.192e+01 +14324400,3.410e+01,4.494e+01,6.143e+02,1.498e-04,2.515e+02,4.007e-02,2.999e+01,2.959e-01,2.959e-01,1.548e-02,3.411e+01,3.411e+01,1.424e-02,3.905e+01 +14328000,3.361e+01,4.493e+01,5.341e+02,1.312e-04,2.161e+02,3.547e-02,2.884e+01,2.619e-01,2.619e-01,1.505e-02,3.361e+01,3.361e+01,1.388e-02,3.823e+01 +14331600,3.322e+01,4.488e+01,3.927e+02,9.704e-05,1.575e+02,2.647e-02,2.774e+01,1.954e-01,1.954e-01,1.470e-02,3.323e+01,3.323e+01,1.396e-02,3.610e+01 +14335200,3.288e+01,4.491e+01,3.459e+02,8.582e-05,1.378e+02,2.359e-02,2.664e+01,1.742e-01,1.742e-01,1.441e-02,3.289e+01,3.289e+01,1.357e-02,3.620e+01 +14338800,3.259e+01,4.493e+01,3.004e+02,7.480e-05,1.190e+02,2.072e-02,2.585e+01,1.529e-01,1.529e-01,1.418e-02,3.260e+01,3.260e+01,1.334e-02,3.588e+01 +14342400,3.234e+01,4.493e+01,2.195e+02,5.483e-05,8.652e+01,1.528e-02,2.530e+01,1.128e-01,1.128e-01,1.397e-02,3.234e+01,3.234e+01,1.314e-02,3.559e+01 +14346000,3.210e+01,4.493e+01,2.540e+02,6.359e-05,9.967e+01,1.782e-02,2.444e+01,1.316e-01,1.316e-01,1.379e-02,3.211e+01,3.211e+01,1.289e-02,3.556e+01 +14349600,3.186e+01,4.494e+01,2.532e+02,6.357e-05,9.891e+01,1.793e-02,2.359e+01,1.324e-01,1.324e-01,1.360e-02,3.187e+01,3.187e+01,1.265e-02,3.552e+01 +14353200,3.162e+01,4.493e+01,2.708e+02,6.817e-05,1.053e+02,1.936e-02,2.274e+01,1.429e-01,1.429e-01,1.340e-02,3.162e+01,3.162e+01,1.258e-02,3.479e+01 +14356800,3.136e+01,4.493e+01,2.338e+02,5.901e-05,9.052e+01,1.688e-02,2.195e+01,1.246e-01,1.246e-01,1.320e-02,3.136e+01,3.136e+01,1.250e-02,3.406e+01 +14360400,3.110e+01,4.495e+01,2.170e+02,5.488e-05,8.371e+01,1.580e-02,2.114e+01,1.167e-01,1.167e-01,1.302e-02,3.111e+01,3.111e+01,1.215e-02,3.444e+01 +14364000,3.096e+01,4.498e+01,5.076e+01,1.285e-05,1.955e+01,3.717e-03,2.116e+01,2.744e-02,2.744e-02,1.292e-02,3.096e+01,3.096e+01,1.234e-02,3.318e+01 +14367600,3.114e+01,4.470e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.282e+01,0.000e+00,0.000e+00,1.297e-02,3.113e+01,3.113e+01,1.297e-02,3.113e+01 +14371200,3.164e+01,4.465e+01,1.803e+01,4.524e-06,7.046e+00,1.278e-03,2.446e+01,9.436e-03,9.436e-03,1.333e-02,3.163e+01,3.163e+01,1.321e-02,3.209e+01 +14374800,3.254e+01,4.486e+01,4.982e+02,1.240e-04,1.975e+02,3.437e-02,2.586e+01,2.538e-01,2.538e-01,1.411e-02,3.252e+01,3.252e+01,1.291e-02,3.721e+01 +14378400,3.356e+01,4.492e+01,8.331e+02,2.047e-04,3.371e+02,5.539e-02,2.726e+01,4.089e-01,4.089e-01,1.498e-02,3.354e+01,3.354e+01,1.332e-02,4.009e+01 +14382000,3.431e+01,4.498e+01,1.147e+03,2.787e-04,4.721e+02,7.425e-02,2.836e+01,5.482e-01,5.482e-01,1.566e-02,3.429e+01,3.429e+01,1.347e-02,4.301e+01 +14385600,3.492e+01,4.504e+01,1.322e+03,3.179e-04,5.524e+02,8.361e-02,2.946e+01,6.173e-01,6.173e-01,1.625e-02,3.491e+01,3.491e+01,1.384e-02,4.458e+01 +14389200,3.521e+01,4.499e+01,9.733e+02,2.328e-04,4.100e+02,6.096e-02,3.030e+01,4.500e-01,4.500e-01,1.653e-02,3.521e+01,3.521e+01,1.468e-02,4.266e+01 +14392800,3.558e+01,4.500e+01,1.287e+03,3.054e-04,5.481e+02,7.949e-02,3.085e+01,5.869e-01,5.869e-01,1.689e-02,3.556e+01,3.556e+01,1.452e-02,4.520e+01 +14396400,3.614e+01,4.506e+01,1.438e+03,3.372e-04,6.226e+02,8.693e-02,3.110e+01,6.418e-01,6.418e-01,1.748e-02,3.613e+01,3.613e+01,1.483e-02,4.702e+01 +14400000,3.659e+01,4.508e+01,1.688e+03,3.914e-04,7.420e+02,1.002e-01,3.110e+01,7.398e-01,7.398e-01,1.795e-02,3.659e+01,3.659e+01,1.489e-02,4.929e+01 +14403600,3.669e+01,4.508e+01,1.359e+03,3.146e-04,5.986e+02,8.040e-02,3.085e+01,5.935e-01,5.935e-01,1.806e-02,3.669e+01,3.669e+01,1.545e-02,4.754e+01 +14407200,3.631e+01,4.500e+01,9.856e+02,2.301e-04,4.294e+02,5.916e-02,3.030e+01,4.368e-01,4.368e-01,1.767e-02,3.633e+01,3.633e+01,1.592e-02,4.355e+01 +14410800,3.575e+01,4.493e+01,7.727e+02,1.826e-04,3.310e+02,4.740e-02,2.970e+01,3.499e-01,3.499e-01,1.710e-02,3.576e+01,3.576e+01,1.563e-02,4.179e+01 +14414400,3.524e+01,4.493e+01,5.525e+02,1.320e-04,2.332e+02,3.456e-02,2.884e+01,2.551e-01,2.551e-01,1.662e-02,3.525e+01,3.525e+01,1.548e-02,3.988e+01 +14418000,3.485e+01,4.490e+01,4.457e+02,1.072e-04,1.861e+02,2.829e-02,2.805e+01,2.088e-01,2.088e-01,1.624e-02,3.486e+01,3.486e+01,1.530e-02,3.866e+01 +14421600,3.454e+01,4.488e+01,3.389e+02,8.201e-05,1.404e+02,2.177e-02,2.780e+01,1.607e-01,1.607e-01,1.595e-02,3.454e+01,3.454e+01,1.514e-02,3.780e+01 +14425200,3.428e+01,4.491e+01,2.820e+02,6.853e-05,1.161e+02,1.828e-02,2.724e+01,1.350e-01,1.350e-01,1.572e-02,3.428e+01,3.428e+01,1.497e-02,3.726e+01 +14428800,3.402e+01,4.491e+01,3.346e+02,8.166e-05,1.368e+02,2.190e-02,2.614e+01,1.617e-01,1.617e-01,1.550e-02,3.403e+01,3.403e+01,1.463e-02,3.748e+01 +14432400,3.376e+01,4.491e+01,2.690e+02,6.594e-05,1.093e+02,1.778e-02,2.530e+01,1.313e-01,1.313e-01,1.527e-02,3.377e+01,3.377e+01,1.447e-02,3.694e+01 +14436000,3.351e+01,4.493e+01,2.803e+02,6.894e-05,1.132e+02,1.869e-02,2.470e+01,1.380e-01,1.380e-01,1.507e-02,3.351e+01,3.351e+01,1.415e-02,3.714e+01 +14439600,3.327e+01,4.493e+01,2.357e+02,5.816e-05,9.470e+01,1.585e-02,2.415e+01,1.170e-01,1.170e-01,1.486e-02,3.327e+01,3.327e+01,1.395e-02,3.687e+01 +14443200,3.303e+01,4.492e+01,2.764e+02,6.843e-05,1.105e+02,1.875e-02,2.359e+01,1.384e-01,1.384e-01,1.466e-02,3.303e+01,3.303e+01,1.381e-02,3.637e+01 +14446800,3.281e+01,4.494e+01,2.279e+02,5.660e-05,9.071e+01,1.559e-02,2.330e+01,1.151e-01,1.151e-01,1.447e-02,3.281e+01,3.281e+01,1.356e-02,3.635e+01 +14450400,3.265e+01,4.496e+01,1.284e+02,3.194e-05,5.096e+01,8.831e-03,2.330e+01,6.519e-02,6.519e-02,1.433e-02,3.266e+01,3.266e+01,1.349e-02,3.595e+01 +14454000,3.258e+01,4.498e+01,4.653e+01,1.158e-05,1.844e+01,3.208e-03,2.274e+01,2.369e-02,2.369e-02,1.426e-02,3.258e+01,3.258e+01,1.366e-02,3.492e+01 +14457600,3.273e+01,4.461e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.276e+01,0.000e+00,0.000e+00,1.425e-02,3.273e+01,3.273e+01,1.425e-02,3.273e+01 +14461200,3.294e+01,4.411e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.330e+01,0.000e+00,0.000e+00,1.425e-02,3.294e+01,3.294e+01,1.425e-02,3.294e+01 +14464800,3.293e+01,4.415e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.162e+01,0.000e+00,0.000e+00,1.425e-02,3.293e+01,3.293e+01,1.425e-02,3.293e+01 +14468400,3.282e+01,4.447e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.056e+01,0.000e+00,0.000e+00,1.425e-02,3.282e+01,3.282e+01,1.425e-02,3.282e+01 +14472000,3.271e+01,4.477e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.110e+01,0.000e+00,0.000e+00,1.425e-02,3.272e+01,3.272e+01,1.425e-02,3.272e+01 +14475600,3.274e+01,4.469e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.110e+01,0.000e+00,0.000e+00,1.425e-02,3.274e+01,3.274e+01,1.425e-02,3.274e+01 +14479200,3.296e+01,4.417e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.166e+01,0.000e+00,0.000e+00,1.425e-02,3.295e+01,3.295e+01,1.425e-02,3.295e+01 +14482800,3.319e+01,4.363e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.195e+01,0.000e+00,0.000e+00,1.425e-02,3.319e+01,3.319e+01,1.425e-02,3.319e+01 +14486400,3.303e+01,4.403e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.114e+01,0.000e+00,0.000e+00,1.425e-02,3.303e+01,3.303e+01,1.425e-02,3.303e+01 +14490000,3.259e+01,4.491e+01,2.379e+02,5.925e-05,9.418e+01,1.642e-02,1.974e+01,1.212e-01,1.212e-01,1.418e-02,3.260e+01,3.260e+01,1.346e-02,3.541e+01 +14493600,3.238e+01,4.496e+01,1.562e+02,3.899e-05,6.165e+01,1.086e-02,1.859e+01,8.014e-02,8.014e-02,1.402e-02,3.239e+01,3.239e+01,1.312e-02,3.588e+01 +14497200,3.217e+01,4.493e+01,3.272e+02,8.190e-05,1.285e+02,2.292e-02,1.749e+01,1.692e-01,1.692e-01,1.384e-02,3.217e+01,3.217e+01,1.294e-02,3.564e+01 +14500800,3.177e+01,4.492e+01,4.696e+02,1.181e-04,1.830e+02,3.337e-02,1.614e+01,2.463e-01,2.463e-01,1.352e-02,3.178e+01,3.178e+01,1.246e-02,3.588e+01 +14504400,3.135e+01,4.491e+01,3.994e+02,1.008e-04,1.546e+02,2.883e-02,1.560e+01,2.129e-01,2.129e-01,1.319e-02,3.136e+01,3.136e+01,1.232e-02,3.473e+01 +14508000,3.097e+01,4.492e+01,3.618e+02,9.165e-05,1.392e+02,2.649e-02,1.560e+01,1.956e-01,1.956e-01,1.289e-02,3.098e+01,3.098e+01,1.191e-02,3.474e+01 +14511600,3.062e+01,4.494e+01,3.283e+02,8.339e-05,1.256e+02,2.437e-02,1.560e+01,1.799e-01,1.799e-01,1.263e-02,3.062e+01,3.062e+01,1.172e-02,3.411e+01 +14515200,3.029e+01,4.494e+01,2.691e+02,6.855e-05,1.025e+02,2.024e-02,1.529e+01,1.494e-01,1.494e-01,1.240e-02,3.029e+01,3.029e+01,1.161e-02,3.331e+01 +14518800,2.997e+01,4.494e+01,3.029e+02,7.734e-05,1.149e+02,2.307e-02,1.500e+01,1.703e-01,1.703e-01,1.218e-02,2.997e+01,2.997e+01,1.129e-02,3.338e+01 +14522400,2.966e+01,4.494e+01,2.773e+02,7.095e-05,1.047e+02,2.139e-02,1.444e+01,1.579e-01,1.579e-01,1.196e-02,2.966e+01,2.966e+01,1.119e-02,3.261e+01 +14526000,2.933e+01,4.493e+01,3.439e+02,8.817e-05,1.293e+02,2.688e-02,1.360e+01,1.985e-01,1.985e-01,1.172e-02,2.933e+01,2.933e+01,1.084e-02,3.265e+01 +14529600,2.897e+01,4.495e+01,2.981e+02,7.661e-05,1.117e+02,2.367e-02,1.330e+01,1.747e-01,1.747e-01,1.148e-02,2.898e+01,2.898e+01,1.045e-02,3.286e+01 +14533200,2.865e+01,4.495e+01,2.708e+02,6.971e-05,1.011e+02,2.180e-02,1.330e+01,1.610e-01,1.610e-01,1.126e-02,2.865e+01,2.865e+01,1.046e-02,3.168e+01 +14536800,2.838e+01,4.495e+01,1.950e+02,5.025e-05,7.267e+01,1.587e-02,1.330e+01,1.172e-01,1.172e-01,1.107e-02,2.838e+01,2.838e+01,1.022e-02,3.158e+01 +14540400,2.822e+01,4.499e+01,8.366e+01,2.157e-05,3.114e+01,6.858e-03,1.386e+01,5.063e-02,5.063e-02,1.096e-02,2.822e+01,2.822e+01,1.007e-02,3.159e+01 +14544000,2.812e+01,4.499e+01,9.851e+01,2.541e-05,3.663e+01,8.111e-03,1.526e+01,5.988e-02,5.988e-02,1.090e-02,2.813e+01,2.813e+01,9.957e-03,3.168e+01 +14547600,2.802e+01,4.499e+01,7.134e+01,1.840e-05,2.651e+01,5.898e-03,1.641e+01,4.355e-02,4.355e-02,1.082e-02,2.802e+01,2.802e+01,9.993e-03,3.117e+01 +14551200,2.799e+01,4.496e+01,6.923e-01,1.786e-07,2.572e-01,5.736e-05,1.695e+01,4.235e-04,4.235e-04,1.080e-02,2.799e+01,2.799e+01,1.075e-02,2.819e+01 +14554800,2.795e+01,4.499e+01,7.985e+01,2.061e-05,2.965e+01,6.629e-03,1.664e+01,4.894e-02,4.894e-02,1.078e-02,2.795e+01,2.795e+01,9.897e-03,3.128e+01 +14558400,2.785e+01,4.498e+01,6.690e+01,1.727e-05,2.482e+01,5.575e-03,1.554e+01,4.116e-02,4.116e-02,1.071e-02,2.785e+01,2.785e+01,9.988e-03,3.059e+01 +14562000,2.780e+01,4.500e+01,2.258e+01,5.829e-06,8.374e+00,1.886e-03,1.530e+01,1.393e-02,1.393e-02,1.068e-02,2.780e+01,2.780e+01,9.803e-03,3.111e+01 +14565600,2.776e+01,4.498e+01,8.297e+00,2.142e-06,3.077e+00,6.942e-04,1.641e+01,5.125e-03,5.125e-03,1.066e-02,2.776e+01,2.776e+01,1.025e-02,2.932e+01 +14569200,2.789e+01,4.464e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.776e+01,0.000e+00,0.000e+00,1.066e-02,2.789e+01,2.789e+01,1.066e-02,2.789e+01 +14572800,2.814e+01,4.403e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.861e+01,0.000e+00,0.000e+00,1.066e-02,2.814e+01,2.814e+01,1.066e-02,2.814e+01 +14576400,2.811e+01,4.409e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.859e+01,0.000e+00,0.000e+00,1.066e-02,2.812e+01,2.812e+01,1.066e-02,2.812e+01 +14580000,2.773e+01,4.492e+01,1.361e+02,3.517e-05,5.043e+01,1.143e-02,1.774e+01,8.438e-02,8.438e-02,1.062e-02,2.774e+01,2.774e+01,1.001e-02,3.006e+01 +14583600,2.746e+01,4.497e+01,2.527e+02,6.534e-05,9.343e+01,2.144e-02,1.639e+01,1.583e-01,1.583e-01,1.047e-02,2.747e+01,2.747e+01,9.554e-03,3.092e+01 +14587200,2.710e+01,4.496e+01,3.352e+02,8.677e-05,1.236e+02,2.893e-02,1.474e+01,2.136e-01,2.136e-01,1.025e-02,2.711e+01,2.711e+01,9.346e-03,3.050e+01 +14590800,2.668e+01,4.495e+01,3.121e+02,8.089e-05,1.148e+02,2.749e-02,1.360e+01,2.029e-01,2.029e-01,9.992e-03,2.669e+01,2.669e+01,9.109e-03,3.002e+01 +14594400,2.632e+01,4.496e+01,2.437e+02,6.319e-05,8.951e+01,2.185e-02,1.330e+01,1.613e-01,1.613e-01,9.777e-03,2.632e+01,2.632e+01,9.006e-03,2.923e+01 +14598000,2.599e+01,4.497e+01,2.359e+02,6.119e-05,8.655e+01,2.150e-02,1.361e+01,1.588e-01,1.588e-01,9.588e-03,2.600e+01,2.600e+01,8.735e-03,2.921e+01 +14601600,2.572e+01,4.498e+01,1.715e+02,4.449e-05,6.286e+01,1.586e-02,1.390e+01,1.171e-01,1.171e-01,9.432e-03,2.572e+01,2.572e+01,8.684e-03,2.854e+01 +14605200,2.548e+01,4.498e+01,1.667e+02,4.325e-05,6.107e+01,1.561e-02,1.415e+01,1.152e-01,1.152e-01,9.301e-03,2.549e+01,2.549e+01,8.470e-03,2.862e+01 +14608800,2.529e+01,4.499e+01,1.157e+02,3.002e-05,4.237e+01,1.095e-02,1.557e+01,8.085e-02,8.085e-02,9.193e-03,2.529e+01,2.529e+01,8.416e-03,2.822e+01 +14612400,2.514e+01,4.499e+01,1.016e+02,2.637e-05,3.721e+01,9.701e-03,1.670e+01,7.162e-02,7.162e-02,9.113e-03,2.515e+01,2.515e+01,8.343e-03,2.805e+01 +14616000,2.499e+01,4.499e+01,1.164e+02,3.020e-05,4.261e+01,1.121e-02,1.670e+01,8.274e-02,8.274e-02,9.030e-03,2.500e+01,2.500e+01,8.222e-03,2.805e+01 +14619600,2.484e+01,4.498e+01,9.564e+01,2.481e-05,3.501e+01,9.287e-03,1.695e+01,6.856e-02,6.856e-02,8.947e-03,2.484e+01,2.484e+01,8.234e-03,2.753e+01 +14623200,2.473e+01,4.499e+01,4.477e+01,1.161e-05,1.639e+01,4.373e-03,1.750e+01,3.228e-02,3.228e-02,8.887e-03,2.473e+01,2.473e+01,8.180e-03,2.740e+01 +14626800,2.480e+01,4.494e+01,7.845e-01,2.035e-07,2.872e-01,7.679e-05,1.805e+01,5.669e-04,5.669e-04,8.911e-03,2.479e+01,2.479e+01,8.823e-03,2.513e+01 +14630400,2.520e+01,4.496e+01,1.953e+01,5.064e-06,7.156e+00,1.860e-03,1.947e+01,1.373e-02,1.373e-02,9.129e-03,2.519e+01,2.519e+01,8.492e-03,2.759e+01 +14634000,2.620e+01,4.492e+01,1.514e+02,3.922e-05,5.570e+01,1.355e-02,2.141e+01,1.000e-01,1.000e-01,9.685e-03,2.618e+01,2.618e+01,8.728e-03,2.979e+01 +14637600,2.726e+01,4.490e+01,4.745e+02,1.227e-04,1.753e+02,4.062e-02,2.306e+01,2.999e-01,2.999e-01,1.032e-02,2.725e+01,2.725e+01,9.368e-03,3.086e+01 +14641200,2.803e+01,4.494e+01,6.921e+02,1.786e-04,2.570e+02,5.719e-02,2.334e+01,4.223e-01,4.223e-01,1.082e-02,2.802e+01,2.802e+01,9.365e-03,3.352e+01 +14644800,2.853e+01,4.499e+01,9.195e+02,2.369e-04,3.427e+02,7.433e-02,2.361e+01,5.487e-01,5.487e-01,1.117e-02,2.853e+01,2.853e+01,9.359e-03,3.536e+01 +14648400,2.879e+01,4.495e+01,5.679e+02,1.461e-04,2.123e+02,4.544e-02,2.582e+01,3.355e-01,3.355e-01,1.133e-02,2.878e+01,2.878e+01,1.015e-02,3.325e+01 +14652000,2.927e+01,4.491e+01,6.844e+02,1.755e-04,2.573e+02,5.367e-02,2.751e+01,3.962e-01,3.962e-01,1.165e-02,2.926e+01,2.926e+01,1.018e-02,3.484e+01 +14655600,2.993e+01,4.497e+01,8.621e+02,2.202e-04,3.266e+02,6.575e-02,2.805e+01,4.854e-01,4.854e-01,1.213e-02,2.992e+01,2.992e+01,1.046e-02,3.630e+01 +14659200,3.048e+01,4.501e+01,1.034e+03,2.633e-04,3.947e+02,7.717e-02,2.861e+01,5.697e-01,5.697e-01,1.254e-02,3.047e+01,3.047e+01,1.038e-02,3.872e+01 +14662800,3.053e+01,4.505e+01,9.848e+02,2.507e-04,3.757e+02,7.326e-02,2.890e+01,5.409e-01,5.409e-01,1.261e-02,3.053e+01,3.053e+01,1.067e-02,3.794e+01 +14666400,3.016e+01,4.496e+01,6.266e+02,1.598e-04,2.380e+02,4.731e-02,2.834e+01,3.493e-01,3.493e-01,1.233e-02,3.016e+01,3.016e+01,1.081e-02,3.596e+01 +14670000,2.969e+01,4.493e+01,4.504e+02,1.153e-04,1.701e+02,3.470e-02,2.724e+01,2.562e-01,2.562e-01,1.198e-02,2.970e+01,2.970e+01,1.093e-02,3.371e+01 +14673600,2.925e+01,4.494e+01,2.974e+02,7.628e-05,1.118e+02,2.332e-02,2.640e+01,1.721e-01,1.721e-01,1.169e-02,2.926e+01,2.926e+01,1.092e-02,3.216e+01 +14677200,2.894e+01,4.495e+01,2.488e+02,6.394e-05,9.323e+01,1.977e-02,2.585e+01,1.460e-01,1.460e-01,1.147e-02,2.894e+01,2.894e+01,1.056e-02,3.241e+01 +14680800,2.871e+01,4.497e+01,1.467e+02,3.774e-05,5.484e+01,1.177e-02,2.560e+01,8.690e-02,8.690e-02,1.132e-02,2.871e+01,2.871e+01,1.052e-02,3.175e+01 +14684400,2.853e+01,4.497e+01,1.400e+02,3.605e-05,5.226e+01,1.132e-02,2.530e+01,8.358e-02,8.358e-02,1.121e-02,2.854e+01,2.854e+01,1.031e-02,3.195e+01 +14688000,2.838e+01,4.498e+01,1.343e+02,3.460e-05,5.004e+01,1.093e-02,2.470e+01,8.073e-02,8.073e-02,1.111e-02,2.838e+01,2.838e+01,1.032e-02,3.137e+01 +14691600,2.823e+01,4.498e+01,8.928e+01,2.301e-05,3.323e+01,7.316e-03,2.470e+01,5.401e-02,5.401e-02,1.102e-02,2.823e+01,2.823e+01,1.023e-02,3.121e+01 +14695200,2.812e+01,4.499e+01,8.507e+01,2.194e-05,3.163e+01,7.006e-03,2.470e+01,5.173e-02,5.173e-02,1.096e-02,2.812e+01,2.812e+01,1.007e-02,3.148e+01 +14698800,2.802e+01,4.498e+01,8.052e+01,2.077e-05,2.992e+01,6.661e-03,2.440e+01,4.917e-02,4.917e-02,1.089e-02,2.802e+01,2.802e+01,1.016e-02,3.078e+01 +14702400,2.791e+01,4.499e+01,7.872e+01,2.032e-05,2.922e+01,6.543e-03,2.440e+01,4.830e-02,4.830e-02,1.083e-02,2.792e+01,2.792e+01,1.000e-02,3.105e+01 +14706000,2.782e+01,4.499e+01,4.794e+01,1.238e-05,1.778e+01,4.000e-03,2.440e+01,2.953e-02,2.953e-02,1.078e-02,2.782e+01,2.782e+01,9.951e-03,3.094e+01 +14709600,2.781e+01,4.497e+01,7.069e+00,1.825e-06,2.622e+00,5.907e-04,2.470e+01,4.361e-03,4.361e-03,1.075e-02,2.781e+01,2.781e+01,1.050e-02,2.878e+01 +14713200,2.804e+01,4.455e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.500e+01,0.000e+00,0.000e+00,1.080e-02,2.804e+01,2.804e+01,1.080e-02,2.804e+01 +14716800,2.843e+01,4.468e+01,9.669e+00,2.487e-06,3.615e+00,7.791e-04,2.530e+01,5.752e-03,5.752e-03,1.109e-02,2.843e+01,2.843e+01,1.098e-02,2.883e+01 +14720400,2.933e+01,4.488e+01,3.174e+02,8.131e-05,1.196e+02,2.478e-02,2.641e+01,1.829e-01,1.829e-01,1.175e-02,2.931e+01,2.931e+01,1.072e-02,3.325e+01 +14724000,3.033e+01,4.493e+01,6.718e+02,1.711e-04,2.560e+02,5.046e-02,2.776e+01,3.726e-01,3.726e-01,1.247e-02,3.031e+01,3.031e+01,1.095e-02,3.614e+01 +14727600,3.104e+01,4.497e+01,9.198e+02,2.329e-04,3.541e+02,6.721e-02,2.886e+01,4.962e-01,4.962e-01,1.302e-02,3.103e+01,3.103e+01,1.112e-02,3.834e+01 +14731200,3.166e+01,4.500e+01,1.005e+03,2.530e-04,3.907e+02,7.168e-02,2.970e+01,5.292e-01,5.292e-01,1.351e-02,3.165e+01,3.165e+01,1.145e-02,3.959e+01 +14734800,3.192e+01,4.497e+01,8.124e+02,2.040e-04,3.173e+02,5.740e-02,3.056e+01,4.238e-01,4.238e-01,1.373e-02,3.192e+01,3.192e+01,1.202e-02,3.856e+01 +14738400,3.233e+01,4.496e+01,9.065e+02,2.265e-04,3.569e+02,6.308e-02,3.166e+01,4.657e-01,4.657e-01,1.407e-02,3.231e+01,3.231e+01,1.228e-02,3.928e+01 +14742000,3.298e+01,4.501e+01,1.130e+03,2.802e-04,4.510e+02,7.674e-02,3.220e+01,5.666e-01,5.666e-01,1.464e-02,3.297e+01,3.297e+01,1.239e-02,4.177e+01 +14745600,3.345e+01,4.504e+01,1.362e+03,3.355e-04,5.492e+02,9.091e-02,3.195e+01,6.712e-01,6.712e-01,1.507e-02,3.345e+01,3.345e+01,1.243e-02,4.384e+01 +14749200,3.351e+01,4.506e+01,1.181e+03,2.909e-04,4.763e+02,7.862e-02,3.170e+01,5.804e-01,5.804e-01,1.514e-02,3.351e+01,3.351e+01,1.286e-02,4.248e+01 +14752800,3.317e+01,4.497e+01,8.376e+02,2.072e-04,3.354e+02,5.647e-02,3.084e+01,4.169e-01,4.169e-01,1.479e-02,3.318e+01,3.318e+01,1.314e-02,3.964e+01 +14756400,3.265e+01,4.495e+01,5.877e+02,1.463e-04,2.329e+02,4.039e-02,2.914e+01,2.982e-01,2.982e-01,1.432e-02,3.266e+01,3.266e+01,1.299e-02,3.784e+01 +14760000,3.216e+01,4.493e+01,5.309e+02,1.329e-04,2.083e+02,3.718e-02,2.693e+01,2.745e-01,2.745e-01,1.391e-02,3.217e+01,3.217e+01,1.278e-02,3.656e+01 +14763600,3.171e+01,4.491e+01,4.496e+02,1.131e-04,1.749e+02,3.204e-02,2.387e+01,2.365e-01,2.365e-01,1.354e-02,3.172e+01,3.172e+01,1.265e-02,3.512e+01 +14767200,3.125e+01,4.492e+01,4.312e+02,1.090e-04,1.666e+02,3.123e-02,2.195e+01,2.306e-01,2.306e-01,1.318e-02,3.126e+01,3.126e+01,1.219e-02,3.506e+01 +14770800,3.087e+01,4.493e+01,3.433e+02,8.704e-05,1.319e+02,2.525e-02,2.114e+01,1.864e-01,1.864e-01,1.289e-02,3.087e+01,3.087e+01,1.202e-02,3.418e+01 +14774400,3.054e+01,4.495e+01,2.633e+02,6.692e-05,1.007e+02,1.960e-02,2.116e+01,1.447e-01,1.447e-01,1.265e-02,3.055e+01,3.055e+01,1.179e-02,3.381e+01 +14778000,3.027e+01,4.494e+01,2.669e+02,6.800e-05,1.016e+02,2.009e-02,2.084e+01,1.483e-01,1.483e-01,1.245e-02,3.028e+01,3.028e+01,1.160e-02,3.351e+01 +14781600,2.999e+01,4.495e+01,2.609e+02,6.659e-05,9.894e+01,1.986e-02,2.000e+01,1.466e-01,1.466e-01,1.225e-02,2.999e+01,2.999e+01,1.135e-02,3.340e+01 +14785200,2.974e+01,4.495e+01,1.899e+02,4.857e-05,7.182e+01,1.460e-02,2.056e+01,1.078e-01,1.078e-01,1.207e-02,2.974e+01,2.974e+01,1.118e-02,3.312e+01 +14788800,2.953e+01,4.496e+01,1.985e+02,5.083e-05,7.489e+01,1.539e-02,2.085e+01,1.137e-01,1.137e-01,1.192e-02,2.954e+01,2.954e+01,1.110e-02,3.268e+01 +14792400,2.933e+01,4.496e+01,1.512e+02,3.876e-05,5.692e+01,1.182e-02,2.029e+01,8.725e-02,8.725e-02,1.177e-02,2.933e+01,2.933e+01,1.090e-02,3.265e+01 +14796000,2.927e+01,4.491e+01,5.786e+00,1.484e-06,2.176e+00,4.540e-04,2.086e+01,3.351e-03,3.351e-03,1.172e-02,2.927e+01,2.927e+01,1.150e-02,3.010e+01 +14799600,2.954e+01,4.442e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.282e+01,0.000e+00,0.000e+00,1.177e-02,2.954e+01,2.954e+01,1.177e-02,2.954e+01 +14803200,3.007e+01,4.430e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.476e+01,0.000e+00,0.000e+00,1.210e-02,3.006e+01,3.006e+01,1.210e-02,3.006e+01 +14806800,3.094e+01,4.485e+01,2.762e+02,6.985e-05,1.065e+02,2.019e-02,2.672e+01,1.491e-01,1.491e-01,1.287e-02,3.092e+01,3.092e+01,1.213e-02,3.380e+01 +14810400,3.201e+01,4.492e+01,7.281e+02,1.825e-04,2.851e+02,5.127e-02,2.836e+01,3.785e-01,3.785e-01,1.373e-02,3.199e+01,3.199e+01,1.219e-02,3.796e+01 +14814000,3.277e+01,4.498e+01,1.008e+03,2.505e-04,4.003e+02,6.901e-02,2.946e+01,5.095e-01,5.095e-01,1.436e-02,3.276e+01,3.276e+01,1.237e-02,4.054e+01 +14817600,3.333e+01,4.504e+01,1.259e+03,3.108e-04,5.058e+02,8.441e-02,3.030e+01,6.232e-01,6.232e-01,1.486e-02,3.333e+01,3.333e+01,1.240e-02,4.296e+01 +14821200,3.358e+01,4.499e+01,9.534e+02,2.345e-04,3.852e+02,6.337e-02,3.060e+01,4.678e-01,4.678e-01,1.506e-02,3.358e+01,3.358e+01,1.327e-02,4.062e+01 +14824800,3.396e+01,4.498e+01,1.108e+03,2.708e-04,4.520e+02,7.264e-02,3.060e+01,5.363e-01,5.363e-01,1.538e-02,3.395e+01,3.395e+01,1.327e-02,4.231e+01 +14828400,3.455e+01,4.505e+01,1.329e+03,3.217e-04,5.497e+02,8.519e-02,3.060e+01,6.289e-01,6.289e-01,1.594e-02,3.454e+01,3.454e+01,1.349e-02,4.434e+01 +14832000,3.500e+01,4.508e+01,1.568e+03,3.766e-04,6.569e+02,9.889e-02,3.030e+01,7.301e-01,7.301e-01,1.637e-02,3.499e+01,3.499e+01,1.351e-02,4.648e+01 +14835600,3.505e+01,4.509e+01,1.370e+03,3.288e-04,5.742e+02,8.618e-02,2.970e+01,6.362e-01,6.362e-01,1.643e-02,3.506e+01,3.506e+01,1.382e-02,4.555e+01 +14839200,3.467e+01,4.499e+01,8.899e+02,2.150e-04,3.694e+02,5.681e-02,2.915e+01,4.195e-01,4.195e-01,1.604e-02,3.467e+01,3.467e+01,1.434e-02,4.149e+01 +14842800,3.412e+01,4.495e+01,6.621e+02,1.614e-04,2.713e+02,4.313e-02,2.834e+01,3.185e-01,3.185e-01,1.554e-02,3.413e+01,3.413e+01,1.423e-02,3.933e+01 +14846400,3.361e+01,4.495e+01,5.608e+02,1.378e-04,2.270e+02,3.724e-02,2.694e+01,2.749e-01,2.749e-01,1.509e-02,3.362e+01,3.362e+01,1.398e-02,3.800e+01 +14850000,3.315e+01,4.491e+01,4.981e+02,1.232e-04,1.995e+02,3.364e-02,2.524e+01,2.484e-01,2.484e-01,1.468e-02,3.316e+01,3.316e+01,1.359e-02,3.746e+01 +14853600,3.274e+01,4.490e+01,4.451e+02,1.107e-04,1.767e+02,3.054e-02,2.359e+01,2.255e-01,2.255e-01,1.433e-02,3.274e+01,3.274e+01,1.343e-02,3.628e+01 +14857200,3.235e+01,4.491e+01,4.105e+02,1.026e-04,1.617e+02,2.857e-02,2.194e+01,2.110e-01,2.110e-01,1.402e-02,3.236e+01,3.236e+01,1.306e-02,3.607e+01 +14860800,3.197e+01,4.491e+01,3.830e+02,9.611e-05,1.498e+02,2.704e-02,2.024e+01,1.997e-01,1.997e-01,1.371e-02,3.198e+01,3.198e+01,1.276e-02,3.564e+01 +14864400,3.159e+01,4.490e+01,4.010e+02,1.010e-04,1.558e+02,2.872e-02,1.859e+01,2.120e-01,2.120e-01,1.341e-02,3.159e+01,3.159e+01,1.259e-02,3.476e+01 +14868000,3.122e+01,4.492e+01,3.361e+02,8.495e-05,1.298e+02,2.440e-02,1.780e+01,1.801e-01,1.801e-01,1.312e-02,3.122e+01,3.122e+01,1.225e-02,3.456e+01 +14871600,3.087e+01,4.493e+01,3.324e+02,8.427e-05,1.277e+02,2.444e-02,1.750e+01,1.805e-01,1.805e-01,1.286e-02,3.088e+01,3.088e+01,1.199e-02,3.418e+01 +14875200,3.053e+01,4.493e+01,3.352e+02,8.523e-05,1.281e+02,2.498e-02,1.664e+01,1.844e-01,1.844e-01,1.260e-02,3.053e+01,3.053e+01,1.175e-02,3.379e+01 +14878800,3.020e+01,4.494e+01,2.451e+02,6.247e-05,9.326e+01,1.849e-02,1.585e+01,1.365e-01,1.365e-01,1.236e-02,3.020e+01,3.020e+01,1.157e-02,3.321e+01 +14882400,3.010e+01,4.493e+01,1.826e+01,4.655e-06,6.938e+00,1.384e-03,1.697e+01,1.022e-02,1.022e-02,1.227e-02,3.010e+01,3.010e+01,1.204e-02,3.095e+01 +14886000,3.034e+01,4.451e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.947e+01,0.000e+00,0.000e+00,1.232e-02,3.033e+01,3.033e+01,1.232e-02,3.033e+01 +14889600,3.078e+01,4.463e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.141e+01,0.000e+00,0.000e+00,1.266e-02,3.077e+01,3.077e+01,1.266e-02,3.077e+01 +14893200,3.169e+01,4.487e+01,4.344e+02,1.092e-04,1.693e+02,3.097e-02,2.251e+01,2.287e-01,2.287e-01,1.341e-02,3.167e+01,3.167e+01,1.241e-02,3.552e+01 +14896800,3.271e+01,4.491e+01,7.417e+02,1.844e-04,2.945e+02,5.095e-02,2.305e+01,3.761e-01,3.761e-01,1.425e-02,3.270e+01,3.270e+01,1.262e-02,3.904e+01 +14900400,3.351e+01,4.498e+01,1.041e+03,2.562e-04,4.200e+02,6.936e-02,2.386e+01,5.121e-01,5.121e-01,1.495e-02,3.350e+01,3.350e+01,1.292e-02,4.149e+01 +14904000,3.406e+01,4.506e+01,1.390e+03,3.393e-04,5.680e+02,9.073e-02,2.415e+01,6.698e-01,6.698e-01,1.546e-02,3.405e+01,3.405e+01,1.278e-02,4.467e+01 +14907600,3.425e+01,4.501e+01,1.087e+03,2.647e-04,4.463e+02,7.050e-02,2.359e+01,5.205e-01,5.205e-01,1.561e-02,3.425e+01,3.425e+01,1.349e-02,4.270e+01 +14911200,3.458e+01,4.501e+01,1.214e+03,2.938e-04,5.030e+02,7.775e-02,2.330e+01,5.740e-01,5.740e-01,1.589e-02,3.457e+01,3.457e+01,1.369e-02,4.338e+01 +14914800,3.512e+01,4.505e+01,1.420e+03,3.404e-04,5.969e+02,8.922e-02,2.330e+01,6.587e-01,6.587e-01,1.641e-02,3.511e+01,3.511e+01,1.361e-02,4.639e+01 +14918400,3.556e+01,4.509e+01,1.671e+03,3.967e-04,7.114e+02,1.032e-01,2.305e+01,7.616e-01,7.616e-01,1.685e-02,3.556e+01,3.556e+01,1.378e-02,4.806e+01 +14922000,3.552e+01,4.511e+01,1.578e+03,3.751e-04,6.710e+02,9.756e-02,2.194e+01,7.203e-01,7.203e-01,1.683e-02,3.552e+01,3.552e+01,1.388e-02,4.749e+01 +14925600,3.501e+01,4.503e+01,1.062e+03,2.550e-04,4.451e+02,6.692e-02,2.085e+01,4.940e-01,4.940e-01,1.632e-02,3.502e+01,3.502e+01,1.436e-02,4.294e+01 +14929200,3.434e+01,4.497e+01,8.650e+02,2.102e-04,3.561e+02,5.590e-02,1.943e+01,4.127e-01,4.127e-01,1.570e-02,3.435e+01,3.435e+01,1.413e-02,4.059e+01 +14932800,3.358e+01,4.501e+01,8.988e+02,2.210e-04,3.633e+02,5.968e-02,1.693e+01,4.406e-01,4.406e-01,1.503e-02,3.359e+01,3.359e+01,1.324e-02,4.064e+01 +14936400,3.284e+01,4.497e+01,7.832e+02,1.945e-04,3.116e+02,5.341e-02,1.499e+01,3.943e-01,3.943e-01,1.439e-02,3.286e+01,3.286e+01,1.287e-02,3.878e+01 +14940000,3.224e+01,4.495e+01,5.685e+02,1.422e-04,2.235e+02,3.966e-02,1.415e+01,2.928e-01,2.928e-01,1.387e-02,3.224e+01,3.224e+01,1.274e-02,3.665e+01 +14943600,3.174e+01,4.493e+01,5.076e+02,1.277e-04,1.977e+02,3.609e-02,1.334e+01,2.664e-01,2.664e-01,1.346e-02,3.174e+01,3.174e+01,1.234e-02,3.607e+01 +14947200,3.129e+01,4.492e+01,4.588e+02,1.159e-04,1.774e+02,3.319e-02,1.280e+01,2.450e-01,2.450e-01,1.310e-02,3.130e+01,3.130e+01,1.212e-02,3.510e+01 +14950800,3.088e+01,4.492e+01,3.679e+02,9.328e-05,1.413e+02,2.704e-02,1.250e+01,1.996e-01,1.996e-01,1.279e-02,3.089e+01,3.089e+01,1.193e-02,3.420e+01 +14954400,3.048e+01,4.492e+01,4.151e+02,1.056e-04,1.585e+02,3.099e-02,1.195e+01,2.288e-01,2.288e-01,1.249e-02,3.048e+01,3.048e+01,1.158e-02,3.396e+01 +14958000,3.007e+01,4.492e+01,3.530e+02,9.008e-05,1.340e+02,2.679e-02,1.139e+01,1.978e-01,1.978e-01,1.220e-02,3.008e+01,3.008e+01,1.142e-02,3.307e+01 +14961600,2.966e+01,4.492e+01,4.271e+02,1.093e-04,1.612e+02,3.295e-02,1.054e+01,2.433e-01,2.433e-01,1.190e-02,2.967e+01,2.967e+01,1.091e-02,3.345e+01 +14965200,2.924e+01,4.492e+01,3.378e+02,8.667e-05,1.269e+02,2.652e-02,1.000e+01,1.958e-01,1.958e-01,1.161e-02,2.925e+01,2.925e+01,1.079e-02,3.235e+01 +14968800,2.886e+01,4.494e+01,3.149e+02,8.095e-05,1.178e+02,2.510e-02,1.000e+01,1.853e-01,1.853e-01,1.135e-02,2.886e+01,2.886e+01,1.043e-02,3.233e+01 +14972400,2.861e+01,4.494e+01,2.818e+02,7.254e-05,1.052e+02,2.272e-02,1.030e+01,1.677e-01,1.677e-01,1.117e-02,2.861e+01,2.861e+01,1.027e-02,3.203e+01 +14976000,2.866e+01,4.492e+01,4.595e+02,1.183e-04,1.716e+02,3.698e-02,1.116e+01,2.730e-01,2.730e-01,1.120e-02,2.865e+01,2.865e+01,1.019e-02,3.249e+01 +14979600,2.915e+01,4.494e+01,7.160e+02,1.838e-04,2.687e+02,5.637e-02,1.226e+01,4.162e-01,4.162e-01,1.153e-02,2.913e+01,2.913e+01,9.950e-03,3.512e+01 +14983200,2.982e+01,4.496e+01,8.170e+02,2.089e-04,3.090e+02,6.258e-02,1.336e+01,4.620e-01,4.620e-01,1.199e-02,2.981e+01,2.981e+01,1.027e-02,3.638e+01 +14986800,3.044e+01,4.497e+01,9.131e+02,2.324e-04,3.483e+02,6.827e-02,1.415e+01,5.040e-01,5.040e-01,1.244e-02,3.043e+01,3.043e+01,1.062e-02,3.737e+01 +14990400,3.092e+01,4.503e+01,1.095e+03,2.778e-04,4.205e+02,8.035e-02,1.440e+01,5.932e-01,5.932e-01,1.281e-02,3.091e+01,3.091e+01,1.045e-02,3.997e+01 +14994000,3.103e+01,4.502e+01,1.005e+03,2.545e-04,3.864e+02,7.332e-02,1.471e+01,5.413e-01,5.413e-01,1.290e-02,3.103e+01,3.103e+01,1.088e-02,3.880e+01 +14997600,3.112e+01,4.504e+01,1.251e+03,3.168e-04,4.821e+02,9.101e-02,1.500e+01,6.719e-01,6.719e-01,1.297e-02,3.111e+01,3.111e+01,1.048e-02,4.069e+01 +15001200,3.133e+01,4.509e+01,1.394e+03,3.522e-04,5.385e+02,1.005e-01,1.500e+01,7.422e-01,7.422e-01,1.314e-02,3.132e+01,3.132e+01,1.051e-02,4.143e+01 +15004800,3.146e+01,4.510e+01,1.501e+03,3.788e-04,5.813e+02,1.077e-01,1.470e+01,7.953e-01,7.953e-01,1.325e-02,3.145e+01,3.145e+01,1.032e-02,4.273e+01 +15008400,3.123e+01,4.509e+01,1.305e+03,3.301e-04,5.036e+02,9.445e-02,1.440e+01,6.973e-01,6.973e-01,1.309e-02,3.124e+01,3.124e+01,1.047e-02,4.131e+01 +15012000,3.051e+01,4.506e+01,1.030e+03,2.620e-04,3.929e+02,7.656e-02,1.440e+01,5.652e-01,5.652e-01,1.255e-02,3.053e+01,3.053e+01,1.050e-02,3.837e+01 +15015600,2.972e+01,4.499e+01,6.703e+02,1.716e-04,2.531e+02,5.151e-02,1.440e+01,3.803e-01,3.803e-01,1.196e-02,2.973e+01,2.973e+01,1.046e-02,3.543e+01 +15019200,2.905e+01,4.498e+01,5.572e+02,1.432e-04,2.088e+02,4.402e-02,1.384e+01,3.250e-01,3.250e-01,1.149e-02,2.906e+01,2.906e+01,1.024e-02,3.379e+01 +15022800,2.851e+01,4.493e+01,4.214e+02,1.085e-04,1.571e+02,3.410e-02,1.305e+01,2.517e-01,2.517e-01,1.111e-02,2.852e+01,2.852e+01,1.016e-02,3.213e+01 +15026400,2.808e+01,4.494e+01,3.537e+02,9.129e-05,1.314e+02,2.918e-02,1.280e+01,2.155e-01,2.155e-01,1.082e-02,2.809e+01,2.809e+01,9.882e-03,3.163e+01 +15030000,2.771e+01,4.495e+01,2.954e+02,7.634e-05,1.094e+02,2.480e-02,1.280e+01,1.831e-01,1.831e-01,1.058e-02,2.771e+01,2.771e+01,9.600e-03,3.139e+01 +15033600,2.735e+01,4.496e+01,2.461e+02,6.367e-05,9.094e+01,2.099e-02,1.250e+01,1.550e-01,1.550e-01,1.036e-02,2.736e+01,2.736e+01,9.555e-03,3.041e+01 +15037200,2.702e+01,4.497e+01,2.666e+02,6.904e-05,9.831e+01,2.310e-02,1.220e+01,1.705e-01,1.705e-01,1.016e-02,2.702e+01,2.702e+01,9.268e-03,3.041e+01 +15040800,2.669e+01,4.496e+01,2.455e+02,6.363e-05,9.036e+01,2.161e-02,1.195e+01,1.596e-01,1.596e-01,9.969e-03,2.670e+01,2.670e+01,9.184e-03,2.966e+01 +15044400,2.634e+01,4.496e+01,2.916e+02,7.560e-05,1.071e+02,2.611e-02,1.139e+01,1.928e-01,1.928e-01,9.760e-03,2.635e+01,2.635e+01,8.892e-03,2.962e+01 +15048000,2.596e+01,4.496e+01,2.935e+02,7.614e-05,1.076e+02,2.680e-02,1.054e+01,1.979e-01,1.979e-01,9.543e-03,2.597e+01,2.597e+01,8.738e-03,2.901e+01 +15051600,2.559e+01,4.497e+01,2.184e+02,5.668e-05,8.003e+01,2.031e-02,9.695e+00,1.499e-01,1.499e-01,9.327e-03,2.560e+01,2.560e+01,8.538e-03,2.857e+01 +15055200,2.548e+01,4.493e+01,1.659e+01,4.306e-06,6.081e+00,1.557e-03,1.057e+01,1.149e-02,1.149e-02,9.246e-03,2.548e+01,2.548e+01,8.970e-03,2.652e+01 +15058800,2.570e+01,4.433e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.307e+01,0.000e+00,0.000e+00,9.244e-03,2.569e+01,2.569e+01,9.244e-03,2.569e+01 +15062400,2.596e+01,4.368e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.526e+01,0.000e+00,0.000e+00,9.244e-03,2.595e+01,2.595e+01,9.244e-03,2.595e+01 +15066000,2.629e+01,4.288e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.696e+01,0.000e+00,0.000e+00,9.244e-03,2.628e+01,2.628e+01,9.244e-03,2.628e+01 +15069600,2.667e+01,4.195e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.836e+01,0.000e+00,0.000e+00,9.244e-03,2.666e+01,2.666e+01,9.244e-03,2.666e+01 +15073200,2.685e+01,4.149e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.915e+01,0.000e+00,0.000e+00,9.244e-03,2.685e+01,2.685e+01,9.244e-03,2.685e+01 +15076800,2.698e+01,4.117e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.001e+01,0.000e+00,0.000e+00,9.244e-03,2.698e+01,2.698e+01,9.244e-03,2.698e+01 +15080400,2.723e+01,4.060e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.060e+01,0.000e+00,0.000e+00,9.244e-03,2.722e+01,2.722e+01,9.244e-03,2.722e+01 +15084000,2.749e+01,3.997e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.060e+01,0.000e+00,0.000e+00,9.244e-03,2.748e+01,2.748e+01,9.244e-03,2.748e+01 +15087600,2.784e+01,3.909e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.060e+01,0.000e+00,0.000e+00,9.244e-03,2.784e+01,2.784e+01,9.244e-03,2.784e+01 +15091200,2.807e+01,3.857e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.060e+01,0.000e+00,0.000e+00,9.244e-03,2.807e+01,2.807e+01,9.244e-03,2.807e+01 +15094800,2.798e+01,3.880e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.060e+01,0.000e+00,0.000e+00,9.244e-03,2.798e+01,2.798e+01,9.244e-03,2.798e+01 +15098400,2.789e+01,3.901e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,2.029e+01,0.000e+00,0.000e+00,9.244e-03,2.789e+01,2.789e+01,9.244e-03,2.789e+01 +15102000,2.754e+01,3.982e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.914e+01,0.000e+00,0.000e+00,9.244e-03,2.755e+01,2.755e+01,9.244e-03,2.755e+01 +15105600,2.687e+01,4.143e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.662e+01,0.000e+00,0.000e+00,9.244e-03,2.688e+01,2.688e+01,9.244e-03,2.688e+01 +15109200,2.620e+01,4.310e+01,0.000e+00,0.000e+00,0.000e+00,0.000e+00,1.388e+01,0.000e+00,0.000e+00,9.244e-03,2.621e+01,2.621e+01,9.244e-03,2.621e+01 +15112800,2.570e+01,4.442e+01,1.328e+01,3.446e-06,4.866e+00,1.245e-03,1.194e+01,9.190e-03,9.190e-03,9.244e-03,2.571e+01,2.571e+01,9.106e-03,2.623e+01 +15116400,2.535e+01,4.497e+01,1.866e+02,4.842e-05,6.833e+01,1.761e-02,1.054e+01,1.300e-01,1.300e-01,9.169e-03,2.535e+01,2.535e+01,8.436e-03,2.812e+01 +15120000,2.502e+01,4.497e+01,2.757e+02,7.156e-05,1.009e+02,2.649e-02,9.695e+00,1.956e-01,1.956e-01,8.989e-03,2.503e+01,2.503e+01,8.179e-03,2.809e+01 diff --git a/Buildings/Resources/Data/Fluid/Humidifiers/DXDehumidifier/DXDehumidifier.idf b/Buildings/Resources/Data/Fluid/Humidifiers/DXDehumidifier/DXDehumidifier.idf new file mode 100644 index 00000000000..faae6ef30dd --- /dev/null +++ b/Buildings/Resources/Data/Fluid/Humidifiers/DXDehumidifier/DXDehumidifier.idf @@ -0,0 +1,993 @@ +!-Generator IDFEditor 1.51 +!-Option OriginalOrderTop UseSpecialFormat +!-NOTE: All comments with '!-' are ignored by the IDFEditor and are generated automatically. +!- Use '!' comments if they need to be retained when using the IDFEditor. +! +! Basic file description: 1 zones with window air conditioner and zone dehumidifier. +! +! AvailabilityManager:LowTemperatureTurnOff +! AvailabilityManager:HighTemperatureTurnOn +! +! Availability managers are capable of turning on or off the fan for an air system (or the pump +! for a plant system) by monitoring temperature conditions at a user-specified system node. +! In this model, the availability managers are monitoring the zone outlet air node to act as +! a crude thermostatic control for the zone. +! +! Keep in mind that availability manager control is "lagged". This means that the node +! conditions from the previous time step are used to make control decisions at the current +! time step. +! +! There are two ways to use the availability managers for controlling an evaporative cooler: +! +! Method 1. The fan is scheduled to be available at all times, meaning that the system +! is on all the time by default. This usually results in over-cooling. +! To prevent over-cooling, the LOW TEMPERATURE TURN OFF object is used to +! turn off the system fan when the temperature falls below the setpoint (23 C). +! +! Method 2. The fan is scheduled to be unavailable at all times, meaning that the system +! is off all the time by default. This usually results in under-cooling. +! To prevent under-cooling, the HIGH TEMPERATURE TURN ON object is used to +! turn on the system fan when the temperature rises above the setpoint (26 C). +! +! With either method, all other equipment is scheduled to be always available. In this file, +! for demonstration purposes only, the fan is scheduled to be available from 12 AM-12 PM to +! to demonstrate Method 1, and scheduled to be unavailable from 12 PM-12 AM for Method 2. +! +! Note that ZoneControl:Thermostat is still used in this model to control the baseboard +! heating in the winter, but it does not effect the evaporative cooler system. +! +! Highlights: Test of AvailabilityManagers for controlling an air system. +! +! Simulation Location/Run: DENVER_STAPLETON_CO_USA_WMO_724690, 2 design days, 1 run period, +! Run Control executes two design days (see RUN PERIOD object) +! +! Location: Denver, CO +! +! Design Days: DENVER_STAPLETON_CO_USA Annual Heating 99%, MaxDB=-16°C +! DENVER_STAPLETON_CO_USA Annual Cooling (DB=>MWB) 1%, MaxDB=32.6°C MWB=15.5°C +! +! Run Period (Weather File): Full Annual Simulation, DENVER_STAPLETON_CO_USA_WMO_724690 +! +! Run Control: No zone or system sizing, design day run control (no weather file simulation) +! +! Building: Fictional 1 zone building with resistive walls based on 1ZoneUncontrolled example. +! No windows. No internal gains. No internal mass. The building is oriented due north. +! +! Floor Area: 232.25 m2 +! Number of Stories: 1 + + Version,23.1; + + Timestep,60; + + Building, + Bldg, !- Name + 0.0, !- North Axis {deg} + Suburbs, !- Terrain + 0.05, !- Loads Convergence Tolerance Value {W} + 0.05, !- Temperature Convergence Tolerance Value {deltaC} + MinimalShadowing, !- Solar Distribution + 30, !- Maximum Number of Warmup Days + 6; !- Minimum Number of Warmup Days + + HeatBalanceAlgorithm,ConductionTransferFunction; + + SurfaceConvectionAlgorithm:Inside,TARP; + + SurfaceConvectionAlgorithm:Outside,DOE-2; + + SimulationControl, + Yes, !- Do Zone Sizing Calculation + No, !- Do System Sizing Calculation + No, !- Do Plant Sizing Calculation + No, !- Run Simulation for Sizing Periods + Yes, !- Run Simulation for Weather File Run Periods + No, !- Do HVAC Sizing Simulation for Sizing Periods + 1; !- Maximum Number of HVAC Sizing Simulation Passes + +! Data Source=ASHRAE 2009 Annual Design Conditions + + Site:Location, + CHICAGO_IL_USA TMY2-94846, !- Name + 41.78, !- Latitude {deg} + -87.75, !- Longitude {deg} + -6.00, !- Time Zone {hr} + 190.00; !- Elevation {m} + +! CHICAGO_IL_USA Annual Heating 99% Design Conditions DB, MaxDB= -17.3°C + + SizingPeriod:DesignDay, + CHICAGO_IL_USA Annual Heating 99% Design Conditions DB, !- Name + 1, !- Month + 21, !- Day of Month + WinterDesignDay, !- Day Type + -17.3, !- Maximum Dry-Bulb Temperature {C} + 0.0, !- Daily Dry-Bulb Temperature Range {deltaC} + , !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + -17.3, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 99063., !- Barometric Pressure {Pa} + 4.9, !- Wind Speed {m/s} + 270, !- Wind Direction {deg} + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless} + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless} + 1.0; !- Sky Clearness + +! CHICAGO_IL_USA Annual Cooling 1% Design Conditions, MaxDB= 31.5°C MCWB= 23.0°C + + SizingPeriod:DesignDay, + CHICAGO_IL_USA Annual Cooling 1% Design Conditions DB/MCWB, !- Name + 7, !- Month + 21, !- Day of Month + SummerDesignDay, !- Day Type + 31.5, !- Maximum Dry-Bulb Temperature {C} + 10.7, !- Daily Dry-Bulb Temperature Range {deltaC} + , !- Dry-Bulb Temperature Range Modifier Type + , !- Dry-Bulb Temperature Range Modifier Day Schedule Name + Wetbulb, !- Humidity Condition Type + 23.0, !- Wetbulb or DewPoint at Maximum Dry-Bulb {C} + , !- Humidity Condition Day Schedule Name + , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir} + , !- Enthalpy at Maximum Dry-Bulb {J/kg} + , !- Daily Wet-Bulb Temperature Range {deltaC} + 99063., !- Barometric Pressure {Pa} + 5.3, !- Wind Speed {m/s} + 230, !- Wind Direction {deg} + No, !- Rain Indicator + No, !- Snow Indicator + No, !- Daylight Saving Time Indicator + ASHRAEClearSky, !- Solar Model Indicator + , !- Beam Solar Day Schedule Name + , !- Diffuse Solar Day Schedule Name + , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub) {dimensionless} + , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud) {dimensionless} + 1.0; !- Sky Clearness + + Site:GroundTemperature:BuildingSurface,22.03,22.03,22.13,22.30,22.43,22.52,22.62,22.77,22.78,22.55,22.44,22.20; + + RunPeriod, + Run Period 1, !- Name + 1, !- Begin Month + 1, !- Begin Day of Month + , !- Begin Year + 6, !- End Month + 30, !- End Day of Month + , !- End Year + Sunday, !- Day of Week for Start Day + Yes, !- Use Weather File Holidays and Special Days + Yes, !- Use Weather File Daylight Saving Period + No, !- Apply Weekend Holiday Rule + Yes, !- Use Weather File Rain Indicators + Yes; !- Use Weather File Snow Indicators + + Material:NoMass, + R13LAYER, !- Name + Rough, !- Roughness + 2.290965, !- Thermal Resistance {m2-K/W} + 0.9000000, !- Thermal Absorptance + 0.7500000, !- Solar Absorptance + 0.7500000; !- Visible Absorptance + + Material:NoMass, + R31LAYER, !- Name + Rough, !- Roughness + 5.456, !- Thermal Resistance {m2-K/W} + 0.9000000, !- Thermal Absorptance + 0.7500000, !- Solar Absorptance + 0.7500000; !- Visible Absorptance + + Material, + C5 - 4 IN HW CONCRETE, !- Name + MediumRough, !- Roughness + 0.1014984, !- Thickness {m} + 1.729577, !- Conductivity {W/m-K} + 2242.585, !- Density {kg/m3} + 836.8000, !- Specific Heat {J/kg-K} + 0.9000000, !- Thermal Absorptance + 0.6500000, !- Solar Absorptance + 0.6500000; !- Visible Absorptance + + Construction, + R13WALL, !- Name + R13LAYER; !- Outside Layer + + Construction, + FLOOR, !- Name + C5 - 4 IN HW CONCRETE; !- Outside Layer + + Construction, + ROOF31, !- Name + R31LAYER; !- Outside Layer + + ScheduleTypeLimits, + Any Number; !- Name + + ScheduleTypeLimits, + Fraction, !- Name + 0.0, !- Lower Limit Value + 1.0, !- Upper Limit Value + CONTINUOUS; !- Numeric Type + + ScheduleTypeLimits, + Temperature, !- Name + -60, !- Lower Limit Value + 200, !- Upper Limit Value + CONTINUOUS, !- Numeric Type + Temperature; !- Unit Type + + ScheduleTypeLimits, + Control Type, !- Name + 0, !- Lower Limit Value + 4, !- Upper Limit Value + DISCRETE; !- Numeric Type + + ScheduleTypeLimits, + On/Off, !- Name + 0, !- Lower Limit Value + 1, !- Upper Limit Value + DISCRETE; !- Numeric Type + + Schedule:Compact, + OFF, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Alldays, !- Field 2 + Until: 24:00,0; !- Field 3 + + Schedule:Compact, + ON, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Alldays, !- Field 2 + Until: 24:00,1; !- Field 3 + + Schedule:Compact, + Activity Sch, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,131.8; !- Field 3 + + Schedule:Compact, + WORK EFF SCH, !- Name + ANY NUMBER, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.00; !- Field 3 + + Schedule:Compact, + CLOTHING SCH, !- Name + ANY NUMBER, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.00; !- Field 3 + + Schedule:Compact, + AIR VELO SCH, !- Name + Any Number, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.14; !- Field 3 + + Schedule:Compact, + SEASONAL RELATIVE HUMIDITY SCH, !- Name + Humidity, !- Schedule Type Limits Name + Through: 3/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,45.00, !- Field 3 + Through: 9/30, !- Field 5 + For: AllDays, !- Field 6 + Until: 24:00,45, !- Field 7 + Through: 12/31, !- Field 9 + For: AllDays, !- Field 10 + Until: 24:00,45.00; !- Field 11 + + ScheduleTypeLimits, + Humidity, !- Name + 0, !- Lower Limit Value + 100, !- Upper Limit Value + CONTINUOUS; !- Numeric Type + + Schedule:Compact, + BLDG SCH 1, !- Name + ANY NUMBER, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: Weekdays, !- Field 2 + Until: 6:00,0.00, !- Field 3 + Until: 7:00,0.10, !- Field 5 + Until: 8:00,0.50, !- Field 7 + Until: 12:00,1.00, !- Field 9 + Until: 13:00,0.50, !- Field 11 + Until: 16:00,1.00, !- Field 13 + Until: 17:00,0.50, !- Field 15 + Until: 18:00,0.10, !- Field 17 + Until: 24:00,0.00, !- Field 19 + For: Weekends Holiday, !- Field 21 + Until: 24:00,0.00, !- Field 22 + For: SummerDesignDay, !- Field 24 + Until: 6:00,0.00, !- Field 25 + Until: 7:00,0.10, !- Field 27 + Until: 8:00,0.50, !- Field 29 + Until: 12:00,1.00, !- Field 31 + Until: 13:00,0.50, !- Field 33 + Until: 16:00,1.00, !- Field 35 + Until: 17:00,0.50, !- Field 37 + Until: 18:00,0.10, !- Field 39 + Until: 24:00,0.00, !- Field 41 + For: WinterDesignDay CustomDay1 CustomDay2, !- Field 43 + Until: 24:00,0.00; !- Field 44 + + Schedule:Compact, + OFFICE OCCUPANCY, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: WeekDays SummerDesignDay, !- Field 2 + Until: 6:00,0.0, !- Field 3 + Until: 7:00,0.10, !- Field 5 + Until: 8:00,0.50, !- Field 7 + Until: 12:00,1.00, !- Field 9 + Until: 13:00,0.50, !- Field 11 + Until: 16:00,1.00, !- Field 13 + Until: 17:00,0.50, !- Field 15 + Until: 18:00,0.10, !- Field 17 + Until: 24:00,0.0, !- Field 19 + For: WinterDesignDay, !- Field 21 + Until: 6:00,0.0, !- Field 22 + Until: 7:00,0.10, !- Field 24 + Until: 8:00,0.50, !- Field 26 + Until: 12:00,1.00, !- Field 28 + Until: 13:00,0.50, !- Field 30 + Until: 16:00,1.00, !- Field 32 + Until: 17:00,0.50, !- Field 34 + Until: 18:00,0.10, !- Field 36 + Until: 24:00,0.0, !- Field 38 + For:AllOtherDays, !- Field 40 + Until: 24:00,0.0; !- Field 41 + + Schedule:Compact, + OFFICE EQUIP, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: WeekDays SummerDesignDay, !- Field 2 + Until: 8:00,0.0, !- Field 3 + Until: 18:00,1.00, !- Field 5 + Until: 24:00,0.0, !- Field 7 + For: WinterDesignDay, !- Field 9 + Until: 8:00,0.0, !- Field 10 + Until: 18:00,1.00, !- Field 12 + Until: 24:00,0.0, !- Field 14 + For: AllOtherDays, !- Field 16 + Until: 24:00,0.0; !- Field 17 + + Schedule:Compact, + OFFICE LIGHTING, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: WeekDays SummerDesignDay, !- Field 2 + Until: 6:00,0.05, !- Field 3 + Until: 7:00,0.20, !- Field 5 + Until: 17:00,1.00, !- Field 7 + Until: 18:00,0.50, !- Field 9 + Until: 24:00,0.05, !- Field 11 + For: WinterDesignDay, !- Field 13 + Until: 6:00,0.05, !- Field 14 + Until: 7:00,0.20, !- Field 16 + Until: 17:00,1.00, !- Field 18 + Until: 18:00,0.50, !- Field 20 + Until: 24:00,0.05, !- Field 22 + For: AllOtherDays, !- Field 24 + Until: 24:00,0.05; !- Field 25 + + Schedule:Compact, + INFIL-SCH, !- Name + Fraction, !- Schedule Type Limits Name + Through: 3/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0, !- Field 3 + Through: 10/31, !- Field 5 + For: AllDays, !- Field 6 + Until: 24:00,0.0, !- Field 7 + Through: 12/31, !- Field 9 + For: AllDays, !- Field 10 + Until: 24:00,1.0; !- Field 11 + + Schedule:Compact, + FanAndCoilAvailSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0; !- Field 3 + + Schedule:Compact, + CoolingCoilAvailSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0; !- Field 3 + + Schedule:Compact, + CyclingFanSch, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,0.0; !- Field 3 + + Schedule:Compact, + HeatingCoilAvailSched, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0; !- Field 3 + + Schedule:Compact, + Heating Setpoints, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,21; !- Field 3 + + Schedule:Compact, + Cooling Setpoints, !- Name + Temperature, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,24; !- Field 3 + + Schedule:Compact, + West Zone Control Type Sched, !- Name + Control Type, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,4; !- Field 3 + + Schedule:Compact, + Zone Control Type Sched, !- Name + Control Type, !- Schedule Type Limits Name + Through: 3/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1, !- Field 3 + Through: 9/30, !- Field 5 + For: AllDays, !- Field 6 + Until: 24:00,2, !- Field 7 + Through: 12/31, !- Field 9 + For: AllDays, !- Field 10 + Until: 24:00,1; !- Field 11 + + Schedule:Compact, + ConstantFanSch, !- Name + Fraction, !- Schedule Type Limits Name + Through: 12/31, !- Field 1 + For: AllDays, !- Field 2 + Until: 24:00,1.0; !- Field 3 + + Zone, + West Zone, !- Name + 0, !- Direction of Relative North {deg} + 0, !- X Origin {m} + 0, !- Y Origin {m} + 0, !- Z Origin {m} + 1, !- Type + 1, !- Multiplier + autocalculate, !- Ceiling Height {m} + autocalculate; !- Volume {m3} + + Sizing:Zone, + West Zone, !- Zone or ZoneList Name + SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method + 12, !- Zone Cooling Design Supply Air Temperature {C} + , !- Zone Cooling Design Supply Air Temperature Difference {deltaC} + SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method + 50, !- Zone Heating Design Supply Air Temperature {C} + , !- Zone Heating Design Supply Air Temperature Difference {deltaC} + 0.008, !- Zone Cooling Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kgWater/kgDryAir} + SZ DSOA WEST ZONE, !- Design Specification Outdoor Air Object Name + , !- Zone Heating Sizing Factor + , !- Zone Cooling Sizing Factor + DesignDay, !- Cooling Design Air Flow Method + , !- Cooling Design Air Flow Rate {m3/s} + , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2} + , !- Cooling Minimum Air Flow {m3/s} + , !- Cooling Minimum Air Flow Fraction + DesignDay, !- Heating Design Air Flow Method + , !- Heating Design Air Flow Rate {m3/s} + , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2} + , !- Heating Maximum Air Flow {m3/s} + , !- Heating Maximum Air Flow Fraction + , !- Design Specification Zone Air Distribution Object Name + No, !- Account for Dedicated Outdoor Air System + NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy + autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C} + autosize, !- Dedicated Outdoor Air High Setpoint Temperature for Design {C} + Sensible Load Only No Latent Load, !- Zone Load Sizing Method + HumidityRatioDifference, !- Zone Latent Cooling Design Supply Air Humidity Ratio Input Method + , !- Zone Dehumidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005, !- Zone Cooling Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + HumidityRatioDifference, !- Zone Latent Heating Design Supply Air Humidity Ratio Input Method + , !- Zone Humidification Design Supply Air Humidity Ratio {kgWater/kgDryAir} + 0.005; !- Zone Humidification Design Supply Air Humidity Ratio Difference {kgWater/kgDryAir} + + Fan:OnOff, + Zone1WindACFan, !- Name + CoolingCoilAvailSched, !- Availability Schedule Name + 0.5, !- Fan Total Efficiency + 75.0, !- Pressure Rise {Pa} + autosize, !- Maximum Flow Rate {m3/s} + 0.9, !- Motor Efficiency + 1.0, !- Motor In Airstream Fraction + Zone1WindACOAMixerOutletNode, !- Air Inlet Node Name + Zone1WindACFanOutletNode;!- Air Outlet Node Name + + GlobalGeometryRules, + UpperLeftCorner, !- Starting Vertex Position + CounterClockWise, !- Vertex Entry Direction + World; !- Coordinate System + + BuildingSurface:Detailed, + Zn001:Wall001, !- Name + Wall, !- Surface Type + R13WALL, !- Construction Name + West Zone, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.5000000, !- View Factor to Ground + 4, !- Number of Vertices + 0,0,4.572000, !- X,Y,Z ==> Vertex 1 {m} + 0,0,0, !- X,Y,Z ==> Vertex 2 {m} + 15.24000,0,0, !- X,Y,Z ==> Vertex 3 {m} + 15.24000,0,4.572000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Zn001:Wall002, !- Name + Wall, !- Surface Type + R13WALL, !- Construction Name + West Zone, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.5000000, !- View Factor to Ground + 4, !- Number of Vertices + 15.24000,0,4.572000, !- X,Y,Z ==> Vertex 1 {m} + 15.24000,0,0, !- X,Y,Z ==> Vertex 2 {m} + 15.24000,15.24000,0, !- X,Y,Z ==> Vertex 3 {m} + 15.24000,15.24000,4.572000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Zn001:Wall003, !- Name + Wall, !- Surface Type + R13WALL, !- Construction Name + West Zone, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.5000000, !- View Factor to Ground + 4, !- Number of Vertices + 15.24000,15.24000,4.572000, !- X,Y,Z ==> Vertex 1 {m} + 15.24000,15.24000,0, !- X,Y,Z ==> Vertex 2 {m} + 0,15.24000,0, !- X,Y,Z ==> Vertex 3 {m} + 0,15.24000,4.572000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Zn001:Wall004, !- Name + Wall, !- Surface Type + R13WALL, !- Construction Name + West Zone, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0.5000000, !- View Factor to Ground + 4, !- Number of Vertices + 0,15.24000,4.572000, !- X,Y,Z ==> Vertex 1 {m} + 0,15.24000,0, !- X,Y,Z ==> Vertex 2 {m} + 0,0,0, !- X,Y,Z ==> Vertex 3 {m} + 0,0,4.572000; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Zn001:Flr001, !- Name + Floor, !- Surface Type + FLOOR, !- Construction Name + West Zone, !- Zone Name + , !- Space Name + Surface, !- Outside Boundary Condition + Zn001:Flr001, !- Outside Boundary Condition Object + NoSun, !- Sun Exposure + NoWind, !- Wind Exposure + 1.000000, !- View Factor to Ground + 4, !- Number of Vertices + 15.24000,0.000000,0.0, !- X,Y,Z ==> Vertex 1 {m} + 0.000000,0.000000,0.0, !- X,Y,Z ==> Vertex 2 {m} + 0.000000,15.24000,0.0, !- X,Y,Z ==> Vertex 3 {m} + 15.24000,15.24000,0.0; !- X,Y,Z ==> Vertex 4 {m} + + BuildingSurface:Detailed, + Zn001:Roof001, !- Name + Roof, !- Surface Type + ROOF31, !- Construction Name + West Zone, !- Zone Name + , !- Space Name + Outdoors, !- Outside Boundary Condition + , !- Outside Boundary Condition Object + SunExposed, !- Sun Exposure + WindExposed, !- Wind Exposure + 0, !- View Factor to Ground + 4, !- Number of Vertices + 0.000000,15.24000,4.572, !- X,Y,Z ==> Vertex 1 {m} + 0.000000,0.000000,4.572, !- X,Y,Z ==> Vertex 2 {m} + 15.24000,0.000000,4.572, !- X,Y,Z ==> Vertex 3 {m} + 15.24000,15.24000,4.572; !- X,Y,Z ==> Vertex 4 {m} + + DesignSpecification:OutdoorAir, + SZ DSOA WEST ZONE, !- Name + Flow/Zone, !- Outdoor Air Method + , !- Outdoor Air Flow per Person {m3/s-person} + , !- Outdoor Air Flow per Zone Floor Area {m3/s-m2} + 0; !- Outdoor Air Flow per Zone {m3/s} + + Sizing:Plant, + Hot Water Loop, !- Plant or Condenser Loop Name + heating, !- Loop Type + 82., !- Design Loop Exit Temperature {C} + 11; !- Loop Design Temperature Difference {deltaC} + + People, + WEST ZONE, !- Name + WEST ZONE, !- Zone or ZoneList or Space or SpaceList Name + BLDG Sch 1, !- Number of People Schedule Name + people, !- Number of People Calculation Method + 10, !- Number of People + , !- People per Floor Area {person/m2} + , !- Floor Area per Person {m2/person} + 0.3000000, !- Fraction Radiant + , !- Sensible Heat Fraction + Activity Sch, !- Activity Level Schedule Name + 3.82E-8, !- Carbon Dioxide Generation Rate {m3/s-W} + , !- Enable ASHRAE 55 Comfort Warnings + zoneaveraged, !- Mean Radiant Temperature Calculation Type + , !- Surface Name/Angle Factor List Name + Work Eff Sch, !- Work Efficiency Schedule Name + , !- Clothing Insulation Calculation Method + , !- Clothing Insulation Calculation Method Schedule Name + Clothing Sch, !- Clothing Insulation Schedule Name + Air Velo Sch, !- Air Velocity Schedule Name + FANGER; !- Thermal Comfort Model 1 Type + + Lights, + WEST ZONE Lights 1, !- Name + WEST ZONE, !- Zone or ZoneList or Space or SpaceList Name + OFFICE LIGHTING, !- Schedule Name + LightingLevel, !- Design Level Calculation Method + 0, !- Lighting Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Return Air Fraction + 0.2000000, !- Fraction Radiant + 0.2000000, !- Fraction Visible + 0, !- Fraction Replaceable + GeneralLights; !- End-Use Subcategory + + ElectricEquipment, + WEST ZONE ElecEq 1, !- Name + WEST ZONE, !- Zone or ZoneList or Space or SpaceList Name + OFFICE EQUIP, !- Schedule Name + EquipmentLevel, !- Design Level Calculation Method + 0, !- Design Level {W} + , !- Watts per Zone Floor Area {W/m2} + , !- Watts per Person {W/person} + 0, !- Fraction Latent + 0.3000000, !- Fraction Radiant + 0; !- Fraction Lost + +! ZoneControl:Thermostat, +! Zone 1 Thermostat, !- Name +! WEST ZONE, !- Zone or ZoneList Name +! Other Zone Control Type Sched, !- Control Type Schedule Name +! ThermostatSetpoint:SingleHeating, !- Control 1 Object Type +! Heating Setpoint, !- Control 1 Name +! ThermostatSetpoint:SingleCooling, !- Control 2 Object Type +! Cooling Setpoint; !- Control 2 Name +!Use dual set point thermostats for proper control of interior zones + + ZoneControl:Thermostat, + Zone 1 Thermostat, !- Name + West Zone, !- Zone or ZoneList Name + Zone Control Type Sched, !- Control Type Schedule Name + ThermostatSetpoint:SingleHeating, !- Control 1 Object Type + Heating Setpoint with SB,!- Control 1 Name + ThermostatSetpoint:SingleCooling, !- Control 2 Object Type + Cooling Setpoint with SB;!- Control 2 Name + + ZoneControl:Humidistat, + Zone 1 Humidistat, !- Name + West Zone, !- Zone Name + Seasonal Relative Humidity Sch; !- Humidifying Relative Humidity Setpoint Schedule Name + + ThermostatSetpoint:SingleHeating, + Heating Setpoint with SB,!- Name + Heating Setpoints; !- Setpoint Temperature Schedule Name + + ThermostatSetpoint:SingleCooling, + Cooling Setpoint with SB,!- Name + Cooling Setpoints; !- Setpoint Temperature Schedule Name + + ZoneHVAC:WindowAirConditioner, + Zone1WindAC, !- Name + OFF, !- Availability Schedule Name + autosize, !- Maximum Supply Air Flow Rate {m3/s} + autosize, !- Maximum Outdoor Air Flow Rate {m3/s} + Zone1WindACAirInletNode, !- Air Inlet Node Name + Zone1WindACAirOutletNode,!- Air Outlet Node Name + OutdoorAir:Mixer, !- Outdoor Air Mixer Object Type + Zone1WindACOAMixer, !- Outdoor Air Mixer Name + Fan:OnOff, !- Supply Air Fan Object Type + Zone1WindACFan, !- Supply Air Fan Name + Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type + Zone1WindACDXCoil, !- DX Cooling Coil Name + CyclingFanSch, !- Supply Air Fan Operating Mode Schedule Name + BlowThrough, !- Fan Placement + 0.001; !- Cooling Convergence Tolerance + +! Thermastor HI-E-DRY-100 dehumidifier + + ZoneHVAC:Dehumidifier:DX, + West Zone Dehumidifier, !- Name + ON, !- Availability Schedule Name + Zone1DehumidifierInlet, !- Air Inlet Node Name + Dehumidifier Outlet Node,!- Air Outlet Node Name + 50.16, !- Rated Water Removal {L/day} + 3.412, !- Rated Energy Factor {L/kWh} + 0.12036, !- Rated Air Flow Rate {m3/s} + ZoneDehumidWaterRemoval, !- Water Removal Curve Name + ZoneDehumidEnergyFactor, !- Energy Factor Curve Name + ZoneDehumidPLFFPLR, !- Part Load Fraction Correlation Curve Name + 10.0, !- Minimum Dry-Bulb Temperature for Dehumidifier Operation {C} + 40, !- Maximum Dry-Bulb Temperature for Dehumidifier Operation {C} + 0.0; !- Off-Cycle Parasitic Electric Load {W} + + Curve:Biquadratic, + ZoneDehumidWaterRemoval, !- Name + -2.724878664080, !- Coefficient1 Constant + 0.100711983591, !- Coefficient2 x + -0.000990538285, !- Coefficient3 x**2 + 0.050053043874, !- Coefficient4 y + -0.000203629282, !- Coefficient5 y**2 + -0.000341750531, !- Coefficient6 x*y + 5.0, !- Minimum Value of x + 40.0, !- Maximum Value of x + 20.0, !- Minimum Value of y + 80.0; !- Maximum Value of y + + Curve:Biquadratic, + ZoneDehumidEnergyFactor, !- Name + -2.388319068955, !- Coefficient1 Constant + 0.093047739452, !- Coefficient2 x + -0.001369700327, !- Coefficient3 x**2 + 0.066533716758, !- Coefficient4 y + -0.000343198063, !- Coefficient5 y**2 + -0.000562490295, !- Coefficient6 x*y + 5.0, !- Minimum Value of x + 40.0, !- Maximum Value of x + 20.0, !- Minimum Value of y + 80.0; !- Maximum Value of y + + Curve:Quadratic, + ZoneDehumidPLFFPLR, !- Name + 1, !- Coefficient1 Constant + 0, !- Coefficient2 x + 0.0, !- Coefficient3 x**2 + 0.0, !- Minimum Value of x + 1.0; !- Maximum Value of x + + ZoneHVAC:EquipmentList, + Zone1Equipment, !- Name + SequentialLoad, !- Load Distribution Scheme + ZoneHVAC:WindowAirConditioner, !- Zone Equipment 1 Object Type + Zone1WindAC, !- Zone Equipment 1 Name + 1, !- Zone Equipment 1 Cooling Sequence + 1, !- Zone Equipment 1 Heating or No-Load Sequence + , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name + , !- Zone Equipment 1 Sequential Heating Fraction Schedule Name + ZoneHVAC:Dehumidifier:DX,!- Zone Equipment 2 Object Type + West Zone Dehumidifier, !- Zone Equipment 2 Name + 2, !- Zone Equipment 2 Cooling Sequence + 2; !- Zone Equipment 2 Heating or No-Load Sequence + + ZoneHVAC:EquipmentConnections, + WEST ZONE, !- Zone Name + Zone1Equipment, !- Zone Conditioning Equipment List Name + Zone1Inlets, !- Zone Air Inlet Node or NodeList Name + Zone1Exhausts, !- Zone Air Exhaust Node or NodeList Name + Zone 1 Node, !- Zone Air Node Name + Zone 1 Outlet Node; !- Zone Return Air Node or NodeList Name + + Coil:Cooling:DX:SingleSpeed, + Zone1WindACDXCoil, !- Name + OFF, !- Availability Schedule Name + autosize, !- Gross Rated Total Cooling Capacity {W} + autosize, !- Gross Rated Sensible Heat Ratio + 3.0, !- Gross Rated Cooling COP {W/W} + autosize, !- Rated Air Flow Rate {m3/s} + , !- 2017 Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)} + , !- 2023 Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)} + Zone1WindACFanOutletNode,!- Air Inlet Node Name + Zone1WindACAirOutletNode,!- Air Outlet Node Name + WindACCoolCapFT, !- Total Cooling Capacity Function of Temperature Curve Name + WindACCoolCapFFF, !- Total Cooling Capacity Function of Flow Fraction Curve Name + WindACEIRFT, !- Energy Input Ratio Function of Temperature Curve Name + WindACEIRFFF, !- Energy Input Ratio Function of Flow Fraction Curve Name + WindACPLFFPLR, !- Part Load Fraction Correlation Curve Name + , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C} + , !- Nominal Time for Condensate Removal to Begin {s} + ; !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless} + + OutdoorAir:Mixer, + Zone1WindACOAMixer, !- Name + Zone1WindACOAMixerOutletNode, !- Mixed Air Node Name + Zone1WindACOAInNode, !- Outdoor Air Stream Node Name + Zone1WindACExhNode, !- Relief Air Stream Node Name + Zone1WindACAirInletNode; !- Return Air Stream Node Name + + NodeList, + OutsideAirInletNodes, !- Name + Zone1WindACOAInNode; !- Node 1 Name + + NodeList, + Zone1Inlets, !- Name + Zone1WindACAirOutletNode,!- Node 1 Name + Dehumidifier Outlet Node;!- Node 2 Name + + NodeList, + Zone1Exhausts, !- Name + Zone1WindACAirInletNode, !- Node 1 Name + Zone1DehumidifierInlet; !- Node 2 Name + + OutdoorAir:NodeList, + OutsideAirInletNodes; !- Node or NodeList Name 1 + + Curve:Biquadratic, + WindACCoolCapFT, !- Name + 0.942587793, !- Coefficient1 Constant + 0.009543347, !- Coefficient2 x + 0.000683770, !- Coefficient3 x**2 + -0.011042676, !- Coefficient4 y + 0.000005249, !- Coefficient5 y**2 + -0.000009720, !- Coefficient6 x*y + 12.77778, !- Minimum Value of x + 23.88889, !- Maximum Value of x + 18.0, !- Minimum Value of y + 46.11111, !- Maximum Value of y + , !- Minimum Curve Output + , !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + + Curve:Biquadratic, + WindACEIRFT, !- Name + 0.342414409, !- Coefficient1 Constant + 0.034885008, !- Coefficient2 x + -0.000623700, !- Coefficient3 x**2 + 0.004977216, !- Coefficient4 y + 0.000437951, !- Coefficient5 y**2 + -0.000728028, !- Coefficient6 x*y + 12.77778, !- Minimum Value of x + 23.88889, !- Maximum Value of x + 18.0, !- Minimum Value of y + 46.11111, !- Maximum Value of y + , !- Minimum Curve Output + , !- Maximum Curve Output + Temperature, !- Input Unit Type for X + Temperature, !- Input Unit Type for Y + Dimensionless; !- Output Unit Type + + Curve:Quadratic, + WindACCoolCapFFF, !- Name + 0.8, !- Coefficient1 Constant + 0.2, !- Coefficient2 x + 0.0, !- Coefficient3 x**2 + 0.5, !- Minimum Value of x + 1.5; !- Maximum Value of x + + Curve:Quadratic, + WindACEIRFFF, !- Name + 1.1552, !- Coefficient1 Constant + -0.1808, !- Coefficient2 x + 0.0256, !- Coefficient3 x**2 + 0.5, !- Minimum Value of x + 1.5; !- Maximum Value of x + + Curve:Quadratic, + WindACPLFFPLR, !- Name + 1.0, !- Coefficient1 Constant + 0.0, !- Coefficient2 x + 0.0, !- Coefficient3 x**2 + 0.0, !- Minimum Value of x + 1.0; !- Maximum Value of x + + Output:VariableDictionary,Regular; + + Output:Table:SummaryReports, + AllSummary; !- Report 1 Name + + OutputControl:Table:Style, + HTML; !- Column Separator + + Output:Variable,*,Site Outdoor Air Drybulb Temperature,hourly; + + Output:Variable,West Zone,Zone Air Temperature,hourly; + + Output:Variable,West Zone,Zone Air Humidity Ratio,hourly; + + Output:Variable,West Zone,Zone Air Relative Humidity,hourly; + + Output:Variable,West Zone,Zone Thermostat Heating Setpoint Temperature,hourly; + + Output:Variable,West Zone,Zone Thermostat Cooling Setpoint Temperature,hourly; + + Output:Variable,West Zone,Zone Air System Sensible Heating Rate,hourly; + + Output:Variable,West Zone,Zone Air System Sensible Cooling Rate,hourly; + + Output:Variable,Zone1DehumidifierInlet,System Node Mass Flow Rate,hourly; + + Output:Variable,Zone1DehumidifierInlet,System Node Temperature,hourly; + + Output:Variable,Zone1DehumidifierInlet,System Node Humidity Ratio,hourly; + + Output:Variable,Zone1DehumidifierInlet,System Node Standard Density Volume Flow Rate,hourly; + + Output:Variable,Dehumidifier Outlet Node,System Node Mass Flow Rate,hourly; + + Output:Variable,West Zone Dehumidifier,Zone Dehumidifier Outlet Air Temperature,hourly; + + Output:Variable,Dehumidifier Outlet Node,System Node Temperature,hourly; + + Output:Variable,Dehumidifier Outlet Node,System Node Humidity Ratio,hourly; + + Output:Variable,Dehumidifier Outlet Node,System Node Standard Density Volume Flow Rate,hourly; + + Output:Variable,West Zone Dehumidifier,Zone Dehumidifier Sensible Heating Rate,hourly; + + Output:Variable,West Zone Dehumidifier,Zone Dehumidifier Removed Water Mass Flow Rate,hourly; + + Output:Variable,West Zone Dehumidifier,Zone Dehumidifier Electricity Rate,hourly; + + Output:Variable,West Zone Dehumidifier,Zone Dehumidifier Part Load Ratio,hourly; + + Output:Variable,West Zone Dehumidifier,Zone Dehumidifier Runtime Fraction,hourly; + + Output:Meter:MeterFileOnly,Electricity:Facility,monthly; + + Output:Meter:MeterFileOnly,Electricity:Building,monthly; + + Output:Meter:MeterFileOnly,InteriorLights:Electricity,monthly; + + Output:Meter:MeterFileOnly,Electricity:HVAC,monthly; + + Output:Meter:MeterFileOnly,Electricity:Facility,runperiod; + + Output:Meter:MeterFileOnly,Electricity:Building,runperiod; + + Output:Meter:MeterFileOnly,InteriorLights:Electricity,runperiod; + + Output:Meter:MeterFileOnly,Electricity:HVAC,runperiod; + diff --git a/Buildings/Resources/Data/Fluid/Humidifiers/DXDehumidifier/csv_to_mos.py b/Buildings/Resources/Data/Fluid/Humidifiers/DXDehumidifier/csv_to_mos.py new file mode 100644 index 00000000000..065078d8a88 --- /dev/null +++ b/Buildings/Resources/Data/Fluid/Humidifiers/DXDehumidifier/csv_to_mos.py @@ -0,0 +1,39 @@ +#!/usr/bin/env python3 +import sys +sys.path.append('../../../../Scripts/EnergyPlus') +import energyplus_csv_to_mos as e + +def check(): + args = sys.argv[1:] + dat_fil = args[0].replace(".idf", ".dat") + print(dat_fil) + +def main(): + args = sys.argv[1:] + dat_fil = args[0].replace(".idf", ".dat") + output_list =[ + "WEST ZONE:Zone Air Temperature [C](Hourly)",#1 + "WEST ZONE:Zone Air Relative Humidity [%](Hourly)",#2 + "WEST ZONE DEHUMIDIFIER:Zone Dehumidifier Sensible Heating Rate [W](Hourly)",#3 + "WEST ZONE DEHUMIDIFIER:Zone Dehumidifier Removed Water Mass Flow Rate [kg/s](Hourly)",#4 + "WEST ZONE DEHUMIDIFIER:Zone Dehumidifier Electricity Rate [W](Hourly)",#5 + "ZONE1DEHUMIDIFIERINLET:System Node Mass Flow Rate [kg/s](Hourly)",#6 + "Environment:Site Outdoor Air Drybulb Temperature [C](Hourly)",#7 + "WEST ZONE DEHUMIDIFIER:Zone Dehumidifier Part Load Ratio [](Hourly)",#8 + "WEST ZONE DEHUMIDIFIER:Zone Dehumidifier Runtime Fraction [](Hourly)",#9 + "ZONE1DEHUMIDIFIERINLET:System Node Humidity Ratio [kgWater/kgDryAir](Hourly)",#10 + "ZONE1DEHUMIDIFIERINLET:System Node Temperature [C](Hourly)", #11 + "DEHUMIDIFIER OUTLET NODE:System Node Temperature [C](Hourly)", #12 + "DEHUMIDIFIER OUTLET NODE:System Node Humidity Ratio [kgWater/kgDryAir](Hourly)", #13 + "WEST ZONE DEHUMIDIFIER:Zone Dehumidifier Outlet Air Temperature [C](Hourly)" #14 + ] + + e.energyplus_csv_to_mos( + output_list = output_list, + dat_file_name=dat_fil, + step_size=3600, + start_time=12960000, + final_time=15120000) + +if __name__ == '__main__': + main() diff --git a/Buildings/Resources/Data/Fluid/Humidifiers/DXDehumidifier/run.sh b/Buildings/Resources/Data/Fluid/Humidifiers/DXDehumidifier/run.sh new file mode 100755 index 00000000000..731bdb9f823 --- /dev/null +++ b/Buildings/Resources/Data/Fluid/Humidifiers/DXDehumidifier/run.sh @@ -0,0 +1,14 @@ +#!/bin/bash +set -e +idf_files="."/*.idf +for entry in $idf_files +do +echo "$entry" +energyplus \ + --readvars \ + --output-directory EnergyPlus \ + -w ../../../../weatherdata/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw \ + "$entry" +python csv_to_mos.py "$entry" +rm -rf EnergyPlus +done diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_Humidifiers_Validation_DXDehumidifier.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_Humidifiers_Validation_DXDehumidifier.txt new file mode 100644 index 00000000000..08dad48845f --- /dev/null +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_Humidifiers_Validation_DXDehumidifier.txt @@ -0,0 +1,15 @@ +last-generated=2024-12-21 +statistics-simulation= +{ + "linear": " ", + "nonlinear": " ", + "number of continuous time states": "10", + "numerical Jacobians": "0" +} +time=[1.296e+07, 1.512e+07] +mWat_engPlu.y=[0e+00, 5.475999932968989e-05, 1.486999972257763e-04, 2.897999947890639e-04, 9.842999861575663e-05, 4.561999958241358e-05, 1.436000020476058e-04, 3.216000040993094e-04, 1.41800002893433e-04, 7.296999683603644e-05, 1.383000053465366e-04, 3.915000124834478e-04, 1.002999997581355e-04, 7.855999865569174e-05, 0e+00, 0e+00, 0e+00, 3.243000173824839e-05, 0e+00, 0e+00, 0e+00, 1.435000012861565e-05, 1.963999966392294e-04, 3.11699986923486e-04, 1.059999995050021e-04, 6.815000233473256e-05, 3.786000161198899e-05, 2.923999854829162e-04, 5.121999856783077e-05, 3.113999991910532e-05, 2.373000024817884e-04, 3.19699989631772e-04, 9.999999747378752e-05, 4.397000157041475e-05, 1.449999981559813e-04, 5.023999838158488e-04, 1.345000055152923e-04, 6.463000318035483e-05, 2.26100004510954e-04, 3.776999947149307e-04, 1.030999992508441e-04, 3.545000072335824e-05, 4.717000047094189e-05, 6.253999890759587e-05, 9.238000347977504e-05, 5.78399994992651e-05, 0e+00, 0e+00, 0e+00, 5.193000106373802e-05, 8.992000221041963e-05, 2.781999937724322e-04, 7.724999886704609e-05, 3.540000034263358e-05, 1.578999945195392e-04, 2.768000122159719e-04, 8.443000115221366e-05, 4.374999844003469e-05, 1.644000003580004e-04, 3.086999931838363e-04, 6.494999979622662e-05, 4.795999848283827e-05, 1.844999933382496e-04, 3.451000084169209e-04, 8.582000009482726e-05, 5.900999894947745e-05, 2.047000016318634e-04, 3.914000117219985e-04, 8.201000309782103e-05, 6.843000301159918e-05, 0e+00, 0e+00, 9.16499993763864e-05, 7.66099983593449e-05, 1.786000041192892e-07, 0e+00, 6.318999658105895e-05, 3.020000076503493e-05, 1.227000029757619e-04, 2.632999967318028e-04, 3.773999924305826e-05, 2.03199997486081e-05, 1.710999931674451e-04, 3.354999935254455e-04, 1.090000005206093e-04, 5.082999996375293e-05, 1.825000072130933e-04, 3.765999863389879e-04, 1.106999989133328e-04, 8.522999996785074e-05, 1.844000071287155e-04, 3.966999938711524e-04, 1.422000059392303e-04, 1.093000028049573e-04, 2.089000045089051e-04, 3.788000030908734e-04, 9.128999954555184e-05, 7.614000060129911e-05, 0e+00, 0e+00, 3.445999936957378e-06] +mWatMod.y=[0e+00, 5.691946171282325e-06, 1.529739893157966e-05, 2.972850052174181e-05, 1.011510448734043e-05, 4.692601578426547e-06, 1.464942033635452e-05, 3.280371311120689e-05, 1.44987961903098e-05, 7.480146905436413e-06, 1.412400797562441e-05, 4.012823410448618e-05, 1.028580845741089e-05, 8.095188604784198e-06, 0e+00, 0e+00, 0e+00, 3.375792630322394e-06, 0e+00, 0e+00, 0e+00, 1.501474457654695e-06, 2.033463715633843e-05, 3.224897591280751e-05, 1.099803557735868e-05, 7.13277904651477e-06, 3.854582701023901e-06, 3.030094558198471e-05, 5.322305241861613e-06, 3.240385240133037e-06, 2.457469963701442e-05, 3.306822691229172e-05, 1.033294483931968e-05, 4.541101134236669e-06, 1.485623761254828e-05, 5.156516999704763e-05, 1.375237934553297e-05, 6.63295713820844e-06, 2.315394340257626e-05, 3.877407652908005e-05, 1.060990052792476e-05, 3.678677103380323e-06, 4.892417109658709e-06, 6.458685220422922e-06, 9.487987881584559e-06, 5.967571723886067e-06, 0e+00, 0e+00, 0e+00, 5.370828603190603e-06, 9.193636287818663e-06, 2.847178257070482e-05, 7.915038622741122e-06, 3.640859631559579e-06, 1.612317100807559e-05, 2.826443778758403e-05, 8.63098193804035e-06, 4.504102889768546e-06, 1.681613866821863e-05, 3.162629582220688e-05, 6.663462045253254e-06, 4.930046543449862e-06, 1.886270911199972e-05, 3.536291114869528e-05, 8.78427363204537e-06, 6.050559022696689e-06, 2.094764931825921e-05, 4.022061330033466e-05, 8.443093065579887e-06, 7.067460501275491e-06, 0e+00, 0e+00, 9.37988625082653e-06, 7.868709872127511e-06, 4.32509608572218e-07, 0e+00, 6.487181963166222e-06, 3.110345915047219e-06, 1.255283405043883e-05, 2.69787142315181e-05, 3.88532043871237e-06, 2.102272446791176e-06, 1.763517684594262e-05, 3.470801311777905e-05, 1.122045705415076e-05, 5.250926278677071e-06, 1.874591180239804e-05, 3.868015119223855e-05, 1.136801984102931e-05, 8.761303433857393e-06, 1.887672624434344e-05, 4.059906859765761e-05, 1.452617561881198e-05, 1.115884697355796e-05, 2.127003608620726e-05, 3.865225880872458e-05, 9.307399523095228e-06, 7.787631147948559e-06, 0e+00, 0e+00, 3.789050424529705e-07] +QHea_engPlu.y=[0e+00, 2.116999969482422e+02, 5.81e+02, 1.167e+03, 3.858999938964844e+02, 1.771999969482422e+02, 5.632999877929688e+02, 1.299e+03, 5.565e+02, 2.826000061035156e+02, 5.437000122070312e+02, 1.582e+03, 3.937000122070312e+02, 3.047000122070312e+02, 0e+00, 0e+00, 0e+00, 1.254000015258789e+02, 0e+00, 0e+00, 0e+00, 5.543000030517578e+01, 7.647000122070312e+02, 1.234e+03, 4.107999877929688e+02, 2.627000122070312e+02, 1.475e+02, 1.176e+03, 2.023000030517578e+02, 1.22e+02, 9.422999877929688e+02, 1.299e+03, 3.97e+02, 1.723999938964844e+02, 5.857000122070312e+02, 2.137e+03, 5.41e+02, 2.546999969482422e+02, 9.057999877929688e+02, 1.582e+03, 4.127000122070312e+02, 1.398000030517578e+02, 1.851000061035156e+02, 2.438999938964844e+02, 3.572999877929688e+02, 2.228999938964844e+02, 0e+00, 0e+00, 0e+00, 2.001999969482422e+02, 3.476000061035156e+02, 1.089e+03, 2.983999938964844e+02, 1.363999938964844e+02, 6.110999755859375e+02, 1.086e+03, 3.272000122070312e+02, 1.688000030517578e+02, 6.392000122070312e+02, 1.231e+03, 2.548999938964844e+02, 1.868999938964844e+02, 7.327999877929688e+02, 1.432e+03, 3.458999938964844e+02, 2.338000030517578e+02, 8.330999755859375e+02, 1.688e+03, 3.388999938964844e+02, 2.763999938964844e+02, 0e+00, 0e+00, 3.617999877929688e+02, 2.981000061035156e+02, 6.92300021648407e-01, 0e+00, 2.436999969482422e+02, 1.164000015258789e+02, 4.745e+02, 1.034e+03, 1.466999969482422e+02, 7.872000122070312e+01, 6.717999877929688e+02, 1.362e+03, 4.312000122070312e+02, 1.985e+02, 7.280999755859375e+02, 1.568e+03, 4.451000061035156e+02, 3.352000122070312e+02, 7.417000122070312e+02, 1.671e+03, 5.685e+02, 4.271000061035156e+02, 8.17e+02, 1.501e+03, 3.537000122070312e+02, 2.935e+02, 0e+00, 0e+00, 1.327999973297119e+01] +QHeaMod.y=[0e+00, 2.210212516784668e+01, 6.02481689453125e+01, 1.207750473022461e+02, 3.998401260375977e+01, 1.83760871887207e+01, 5.809772109985352e+01, 1.339989013671875e+02, 5.749051666259766e+01, 2.923843955993652e+01, 5.605759429931641e+01, 1.635829925537109e+02, 4.074526596069336e+01, 3.163411903381348e+01, 0e+00, 0e+00, 0e+00, 1.310390567779541e+01, 0e+00, 0e+00, 0e+00, 5.81568431854248e+00, 7.962290191650391e+01, 1.283431243896484e+02, 4.28437385559082e+01, 2.756143951416016e+01, 1.511540699005127e+01, 1.224542388916016e+02, 2.111603355407715e+01, 1.274151039123535e+01, 9.811666870117188e+01, 1.350814056396484e+02, 4.126815414428711e+01, 1.792668533325195e+01, 6.053339004516602e+01, 2.206758728027344e+02, 5.59293212890625e+01, 2.636570739746094e+01, 9.366687774658203e+01, 1.635717163085938e+02, 4.283424377441406e+01, 1.457719039916992e+01, 1.929858207702637e+01, 2.53643856048584e+01, 3.700520706176758e+01, 2.314820671081543e+01, 0e+00, 0e+00, 0e+00, 2.081734848022461e+01, 3.585014343261719e+01, 1.125707321166992e+02, 3.085189247131348e+01, 1.413487148284912e+01, 6.301412963867188e+01, 1.120731735229492e+02, 3.377077102661133e+01, 1.75092716217041e+01, 6.601481628417969e+01, 1.272663269042969e+02, 2.638047409057617e+01, 1.936862754821777e+01, 7.563928985595703e+01, 1.479960327148438e+02, 3.576052474975586e+01, 2.419654083251953e+01, 8.599294281005859e+01, 1.744274444580078e+02, 3.513174438476562e+01, 2.871392440795898e+01, 0e+00, 0e+00, 3.740061187744141e+01, 3.088993644714355e+01, 1.690940380096436e+00, 0e+00, 2.522013473510742e+01, 1.206997108459473e+01, 4.896255493164062e+01, 1.069948348999023e+02, 1.521701049804688e+01, 8.192873001098633e+00, 6.974028015136719e+01, 1.416274566650391e+02, 4.474786376953125e+01, 2.064735984802246e+01, 7.537380981445312e+01, 1.622233276367188e+02, 4.612948226928711e+01, 3.474592208862305e+01, 7.666510009765625e+01, 1.724478607177734e+02, 5.868011474609375e+01, 4.408662033081055e+01, 8.414113616943359e+01, 1.548039245605469e+02, 3.646734619140625e+01, 3.029683113098145e+01, 0e+00, 0e+00, 1.483903050422668e+00] +P_engPlu.y=[0e+00, 7.823999786376953e+01, 2.193000030517578e+02, 4.647000122070312e+02, 1.466000061035156e+02, 6.613999938964844e+01, 2.143000030517578e+02, 5.192999877929688e+02, 2.118000030517578e+02, 1.048000030517578e+02, 2.073999938964844e+02, 6.33e+02, 1.498000030517578e+02, 1.133000030517578e+02, 0e+00, 0e+00, 0e+00, 4.631999969482422e+01, 0e+00, 0e+00, 0e+00, 2.044000053405762e+01, 2.867999877929688e+02, 4.767000122070312e+02, 1.526000061035156e+02, 9.630999755859375e+01, 5.538999938964844e+01, 4.67e+02, 7.790000152587891e+01, 4.62400016784668e+01, 3.662999877929688e+02, 5.247000122070312e+02, 1.541000061035156e+02, 6.554000091552734e+01, 2.341999969482422e+02, 9.220999755859375e+02, 2.15e+02, 9.762000274658203e+01, 3.573999938964844e+02, 6.68e+02, 1.626999969482422e+02, 5.368999862670898e+01, 7.048000335693359e+01, 9.176000213623047e+01, 1.321999969482422e+02, 8.168000030517578e+01, 0e+00, 0e+00, 0e+00, 7.323000335693359e+01, 1.283999938964844e+02, 4.128999938964844e+02, 1.100999984741211e+02, 4.997999954223633e+01, 2.263999938964844e+02, 4.131000061035156e+02, 1.215e+02, 6.208000183105469e+01, 2.391999969482422e+02, 4.817999877929688e+02, 9.7e+01, 7.019999694824219e+01, 2.847999877929688e+02, 5.969000244140625e+02, 1.378000030517578e+02, 9.051999664306641e+01, 3.371000061035156e+02, 7.42e+02, 1.403999938964844e+02, 1.105e+02, 0e+00, 0e+00, 1.391999969482422e+02, 1.116999969482422e+02, 2.572000026702881e-01, 0e+00, 8.951000213623047e+01, 4.261000061035156e+01, 1.753000030517578e+02, 3.947000122070312e+02, 5.484000015258789e+01, 2.921999931335449e+01, 2.56e+02, 5.492000122070312e+02, 1.666000061035156e+02, 7.488999938964844e+01, 2.851000061035156e+02, 6.569000244140625e+02, 1.766999969482422e+02, 1.281000061035156e+02, 2.945e+02, 7.114000244140625e+02, 2.235e+02, 1.611999969482422e+02, 3.09e+02, 5.812999877929688e+02, 1.313999938964844e+02, 1.075999984741211e+02, 0e+00, 0e+00, 4.866000175476074e+00] +PMod.y=[0e+00, 7.866485118865967e+00, 2.198915100097656e+01, 4.642364120483398e+01, 1.468599033355713e+01, 6.639822959899902e+00, 2.145931053161621e+01, 5.195633697509766e+01, 2.122881889343262e+01, 1.053048419952393e+01, 2.073324584960938e+01, 6.322168731689453e+01, 1.502031135559082e+01, 1.138793468475342e+01, 0e+00, 0e+00, 0e+00, 4.660999774932861e+00, 0e+00, 0e+00, 0e+00, 2.060474872589111e+00, 2.876568412780762e+01, 4.768796539306641e+01, 1.533749103546143e+01, 9.722255706787109e+00, 5.475039958953857e+00, 4.667113494873047e+01, 7.804871559143066e+00, 4.637259960174561e+00, 3.665498733520508e+01, 5.237729263305664e+01, 1.542530822753906e+01, 6.56932544708252e+00, 2.337772560119629e+01, 9.171063995361328e+01, 2.1534423828125e+01, 9.776585578918457e+00, 3.575852966308594e+01, 6.659718322753906e+01, 1.629872894287109e+01, 5.376765251159668e+00, 7.062576770782471e+00, 9.211119651794434e+00, 1.327561092376709e+01, 8.223224639892578e+00, 0e+00, 0e+00, 0e+00, 7.384829044342041e+00, 1.285672378540039e+01, 4.136238861083984e+01, 1.105626583099365e+01, 5.02902889251709e+00, 2.268984413146973e+01, 4.138340377807617e+01, 1.218455982208252e+01, 6.244445323944092e+00, 2.395741081237793e+01, 4.816849899291992e+01, 9.715058326721191e+00, 7.038509368896484e+00, 2.846338081359863e+01, 5.955288314819336e+01, 1.379092979431152e+01, 9.064004898071289e+00, 3.360256195068359e+01, 7.383509826660156e+01, 1.401544570922852e+01, 1.103810405731201e+01, 0e+00, 0e+00, 1.394138145446777e+01, 1.121018028259277e+01, 6.092275977134705e-01, 0e+00, 8.995599746704102e+00, 4.290950775146484e+00, 1.756773567199707e+01, 3.952067947387695e+01, 5.499768257141113e+00, 2.935059070587158e+00, 2.563444900512695e+01, 5.482221984863281e+01, 1.668533706665039e+01, 7.514716148376465e+00, 2.849000930786133e+01, 6.548371124267578e+01, 1.769789695739746e+01, 1.283377456665039e+01, 2.945413208007812e+01, 7.090900421142578e+01, 2.234993934631348e+01, 1.617818260192871e+01, 3.09444694519043e+01, 5.813406753540039e+01, 1.318940734863281e+01, 1.081985378265381e+01, 0e+00, 0e+00, 5.362560153007507e-01] diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_Humidifiers_Validation_SprayAirWasher_X.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_Humidifiers_Validation_SprayAirWasher_X.txt index 13e93dee5b3..fe685893368 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_Humidifiers_Validation_SprayAirWasher_X.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_Humidifiers_Validation_SprayAirWasher_X.txt @@ -1,13 +1,13 @@ -last-generated=2018-06-24 +last-generated=2024-04-17 statistics-simulation= { "linear": " ", "nonlinear": " ", "numerical Jacobians": "0" } +time=[0e+00, 1.08e+03] XSet.y[1]=[9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03] senHum.X=[1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02] -time=[0e+00, 1.08e+03] hum.sta_a.T=[2.931499938964844e+02, 2.931499938964844e+02] hum.sta_b.T=[2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.882766723632812e+02, 2.882766723632812e+02, 2.882766723632812e+02, 2.882766723632812e+02, 2.882766723632812e+02, 2.882766723632812e+02, 2.882766723632812e+02, 2.882766723632812e+02, 2.882766723632812e+02, 2.882766723632812e+02, 2.882766723632812e+02, 2.882766723632812e+02, 2.882766723632812e+02, 2.882766723632812e+02, 2.882766723632812e+02, 2.882766723632812e+02, 2.882766723632812e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.83422119140625e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02, 2.931475524902344e+02] hum.mWat_flow=[1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07] diff --git a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_Humidifiers_Validation_SteamHumidifier_X.txt b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_Humidifiers_Validation_SteamHumidifier_X.txt index 44c59d66e24..cfe530bbcad 100644 --- a/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_Humidifiers_Validation_SteamHumidifier_X.txt +++ b/Buildings/Resources/ReferenceResults/Dymola/Buildings_Fluid_Humidifiers_Validation_SteamHumidifier_X.txt @@ -1,13 +1,13 @@ -last-generated=2018-06-24 +last-generated=2024-04-17 statistics-simulation= { "linear": " ", "nonlinear": " ", "numerical Jacobians": "0" } +time=[0e+00, 1.08e+03] XSet.y[1]=[9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 1.499999966472387e-02, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 9.999999776482582e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 8.00000037997961e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03, 4.000000189989805e-03] senHum.X=[1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.200000010430813e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.399900019168854e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02, 1.000100001692772e-02] -time=[0e+00, 1.08e+03] hum.sta_a.T=[2.931499938964844e+02, 2.931499938964844e+02] hum.sta_b.T=[2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.934824523925781e+02, 2.934824523925781e+02, 2.934824523925781e+02, 2.934824523925781e+02, 2.934824523925781e+02, 2.934824523925781e+02, 2.934824523925781e+02, 2.934824523925781e+02, 2.934824523925781e+02, 2.934824523925781e+02, 2.934824523925781e+02, 2.934824523925781e+02, 2.934824523925781e+02, 2.934824523925781e+02, 2.934824523925781e+02, 2.934824523925781e+02, 2.934824523925781e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.938135986328125e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02, 2.931501770019531e+02] hum.mWat_flow=[1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 1.99999994947575e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 3.998999891337007e-04, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07, 1.000000011686097e-07] diff --git a/Buildings/Resources/Scripts/Dymola/Fluid/Humidifiers/Validation/DXDehumidifier.mos b/Buildings/Resources/Scripts/Dymola/Fluid/Humidifiers/Validation/DXDehumidifier.mos new file mode 100644 index 00000000000..91472585689 --- /dev/null +++ b/Buildings/Resources/Scripts/Dymola/Fluid/Humidifiers/Validation/DXDehumidifier.mos @@ -0,0 +1,4 @@ +simulateModel("Buildings.Fluid.Humidifiers.Validation.DXDehumidifier", startTime=12960000, stopTime=15120000, method="CVode", resultFile="DXDehumidifier", tolerance=1e-6); +createPlot(id=1, position={0, 0, 1678, 688}, y={"mWat_engPlu.y", "mWatMod.y"}, range={12900000.0, 15200000.0, -0.0005, 0.001}, grid=true, colors={{28,108,200}, {238,46,47}}); +createPlot(id=1, position={0, 0, 1678, 688}, y={"QHea_engPlu.y", "QHeaMod.y"}, range={12900000.0, 15200000.0, -2000.0, 4000.0}, grid=true, subPlot=2, colors={{28,108,200}, {238,46,47}}); +createPlot(id=1, position={0, 0, 1678, 688}, y={"P_engPlu.y", "PMod.y"}, range={12900000.0, 15200000.0, -500.0, 1000.0}, grid=true, subPlot=3, colors={{28,108,200}, {238,46,47}}); diff --git a/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.Humidifiers.Validation.DXDehumidifier.mos b/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.Humidifiers.Validation.DXDehumidifier.mos new file mode 100644 index 00000000000..41afcf26aa9 --- /dev/null +++ b/Buildings/Resources/Scripts/OpenModelica/compareVars/Buildings.Fluid.Humidifiers.Validation.DXDehumidifier.mos @@ -0,0 +1,9 @@ +compareVars := + { + "mWat_engPlu.y", + "mWatMod.y", + "QHea_engPlu.y", + "QHeaMod.y", + "P_engPlu.y", + "PMod.y" + }; diff --git a/Buildings/UsersGuide/ReleaseNotes/Version_12_0_0.mo b/Buildings/UsersGuide/ReleaseNotes/Version_12_0_0.mo index 28f8d6e6220..5270f764493 100644 --- a/Buildings/UsersGuide/ReleaseNotes/Version_12_0_0.mo +++ b/Buildings/UsersGuide/ReleaseNotes/Version_12_0_0.mo @@ -38,6 +38,16 @@ The following new components have been added to existing libraries:

+ + + + +
Buildings.Fluid.Humidifiers +
Buildings.Fluid.Humidifiers.DXDehumidifier + Added direct expansion dehumidifier.
+ This is for + issue 3438. +
Buildings.Templates