/[MITgcm]/MITgcm/pkg/mom_common/mom_v_rviscflux.F
ViewVC logotype

Contents of /MITgcm/pkg/mom_common/mom_v_rviscflux.F

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


Revision 1.1 - (show annotations) (download)
Fri May 14 17:43:11 2004 UTC (20 years ago) by adcroft
Branch: MAIN
CVS Tags: checkpoint53d_post, checkpoint54a_pre, checkpoint55c_post, checkpoint54e_post, checkpoint54a_post, checkpoint53c_post, checkpoint55d_pre, checkpoint57d_post, checkpoint57g_post, checkpoint57b_post, checkpoint57c_pre, checkpoint55j_post, checkpoint56b_post, checkpoint57i_post, checkpoint57e_post, checkpoint55h_post, checkpoint57g_pre, checkpoint54b_post, checkpoint55b_post, checkpoint54d_post, checkpoint56c_post, checkpoint55, checkpoint57f_pre, checkpoint57a_post, checkpoint54, checkpoint54f_post, checkpoint55g_post, checkpoint55f_post, checkpoint57a_pre, checkpoint55i_post, checkpoint57, checkpoint56, eckpoint57e_pre, checkpoint57h_done, checkpoint53g_post, checkpoint57f_post, checkpoint57c_post, checkpoint55e_post, checkpoint53f_post, checkpoint55a_post, checkpoint53d_pre, checkpoint54c_post, checkpoint57h_pre, checkpoint57h_post, checkpoint56a_post, checkpoint55d_post
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: $
2 C $Name: $
3
4 #include "MOM_COMMON_OPTIONS.h"
5
6 CBOP
7 C !ROUTINE: MOM_V_RVISCFLUX
8
9 C !INTERFACE: ==========================================================
10 SUBROUTINE MOM_V_RVISCFLUX(
11 I bi,bj,k,
12 I vFld, KappaRV,
13 O rViscFluxV,
14 I myThid)
15
16 C !DESCRIPTION:
17 C Calculates the area integrated vertical viscous fluxes of V:
18 C \begin{equation*}
19 C F^r = - \frac{ {\cal A}_s }{\Delta r_c} A_r \delta_k v
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 vFld :: meridional flow
33 C KappaRV :: vertical viscosity
34 C myThid :: thread number
35 INTEGER bi,bj,k
36 _RL vFld(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
37 _RL KappaRV(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr)
38 INTEGER myThid
39
40 C !OUTPUT PARAMETERS: ==================================================
41 C rViscFluxV :: viscous fluxes
42 _RL rViscFluxV(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 rViscFluxV(i,j) =
56 & -KappaRV(i,j,kp1)
57 & *rAs(i,j,bi,bj)
58 & *( vFld(i,j,k,bi,bj)-vFld(i,j,kp1,bi,bj)
59 & )*rkFac*recip_drC(kp1)
60 & *_maskS(i,j,k,bi,bj)
61 & *_maskS(i,j,kp1,bi,bj)
62 ENDDO
63 ENDDO
64
65 RETURN
66 END

  ViewVC Help
Powered by ViewVC 1.1.22