Nodes of different colours represent the following:
Solid arrows point from a parent (sub)module to the submodule which is descended from it. Dashed arrows point from a module being used to the module or program unit using it. Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=r64), | intent(in) | :: | HWFlow | |||
real(kind=r64), | intent(in), | optional | DIMENSION(:) | :: | Par |
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.
FUNCTION HotWaterCoilResidual(HWFlow, Par) RESULT (Residuum)
! FUNCTION INFORMATION:
! AUTHOR Bereket Nigusse, FSEC/UCF
! DATE WRITTEN January 2012
! MODIFIED
! RE-ENGINEERED
! PURPOSE OF THIS FUNCTION:
! Calculates residual function (RegenCoilActual - RegenCoilHeatLoad) / RegenCoilHeatLoad
! coil actual output depends on the hot water flow rate which is varied to minimize the residual
!
! METHODOLOGY EMPLOYED:
! Calls HotWaterCoilResidual, and calculates the residual as defined above.
!
! REFERENCES:
! USE STATEMENTS:
USE WaterCoils, ONLY: SimulateWaterCoilComponents
USE PlantUtilities, ONLY: SetComponentFlowRate
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! SUBROUTINE ARGUMENT DEFINITIONS:
REAL(r64), INTENT(IN) :: HWFlow ! hot water flow rate in kg/s
REAL(r64), INTENT(IN), DIMENSION(:), OPTIONAL :: Par ! Par(5) is the requested coil load
REAL(r64) :: Residuum ! residual to be minimized to zero
! FUNCTION PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS
! na
! DERIVED TYPE DEFINITIONS
! na
! FUNCTION LOCAL VARIABLE DECLARATIONS:
INTEGER :: DesicDehumNum
LOGICAL :: FirstHVACSoln
REAL(r64) :: RegenCoilActual ! delivered coild load, W
REAL(r64) :: RegenCoilHeatLoad ! requested coild load, W
REAL(r64) :: mdot
DesicDehumNum = INT(Par(1))
IF (Par(2) > 0.0d0) THEN
FirstHVACSoln = .TRUE.
ELSE
FirstHVACSoln = .FALSE.
END IF
RegenCoilHeatLoad = Par(3)
RegenCoilActual = RegenCoilHeatLoad
mdot = HWFlow
Call SetComponentFlowRate(mdot, &
DesicDehum(DesicDehumNum)%CoilControlNode, &
DesicDehum(DesicDehumNum)%CoilOutletNode, &
DesicDehum(DesicDehumNum)%LoopNum, &
DesicDehum(DesicDehumNum)%LoopSide, &
DesicDehum(DesicDehumNum)%BranchNum, &
DesicDehum(DesicDehumNum)%CompNum)
! simulate the hot water regenerator heating coil
CALL SimulateWaterCoilComponents(DesicDehum(DesicDehumNum)%RegenCoilName,FirstHVACSoln, &
DesicDehum(DesicDehumNum)%RegenCoilIndex, RegenCoilActual)
IF (RegenCoilHeatLoad /= 0.0d0) THEN
Residuum = (RegenCoilActual - RegenCoilHeatLoad)/ RegenCoilHeatLoad
ELSE !Objexx:Return ELSE added to assure return value is set
Residuum = 0.0d0
ENDIF
RETURN
END FUNCTION HotWaterCoilResidual