Buildings.ThermalZones.EnergyPlus_24_2_0.Validation.RunPeriod

Collection of validation models for EnergyPlus run period

Information

Package with validation models for the run period.

Extends from Modelica.Icons.Package (Icon for standard packages).

Package Content

Name Description
Buildings.ThermalZones.EnergyPlus_24_2_0.Validation.RunPeriod.NegativeStartTime NegativeStartTime Validation model for negative start time
Buildings.ThermalZones.EnergyPlus_24_2_0.Validation.RunPeriod.StartDayOfYear StartDayOfYear Validation model for the start day of the week

Buildings.ThermalZones.EnergyPlus_24_2_0.Validation.RunPeriod.NegativeStartTime Buildings.ThermalZones.EnergyPlus_24_2_0.Validation.RunPeriod.NegativeStartTime

Validation model for negative start time

Buildings.ThermalZones.EnergyPlus_24_2_0.Validation.RunPeriod.NegativeStartTime

Information

Validation model for negative start time. This test validates that EnergyPlus correctly simulates if it is started at a negative start time. The model simulates the last two days of the year and the first day. For comparison with the Modelica weather data, the model reads the solar irradiation and the outdoor drybulb temperature from EnergyPlus.

Extends from Examples.SingleFamilyHouse.Unconditioned (Example model with one unconditoned zone simulated in Modelica, and the other two unconditioned zones simulated in EnergyPlus).

Parameters

TypeNameDefaultDescription
VolumeVRoo453.1Room volume [m3]
MassFlowRatem_flow_nominalVRoo*1.2*0.3/3600Nominal mass flow rate [kg/s]

Modelica definition

model NegativeStartTime "Validation model for negative start time" extends Examples.SingleFamilyHouse.Unconditioned; Buildings.ThermalZones.EnergyPlus_24_2_0.OutputVariable sitDirSol( name="Site Direct Solar Radiation Rate per Area", key="Environment", y(final unit="W/m2")) "Block that reads direct solar radiation from EnergyPlus"; Buildings.ThermalZones.EnergyPlus_24_2_0.OutputVariable sitOutDryBul( name="Site Outdoor Air Drybulb Temperature", key="Environment", y(final unit="K", displayUnit="degC")) "Block that reads outside dry bulb temperature from EnergyPlus"; end NegativeStartTime;

Buildings.ThermalZones.EnergyPlus_24_2_0.Validation.RunPeriod.StartDayOfYear Buildings.ThermalZones.EnergyPlus_24_2_0.Validation.RunPeriod.StartDayOfYear

Validation model for the start day of the week

Buildings.ThermalZones.EnergyPlus_24_2_0.Validation.RunPeriod.StartDayOfYear

Information

This validation case simulates two instances of Buildings.ThermalZones.EnergyPlus_24_2_0.Validation.OutputVariable.OneZoneOneOutputVariable, a model that outputs the electricity consumption that is specified via an EnergyPlus schedule. This schedule set the electricity consumption to zero for the whole day on Saturday and Sunday, but not on other days. In the instance sun, the start day of the year is left as the default, which is Sunday, and in the instance mon, it is set to Monday. Plotting the electricity consumption verifies that the setting is properly applied in EnergyPlus.

Extends from Modelica.Icons.Example (Icon for runnable examples).

Modelica definition

model StartDayOfYear "Validation model for the start day of the week" extends Modelica.Icons.Example; Buildings.ThermalZones.EnergyPlus_24_2_0.Validation.OutputVariable.OneZoneOneOutputVariable sun "Model with first day of the week being Sunday"; Buildings.ThermalZones.EnergyPlus_24_2_0.Validation.OutputVariable.OneZoneOneOutputVariable mon( building( runPeriod( startDayOfYear=Buildings.ThermalZones.EnergyPlus_24_2_0.Types.WeekDays.Monday))) "Model with first day of the week being Monday"; Modelica.Blocks.Sources.RealExpression sunEle(y(final unit="W")=sun.equEle.y) "Electricity consumption for model with Sunday as the first day of the week"; Modelica.Blocks.Sources.RealExpression monEle(y(final unit="W") = mon.equEle.y) "Electricity consumption for model with Monday as the first day of the week"; end StartDayOfYear;