/[MITgcm]/MITgcm/pkg/mom_fluxform/mom_u_del2u.F
ViewVC logotype

Contents of /MITgcm/pkg/mom_fluxform/mom_u_del2u.F

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.6 - (show annotations) (download)
Wed Apr 5 15:43:15 2006 UTC (18 years, 2 months ago) by mlosch
Branch: MAIN
CVS Tags: checkpoint58f_post, checkpoint58d_post, checkpoint58m_post, checkpoint58o_post, checkpoint58p_post, checkpoint58q_post, checkpoint58e_post, checkpoint58r_post, checkpoint58n_post, checkpoint58k_post, checkpoint58l_post, checkpoint58g_post, checkpoint58h_post, checkpoint58j_post, checkpoint58i_post
Changes since 1.5: +4 -1 lines
fixing the mutual use of ISOTROPIC_COS_SCALING and COSINEMETH_III in
mom_fluxform. including ISOTROPIC_COS_SCALING in mom_vecinv is yet to come.

1 C $Header: /u/gcmpack/MITgcm/pkg/mom_fluxform/mom_u_del2u.F,v 1.5 2003/10/09 04:19:20 edhill Exp $
2 C $Name: $
3
4 #include "MOM_FLUXFORM_OPTIONS.h"
5
6 CBOP
7 C !ROUTINE: MOM_U_DEL2U
8
9 C !INTERFACE: ==========================================================
10 SUBROUTINE MOM_U_DEL2U(
11 I bi,bj,k,
12 I uFld, hFacZ,
13 O del2u,
14 I myThid)
15
16 C !DESCRIPTION:
17 C Calculates the Laplacian of zonal flow
18
19 C !USES: ===============================================================
20 IMPLICIT NONE
21 #include "SIZE.h"
22 #include "EEPARAMS.h"
23 #include "PARAMS.h"
24 #include "GRID.h"
25 #include "DYNVARS.h"
26
27 C !INPUT PARAMETERS: ===================================================
28 C bi,bj :: tile indices
29 C k :: vertical level
30 C uFld :: zonal flow
31 C hFacZ :: fractional thickness at vorticity points
32 C myThid :: thread number
33 INTEGER bi,bj,k
34 _RL uFld(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
35 _RS hFacZ(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
36 INTEGER myThid
37
38 C !OUTPUT PARAMETERS: ==================================================
39 C del2u :: Laplacian
40 _RL del2u(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
41
42 C !LOCAL VARIABLES: ====================================================
43 C i,j :: loop indices
44 INTEGER I,J
45 _RL fZon(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
46 _RL fMer(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
47 _RS hFacZClosedS,hFacZClosedN
48 CEOP
49
50 C Zonal flux d/dx U
51 DO j=1-Oly+1,sNy+Oly-1
52 DO i=1-Olx,sNx+Olx-1
53 fZon(i,j) = drF(k)*_hFacC(i,j,k,bi,bj)
54 & *_dyF(i,j,bi,bj)
55 & *_recip_dxF(i,j,bi,bj)
56 & *(uFld(i+1,j)-uFld(i,j))
57 #ifdef COSINEMETH_III
58 & *sqcosFacU(J,bi,bj)
59 #endif
60 ENDDO
61 ENDDO
62
63 C Meridional flux d/dy U
64 DO j=1-Oly+1,sNy+Oly
65 DO i=1-Olx+1,sNx+Olx-1
66 fMer(i,j) = drF(k)*hFacZ(i,j)
67 & *_dxV(i,j,bi,bj)
68 & *_recip_dyU(i,j,bi,bj)
69 & *(uFld(i,j)-uFld(i,j-1))
70 #if (defined (ISOTROPIC_COS_SCALING) && defined (COSINEMETH_III))
71 & *sqcosFacV(J,bi,bj)
72 #endif
73 ENDDO
74 ENDDO
75
76 C del^2 U
77 DO j=1-Oly+1,sNy+Oly-1
78 DO i=1-Olx+1,sNx+Olx-1
79 del2u(i,j) =
80 & recip_drF(k)*_recip_hFacW(i,j,k,bi,bj)
81 & *recip_rAw(i,j,bi,bj)
82 & *( fZon(i,j ) - fZon(i-1,j)
83 & +fMer(i,j+1) - fMer(i ,j)
84 & )*_maskW(i,j,k,bi,bj)
85 ENDDO
86 ENDDO
87
88 IF (no_slip_sides) THEN
89 C-- No-slip BCs impose a drag at walls...
90 DO j=1-Oly+1,sNy+Oly-1
91 DO i=1-Olx+1,sNx+Olx-1
92 hFacZClosedS = _hFacW(i,j,k,bi,bj) - hFacZ(i,j)
93 hFacZClosedN = _hFacW(i,j,k,bi,bj) - hFacZ(i,j+1)
94 del2u(i,j) = del2u(i,j)
95 & - _recip_hFacW(i,j,k,bi,bj)*recip_drF(k)
96 & *recip_rAw(i,j,bi,bj)
97 & *( hFacZClosedS*dxV(i, j ,bi,bj)
98 & *_recip_dyU(i, j ,bi,bj)
99 & +hFacZClosedN*dxV(i,j+1,bi,bj)
100 & *_recip_dyU(i,j+1,bi,bj)
101 & )*drF(k)*2.*uFld(i,j)
102 & *_maskW(i,j,k,bi,bj)
103 ENDDO
104 ENDDO
105 ENDIF
106
107 RETURN
108 END

  ViewVC Help
Powered by ViewVC 1.1.22