/[MITgcm]/MITgcm_contrib/natl_12/code/mom_u_sidedrag.F
ViewVC logotype

Contents of /MITgcm_contrib/natl_12/code/mom_u_sidedrag.F

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


Revision 1.2 - (show annotations) (download)
Thu Aug 7 13:03:31 2003 UTC (21 years, 11 months ago) by cnh
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +3 -1 lines
Mods to allow laplacian as well as biharmonic viscosity with varying resolution

1 C $Header: /u/u0/gcmpack/MITgcm/pkg/mom_fluxform/mom_u_sidedrag.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_U_SIDEDRAG
8
9 C !INTERFACE: ==========================================================
10 SUBROUTINE MOM_U_SIDEDRAG(
11 I bi,bj,k,
12 I uFld, del2u, hFacZ,
13 O uDragTerms,
14 I myThid)
15
16 C !DESCRIPTION:
17 C Calculates the drag terms due to the no-slip condition on viscous stresses:
18 C \begin{equation*}
19 C G^u_{drag} = - \frac{2}{\Delta y_u} (A_h u - A_4 \nabla^2 u)
20 C \end{equation*}
21
22 C !USES: ===============================================================
23 IMPLICIT NONE
24 #include "SIZE.h"
25 #include "EEPARAMS.h"
26 #include "PARAMS.h"
27 #include "GRID.h"
28
29 C !INPUT PARAMETERS: ===================================================
30 C bi,bj :: tile indices
31 C k :: vertical level
32 C uFld :: zonal flow
33 C del2u :: Laplacian of zonal flow
34 C hFacZ :: fractional open water at vorticity points
35 C myThid :: thread number
36 INTEGER bi,bj,k
37 _RL uFld(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
38 _RL del2u(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
39 _RS hFacZ(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
40 INTEGER myThid
41
42 C !OUTPUT PARAMETERS: ==================================================
43 C uDragTerms :: drag term
44 _RL uDragTerms(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
45
46 C !LOCAL VARIABLES: ====================================================
47 C i,j :: loop indices
48 C hFacZClosedN :: fractional open water to north
49 C hFacZClosedS :: fractional open water to south
50 INTEGER I,J
51 _RS hFacZClosedS,hFacZClosedN
52 _RS gridScalingAh
53 _RS gridScalingA4
54 CEOP
55
56 C - Laplacian and bi-harmonic terms
57 DO j=1-Oly,sNy+Oly-1
58 DO i=1-Olx,sNx+Olx-1
59 hFacZClosedS = _hFacW(i,j,k,bi,bj) - hFacZ(i,j)
60 hFacZClosedN = _hFacW(i,j,k,bi,bj) - hFacZ(i,j+1)
61 gridScalingA4 = (_dyU(i, j ,bi,bj)**4)/(5000.**4) ! Realy should split this loop for a more precise formulation
62 gridScalingAh = (_dyU(i, j ,bi,bj)**2)/(5000.**2) ! Realy should split this loop for a more precise formulation
63 uDragTerms(i,j) =
64 & -_recip_hFacW(i,j,k,bi,bj)
65 & *recip_drF(k)*recip_rAw(i,j,bi,bj)
66 & *( hFacZClosedS*_dxV(i, j ,bi,bj)
67 & *_recip_dyU(i, j ,bi,bj)
68 & +hFacZClosedN*_dxV(i,j+1,bi,bj)
69 & *_recip_dyU(i,j+1,bi,bj) )
70 & *drF(k)*2.*(
71 #ifdef ISOTROPIC_COS_SCALING
72 & viscAh*uFld(i,j)*cosFacU(J,bi,bj)
73 #ifdef COSINEMETH_III
74 & -viscA4*del2u(i,j)*sqcosFacU(J,bi,bj)
75 #else
76 & -viscA4*del2u(i,j)*cosFacU(J,bi,bj)
77 #endif
78 #else
79 & viscAh*uFld(i,j)*gridScalingAh
80 & -viscA4*del2u(i,j)*gridScalingA4
81 #endif
82 & )
83 ENDDO
84 ENDDO
85
86 RETURN
87 END

  ViewVC Help
Powered by ViewVC 1.1.22