Nodes of different colours represent the following:
Solid arrows point from one derived type to another which extends (inherits from) it. Dashed arrows point from a derived type to another type containing it as a components, with a label listing the name(s) of said component(s). Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
type(BaseChillerSpecs), | public | :: | Base | ||||
real(kind=r64), | public | :: | MinPartLoadRat | = | 0.0d0 | ||
real(kind=r64), | public | :: | MaxPartLoadRat | = | 0.0d0 | ||
real(kind=r64), | public | :: | OptPartLoadRat | = | 0.0d0 | ||
real(kind=r64), | public | :: | TempDesCondIn | = | 0.0d0 | ||
real(kind=r64), | public | :: | TempRiseCoef | = | 0.0d0 | ||
real(kind=r64), | public | :: | TempDesEvapOut | = | 0.0d0 | ||
real(kind=r64), | public, | DIMENSION(3) | :: | CapRatCoef | = | 0.0d0 | |
real(kind=r64), | public, | DIMENSION(3) | :: | PowerRatCoef | = | 0.0d0 | |
real(kind=r64), | public, | DIMENSION(3) | :: | FullLoadCoef | = | 0.0d0 | |
real(kind=r64), | public | :: | TempLowLimitEvapOut | = | 0.0d0 | ||
real(kind=r64), | public | :: | DesignHeatRecVolFlowRate | = | 0.0d0 | ||
real(kind=r64), | public | :: | DesignHeatRecMassFlowRate | = | 0.0d0 | ||
logical, | public | :: | HeatRecActive | = | .False. | ||
integer, | public | :: | HeatRecInletNodeNum | = | 0 | ||
integer, | public | :: | HeatRecOutletNodeNum | = | 0 | ||
real(kind=r64), | public | :: | HeatRecCapacityFraction | = | 0.d0 | ||
real(kind=r64), | public | :: | HeatRecMaxCapacityLimit | = | 0.d0 | ||
integer, | public | :: | HeatRecSetpointNodeNum | = | 0 | ||
integer, | public | :: | HeatRecInletLimitSchedNum | = | 0 | ||
integer, | public | :: | HRLoopNum | = | 0 | ||
integer, | public | :: | HRLoopSideNum | = | 0 | ||
integer, | public | :: | HRBranchNum | = | 0 | ||
integer, | public | :: | HRCompNum | = | 0 |
TYPE, PUBLIC :: ElectricChillerSpecs
TYPE(BaseChillerSpecs) :: Base
REAL(r64) :: MinPartLoadRat =0.0d0 ! (Electric MIN) min allowed operating frac full load
REAL(r64) :: MaxPartLoadRat =0.0d0 ! (Electric MAX) max allowed operating frac full load
REAL(r64) :: OptPartLoadRat =0.0d0 ! (Electric BEST) optimal operating frac full load
REAL(r64) :: TempDesCondIn =0.0d0 ! C - (Electric ADJTC(1)The design secondary loop fluid
! temperature at the chiller condenser side inlet
REAL(r64) :: TempRiseCoef =0.0d0 ! (Electric ADJTC(2)) correction factor for off ChillDesign oper.
REAL(r64) :: TempDesEvapOut =0.0d0 ! C - (Electric ADJTC(3)The design primary loop fluid
! temperature at the chiller evaporator side outlet
REAL(r64),DIMENSION(3) :: CapRatCoef =0.0d0 ! (Electric RCAVC() ) coeff of cap ratio poly fit
REAL(r64),DIMENSION(3) :: PowerRatCoef =0.0d0 ! (Electric ADJEC() ) coeff of power rat poly fit
REAL(r64),DIMENSION(3) :: FullLoadCoef =0.0d0 ! (Electric RPWRC() ) coeff of full load poly. fit
REAL(r64) :: TempLowLimitEvapOut =0.0d0 ! C - low temperature shut off
REAL(r64) :: DesignHeatRecVolFlowRate = 0.0d0 ! m3/s, Design Water mass flow rate through heat recovery loop
REAL(r64) :: DesignHeatRecMassFlowRate = 0.0d0 ! kg/s, Design Water mass flow rate through heat recovery loop
LOGICAL :: HeatRecActive = .False. ! True entered Heat Rec Vol Flow Rate >0
INTEGER :: HeatRecInletNodeNum = 0 ! Node number on the heat recovery inlet side of the condenser
INTEGER :: HeatRecOutletNodeNum = 0 ! Node number on the heat recovery outlet side of the condenser
REAL(r64) :: HeatRecCapacityFraction = 0.d0 ! user input for heat recovery capacity fraction []
REAL(r64) :: HeatRecMaxCapacityLimit = 0.d0 ! Capacity limit for Heat recovery, one time calc [W]
INTEGER :: HeatRecSetpointNodeNum = 0 ! index for system node with the heat recover leaving setpoint
INTEGER :: HeatRecInletLimitSchedNum = 0 ! index for schedule for the inlet high limit for heat recovery operation
INTEGER :: HRLoopNum = 0 ! heat recovery water plant loop side index
INTEGER :: HRLoopSideNum = 0 ! heat recovery water plant loop side index
INTEGER :: HRBranchNum = 0 ! heat recovery water plant loop branch index
INTEGER :: HRCompNum = 0 ! heat recovery water plant loop component index
END TYPE ElectricChillerSpecs