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

Annotation of /MITgcm/pkg/generic_advdiff/gad_dst3_adv_y.F

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


Revision 1.2.6.1 - (hide annotations) (download)
Fri Mar 7 03:55:23 2003 UTC (21 years, 2 months ago) by heimbach
Branch: ecco-branch
CVS Tags: ecco_c50_e32, ecco_c50_e33, ecco_c50_e30, ecco_c50_e31, ecco_c51_e34d, ecco_c51_e34e, ecco_c51_e34f, ecco_c51_e34g, ecco_c51_e34a, ecco_c51_e34b, ecco_c51_e34c, ecco_c50_e29, ecco_c50_e28, ecco_c50_e33a, ecco_c51_e34
Changes since 1.2: +8 -3 lines
merging c49 and e27.

1 heimbach 1.2.6.1 C $Header: /u/gcmpack/MITgcm/pkg/generic_advdiff/gad_dst3_adv_y.F,v 1.3 2002/03/06 01:29:36 jmc Exp $
2     C $Name: $
3 adcroft 1.1
4     #include "GAD_OPTIONS.h"
5    
6     SUBROUTINE GAD_DST3_ADV_Y(
7     I bi,bj,k,deltaT,
8     I vTrans, vVel,
9     I tracer,
10     O vT,
11     I myThid )
12     C /==========================================================\
13     C | SUBROUTINE GAD_DST3_ADV_Y |
14     C | o Compute Meridional advective Flux of Tracer using |
15     C | 3rd Order DST Sceheme |
16     C |==========================================================|
17     IMPLICIT NONE
18    
19     C == GLobal variables ==
20     #include "SIZE.h"
21     #include "GRID.h"
22     #include "GAD.h"
23    
24     C == Routine arguments ==
25     INTEGER bi,bj,k
26     _RL deltaT
27     _RL vTrans(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
28     _RL vVel(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
29     _RL tracer(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
30     _RL vT (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
31     INTEGER myThid
32    
33     C == Local variables ==
34 heimbach 1.2.6.1 C vFld :: velocity [m/s], meridional component
35 adcroft 1.1 INTEGER i,j
36     _RL Rjm,Rj,Rjp,cfl,d0,d1
37 adcroft 1.2 _RL psiP,psiM,thetaP,thetaM
38 heimbach 1.2.6.1 _RL vFld
39 adcroft 1.1
40     DO i=1-Olx,sNx+Olx
41     vT(i,1-Oly)=0.
42     vT(i,2-Oly)=0.
43     vT(i,sNy+Oly)=0.
44     ENDDO
45     DO j=1-Oly+2,sNy+Oly-1
46     DO i=1-Olx,sNx+Olx
47     Rjp=(tracer(i,j+1)-tracer(i,j))*maskS(i,j+1,k,bi,bj)
48     Rj =(tracer(i,j)-tracer(i,j-1))*maskS(i,j,k,bi,bj)
49     Rjm=(tracer(i,j-1)-tracer(i,j-2))*maskS(i,j-1,k,bi,bj)
50    
51 heimbach 1.2.6.1 c vFld = vVel(i,j,k,bi,bj)
52     vFld = vTrans(i,j)*recip_dxG(i,j,bi,bj)
53     & *recip_drF(k)*recip_hFacS(i,j,k,bi,bj)
54     cfl=abs(vFld*deltaT*recip_dyC(i,j,bi,bj))
55 adcroft 1.2 d0=(2.-cfl)*(1.-cfl)*oneSixth
56     d1=(1.-cfl*cfl)*oneSixth
57     c thetaP=0.
58     c IF (Rj.NE.0.) thetaP=Rjm/Rj
59     thetaP=Rjm/(1.D-20+Rj)
60     psiP=d0+d1*thetaP
61     c psiP=max(0.,min(min(1.,psiP),(1.-cfl)/(1.D-20+cfl)*thetaP))
62     thetaM=Rjp/(1.D-20+Rj)
63     c thetaM=0.
64     c IF (Rj.NE.0.) thetaM=Rjp/Rj
65     psiM=d0+d1*thetaM
66     c psiM=max(0.,min(min(1.,psiM),(1.-cfl)/(1.D-20+cfl)*thetaM))
67 adcroft 1.1 vT(i,j)=
68     & 0.5*(vTrans(i,j)+abs(vTrans(i,j)))
69 adcroft 1.2 & *( Tracer(i,j-1) + psiP*Rj )
70 adcroft 1.1 & +0.5*(vTrans(i,j)-abs(vTrans(i,j)))
71 adcroft 1.2 & *( Tracer(i, j ) - psiM*Rj )
72 adcroft 1.1
73     ENDDO
74     ENDDO
75    
76     RETURN
77     END

  ViewVC Help
Powered by ViewVC 1.1.22