TYPE SystemSizingInputData
CHARACTER &
(len=MaxNameLength) :: AirPriLoopName = ' ' ! name of an AirLoopHVAC object
INTEGER :: AirLoopNum = 0 ! index number of air loop
INTEGER :: LoadSizeType = 0 ! type of load to size on;
! 0=sensible, 1=latent, 2=total, 3=ventilation
INTEGER :: SizingOption = 0 ! 1 = noncoincident, 2 = coincident
INTEGER :: CoolOAOption = 0 ! 1 = use 100% outside air; 2 = use min OA; for cooling sizing
INTEGER :: HeatOAOption = 0 ! 1 = use 100% outside air; 2 = use min OA; for heating sizing
REAL(r64) :: DesOutAirVolFlow = 0.0d0 ! design (minimum) outside air flow rate [m3/s]
REAL(r64) :: SysAirMinFlowRat = 0.0d0 ! minimum system air flow ratio
REAL(r64) :: PreheatTemp = 0.0d0 ! preheat design set temperature [C]
REAL(r64) :: PrecoolTemp = 0.0d0 ! precool design set temperature [C]
REAL(r64) :: PreheatHumRat = 0.0d0 ! preheat design humidity ratio [kg water/kg dry air]
REAL(r64) :: PrecoolHumRat = 0.0d0 ! precool design humidity ratio [kg water/kg dry air]
REAL(r64) :: CoolSupTemp = 0.0d0 ! cooling design supply air temperature [C]
REAL(r64) :: HeatSupTemp = 0.0d0 ! heating design supply air temperature [C]
REAL(r64) :: CoolSupHumRat = 0.0d0 ! cooling design supply air humidity ratio [kg water/kg dry air]
REAL(r64) :: HeatSupHumRat = 0.0d0 ! heating design supply air humidity ratio [kg water/kg dry air]
INTEGER :: CoolAirDesMethod = 0 ! choice of how to get system cooling design air flow rates;
! 1 = calc from des day simulation; 2=m3/s per system, user input
REAL(r64) :: DesCoolAirFlow = 0.0d0 ! design system supply air flow rate for cooling[m3/s]
INTEGER :: HeatAirDesMethod = 0 ! choice of how to get system heating design air flow rates;
! 1 = calc from des day simulation; 2=m3/s per zone, user input
REAL(r64) :: DesHeatAirFlow = 0.0d0 ! design system heating supply air flow rate [m3/s]
INTEGER :: SystemOAMethod = 0 ! System Outdoor Air Method; 1 = SOAM_ZoneSum, 2 = SOAM_VRP
REAL(r64) :: MaxZoneOAFraction = 0.0d0 ! maximum value of min OA for zones served by system
LOGICAL :: OAAutosized = .FALSE. ! Set to true if design OA vol flow is set to 'autosize'
! in Sizing:System
END TYPE SystemSizingInputData