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

Annotation of /MITgcm_contrib/natl_12/code/mom_vi_u_yviscflux.F

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


Revision 1.1 - (hide annotations) (download)
Tue Aug 5 21:22:44 2003 UTC (20 years, 10 months ago) by cnh
Branch: MAIN
CVS Tags: HEAD
Adding set of files for 1/12 Atlantic configuration

1 cnh 1.1 C $Header: /u/u0/gcmpack/MITgcm/pkg/mom_vecinv/mom_vi_u_yviscflux.F,v 1.3 2001/08/16 20:18:08 adcroft Exp $
2     C $Name: $
3    
4     #include "CPP_OPTIONS.h"
5    
6     SUBROUTINE MOM_VI_U_YVISCFLUX(
7     I bi,bj,k,
8     I vort3,del2u,hFacZ,
9     O yViscFluxU,
10     I myThid)
11     IMPLICIT NONE
12     C
13     C Calculate viscous flux in Y direction for U eqn
14     C - is not vector invariant ...
15     C
16    
17     C == Global variables ==
18     #include "SIZE.h"
19     #include "EEPARAMS.h"
20     #include "PARAMS.h"
21     #include "GRID.h"
22    
23     C == Routine arguments ==
24     INTEGER bi,bj,k
25     _RL vort3(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
26     _RL del2u(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
27     _RS hFacZ(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
28     _RL yViscFluxU(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
29     INTEGER myThid
30    
31     C == Local variables ==
32     INTEGER I,J
33    
34     C - Laplacian and bi-harmonic terms
35     DO j=1-Oly+1,sNy+Oly
36     DO i=1-Olx,sNx+Olx
37     yViscFluxU(i,j) =
38     & _dxV(i,j,bi,bj)*drF(k)*hFacZ(i,j)
39     & *(-viscAh*(-vort3(i,j))
40     #ifdef ISOTROPIC_COS_SCALING
41     & *cosFacV(J,bi,bj)
42     #ifdef COSINEMETH_III
43     & +viscA4*(del2u(i,j)-del2u(i,j-1))*sqcosFacV(J,bi,bj)
44     #else
45     & +viscA4*(del2u(i,j)-del2u(i,j-1))*cosFacV(J,bi,bj)
46     #endif
47     & *recip_dyu(i,j,bi,bj)
48     #endif
49     & )
50     ENDDO
51     ENDDO
52    
53     RETURN
54     END

  ViewVC Help
Powered by ViewVC 1.1.22