Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in) | :: | SurfNum | |||
real(kind=r64), | intent(inout) | :: | TempSurfInTmp | |||
real(kind=r64), | intent(inout) | :: | TempSurfOutTmp |
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 ManageHeatBalFiniteDiff(SurfNum,TempSurfInTmp,TempSurfOutTmp)
! SUBROUTINE INFORMATION:
! AUTHOR Richard Liesen
! DATE WRITTEN May 2000
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! This subroutine manages the moisture balance method. It is called
! from the HeatBalanceManager at the time step level.
! This driver manages the calls to all of
! the other drivers and simulation algorithms.
! METHODOLOGY EMPLOYED:
! na
! REFERENCES:
! na
! USE STATEMENTS:
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! SUBROUTINE PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS
Integer, Intent(In) :: SurfNum
REAL(r64), Intent(InOut) :: TempSurfInTmp !INSIDE SURFACE TEMPERATURE OF EACH HEAT TRANSFER SURF.
REAL(r64), Intent(InOut) :: TempSurfOutTmp !Outside Surface Temperature of each Heat Transfer Surface
! DERIVED TYPE DEFINITIONS
! na
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
! FLOW:
! Get the moisture balance input at the beginning of the simulation only
IF (GetHBFiniteDiffInputFlag) THEN
! Obtains conduction FD related parameters from input file
CALL GetCondFDInput
GetHBFiniteDiffInputFlag=.false.
ENDIF
! Condition is taken care of by calling routine:
! IF (Surface(SurfNum)%HeatTransSurf .and. Surface(SurfNum)%Class /= SurfaceClass_Window)
! Solve the zone heat & moisture balance using a finite difference solution
CALL CalcHeatBalFiniteDiff(SurfNum,TempSurfInTmp,TempSurfOutTmp)
RETURN
END SUBROUTINE ManageHeatBalFiniteDiff