Advertisement
Guest User

Untitled

a guest
Jul 12th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. CALL PlumeSolver(Zi, Xi, Ta, Sa, Q0, ZOutput, MROutput)
  2.  
  3. SUBROUTINE PlumeSolver (Depth, Front, TempA, SalA, Discharge, DepthOutput, MeltOutput)
  4.  
  5. REAL(KIND=dp), ALLOCATABLE :: Depth(:), Front(:), TempA(:), SalA(:)
  6. REAL(KIND=dp) :: Discharge
  7. REAL(KIND=dp), POINTER :: DepthOutput(:), MeltOutput(:)
  8.  
  9. INTERFACE
  10.   SUBROUTINE PlumeSolver
  11.     USE TYPES
  12.     REAL(KIND=dp), ALLOCATABLE :: Depth(:), Front(:), TempA(:), SalA(:)
  13.     REAL(KIND=dp) :: Discharge
  14.     REAL(KIND=dp), POINTER :: DepthOutput(:), MeltOutput(:)
  15.   END SUBROUTINE PlumeSolver
  16. END INTERFACE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement