TYPE DesignDayData
CHARACTER(len=MaxNameLength) :: Title = Blank ! Environment name
REAL(r64) :: MaxDryBulb = 0.0d0 ! Maximum Dry-Bulb Temperature (C)
REAL(r64) :: DailyDBRange = 0.0d0 ! Daily Temperature Range (deltaC)
REAL(r64) :: HumIndValue = 0.0d0 ! Humidity Indicating Value at Max Dry-bulb Temperature
INTEGER :: HumIndType = 0 ! Humidity Indicating type (see Parameters)
REAL(r64) :: PressBarom = 0.0d0 ! Atmospheric/Barometric Pressure (Pascals)
REAL(r64) :: WindSpeed = 0.0d0 ! Wind Speed (m/s)
REAL(r64) :: WindDir = 0.0d0 ! Wind Direction (degrees clockwise from North, N=0, E=90, S=180, W=270)
REAL(r64) :: SkyClear = 0.0d0 ! Sky Clearness (0 to 1)
INTEGER :: RainInd = 0 ! Rain Indicator (1 = raining and surfaces are wet, else 0)
INTEGER :: SnowInd = 0 ! Snow Indicator (1 = snow on ground, else 0)
INTEGER :: DayOfMonth = 0 ! Day of Month ( 1 - 31 )
INTEGER :: Month = 0 ! Month of Year ( 1 - 12 )
INTEGER :: DayType = 0 ! Day Type Sunday = 1 - Saturday = 7
INTEGER :: DSTIndicator = 0 ! Daylight Saving Time Period Indicator (1=yes, 0=no) for this DesignDay
INTEGER :: SolarModel = 0 ! Solar Model for creating solar values for design day.
INTEGER :: DBTempRangeType = 0 ! Drybulb Range Type (see Parameters)
INTEGER :: TempRangeSchPtr = 0 ! Schedule pointer to a day schedule for dry-bulb temperature range multipliers
INTEGER :: HumIndSchPtr = 0 ! Schedule pointer to a day schedule that specifies
! relative humidity (%) or wet-bulb range multipliers per HumIndType
INTEGER :: BeamSolarSchPtr = 0 ! Schedule pointer to a day schedule for beam solar
INTEGER :: DiffuseSolarSchPtr = 0 ! Schedule pointer to a day schedule for diffuse solar
REAL(r64) :: TauB = 0.0d0 ! beam pseudo optical depth for ASHRAE tau model
REAL(r64) :: TauD = 0.0d0 ! diffuse pseudo optical depth for ASHRAE tau model
REAL(r64) :: DailyWBRange = 0.0d0 ! daily range of wetbulb (deltaC)
LOGICAL :: PressureEntered =.false. ! true if a pressure was entered in design day data
LOGICAL :: DewPointNeedsSet =.false. ! true if the Dewpoint humidicating value needs to be set (after location determined)
END TYPE DesignDayData