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

Annotation 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.12 - (hide annotations) (download)
Fri Feb 29 01:30:59 2008 UTC (16 years, 2 months ago) by mlosch
Branch: MAIN
CVS Tags: checkpoint62v, checkpoint62u, checkpoint62t, checkpoint65z, checkpoint65x, checkpoint65y, checkpoint65r, checkpoint65s, checkpoint65p, checkpoint65q, checkpoint65v, checkpoint65w, checkpoint65t, checkpoint65u, checkpoint65j, checkpoint65k, checkpoint65h, checkpoint65i, checkpoint65n, checkpoint65l, checkpoint65m, checkpoint65b, checkpoint65c, checkpoint65a, checkpoint65f, checkpoint65g, checkpoint65d, checkpoint65e, checkpoint62c, checkpoint62s, checkpoint62r, checkpoint62q, checkpoint62p, checkpoint62a, checkpoint62g, checkpoint62f, checkpoint62e, checkpoint62d, checkpoint62k, checkpoint62j, checkpoint62i, checkpoint62h, checkpoint62o, checkpoint62n, checkpoint62m, checkpoint62l, checkpoint62w, checkpoint62z, checkpoint62y, checkpoint62x, checkpoint63g, checkpoint64, checkpoint65, checkpoint60, checkpoint61, checkpoint62, checkpoint63, checkpoint66g, checkpoint66f, checkpoint66e, checkpoint66d, checkpoint66c, checkpoint66b, checkpoint66a, checkpoint66o, checkpoint66n, checkpoint66m, checkpoint66l, checkpoint66k, checkpoint66j, checkpoint66i, checkpoint66h, checkpoint63p, checkpoint63q, checkpoint63r, checkpoint63s, checkpoint63l, checkpoint63m, checkpoint63n, checkpoint63o, checkpoint63h, checkpoint63i, checkpoint63j, checkpoint63k, checkpoint63d, checkpoint63e, checkpoint63f, checkpoint63a, checkpoint63b, checkpoint63c, checkpoint65o, checkpoint59q, checkpoint59p, checkpoint59r, checkpoint59o, checkpoint62b, checkpoint64y, checkpoint64x, checkpoint64z, checkpoint64q, checkpoint64p, checkpoint64s, checkpoint64r, checkpoint64u, checkpoint64t, checkpoint64w, checkpoint64v, checkpoint64i, checkpoint64h, checkpoint64k, checkpoint64j, checkpoint64m, checkpoint64l, checkpoint64o, checkpoint64n, checkpoint64a, checkpoint64c, checkpoint64b, checkpoint64e, checkpoint64d, checkpoint64g, checkpoint64f, checkpoint61f, checkpoint61n, checkpoint61q, checkpoint61e, checkpoint61g, checkpoint61d, checkpoint61b, checkpoint61c, checkpoint61a, checkpoint61o, checkpoint61l, checkpoint61m, checkpoint61j, checkpoint61k, checkpoint61h, checkpoint61i, checkpoint61v, checkpoint61w, checkpoint61t, checkpoint61u, checkpoint61r, checkpoint61s, checkpoint61p, checkpoint61z, checkpoint61x, checkpoint61y, HEAD
Changes since 1.11: +3 -1 lines
improve vectorizability by moving a few statements out of the main loop

1 mlosch 1.12 C $Header: /u/gcmpack/MITgcm/pkg/generic_advdiff/gad_fluxlimit_adv_x.F,v 1.11 2007/04/04 01:39:06 jmc Exp $
2 jmc 1.2 C $Name: $
3 adcroft 1.1
4     #include "GAD_OPTIONS.h"
5    
6 adcroft 1.3 CBOP
7     C !ROUTINE: GAD_FLUXLIMIT_ADV_X
8    
9     C !INTERFACE: ==========================================================
10 jmc 1.8 SUBROUTINE GAD_FLUXLIMIT_ADV_X(
11 jmc 1.11 I bi,bj,k, calcCFL, deltaTloc,
12 jmc 1.8 I uTrans, uFld,
13 jmc 1.5 I maskLocW, tracer,
14 adcroft 1.1 O uT,
15     I myThid )
16 adcroft 1.3
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 jmc 1.8 C F^x_{adv} = U \overline{ \theta }^i
22 adcroft 1.3 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 adcroft 1.1 IMPLICIT NONE
32     #include "SIZE.h"
33     #include "GRID.h"
34    
35 adcroft 1.3 C !INPUT PARAMETERS: ===================================================
36 jmc 1.11 C bi,bj :: tile indices
37     C k :: vertical level
38     C calcCFL :: =T: calculate CFL number ; =F: take uFld as CFL
39     C deltaTloc :: local time-step (s)
40     C uTrans :: zonal volume transport
41     C uFld :: zonal flow / CFL number
42     C tracer :: tracer field
43     C myThid :: thread number
44 adcroft 1.1 INTEGER bi,bj,k
45 jmc 1.11 LOGICAL calcCFL
46 heimbach 1.6 _RL deltaTloc
47 adcroft 1.1 _RL uTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
48 jmc 1.8 _RL uFld (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
49 jmc 1.5 _RS maskLocW(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
50 adcroft 1.1 _RL tracer(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
51 adcroft 1.3 INTEGER myThid
52    
53     C !OUTPUT PARAMETERS: ==================================================
54 jmc 1.11 C uT :: zonal advective flux
55 adcroft 1.1 _RL uT (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
56    
57 adcroft 1.3 C !LOCAL VARIABLES: ====================================================
58 jmc 1.11 C i,j :: loop indices
59     C Cr :: slope ratio
60     C Rjm,Rj,Rjp :: differences at i-1,i,i+1
61 adcroft 1.1 INTEGER i,j
62     _RL Cr,Rjm,Rj,Rjp
63 jmc 1.11 _RL uCFL
64 adcroft 1.3 C Statement function provides Limiter(Cr)
65 adcroft 1.1 #include "GAD_FLUX_LIMITER.h"
66 adcroft 1.3 CEOP
67 adcroft 1.1
68     DO j=1-Oly,sNy+Oly
69     uT(1-Olx,j)=0.
70 jmc 1.2 uT(2-Olx,j)=0.
71     uT(sNx+Olx,j)=0.
72 mlosch 1.12 ENDDO
73     DO j=1-Oly,sNy+Oly
74 jmc 1.2 DO i=1-Olx+2,sNx+Olx-1
75 jmc 1.4
76 jmc 1.11 uCFL = uFld(i,j)
77     IF ( calcCFL ) uCFL = ABS( uFld(i,j)*deltaTloc
78 jmc 1.10 & *recip_dxC(i,j,bi,bj)*recip_deepFacC(k) )
79 jmc 1.5 Rjp=(tracer(i+1,j)-tracer( i ,j))*maskLocW(i+1,j)
80     Rj =(tracer( i ,j)-tracer(i-1,j))*maskLocW( i ,j)
81     Rjm=(tracer(i-1,j)-tracer(i-2,j))*maskLocW(i-1,j)
82 jmc 1.4
83 adcroft 1.1 IF (Rj.NE.0.) THEN
84     IF (uTrans(i,j).GT.0) THEN
85     Cr=Rjm/Rj
86     ELSE
87     Cr=Rjp/Rj
88     ENDIF
89     ELSE
90     IF (uTrans(i,j).GT.0) THEN
91     Cr=Rjm*1.E20
92     ELSE
93     Cr=Rjp*1.E20
94     ENDIF
95     ENDIF
96     Cr=Limiter(Cr)
97 jmc 1.8 uT(i,j) =
98 adcroft 1.1 & uTrans(i,j)*(Tracer(i,j)+Tracer(i-1,j))*0.5 _d 0
99 jmc 1.10 & -ABS(uTrans(i,j))*((1.-Cr)+uCFL*Cr)
100     & *Rj*0.5 _d 0
101 adcroft 1.1 ENDDO
102     ENDDO
103    
104     RETURN
105     END

  ViewVC Help
Powered by ViewVC 1.1.22