Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
character(len=MaxNameLength), | public | :: | Name | = | ' ' | ||
character(len=MaxNameLength), | public | :: | CtrlVarType | = | ' ' | ||
integer, | public | :: | CtrlTypeMode | = | 0 | ||
character(len=MaxNameLength), | public | :: | AirLoopName | = | ' ' | ||
integer, | public | :: | AirLoopNum | = | 0 | ||
real(kind=r64), | public | :: | MinSetTemp | = | 0.0d0 | ||
real(kind=r64), | public | :: | MaxSetTemp | = | 0.0d0 | ||
integer, | public | :: | Strategy | = | 0 | ||
integer, | public | :: | NumCtrlNodes | = | 0 | ||
integer, | public, | DIMENSION(:), ALLOCATABLE | :: | CtrlNodes | |||
real(kind=r64), | public | :: | SetPt | = | 0.0d0 |
TYPE DefineColdestSetPointManager
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 "coldest 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
! 2 = MinTemp
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 DefineColdestSetPointManager