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 | ||
real(kind=r64), | public | :: | MinTurndown | = | 0.0d0 | ||
real(kind=r64), | public | :: | Turndown | = | 0.0d0 | ||
integer, | public | :: | CritZoneNum | = | 0 | ||
logical, | public | :: | SimReady | = | .false. |
TYPE DefWarmestSetPtManagerTempFlow
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 = TempFirst, 2 = FlowFirst
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
REAL(r64) :: MinTurndown =0.0d0 ! minimum fractional flow rate
REAL(r64) :: Turndown =0.0d0 ! fractional flow rate
INTEGER :: CritZoneNum =0
LOGICAL :: SimReady =.false.
END TYPE DefWarmestSetPtManagerTempFlow