Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=r64), | intent(in) | :: | Temperature | |||
character(len=*), | intent(in), | optional | :: | calledfrom |
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 CPHW(Temperature,calledfrom) RESULT(SpecHeatHW)
! FUNCTION INFORMATION:
! AUTHOR RUSSELL D. TAYLOR
! DATE WRITTEN April 1992
! PURPOSE OF THIS FUNCTION:
! This function provides the specific heat of hot water. CPHW (J/Kg/k)
! METHODOLOGY EMPLOYED:
! na
! REFERENCES:
! na
! USE STATEMENTS:
! na
Implicit NONE
! FUNCTION ARGUMENT DEFINITIONS:
REAL(r64), intent(in) :: Temperature !unused1208
character(len=*), intent(in), optional :: calledfrom ! routine this function was called from (error messages) !unused1208
REAL(r64) :: SpecHeatHW ! result
! FUNCTION PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS
! na
! DERIVED TYPE DEFINITIONS
! na
! FUNCTION LOCAL VARIABLE DECLARATIONS:
! na
SpecHeatHW=4180.d0
RETURN
END FUNCTION CPHW