/[MITgcm]/MITgcm/pkg/generic_advdiff/gad_fluxlimit_adv_x.F
ViewVC logotype

Contents of /MITgcm/pkg/generic_advdiff/gad_fluxlimit_adv_x.F

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


Revision 1.7 - (show annotations) (download)
Wed Jun 7 01:55:14 2006 UTC (17 years, 11 months ago) by heimbach
Branch: MAIN
CVS Tags: checkpoint58h_post, checkpoint58j_post, checkpoint58i_post
Changes since 1.6: +2 -2 lines
Modifications for bottom topography control
o replace hFacC by _hFacC at various places
o replace ALLOW_HFACC_CONTROL by ALLOW_DEPTH_CONTROL
o add non-self-adjoint cg2d_nsa
o update autodiff support routines
o re-initialise hfac after ctrl_depth_ini
o works for 5x5 box, doesnt work for global_ocean.90x40x15

1 C $Header: /u/gcmpack/MITgcm/pkg/generic_advdiff/gad_fluxlimit_adv_x.F,v 1.6 2005/08/19 22:19:35 heimbach Exp $
2 C $Name: $
3
4 #include "GAD_OPTIONS.h"
5
6 CBOP
7 C !ROUTINE: GAD_FLUXLIMIT_ADV_X
8
9 C !INTERFACE: ==========================================================
10 SUBROUTINE GAD_FLUXLIMIT_ADV_X(
11 I bi,bj,k,deltaTloc,
12 I uTrans, uVel,
13 I maskLocW, tracer,
14 O uT,
15 I myThid )
16
17 C !DESCRIPTION:
18 C Calculates the area integrated zonal flux due to advection of a tracer
19 C using second-order interpolation with a flux limiter:
20 C \begin{equation*}
21 C F^x_{adv} = U \overline{ \theta }^i
22 C - \frac{1}{2} \left(
23 C [ 1 - \psi(C_r) ] |U|
24 C + U \frac{u \Delta t}{\Delta x_c} \psi(C_r)
25 C \right) \delta_i \theta
26 C \end{equation*}
27 C where the $\psi(C_r)$ is the limiter function and $C_r$ is
28 C the slope ratio.
29
30 C !USES: ===============================================================
31 IMPLICIT NONE
32 #include "SIZE.h"
33 #include "GRID.h"
34
35 C !INPUT PARAMETERS: ===================================================
36 C bi,bj :: tile indices
37 C k :: vertical level
38 C uTrans :: zonal volume transport
39 C uVel :: zonal flow
40 C tracer :: tracer field
41 C myThid :: thread number
42 INTEGER bi,bj,k
43 _RL deltaTloc
44 _RL uTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
45 _RL uVel (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
46 _RS maskLocW(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
47 _RL tracer(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
48 INTEGER myThid
49
50 C !OUTPUT PARAMETERS: ==================================================
51 C uT :: zonal advective flux
52 _RL uT (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
53
54 C !LOCAL VARIABLES: ====================================================
55 C i,j :: loop indices
56 C Cr :: slope ratio
57 C Rjm,Rj,Rjp :: differences at i-1,i,i+1
58 C uFld :: velocity [m/s], zonal component
59 INTEGER i,j
60 _RL Cr,Rjm,Rj,Rjp
61 _RL uFld
62 C Statement function provides Limiter(Cr)
63 #include "GAD_FLUX_LIMITER.h"
64 CEOP
65
66 DO j=1-Oly,sNy+Oly
67 uT(1-Olx,j)=0.
68 uT(2-Olx,j)=0.
69 uT(sNx+Olx,j)=0.
70 DO i=1-Olx+2,sNx+Olx-1
71
72 c uFld = uVel(i,j,k,bi,bj)
73 uFld = uTrans(i,j)*recip_dyG(i,j,bi,bj)
74 & *recip_drF(k)*_recip_hFacW(i,j,k,bi,bj)
75 Rjp=(tracer(i+1,j)-tracer( i ,j))*maskLocW(i+1,j)
76 Rj =(tracer( i ,j)-tracer(i-1,j))*maskLocW( i ,j)
77 Rjm=(tracer(i-1,j)-tracer(i-2,j))*maskLocW(i-1,j)
78
79 IF (Rj.NE.0.) THEN
80 IF (uTrans(i,j).GT.0) THEN
81 Cr=Rjm/Rj
82 ELSE
83 Cr=Rjp/Rj
84 ENDIF
85 ELSE
86 IF (uTrans(i,j).GT.0) THEN
87 Cr=Rjm*1.E20
88 ELSE
89 Cr=Rjp*1.E20
90 ENDIF
91 ENDIF
92 Cr=Limiter(Cr)
93 uT(i,j) =
94 & uTrans(i,j)*(Tracer(i,j)+Tracer(i-1,j))*0.5 _d 0
95 & -0.5*(
96 & (1-Cr)*ABS(uTrans(i,j))
97 & +uTrans(i,j)*uFld*deltaTloc
98 & *recip_dxC(i,j,bi,bj)*Cr
99 & )*Rj
100 ENDDO
101 ENDDO
102
103 RETURN
104 END

  ViewVC Help
Powered by ViewVC 1.1.22