TYPE DefineSZMinHumSetPointManager ! Derived Type for Single Zone Minimum Humidity Setpoint Manager data
CHARACTER(len=MaxNameLength) :: Name =' '
CHARACTER(len=MaxNameLength) :: CtrlVarType =' ' ! type of variable to be set
INTEGER :: CtrlTypeMode =0 ! set to iCtrlVarType_xxxx
INTEGER :: NumZones =0 ! number of zones whose humidity is being controlled
INTEGER :: NumCtrlNodes =0 ! number of nodes whose humidity ratio is being set
INTEGER, DIMENSION(:), ALLOCATABLE :: ZoneNodes ! zone node numbers of zones being controlled
INTEGER, DIMENSION(:), ALLOCATABLE :: ZoneNum ! actual zone number ( index into Zone array)
INTEGER, DIMENSION(:), ALLOCATABLE :: CtrlZoneNum ! index into ZoneEquipConfig
INTEGER, DIMENSION(:), ALLOCATABLE :: CtrlNodes ! nodes where humidity ratio is being set
REAL(r64) :: SetPt =0.0d0 ! the setpoint
END TYPE DefineSZMinHumSetPointManager