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.
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 ReportMoistureBalanceEMPD
! SUBROUTINE INFORMATION:
! AUTHOR Lixing Gu
! DATE WRITTEN August 2005
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! This routine gives a detailed report to the user about
! EMPD Properties of each construction.
! METHODOLOGY EMPLOYED:
! na
! REFERENCES:
! The subroutine of ReportCTFs written by Linda Lawrie was used to develop this routine.
! USE STATEMENTS:
USE General, ONLY: ScanForReports
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! SUBROUTINE ARGUMENT DEFINITIONS:
! na
! SUBROUTINE PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS
! na
! DERIVED TYPE DEFINITIONS
! na
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
LOGICAL :: DoReport
INTEGER ConstrNum,MatNum
CALL ScanForReports('Constructions',DoReport,'Constructions')
IF (.NOT. DoReport) return
!
! Write Descriptions
Write(OutputFileInits,'(A)') '! <Construction EMPD>, Construction Name, Inside Layer Material Name, ' &
// 'Penetration Depth {m}, a, b, c, d'
DO ConstrNum=1,TotConstructs
IF (Construct(ConstrNum)%TypeIsWindow) CYCLE
MatNum = Construct(ConstrNum)%LayerPoint(Construct(ConstrNum)%TotLayers)
If (Material(MatNum)%EMPDMaterialProps) then
Write(OutputFileInits,700) TRIM(Construct(ConstrNum)%Name),Trim(Material(MatNum)%Name), &
Material(MatNum)%EMPDValue,Material(MatNum)%MoistACoeff, &
Material(MatNum)%MoistBCoeff,Material(MatNum)%MoistCCoeff,Material(MatNum)%MoistDCoeff
end if
End Do
!
700 FORMAT(' Construction EMPD, ',A,', ',A,', ',4(F8.4,', '),F8.4)
END SUBROUTINE ReportMoistureBalanceEMPD