Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in) | :: | FluidIndex | |||
real(kind=r64), | intent(out) | :: | MinTempLimit | |||
real(kind=r64), | intent(out) | :: | MaxTempLimit |
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 GetFluidSpecificHeatTemperatureLimits( FluidIndex, MinTempLimit, MaxTempLimit)
! SUBROUTINE INFORMATION:
! AUTHOR <author>
! DATE WRITTEN <date_written>
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! <description>
! METHODOLOGY EMPLOYED:
! <description>
! REFERENCES:
! na
! USE STATEMENTS:
! na
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! SUBROUTINE ARGUMENT DEFINITIONS:
INTEGER , INTENT(IN) :: FluidIndex
REAL(r64), INTENT(OUT) :: MinTempLimit
REAL(r64), INTENT(OUT) :: MaxTempLimit
! SUBROUTINE PARAMETER DEFINITIONS:
CHARACTER(len=*), PARAMETER :: RoutineName='GetFluidSpecificHeatTemperatureLimits: '
! INTERFACE BLOCK SPECIFICATIONS:
! na
! DERIVED TYPE DEFINITIONS:
! na
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
! na
! Get the input if we haven't already
IF (GetInput) THEN
CALL GetFluidPropertiesData
GetInput = .FALSE.
END IF
IF (FluidIndex > 0) THEN
MinTempLimit = GlycolData(FluidIndex)%CpLowTempValue
MaxTempLimit = GlycolData(FluidIndex)%CpHighTempValue
ENDIF
RETURN
END SUBROUTINE GetFluidSpecificHeatTemperatureLimits