Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=r64), | intent(in) | :: | UA | |||
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 SimpleTowerUAResidual(UA, Par) RESULT (Residuum)
! FUNCTION INFORMATION:
! AUTHOR Fred Buhl
! DATE WRITTEN May 2002
! MODIFIED
! RE-ENGINEERED
! PURPOSE OF THIS FUNCTION:
! Calculates residual function (Design Tower Load - Tower Cooling Output) / Design Tower Load.
! Tower Cooling Output depends on the UA which is being varied to zero the residual.
! METHODOLOGY EMPLOYED:
! Puts UA into the cooling tower data structure, calls SimSimpleTower, and calculates
! the residual as defined above.
! REFERENCES:
! USE STATEMENTS:
! na
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! SUBROUTINE ARGUMENT DEFINITIONS:
REAL(r64), INTENT(IN) :: UA ! UA of cooling tower
REAL(r64), INTENT(IN), DIMENSION(:), OPTIONAL :: Par ! par(1) = design tower load [W]
! par(2) = tower number
! par(3) = design water mass flow rate [kg/s]
! par(4) = design air volume flow rate [m3/s]
! par(5) = water specific heat [J/(kg*C)]
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 :: TowerIndex ! index of this tower
REAL(r64) :: OutWaterTemp ! outlet water temperature [C]
REAL(r64) :: CoolingOutput ! tower cooling output [W]
TowerIndex = INT(Par(2))
CALL SimSimpleTower(TowerIndex,Par(3),Par(4),UA,OutWaterTemp)
CoolingOutput = Par(5)*Par(3)*(SimpleTowerInlet(TowerIndex)%WaterTemp - OutWaterTemp)
Residuum = (Par(1) - CoolingOutput) / Par(1)
RETURN
END FUNCTION SimpleTowerUAResidual