TYPE AirChillerSetData
CHARACTER(len=MaxNameLength) :: Name=' ' ! Name of Chiller Set
!CHARACTER(len=MaxNameLength), ALLOCATABLE, DIMENSION(:) :: CoilName ! Name of Individual Chiller in set
CHARACTER(len=MaxNameLength) :: ZoneName ! Name of zone where chiller set is located
INTEGER, ALLOCATABLE, DIMENSION(:) :: CoilNum ! ID number of Individual Chiller in set
INTEGER :: ChillerSetID = 0 ! ID number for this set of chillers (all serving one zone,
! but can be chilled by mult systems)
INTEGER :: SchedPtr = 0 ! Schedule to take whole set off-line if needed
INTEGER :: NodeNumInlet = 0 ! Node ID Number of inlet for chiller set as a whole, not identified for specific coils
INTEGER :: NodeNumOutlet = 0 ! Node ID Number of outlet for chiller set as a whole, not identified for specific coils
INTEGER :: NumCoils = 0 ! Number of individual chillers in set
INTEGER :: ZoneNum = 0 ! ID number of zone where chiller set is located
INTEGER :: ZoneNodeNum = 0 ! ID number of zone node giving mixed conditions of zone where chiller set is located
REAL(r64) :: QZnReqSens = 0.0d0 ! Sensible heat needed by the zone to reach setpoint [W]
END TYPE AirChillerSetData