TYPE MultizoneZoneProp ! Zone information
CHARACTER(len=MaxNameLength) :: ZoneName =' ' ! Name of Associated EnergyPlus Thermal Zone
CHARACTER(len=20) :: VentControl='NoVent' ! Ventilation Control Mode: "TEMPERATURE", "ENTHALPIC", "CONSTANT", or "NOVENT"
CHARACTER(len=MaxNameLength) :: VentSchName =' ' ! Name of ventilation temperature control schedule
REAL(r64) :: Height =0.0d0 ! Nodal height
REAL(r64) :: OpenFactor = 1.0d0 ! Limit Value on Multiplier for Modulating Venting Open Factor,
! Not applicable if Vent Control Mode = CONSTANT or NOVENT
REAL(r64) :: LowValueTemp = 0.0d0 ! Lower Value on Inside/Outside Temperature Difference for
! Modulating the Venting Open Factor with temp control
REAL(r64) :: UpValueTemp = 100.0d0 ! Upper Value on Inside/Outside Temperature Difference for
! Modulating the Venting Open Factor with temp control
REAL(r64) :: LowValueEnth = 0.0d0 ! Lower Value on Inside/Outside Temperature Difference for
! Modulating the Venting Open Factor with Enthalpic control
REAL(r64) :: UpValueEnth = 300000.0d0 ! Upper Value on Inside/Outside Temperature Difference for
! Modulating the Venting Open Factor with Enthalpic control
INTEGER :: ZoneNum = 0 ! Zone number associated with ZoneName
INTEGER :: VentSchNum = 0 ! Zone ventilation schedule number associated with ventilation schedule name
INTEGER :: VentCtrNum = 0 ! Ventilation control mode number: 1 "Temperature", 2 "ENTHALPIC", 3 "CONSTANT", 4 "NOVENT"
CHARACTER(len=MaxNameLength) :: VentingSchName =' ' ! Name of ventilation temperature control schedule
INTEGER :: VentingSchNum = 0 ! Ventilation schedule number
INTEGER :: ASH55PeopleInd = 0 ! Index of people object with ASH55 comfort calcs for ventilation control
INTEGER :: CEN15251PeopleInd = 0 ! Index of people object with CEN15251 comfort calcs for ventilation control
END TYPE MultizoneZoneProp