UPP  001
 All Data Structures Files Functions Pages
CALSTRM.f
Go to the documentation of this file.
1 
24  SUBROUTINE calstrm(Z1D,STRM)
25 
26 !
27 !
28 !
29 !
30 ! INCLUDE ETA GRID DIMENSIONS. SET/DERIVE OTHER PARAMETERS.
31 !
32 ! use vrbls2d, only:
33  use params_mod, only: g
34  use ctlblk_mod, only: jsta, jend, im
35 !- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
36  implicit none
37 !
38  real,PARAMETER :: omega=7.292e-5,twomg=2*omega
39 !
40 ! DECLARE VARIABLES.
41 !
42 ! LOGICAL FIRST,OLDRD,RESTRT,RUN,SIGMA,STRD
43  REAL, dimension(im,jsta:jend), intent(in) :: z1d
44  REAL, dimension(im,jsta:jend), intent(inout) :: strm
45 !
46  LOGICAL oldrd,strd
47  integer imid,i,j
48  real f0,gof0
49 !
50 !***************************************************************************
51 ! START CALSTRM HERE.
52 !
53 ! COMPUTE CORIOLIS PARAMETER AT 40N
54 !
55  imid=im/2
56  f0 = 1.454441e-4*sin(40.0*0.01745329)
57  gof0 = g/f0
58 !
59 ! COMPUTE GEOSTROPHIC STREAMFUNCTION.
60 !$omp parallel do
61  DO j=jsta,jend
62  DO i=1,im
63  strm(i,j) = gof0*z1d(i,j)
64  ENDDO
65  ENDDO
66 !
67 ! END OF ROUTINE.
68  RETURN
69  END