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

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

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


Revision 1.4 - (show annotations) (download)
Tue Feb 11 04:06:15 2003 UTC (21 years, 2 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint50c_post, checkpoint48e_post, checkpoint50c_pre, checkpoint48i_post, checkpoint51, checkpoint50, checkpoint50d_post, checkpoint50b_pre, checkpoint51f_post, checkpoint51d_post, checkpoint51j_post, checkpoint48f_post, checkpoint48h_post, checkpoint51b_pre, checkpoint51h_pre, checkpoint50f_post, checkpoint50a_post, checkpoint50f_pre, branchpoint-genmake2, checkpoint51b_post, checkpoint51c_post, checkpoint50g_post, checkpoint50h_post, checkpoint50e_pre, checkpoint50i_post, checkpoint51i_pre, checkpoint50e_post, checkpoint50d_pre, checkpoint51e_post, checkpoint49, checkpoint51f_pre, checkpoint48g_post, checkpoint51g_post, checkpoint50b_post, checkpoint51a_post
Branch point for: branch-genmake2
Changes since 1.3: +8 -8 lines
dynamics: change definition of computational domain & adapt mom_fluxform
 accordingly ; when viscA4=0, allows to run the dynamics with Olx=Oly=2.

1 C $Header: /u/gcmpack/MITgcm/pkg/mom_fluxform/mom_v_del2v.F,v 1.3 2001/09/26 19:05:21 adcroft Exp $
2 C $Name: $
3
4 #include "CPP_OPTIONS.h"
5
6 CBOP
7 C !ROUTINE: MOM_V_DEL2V
8
9 C !INTERFACE: ==========================================================
10 SUBROUTINE MOM_V_DEL2V(
11 I bi,bj,k,
12 I vFld, hFacZ,
13 O del2v,
14 I myThid)
15
16 C !DESCRIPTION:
17 C Calculates the Laplacian of meridional 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
26 C !INPUT PARAMETERS: ===================================================
27 C bi,bj :: tile indices
28 C k :: vertical level
29 C vFld :: meridional flow
30 C hFacZ :: fractional thickness at vorticity points
31 C myThid :: thread number`
32 INTEGER bi,bj,k
33 _RL vFld(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
34 _RS hFacZ(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
35 INTEGER myThid
36 C !OUTPUT PARAMETERS: ==================================================
37 C del2v :: Laplacian
38 _RL del2v(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
39
40 C !LOCAL VARIABLES: ====================================================
41 C i,j :: loop indices
42 INTEGER I,J
43 _RL fZon(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
44 _RL fMer(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
45 _RS hFacZClosedE,hFacZClosedW
46 CEOP
47
48 C Zonal flux d/dx V
49 DO j=1-Oly+1,sNy+Oly-1
50 DO i=1-Olx+1,sNx+Olx
51 fZon(i,j) = drF(k)*hFacZ(i,j)
52 & *_dyU(i,j,bi,bj)
53 & *_recip_dxV(i,j,bi,bj)
54 & *(vFld(i,j)-vFld(i-1,j))
55 #ifdef COSINEMETH_III
56 & *sqcosFacV(J,bi,bj)
57 #endif
58 ENDDO
59 ENDDO
60
61 C Meridional flux d/dy V
62 DO j=1-Oly,sNy+Oly-1
63 DO i=1-Olx+1,sNx+Olx-1
64 fMer(i,j) = drF(k)*_hFacC(i,j,k,bi,bj)
65 & *_dxF(i,j,bi,bj)
66 & *_recip_dyF(i,j,bi,bj)
67 & *(vFld(i,j+1)-vFld(i,j))
68 ENDDO
69 ENDDO
70
71 C del^2 V
72 DO j=1-Oly+1,sNy+Oly-1
73 DO i=1-Olx+1,sNx+Olx-1
74 del2v(i,j) = recip_drF(k)*_recip_hFacS(i,j,k,bi,bj)
75 & *recip_rAs(i,j,bi,bj)
76 & *( fZon(i+1,j) - fZon(i, j )
77 & +fMer( i ,j) - fMer(i,j-1)
78 & )*_maskS(i,j,k,bi,bj)
79 ENDDO
80 ENDDO
81
82 IF (no_slip_sides) THEN
83 C-- No-slip BCs impose a drag at walls...
84 DO j=1-Oly+1,sNy+Oly-1
85 DO i=1-Olx+1,sNx+Olx-1
86 hFacZClosedW = _hFacS(i,j,k,bi,bj) - hFacZ(i,j)
87 hFacZClosedE = _hFacS(i,j,k,bi,bj) - hFacZ(i+1,j)
88 del2v(i,j) = del2v(i,j)
89 & -_recip_hFacS(i,j,k,bi,bj)*recip_drF(k)
90 & *recip_rAs(i,j,bi,bj)
91 & *( hFacZClosedW*dyU( i ,j,bi,bj)
92 & *_recip_dxV( i ,j,bi,bj)
93 & +hFacZClosedE*dyU(i+1,j,bi,bj)
94 & *_recip_dxV(i+1,j,bi,bj)
95 & )*drF(k)*2.*vFld(i,j)
96 & *_maskS(i,j,k,bi,bj)
97 ENDDO
98 ENDDO
99 ENDIF
100
101 RETURN
102 END

  ViewVC Help
Powered by ViewVC 1.1.22