Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | S | |||
real(kind=r64), | intent(in) | :: | V(*) | |||
integer, | intent(in) | :: | N | |||
integer, | intent(in) | :: | UOUT |
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 DUMPVR(S,V,N,UOUT)
! SUBROUTINE INFORMATION:
! AUTHOR George Walton
! DATE WRITTEN Extracted from AIRNET
! MODIFIED Lixing Gu, 2/1/04
! Revised the subroutine to meet E+ needs
! MODIFIED Lixing Gu, 6/8/05
!
! RE-ENGINEERED This subroutine is revised from DUMPVR developed by George Walton, NIST
! PURPOSE OF THIS SUBROUTINE:
! This subroutine prints the contents of the REAL(r64) "V" vector
! METHODOLOGY EMPLOYED:
! na
! REFERENCES:
! na
! USE STATEMENTS:
! na
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! SUBROUTINE ARGUMENT DEFINITIONS:
CHARACTER(*), INTENT(IN):: S ! Description
REAL(r64), INTENT(IN) :: V(*) ! Output values
INTEGER, INTENT(IN) :: N ! Array size
INTEGER, INTENT(IN) :: UOUT ! Output file unit
! SUBROUTINE PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS
! na
! DERIVED TYPE DEFINITIONS
! na
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
INTEGER I
! FLOW:
WRITE(UOUT,901) S
WRITE(UOUT,902) (V(I),I=1,N)
901 FORMAT(1X,A)
902 FORMAT(1X,5E15.07)
!
RETURN
END SUBROUTINE DUMPVR