/[MITgcm]/MITgcm/model/src/ini_predictor.F
ViewVC logotype

Contents of /MITgcm/model/src/ini_predictor.F

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


Revision 1.7 - (show annotations) (download)
Fri Feb 2 21:04:48 2001 UTC (23 years, 4 months ago) by adcroft
Branch: MAIN
CVS Tags: HEAD
Changes since 1.6: +1 -1 lines
FILE REMOVED
Merged changes from branch "branch-atmos-merge" into MAIN (checkpoint34)
 - substantial modifications to algorithm sequence (dynamics.F)
 - packaged OBCS, Shapiro filter, Zonal filter, Atmospheric Physics

1 C $Header: /u/gcmpack/models/MITgcmUV/model/src/ini_predictor.F,v 1.6 2000/11/13 16:32:58 heimbach Exp $
2
3 #include "CPP_OPTIONS.h"
4
5 C /==========================================================\
6 C | S/R INI_PREDICTOR |
7 C | o Copies Gu,Gv,Gt and Gs in U,V,theta and salt |
8 C | This is to initialise the predictor-corrector time- |
9 C | stepping scheme |
10 C \==========================================================/
11 SUBROUTINE INI_PREDICTOR(
12 I myThid )
13 implicit none
14 C Common
15 #include "SIZE.h"
16 #include "EEPARAMS.h"
17 #include "DYNVARS.h"
18 C == Routine Arguments ==
19 INTEGER myThid
20 C == Local variables ==
21 INTEGER i,j,k,bi,bj
22
23 DO bj = myByLo(myThid), myByHi(myThid)
24 DO bi = myBxLo(myThid), myBxHi(myThid)
25 DO k=1,Nr
26 DO j=1-Oly,sNy+Oly
27 DO i=1-Olx,sNx+Olx
28 gUNm1(i,j,k,bi,bj)=uVel(i,j,k,bi,bj)
29 gVNm1(i,j,k,bi,bj)=vVel(i,j,k,bi,bj)
30 gTNm1(i,j,k,bi,bj)=theta(i,j,k,bi,bj)
31 gSNm1(i,j,k,bi,bj)=salt(i,j,k,bi,bj)
32 ENDDO
33 ENDDO
34 ENDDO
35 ENDDO
36 ENDDO
37
38 RETURN
39 END

  ViewVC Help
Powered by ViewVC 1.1.22