TYPE DefineWarmestSetPointManager
CHARACTER(len=MaxNameLength) :: Name =' '
CHARACTER(len=MaxNameLength) :: CtrlVarType =' ' ! type of variable to be set
INTEGER :: CtrlTypeMode = 0 ! set to iCtrlVarType_xxxx
CHARACTER(len=MaxNameLength) :: AirLoopName =' ' ! name of air loop that will use "warmest zone" strategy
INTEGER :: AirLoopNum =0 ! index of named air loop
REAL(r64) :: MinSetTemp =0.0d0 ! minimum supply air setpoint temperature
REAL(r64) :: MaxSetTemp =0.0d0 ! maximum supply air setpoint temperature
INTEGER :: Strategy =0 ! supply flow and temperature set strategy
! 1 = MaxTemp
INTEGER :: NumCtrlNodes =0 ! number of nodes whose temperature is being set
INTEGER, DIMENSION(:), ALLOCATABLE :: CtrlNodes ! nodes where temperature is being set
REAL(r64) :: SetPt =0.0d0 ! the setpoint
END TYPE DefineWarmestSetPointManager