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

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

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


Revision 1.8 - (show annotations) (download)
Mon Mar 29 03:33:51 2004 UTC (20 years, 2 months ago) by edhill
Branch: MAIN
CVS Tags: checkpoint57m_post, checkpoint57g_pre, checkpoint57s_post, checkpoint57b_post, checkpoint57g_post, checkpoint56b_post, checkpoint54d_post, checkpoint54e_post, checkpoint57r_post, checkpoint57d_post, checkpoint57i_post, checkpoint55, checkpoint54, checkpoint57, checkpoint56, checkpoint53, checkpoint57n_post, checkpoint54f_post, checkpoint55i_post, checkpoint57l_post, checkpoint57t_post, checkpoint55c_post, checkpoint57v_post, checkpoint57f_post, checkpoint53d_post, checkpoint57a_post, checkpoint57h_pre, checkpoint54b_post, checkpoint57h_post, checkpoint52m_post, checkpoint55g_post, checkpoint57c_post, checkpoint55d_post, checkpoint54a_pre, checkpoint53c_post, checkpoint55d_pre, checkpoint57c_pre, checkpoint55j_post, checkpoint54a_post, checkpoint55h_post, checkpoint57e_post, checkpoint55b_post, checkpoint53a_post, checkpoint55f_post, checkpoint53g_post, checkpoint57p_post, checkpint57u_post, checkpoint57q_post, eckpoint57e_pre, checkpoint56a_post, checkpoint53f_post, checkpoint57h_done, checkpoint57j_post, checkpoint57f_pre, checkpoint52n_post, checkpoint53b_pre, checkpoint56c_post, checkpoint57a_pre, checkpoint55a_post, checkpoint57o_post, checkpoint57k_post, checkpoint53b_post, checkpoint53d_pre, checkpoint55e_post, checkpoint54c_post
Changes since 1.7: +16 -16 lines
 o new "poster children" for the API reference:
   - generic_advdiff
   - mnc

1 C $Header: /u/gcmpack/MITgcm/pkg/generic_advdiff/gad_fluxlimit_adv_r.F,v 1.7 2002/03/06 01:29:36 jmc Exp $
2 C $Name: $
3
4 #include "GAD_OPTIONS.h"
5
6 CBOP
7 C !ROUTINE: GAD_FLUXLIMIT_ADV_R
8
9 C !INTERFACE: ==========================================================
10 SUBROUTINE GAD_FLUXLIMIT_ADV_R(
11 I bi_arg,bj_arg,k,dTarg,
12 I rTrans, wVel,
13 I tracer,
14 O wT,
15 I myThid )
16
17 C !DESCRIPTION:
18 C Calculates the area integrated vertical 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} = W \overline{ \theta }^k
22 C - \frac{1}{2} \left(
23 C [ 1 - \psi(C_r) ] |W|
24 C + W \frac{w \Delta t}{\Delta r_c} \psi(C_r)
25 C \right) \delta_k \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 #include "EEPARAMS.h"
35 #include "PARAMS.h"
36
37 C !INPUT PARAMETERS: ===================================================
38 C bi_arg,bj_arg :: tile indices
39 C k :: vertical level
40 C rTrans :: vertical volume transport
41 C wVel :: vertical flow
42 C tracer :: tracer field
43 C myThid :: thread number
44 INTEGER bi_arg,bj_arg,k
45 _RL dTarg
46 _RL rTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
47 _RL wVel (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
48 _RL tracer(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
49 INTEGER myThid
50
51 C !OUTPUT PARAMETERS: ==================================================
52 C wT :: vertical advective flux
53 _RL wT (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
54
55 C !LOCAL VARIABLES: ====================================================
56 C i,j :: loop indices
57 C kp1 :: =min( k+1 , Nr )
58 C km1 :: =max( k-1 , 1 )
59 C km2 :: =max( k-2 , 1 )
60 C bi,bj :: tile indices or (1,1) depending on use
61 C Cr :: slope ratio
62 C Rjm,Rj,Rjp :: differences at i-1,i,i+1
63 C wFld :: velocity, vertical component
64 INTEGER i,j,kp1,km1,km2,bi,bj
65 _RL Cr,Rjm,Rj,Rjp
66 _RL wFld
67 C Statement function provides Limiter(Cr)
68 #include "GAD_FLUX_LIMITER.h"
69 CEOP
70
71 IF (.NOT. multiDimAdvection) THEN
72 C If using the standard time-stepping/advection schemes (ie. AB-II)
73 C then the data-structures are all global arrays
74 bi=bi_arg
75 bj=bj_arg
76 ELSE
77 C otherwise if using the multi-dimensional advection schemes
78 C then the data-structures are all local arrays except
79 C for maskC(...) and wVel(...)
80 bi=1
81 bj=1
82 ENDIF
83
84 km2=MAX(1,k-2)
85 km1=MAX(1,k-1)
86 kp1=MIN(Nr,k+1)
87
88 IF ( k.GT.Nr) THEN
89 DO j=1-Oly,sNy+Oly
90 DO i=1-Olx,sNx+Olx
91 wT(i,j) = 0.
92 ENDDO
93 ENDDO
94 ELSE
95 DO j=1-Oly,sNy+Oly
96 DO i=1-Olx,sNx+Olx
97
98 c wFld = wVel(i,j,k,bi_arg,bj_arg)
99 wFld = rTrans(i,j)*recip_rA(i,j,bi_arg,bj_arg)
100 Rjp=(tracer(i,j,kp1,bi,bj)-tracer(i,j,k,bi,bj))
101 & *maskC(i,j,kp1,bi_arg,bj_arg)
102 Rj=(tracer(i,j,k,bi,bj)-tracer(i,j,kM1,bi,bj))
103 Rjm=(tracer(i,j,km1,bi,bj)-tracer(i,j,kM2,bi,bj))
104 & *maskC(i,j,km2,bi_arg,bj_arg)
105
106 IF (Rj.NE.0.) THEN
107 IF (rTrans(i,j).LT.0.) THEN
108 Cr=Rjm/Rj
109 ELSE
110 Cr=Rjp/Rj
111 ENDIF
112 ELSE
113 IF (rTrans(i,j).LT.0.) THEN
114 Cr=Rjm*1.E20
115 ELSE
116 Cr=Rjp*1.E20
117 ENDIF
118 ENDIF
119 Cr=Limiter(Cr)
120 wT(i,j) = maskC(i,j,kM1,bi_arg,bj_arg)*(
121 & rTrans(i,j)*
122 & (Tracer(i,j,k,bi,bj)+Tracer(i,j,kM1,bi,bj))*0.5 _d 0
123 & +(ABS(rTrans(i,j))*(1-Cr)
124 & +rTrans(i,j)*wFld*dTarg*recip_drC(k)
125 & *Cr
126 & )*Rj*0.5 _d 0 )
127 ENDDO
128 ENDDO
129 ENDIF
130
131 RETURN
132 END

  ViewVC Help
Powered by ViewVC 1.1.22