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

Annotation of /MITgcm/pkg/mom_fluxform/mom_u_adv_wu.F

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


Revision 1.9 - (hide annotations) (download)
Fri Nov 4 01:31:59 2005 UTC (18 years, 6 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint58b_post, checkpoint57y_post, checkpoint58, checkpoint58f_post, checkpoint58d_post, checkpoint58a_post, checkpoint57z_post, checkpoint58m_post, checkpoint57y_pre, checkpoint58o_post, checkpoint58p_post, checkpoint58q_post, checkpoint58e_post, checkpoint58r_post, checkpoint58n_post, checkpoint58k_post, checkpoint58l_post, checkpoint58g_post, checkpoint58h_post, checkpoint58j_post, checkpoint58i_post, checkpoint57x_post, checkpoint58c_post
Changes since 1.8: +1 -2 lines
remove unused variables (reduces number of compiler warning)

1 jmc 1.9 C $Header: /u/gcmpack/MITgcm/pkg/mom_fluxform/mom_u_adv_wu.F,v 1.8 2004/10/19 02:43:06 jmc Exp $
2 adcroft 1.3 C $Name: $
3 adcroft 1.2
4 edhill 1.7 #include "MOM_FLUXFORM_OPTIONS.h"
5 adcroft 1.2
6 adcroft 1.3 CBOP
7     C !ROUTINE: MOM_U_ADV_WU
8    
9     C !INTERFACE: ==========================================================
10 adcroft 1.2 SUBROUTINE MOM_U_ADV_WU(
11     I bi,bj,k,
12 jmc 1.6 I uFld,wFld,rTrans,
13 adcroft 1.2 O advectiveFluxWU,
14     I myThid)
15 adcroft 1.3
16     C !DESCRIPTION:
17     C Calculates the vertical advective flux of zonal momentum:
18     C \begin{equation*}
19     C F^r = \overline{W}^i \overline{u}^{k}
20     C \end{equation*}
21    
22     C !USES: ===============================================================
23 adcroft 1.2 IMPLICIT NONE
24     #include "SIZE.h"
25     #include "EEPARAMS.h"
26     #include "PARAMS.h"
27     #include "GRID.h"
28    
29 adcroft 1.3 C !INPUT PARAMETERS: ===================================================
30     C bi,bj :: tile indices
31     C k :: vertical level
32 jmc 1.6 C uFld :: zonal velocity
33     C wFld :: vertical velocity
34     C rTrans :: vertical transport (above U point)
35 adcroft 1.3 C myThid :: thread number
36 adcroft 1.2 INTEGER bi,bj,k
37     _RL uFld(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
38     _RL wFld(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
39 jmc 1.6 _RL rTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
40 adcroft 1.3 INTEGER myThid
41    
42     C !OUTPUT PARAMETERS: ==================================================
43     C advectiveFluxWU :: advective flux
44 adcroft 1.2 _RL advectiveFluxWU(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
45    
46 adcroft 1.3 C !LOCAL VARIABLES: ====================================================
47     C i,j :: loop indices
48     INTEGER I,J
49 jmc 1.6 CEOP
50 adcroft 1.2
51 jmc 1.4 IF ( k.EQ.Nr+1 .AND.
52 jmc 1.8 & useRealFreshWaterFlux .AND. usingPCoords ) THEN
53 jmc 1.6 DO j=1-Oly+1,sNy+Oly
54 jmc 1.4 DO i=1-Olx+1,sNx+Olx
55 jmc 1.6 advectiveFluxWU(i,j) = rTrans(i,j)*uFld(i,j,k-1,bi,bj)
56 jmc 1.4 ENDDO
57     ENDDO
58    
59     ELSEIF ( k.GT.Nr .OR. (k.EQ.1.AND.rigidLid) ) THEN
60 adcroft 1.2 C Advective flux = 0 at k=Nr+1 ; = 0 at k=1 if rigid-lid
61    
62     DO j=1-Oly,sNy+Oly
63     DO i=1-Olx,sNx+Olx
64     advectiveFluxWU(i,j) = 0.
65     ENDDO
66     ENDDO
67    
68     ELSEIF (k.EQ.1) THEN
69     C (linear) Free-surface correction at k=1
70    
71 jmc 1.6 DO j=1-Oly+1,sNy+Oly
72 adcroft 1.2 DO i=1-Olx+1,sNx+Olx
73 jmc 1.6 advectiveFluxWU(i,j) = rTrans(i,j)*uFld(i,j,k,bi,bj)
74 adcroft 1.2 ENDDO
75     ENDDO
76    
77     ELSE
78    
79     C Vertical advection - interior ; assume uFld & wFld are masked
80 jmc 1.6 DO j=1-Oly+1,sNy+Oly
81 adcroft 1.2 DO i=1-Olx+1,sNx+Olx
82 jmc 1.6 advectiveFluxWU(i,j) = rTrans(i,j)*
83     & 0.5 _d 0*( uFld(i,j,k,bi,bj)+uFld(i,j,k-1,bi,bj) )
84 adcroft 1.2 ENDDO
85     ENDDO
86    
87 jmc 1.6 IF ( select_rStar.EQ.0 .AND. .NOT.rigidLid ) THEN
88 adcroft 1.2 C (linear) Free-surface correction at k>1
89 jmc 1.6 DO j=1-Oly+1,sNy+Oly
90 adcroft 1.2 DO i=1-Olx+1,sNx+Olx
91     advectiveFluxWU(i,j) = advectiveFluxWU(i,j)
92     & +0.25*(
93     & wFld(i, j ,k,bi,bj)*rA(i, j ,bi,bj)*
94     & (maskC(i,j,k,bi,bj) - maskC(i,j,k-1,bi,bj))
95     & +wFld(i-1,j,k,bi,bj)*rA(i-1,j,bi,bj)*
96     & (maskC(i-1,j,k,bi,bj)-maskC(i-1,j,k-1,bi,bj))
97     & )*uFld(i,j,k,bi,bj)
98     ENDDO
99     ENDDO
100     C- endif NOT rigidLid
101     ENDIF
102    
103     ENDIF
104    
105     RETURN
106     END

  ViewVC Help
Powered by ViewVC 1.1.22