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

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

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


Revision 1.23 - (show annotations) (download)
Thu Sep 27 20:12:10 2001 UTC (22 years, 8 months ago) by heimbach
Branch: MAIN
CVS Tags: release1_b1, checkpoint43, ecco-branch-mod1, release1_beta1, checkpoint42
Branch point for: release1, ecco-branch, release1_coupled
Changes since 1.22: +4 -1 lines
Fixed AD-related problems:
o Store directives up-to-date with re-arranged Adams-Bashforth
  (mainly thermodynamics.F)
o New store directives for multi-dim. advection schemes
  * new CPP flag ALLOW_MULTI_DIM_ADVECTION
  * new common block and key passkey
  (mainly gad_advection.F)
o Modified store directives for split of dynamics/thermodynamics
  for the case ALLOW_KPP
o Cleaned argument list for timestep_tracer.F

1 C $Header: /u/gcmpack/models/MITgcmUV/model/src/forward_step.F,v 1.22 2001/09/26 18:09:15 cnh Exp $
2 C $Name: $
3
4 #include "CPP_OPTIONS.h"
5
6 CBOP
7 C !ROUTINE: FORWARD_STEP
8 C !INTERFACE:
9 SUBROUTINE FORWARD_STEP( iloop, myTime, myIter, myThid )
10
11 C !DESCRIPTION: \bv
12 C *==================================================================
13 C | SUBROUTINE forward_step
14 C | o Run the ocean model and, optionally, evaluate a cost function.
15 C *==================================================================
16 C |
17 C | THE_MAIN_LOOP is the toplevel routine for the Tangent Linear and
18 C | Adjoint Model Compiler (TAMC). For this purpose the initialization
19 C | of the model was split into two parts. Those parameters that do
20 C | not depend on a specific model run are set in INITIALISE_FIXED,
21 C | whereas those that do depend on the specific realization are
22 C | initialized in INITIALISE_VARIA.
23 C |
24 C *==================================================================
25 C \ev
26
27 C !USES:
28 IMPLICIT NONE
29 C == Global variables ==
30 #include "SIZE.h"
31 #include "EEPARAMS.h"
32 #include "PARAMS.h"
33 #include "DYNVARS.h"
34 #include "FFIELDS.h"
35
36 #ifdef ALLOW_NONHYDROSTATIC
37 #include "CG3D.h"
38 #endif
39
40 #ifdef ALLOW_AUTODIFF_TAMC
41 #include "tamc.h"
42 #include "ctrl.h"
43 #include "ctrl_dummy.h"
44 #include "cost.h"
45 #endif
46
47 C !LOCAL VARIABLES:
48 C == Routine arguments ==
49 C note: under the multi-threaded model myiter and
50 C mytime are local variables passed around as routine
51 C arguments. Although this is fiddly it saves the need to
52 C impose additional synchronisation points when they are
53 C updated.
54 C myiter - iteration counter for this thread
55 C mytime - time counter for this thread
56 C mythid - thread number for this instance of the routine.
57 integer iloop
58 integer mythid
59 integer myiter
60 _RL mytime
61 INTEGER bi,bj
62
63 CEOP
64
65
66 #ifdef ALLOW_AUTODIFF_TAMC
67 C-- Reset the model iteration counter and the model time.
68 myiter = nIter0 + (iloop-1)
69 mytime = startTime + float(iloop-1)*deltaTclock
70 #endif
71
72 #ifdef ALLOW_AUTODIFF_TAMC
73 C Include call to a dummy routine. Its adjoint will be
74 C called at the proper place in the adjoint code.
75 C The adjoint routine will print out adjoint values
76 C if requested. The location of the call is important,
77 C it has to be after the adjoint of the exchanges
78 C (DO_GTERM_BLOCKING_EXCHANGES).
79 CALL DUMMY_IN_STEPPING( myTime, myIter, myThid )
80 #endif
81
82 #ifdef EXACT_CONSERV
83 IF (exactConserv) THEN
84 C-- Update etaH(n+1) :
85 DO bj=myByLo(myThid),myByHi(myThid)
86 DO bi=myBxLo(myThid),myBxHi(myThid)
87 CALL CALC_EXACT_ETA( .FALSE., bi,bj, uVel,vVel,
88 I startTime, nIter0, myThid )
89 ENDDO
90 ENDDO
91 IF (implicDiv2Dflow .NE. 1. _d 0 )
92 & _EXCH_XY_R8(etaH, myThid )
93 ENDIF
94 #endif /* EXACT_CONSERV */
95
96 #ifdef NONLIN_FRSURF
97 C-- compute the future surface level thickness
98 C according to etaH(n+1)
99 IF ( nonlinFreeSurf.GT.0) THEN
100 CALL CALC_SURF_DR(etaH, myTime, myIter, myThid )
101 ENDIF
102 #endif /* NONLIN_FRSURF */
103
104 C-- Load forcing/external data fields.
105 #ifdef INCLUDE_EXTERNAL_FORCING_PACKAGE
106 C NOTE, that although the exf package is part of the
107 C distribution, it is not currently maintained, i.e.
108 C exf is disabled by default in genmake.
109 #ifdef ALLOW_BULKFORMULAE
110 CADJ STORE theta = comlev1, key = ikey_dynamics
111 #endif
112 CALL EXF_GETFORCING( mytime, myiter, mythid )
113 #else
114 CALL TIMER_START('EXTERNAL_FIELDS_LOAD[THE_MAIN_LOOP]',mythid)
115 CALL EXTERNAL_FIELDS_LOAD( mytime, myiter, mythid )
116 CALL TIMER_STOP ('EXTERNAL_FIELDS_LOAD[THE_MAIN_LOOP]',mythid)
117 #endif
118
119 C-- Step forward fields and calculate time tendency terms.
120 CALL TIMER_START('THERMODYNAMICS [THE_MAIN_LOOP]',mythid)
121 CALL THERMODYNAMICS( myTime, myIter, myThid )
122 CALL TIMER_STOP ('THERMODYNAMICS [THE_MAIN_LOOP]',mythid)
123
124 C-- Step forward fields and calculate time tendency terms.
125 IF ( momStepping ) THEN
126 CALL TIMER_START('DYNAMICS [THE_MAIN_LOOP]',mythid)
127 CALL DYNAMICS( myTime, myIter, myThid )
128 CALL TIMER_STOP ('DYNAMICS [THE_MAIN_LOOP]',mythid)
129 ENDIF
130
131 #ifndef ALLOW_AUTODIFF_TAMC
132 #ifdef ALLOW_NONHYDROSTATIC
133 C-- Step forward W field in N-H algorithm
134 IF ( momStepping .AND. nonHydrostatic ) THEN
135 CALL TIMER_START('CALC_GW [THE_MAIN_LOOP]',myThid)
136 CALL CALC_GW(myThid)
137 CALL TIMER_STOP ('CALC_GW [THE_MAIN_LOOP]',myThid)
138 ENDIF
139 #endif
140 #endif /* ALLOW_AUTODIFF_TAMC */
141
142 #ifdef NONLIN_FRSURF
143 C-- update hfacC,W,S and recip_hFac according to etaH(n+1) :
144 IF ( momStepping ) THEN
145 IF ( nonlinFreeSurf.GT.0) THEN
146 CALL UPDATE_SURF_DR( myTime, myIter, myThid )
147 ENDIF
148 C- update also CG2D matrix (and preconditioner)
149 IF ( nonlinFreeSurf.GT.2) THEN
150 CALL UPDATE_CG2D( myTime, myIter, myThid )
151 ENDIF
152 ENDIF
153 #endif
154
155 C-- This block has been moved to the_correction_step(). We have
156 C left this code here to indicate where the filters used to be
157 C in the algorithm before JMC moved them to after the pressure
158 C solver.
159 C
160 C#ifdef ALLOW_SHAP_FILT
161 CC-- Step forward all tiles, filter and exchange.
162 C CALL TIMER_START('SHAP_FILT [THE_MAIN_LOOP]',myThid)
163 C CALL SHAP_FILT_APPLY(
164 C I gUnm1, gVnm1, gTnm1, gSnm1,
165 C I myTime, myIter, myThid )
166 C IF (implicDiv2Dflow.LT.1.) THEN
167 CC-- Explicit+Implicit part of the Barotropic Flow Divergence
168 CC => Filtering of uVel,vVel is necessary
169 C CALL SHAP_FILT_UV( uVel, vVel, myTime, myThid )
170 C ENDIF
171 C CALL TIMER_STOP ('SHAP_FILT [THE_MAIN_LOOP]',myThid)
172 C#endif
173 C
174 C#ifdef ALLOW_ZONAL_FILT
175 C IF (zonal_filt_lat.LT.90.) THEN
176 C CALL TIMER_START('ZONAL_FILT_APPLY [THE_MAIN_LOOP]',myThid)
177 C CALL ZONAL_FILT_APPLY(
178 C U gUnm1, gVnm1, gTnm1, gSnm1,
179 C I myThid )
180 C CALL TIMER_STOP ('ZONAL_FILT_APPLY [THE_MAIN_LOOP]',myThid)
181 C ENDIF
182 C#endif
183
184 C-- Solve elliptic equation(s).
185 C Two-dimensional only for conventional hydrostatic or
186 C three-dimensional for non-hydrostatic and/or IGW scheme.
187 IF ( momStepping ) THEN
188 CALL TIMER_START('SOLVE_FOR_PRESSURE [THE_MAIN_LOOP]',myThid)
189 CALL SOLVE_FOR_PRESSURE( myThid )
190 CALL TIMER_STOP ('SOLVE_FOR_PRESSURE [THE_MAIN_LOOP]',myThid)
191 ENDIF
192
193 C-- Correct divergence in flow field and cycle time-stepping
194 C arrays (for all fields) ; update time-counter
195 myIter = nIter0 + iLoop
196 myTime = startTime + deltaTClock * float(iLoop)
197 CALL TIMER_START('THE_CORRECTION_STEP [THE_MAIN_LOOP]',myThid)
198 CALL THE_CORRECTION_STEP(myTime, myIter, myThid)
199 CALL TIMER_STOP ('THE_CORRECTION_STEP [THE_MAIN_LOOP]',myThid)
200
201 C-- Do "blocking" sends and receives for tendency "overlap" terms
202 c CALL TIMER_START('BLOCKING_EXCHANGES [THE_MAIN_LOOP]',myThid)
203 c CALL DO_GTERM_BLOCKING_EXCHANGES( myThid )
204 c CALL TIMER_STOP ('BLOCKING_EXCHANGES [THE_MAIN_LOOP]',myThid)
205
206 C-- Do "blocking" sends and receives for field "overlap" terms
207 CALL TIMER_START('BLOCKING_EXCHANGES [THE_MAIN_LOOP]',myThid)
208 CALL DO_FIELDS_BLOCKING_EXCHANGES( myThid )
209 CALL TIMER_STOP ('BLOCKING_EXCHANGES [THE_MAIN_LOOP]',myThid)
210
211 #ifdef ALLOW_FLT
212 C-- Calculate float trajectories
213 IF (useFLT) THEN
214 CALL TIMER_START('FLOATS [THE_MAIN_LOOP]',myThid)
215 CALL FLT_MAIN(myIter,myTime, myThid)
216 CALL TIMER_STOP ('FLOATS [THE_MAIN_LOOP]',myThid)
217 ENDIF
218 #endif
219
220 #ifndef EXCLUDE_MONITOR
221 C-- Check status of solution (statistics, cfl, etc...)
222 CALL MONITOR( myIter, myTime, myThid )
223 #endif /* EXCLUDE_MONITOR */
224
225 #ifndef ALLOW_AUTODIFF_TAMC
226 C-- Do IO if needed.
227 CALL TIMER_START('DO_THE_MODEL_IO [THE_MAIN_LOOP]',myThid)
228 CALL DO_THE_MODEL_IO( myTime, myIter, myThid )
229 CALL TIMER_STOP ('DO_THE_MODEL_IO [THE_MAIN_LOOP]',myThid)
230
231 C-- Save state for restarts
232 C Note: (jmc: is it still the case after ckp35 ?)
233 C =====
234 C Because of the ordering of the timestepping code and
235 C tendency term code at end of loop model arrays hold
236 C U,V,T,S at "time-level" N but gu, gv, gs, gt, guNM1,...
237 C at "time-level" N+1/2 (guNM1 at "time-level" N+1/2 is
238 C gu at "time-level" N-1/2) and etaN at "time-level" N+1/2.
239 C where N = I+timeLevBase-1
240 C Thus a checkpoint contains U.0000000000, GU.0000000001 and
241 C etaN.0000000001 in the indexing scheme used for the model
242 C "state" files. This example is referred to as a checkpoint
243 C at time level 1
244 CALL TIMER_START('WRITE_CHECKPOINT [THE_MAIN_LOOP]',myThid)
245 CALL WRITE_CHECKPOINT(
246 & .FALSE., myTime, myIter, myThid )
247 CALL TIMER_STOP ('WRITE_CHECKPOINT [THE_MAIN_LOOP]',myThid)
248
249 #endif /* ALLOW_AUTODIFF_TAMC */
250
251 END

  ViewVC Help
Powered by ViewVC 1.1.22