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

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

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


Revision 1.6 - (show annotations) (download)
Fri May 14 17:43:11 2004 UTC (19 years, 11 months ago) by adcroft
Branch: MAIN
CVS Tags: HEAD
Changes since 1.5: +1 -1 lines
FILE REMOVED
Created pkg/mom_common/
 o changed pkg_groups and pkg_depend
 o moved duplicate files in mom_vecinv and mom_fluxform to mom_common/
This is in preparation for checking in Smagorinsky and Leith type variable
viscosities.

1 C $Header: /u/gcmpack/MITgcm/pkg/mom_fluxform/mom_u_rviscflux.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_RVISCFLUX
8
9 C !INTERFACE: ==========================================================
10 SUBROUTINE MOM_U_RVISCFLUX(
11 I bi,bj,k,
12 I uFld, KappaRU,
13 O rViscFluxU,
14 I myThid)
15
16 C !DESCRIPTION:
17 C Calculates the area integrated vertical viscous fluxes of U:
18 C \begin{equation*}
19 C F^r = - \frac{ {\cal A}_w }{\Delta r_c} A_r \delta_k 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 KappaRU :: vertical viscosity
34 C myThid :: thread number
35 INTEGER bi,bj,k
36 _RL uFld(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
37 _RL KappaRU(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr)
38 INTEGER myThid
39
40 C !OUTPUT PARAMETERS: ==================================================
41 C rViscFluxU :: viscous fluxes
42 _RL rViscFluxU(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
43
44 C !LOCAL VARIABLES: ====================================================
45 C i,j :: loop indices
46 C Kp1 :: =k+1 for k<Nr, k=Nr for k>=Nr
47 INTEGER I,J,Kp1
48 CEOP
49
50 Kp1=min(K+1,Nr)
51
52 C - Laplacian and bi-harmonic terms
53 DO j=1-Oly,sNy+Oly-1
54 DO i=1-Olx,sNx+Olx-1
55 rViscFluxU(i,j) =
56 & -KappaRU(i,j,kp1)
57 & *rAw(i,j,bi,bj)
58 & *( uFld(i,j,k,bi,bj)-uFld(i,j,kp1,bi,bj)
59 & )*rkFac*recip_drC(kp1)
60 & *_maskW(i,j,k,bi,bj)
61 & *_maskW(i,j,kp1,bi,bj)
62 ENDDO
63 ENDDO
64
65 RETURN
66 END

  ViewVC Help
Powered by ViewVC 1.1.22