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

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

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


Revision 1.9 - (show annotations) (download)
Tue Dec 5 22:25:41 2006 UTC (17 years, 4 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint62v, checkpoint62u, checkpoint62t, checkpoint62c, checkpoint59, checkpoint62s, checkpoint62r, checkpoint62q, checkpoint62p, checkpoint62a, checkpoint62g, checkpoint62f, checkpoint62e, checkpoint62d, checkpoint62k, checkpoint62j, checkpoint62i, checkpoint62h, checkpoint62o, checkpoint62n, checkpoint62m, checkpoint62l, checkpoint62w, checkpoint62z, checkpoint62y, checkpoint62x, checkpoint58y_post, checkpoint58t_post, checkpoint60, checkpoint61, checkpoint62, checkpoint63, checkpoint58w_post, mitgcm_mapl_00, checkpoint63a, checkpoint63b, checkpoint63c, checkpoint59q, checkpoint59p, checkpoint59r, checkpoint59e, checkpoint59d, checkpoint59g, checkpoint59f, checkpoint59a, checkpoint59c, checkpoint59b, checkpoint59m, checkpoint59l, checkpoint59o, checkpoint59n, checkpoint59i, checkpoint59h, checkpoint59k, checkpoint62b, checkpoint58v_post, checkpoint61f, checkpoint58x_post, checkpoint61n, checkpoint59j, checkpoint61q, checkpoint61e, checkpoint58u_post, checkpoint58s_post, checkpoint61g, checkpoint61d, checkpoint61b, checkpoint61c, checkpoint61a, checkpoint61o, checkpoint61l, checkpoint61m, checkpoint61j, checkpoint61k, checkpoint61h, checkpoint61i, checkpoint61v, checkpoint61w, checkpoint61t, checkpoint61u, checkpoint61r, checkpoint61s, checkpoint61p, checkpoint61z, checkpoint61x, checkpoint61y
Changes since 1.8: +9 -10 lines
similar to the other DST advection scheme : fct of CFL number, > 0.

1 C $Header: /u/gcmpack/MITgcm/pkg/generic_advdiff/gad_dst3fl_adv_r.F,v 1.8 2006/06/19 14:40:43 jmc Exp $
2 C $Name: $
3
4 #include "GAD_OPTIONS.h"
5
6 CBOP
7 C !ROUTINE: GAD_DST3FL_ADV_R
8
9 C !INTERFACE: ==========================================================
10 SUBROUTINE GAD_DST3FL_ADV_R(
11 I bi,bj,k,dTarg,
12 I rTrans, wFld,
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 3rd Order DST Scheme with flux limiting
20
21 C !USES: ===============================================================
22 IMPLICIT NONE
23
24 C == GLobal variables ==
25 #include "SIZE.h"
26 #include "GRID.h"
27 #include "GAD.h"
28
29 C == Routine arguments ==
30 C !INPUT PARAMETERS: ===================================================
31 C bi,bj :: tile indices
32 C k :: vertical level
33 C deltaTloc :: local time-step (s)
34 C rTrans :: vertical volume transport
35 C wFld :: vertical flow
36 C tracer :: tracer field
37 C myThid :: thread number
38 INTEGER bi,bj,k
39 _RL dTarg
40 _RL rTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
41 _RL wFld (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
42 _RL tracer(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr)
43 INTEGER myThid
44
45 C !OUTPUT PARAMETERS: ==================================================
46 C wT :: vertical advective flux
47 _RL wT (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
48
49 C == Local variables ==
50 C !LOCAL VARIABLES: ====================================================
51 C i,j :: loop indices
52 C km1 :: =max( k-1 , 1 )
53 C wLoc :: velocity, vertical component
54 C wCFL :: Courant-Friedrich-Levy number
55 INTEGER i,j,kp1,km1,km2
56 _RL Rjm,Rj,Rjp,wCFL,d0,d1
57 _RL psiP,psiM,thetaP,thetaM
58 _RL wLoc
59 _RL thetaMax
60 PARAMETER( thetaMax = 1.D+20 )
61
62 km2=MAX(1,k-2)
63 km1=MAX(1,k-1)
64 kp1=MIN(Nr,k+1)
65
66 DO j=1-Oly,sNy+Oly
67 DO i=1-Olx,sNx+Olx
68 Rjp=(tracer(i,j,k)-tracer(i,j,kp1))
69 & *maskC(i,j,kp1,bi,bj)
70 Rj =(tracer(i,j,km1)-tracer(i,j,k))
71 & *maskC(i,j,k,bi,bj)*maskC(i,j,km1,bi,bj)
72 Rjm=(tracer(i,j,km2)-tracer(i,j,km1))
73 & *maskC(i,j,km1,bi,bj)
74
75 wLoc = wFld(i,j)
76 wCFL = ABS(wLoc*dTarg*recip_drC(k))
77 d0=(2. _d 0 -wCFL)*(1. _d 0 -wCFL)*oneSixth
78 d1=(1. _d 0 -wCFL*wCFL)*oneSixth
79
80 C- the old version: can produce overflow, division by zero,
81 C and is wrong for tracer with low concentration:
82 c thetaP=Rjm/(1.D-20+Rj)
83 c thetaM=Rjp/(1.D-20+Rj)
84 C- the right expression, but not bounded:
85 c thetaP=0.D0
86 c thetaM=0.D0
87 c IF (Rj.NE.0.D0) thetaP=Rjm/Rj
88 c IF (Rj.NE.0.D0) thetaM=Rjp/Rj
89 C- prevent |thetaP,M| to reach too big value:
90 IF ( ABS(Rj)*thetaMax .LE. ABS(Rjm) ) THEN
91 thetaP=SIGN(thetaMax,Rjm*Rj)
92 ELSE
93 thetaP=Rjm/Rj
94 ENDIF
95 IF ( ABS(Rj)*thetaMax .LE. ABS(Rjp) ) THEN
96 thetaM=SIGN(thetaMax,Rjp*Rj)
97 ELSE
98 thetaM=Rjp/Rj
99 ENDIF
100
101 psiP=d0+d1*thetaP
102 psiP=MAX(0. _d 0,MIN(MIN(1. _d 0,psiP),
103 & thetaP*(1. _d 0 -wCFL)/(wCFL+1. _d -20) ))
104 psiM=d0+d1*thetaM
105 psiM=MAX(0. _d 0,MIN(MIN(1. _d 0,psiM),
106 & thetaM*(1. _d 0 -wCFL)/(wCFL+1. _d -20) ))
107
108 wT(i,j)=
109 & 0.5*(rTrans(i,j)+ABS(rTrans(i,j)))
110 & *( tracer(i,j, k ) + psiM*Rj )
111 & +0.5*(rTrans(i,j)-ABS(rTrans(i,j)))
112 & *( tracer(i,j,km1) - psiP*Rj )
113
114 ENDDO
115 ENDDO
116
117 RETURN
118 END

  ViewVC Help
Powered by ViewVC 1.1.22