Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer | :: | IceNum | ||||
real(kind=r64), | intent(out) | :: | QiceMaxByChiller |
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed arrows point from an interface to procedures which implement that interface. This could include the module procedures in a generic interface or the implementation in a submodule of an interface in a parent module. Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed arrows point from an interface to procedures which implement that interface. This could include the module procedures in a generic interface or the implementation in a submodule of an interface in a parent module. Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
SUBROUTINE CalcQiceChargeMaxByChiller(IceNum,QiceMaxByChiller)
! SUBROUTINE INFORMATION:
! PURPOSE OF THIS SUBROUTINE:
! METHODOLOGY EMPLOYED:
! Calculation inside is IP unit, then return QiceMaxByChiller as SI [W] unit.
! REFERENCES:
! USE STATEMENTS:
IMPLICIT NONE
! SUBROUTINE ARGUMENT DEFINITIONS:
INTEGER :: IceNum
REAL(r64), INTENT(OUT) :: QiceMaxByChiller
! SUBROUTINE PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS
! na
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
REAL(r64) :: TchillerOut
! FLOW
! Chiller is remote now, so chiller out is inlet node temp
TchillerOut = Node(IceStorage(IceNum)%PltInletNodeNum)%Temp
QiceMaxByChiller = UAiceCh*( FreezTemp-TchillerOut ) ![W] = [W/degC]*[degC]
! If it happened, it is occurred at the Discharing or Dormant process.
IF( QiceMaxByChiller <= 0.0d0 ) THEN
QiceMaxByChiller = 0.0d0
END IF
RETURN
END SUBROUTINE CalcQiceChargeMaxByChiller