SUBROUTINE AddSQLiteZoneSizingRecord (ZoneName, LoadType, CalcDesLoad, UserDesLoad, CalcDesFlow, UserDesFlow, DesDayName, &
PeakHrMin, PeakTemp, PeakHumRat, MinOAVolFlow)
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! SUBROUTINE ARGUMENT DEFINITIONS:
CHARACTER(len=*), INTENT(IN) :: ZoneName ! the name of the zone
CHARACTER(len=*), INTENT(IN) :: LoadType ! the description of the input variable
REAL(r64), INTENT(IN) :: CalcDesLoad ! the value from the sizing calculation [W]
REAL(r64), INTENT(IN) :: UserDesLoad ! the value from the sizing calculation modified by user input [W]
REAL(r64), INTENT(IN) :: CalcDesFlow ! calculated design air flow rate [m3/s]
REAL(r64), INTENT(IN) :: UserDesFlow ! user input or modified design air flow rate [m3/s]
CHARACTER(len=*), INTENT(IN) :: DesDayName ! the name of the design day that produced the peak
CHARACTER(len=*), INTENT(IN) :: PeakHrMin ! time stamp of the peak
REAL(r64), INTENT(IN) :: PeakTemp ! temperature at peak [C]
REAL(r64), INTENT(IN) :: PeakHumRat ! humidity ratio at peak [kg water/kg dry air]
REAL(r64), INTENT(IN) :: MinOAVolFlow ! zone design minimum outside air flow rate [m3/s]
END SUBROUTINE AddSQLiteZoneSizingRecord