1 | |
---|
2 | PROGRAM gcm |
---|
3 | |
---|
4 | USE IOIPSL |
---|
5 | |
---|
6 | IMPLICIT NONE |
---|
7 | |
---|
8 | c ...... Version du 10/01/98 .......... |
---|
9 | |
---|
10 | c avec coordonnees verticales hybrides |
---|
11 | c avec nouveaux operat. dissipation * ( gradiv2,divgrad2,nxgraro2 ) |
---|
12 | |
---|
13 | c======================================================================= |
---|
14 | c |
---|
15 | c Auteur: P. Le Van /L. Fairhead/F.Hourdin |
---|
16 | c ------- |
---|
17 | c |
---|
18 | c Objet: |
---|
19 | c ------ |
---|
20 | c |
---|
21 | c GCM LMD nouvelle grille |
---|
22 | c |
---|
23 | c======================================================================= |
---|
24 | |
---|
25 | c ... Dans inigeom , nouveaux calculs pour les elongations cu , cv |
---|
26 | c et possibilite d'appeler une fonction f(y) a derivee tangente |
---|
27 | c hyperbolique a la place de la fonction a derivee sinusoidale. |
---|
28 | |
---|
29 | c ... Possibilite de choisir le shema de Van-leer pour l'advection de |
---|
30 | c q , en faisant iadv = 3 dans traceur (29/04/97) . |
---|
31 | c |
---|
32 | c----------------------------------------------------------------------- |
---|
33 | c Declarations: |
---|
34 | c ------------- |
---|
35 | |
---|
36 | #include "dimensions.h" |
---|
37 | #include "paramet.h" |
---|
38 | #include "comconst.h" |
---|
39 | #include "comdissnew.h" |
---|
40 | #include "comvert.h" |
---|
41 | #include "comgeom.h" |
---|
42 | #include "logic.h" |
---|
43 | #include "temps.h" |
---|
44 | #include "control.h" |
---|
45 | #include "ener.h" |
---|
46 | #include "netcdf.inc" |
---|
47 | #include "description.h" |
---|
48 | #include "serre.h" |
---|
49 | #include "tracstoke.h" |
---|
50 | |
---|
51 | |
---|
52 | INTEGER longcles |
---|
53 | PARAMETER ( longcles = 20 ) |
---|
54 | REAL clesphy0( longcles ) |
---|
55 | SAVE clesphy0 |
---|
56 | |
---|
57 | INTEGER*4 iday ! jour julien |
---|
58 | REAL time ! Heure de la journee en fraction d'1 jour |
---|
59 | REAL zdtvr |
---|
60 | INTEGER nbetatmoy, nbetatdem,nbetat |
---|
61 | |
---|
62 | c variables dynamiques |
---|
63 | REAL vcov(ip1jm,llm),ucov(ip1jmp1,llm) ! vents covariants |
---|
64 | REAL teta(ip1jmp1,llm) ! temperature potentielle |
---|
65 | REAL q(ip1jmp1,llm,nqmx) ! champs advectes |
---|
66 | REAL ps(ip1jmp1) ! pression au sol |
---|
67 | REAL p (ip1jmp1,llmp1 ) ! pression aux interfac.des couches |
---|
68 | REAL pks(ip1jmp1) ! exner au sol |
---|
69 | REAL pk(ip1jmp1,llm) ! exner au milieu des couches |
---|
70 | REAL pkf(ip1jmp1,llm) ! exner filt.au milieu des couches |
---|
71 | REAL masse(ip1jmp1,llm) ! masse d'air |
---|
72 | REAL phis(ip1jmp1) ! geopotentiel au sol |
---|
73 | REAL phi(ip1jmp1,llm) ! geopotentiel |
---|
74 | REAL w(ip1jmp1,llm) ! vitesse verticale |
---|
75 | |
---|
76 | c variables dynamiques intermediaire pour le transport |
---|
77 | REAL pbaru(ip1jmp1,llm),pbarv(ip1jm,llm) !flux de masse |
---|
78 | |
---|
79 | c variables dynamiques au pas -1 |
---|
80 | REAL vcovm1(ip1jm,llm),ucovm1(ip1jmp1,llm) |
---|
81 | REAL tetam1(ip1jmp1,llm),psm1(ip1jmp1) |
---|
82 | REAL massem1(ip1jmp1,llm) |
---|
83 | |
---|
84 | c tendances dynamiques |
---|
85 | REAL dv(ip1jm,llm),du(ip1jmp1,llm) |
---|
86 | REAL dteta(ip1jmp1,llm),dq(ip1jmp1,llm,nqmx),dp(ip1jmp1) |
---|
87 | |
---|
88 | c tendances de la dissipation |
---|
89 | REAL dvdis(ip1jm,llm),dudis(ip1jmp1,llm) |
---|
90 | REAL dhdis(ip1jmp1,llm) |
---|
91 | |
---|
92 | c tendances physiques |
---|
93 | REAL dvfi(ip1jm,llm),dufi(ip1jmp1,llm) |
---|
94 | REAL dhfi(ip1jmp1,llm),dqfi(ip1jmp1,llm,nqmx),dpfi(ip1jmp1) |
---|
95 | |
---|
96 | c variables pour le fichier histoire |
---|
97 | REAL dtav ! intervalle de temps elementaire |
---|
98 | |
---|
99 | REAL tppn(iim),tpps(iim),tpn,tps |
---|
100 | c |
---|
101 | INTEGER iadv(nqmx) ! indice schema de transport pour le traceur iq |
---|
102 | |
---|
103 | INTEGER itau,itaufinp1,iav |
---|
104 | |
---|
105 | EXTERNAL caldyn, traceur |
---|
106 | EXTERNAL dissip,geopot,iniconst,inifilr |
---|
107 | EXTERNAL integrd,SCOPY |
---|
108 | EXTERNAL iniav,writeav,writehist |
---|
109 | EXTERNAL inigeom |
---|
110 | EXTERNAL exner_hyb,addit |
---|
111 | EXTERNAL defrun_new, test_period |
---|
112 | REAL SSUM |
---|
113 | REAL time_0 , finvmaold(ip1jmp1,llm) |
---|
114 | |
---|
115 | LOGICAL lafin |
---|
116 | INTEGER ij,iq,l,numvanle,iapp_tracvl |
---|
117 | |
---|
118 | |
---|
119 | INTEGER fluxid, fluxvid,fluxdid |
---|
120 | integer histid, histvid, histaveid |
---|
121 | real time_step, t_wrt, t_ops |
---|
122 | |
---|
123 | REAL rdayvrai,rdaym_ini,rday_ecri |
---|
124 | LOGICAL first |
---|
125 | REAL alpha(ip1jmp1,llm),beta(ip1jmp1,llm) |
---|
126 | |
---|
127 | LOGICAL offline ! Controle du stockage ds "fluxmass" |
---|
128 | PARAMETER (offline=.false.) |
---|
129 | |
---|
130 | character*80 dynhist_file, dynhistave_file |
---|
131 | character*20 modname |
---|
132 | character*80 abort_message |
---|
133 | |
---|
134 | C Calendrier |
---|
135 | LOGICAL true_calendar |
---|
136 | PARAMETER (true_calendar = .false.) |
---|
137 | |
---|
138 | c----------------------------------------------------------------------- |
---|
139 | c Initialisations: |
---|
140 | c ---------------- |
---|
141 | |
---|
142 | abort_message = 'last timestep reached' |
---|
143 | modname = 'gcm' |
---|
144 | descript = 'Run GCM LMDZ' |
---|
145 | lafin = .FALSE. |
---|
146 | dynhist_file = 'dyn_hist.nc' |
---|
147 | dynhistave_file = 'dyn_hist_ave.nc' |
---|
148 | |
---|
149 | if (true_calendar) then |
---|
150 | call ioconf_calendar('gregorian') |
---|
151 | else |
---|
152 | call ioconf_calendar('360d') |
---|
153 | endif |
---|
154 | c----------------------------------------------------------------------- |
---|
155 | c |
---|
156 | c .... Choix des shemas d'advection pour l'eau et les traceurs ... |
---|
157 | c ................................................................... |
---|
158 | c |
---|
159 | c iadv = 1 shema transport type "humidite specifique LMD" |
---|
160 | c iadv = 2 shema amont |
---|
161 | c iadv = 3 shema Van-leer |
---|
162 | c |
---|
163 | c dans le tableau q(ij,l,iq) , iq = 1 pour l'eau vapeur |
---|
164 | c , iq = 2 pour l'eau liquide |
---|
165 | c et eventuellement , iq = 3, nqmx pour les autres traceurs |
---|
166 | c |
---|
167 | c iadv(1): choix pour l'eau vap. et iadv(2) : choix pour l'eau liq. |
---|
168 | c |
---|
169 | DO iq = 1, nqmx |
---|
170 | iadv( iq ) = 3 |
---|
171 | ENDDO |
---|
172 | c |
---|
173 | DO iq = 1, nqmx |
---|
174 | IF( iadv(iq).EQ.1 ) PRINT *,' Choix du shema humidite specifique' |
---|
175 | * ,' pour le traceur no ', iq |
---|
176 | IF( iadv(iq).EQ.2 ) PRINT *,' Choix du shema amont',' pour le' |
---|
177 | * ,' traceur no ', iq |
---|
178 | IF( iadv(iq).EQ.3 ) PRINT *,' Choix du shema Van-Leer ',' pour' |
---|
179 | * ,'le traceur no ', iq |
---|
180 | IF( iadv(iq).LE.0.OR.iadv(iq).GT.3 ) THEN |
---|
181 | PRINT *,' Erreur dans le choix de iadv . Corriger et repasser |
---|
182 | * . ' |
---|
183 | STOP |
---|
184 | ENDIF |
---|
185 | ENDDO |
---|
186 | c |
---|
187 | first = .TRUE. |
---|
188 | numvanle = nqmx + 1 |
---|
189 | DO iq = 1, nqmx |
---|
190 | IF( iadv(iq).EQ.3.AND.first ) THEN |
---|
191 | numvanle = iq |
---|
192 | first = .FALSE. |
---|
193 | ENDIF |
---|
194 | ENDDO |
---|
195 | c |
---|
196 | DO iq = 1, nqmx |
---|
197 | IF( iadv(iq).NE.3.AND.iq.GT.numvanle ) THEN |
---|
198 | PRINT *,' Il y a discontinuite dans le choix du shema de ', |
---|
199 | * 'Van-leer pour les traceurs . Corriger et repasser . ' |
---|
200 | STOP |
---|
201 | ENDIF |
---|
202 | IF( iadv(iq).LT.1.OR.iadv(iq).GT.3 ) THEN |
---|
203 | PRINT *,' Le choix de iadv est errone pour le traceur ', |
---|
204 | * iq |
---|
205 | STOP |
---|
206 | ENDIF |
---|
207 | ENDDO |
---|
208 | c |
---|
209 | |
---|
210 | CALL dynetat0("start.nc",nqmx,vcov,ucov, |
---|
211 | . teta,q,masse,ps,phis, time_0) |
---|
212 | |
---|
213 | |
---|
214 | c OPEN( 99,file ='run.def',status='old',form='formatted') |
---|
215 | CALL defrun_new( 99, .TRUE. , clesphy0 ) |
---|
216 | c CLOSE(99) |
---|
217 | |
---|
218 | c on recalcule eventuellement le pas de temps |
---|
219 | |
---|
220 | IF(MOD(day_step,iperiod).NE.0) |
---|
221 | * STOP'Il faut choisir un nb de pas par jour multiple de iperiod' |
---|
222 | |
---|
223 | IF(MOD(day_step,iphysiq).NE.0) |
---|
224 | * STOP'Il faut choisir un nb de pas par jour multiple de iphysiq' |
---|
225 | |
---|
226 | zdtvr = daysec/FLOAT(day_step) |
---|
227 | IF(dtvr.NE.zdtvr) THEN |
---|
228 | PRINT*,'WARNING!!! changement de pas de temps',dtvr,'>',zdtvr |
---|
229 | ENDIF |
---|
230 | |
---|
231 | c nombre d'etats dans les fichiers demarrage et histoire |
---|
232 | nbetatdem = nday / iecri |
---|
233 | nbetatmoy = nday / periodav + 1 |
---|
234 | |
---|
235 | dtvr = zdtvr |
---|
236 | CALL iniconst |
---|
237 | CALL inigeom |
---|
238 | |
---|
239 | CALL inifilr |
---|
240 | c |
---|
241 | c ...... P.Le Van ( modif le 29/04/97 ) ......... |
---|
242 | c |
---|
243 | CALL inidissip( lstardis, nitergdiv, nitergrot, niterh , |
---|
244 | * tetagdiv, tetagrot , tetatemp ) |
---|
245 | c |
---|
246 | |
---|
247 | CALL pression ( ip1jmp1, ap, bp, ps, p ) |
---|
248 | CALL exner_hyb( ip1jmp1, ps, p,alpha,beta, pks, pk, pkf ) |
---|
249 | c |
---|
250 | |
---|
251 | c numero de stockage pour les fichiers de redemarrage: |
---|
252 | |
---|
253 | c----------------------------------------------------------------------- |
---|
254 | c temps de depart et de fin: |
---|
255 | c -------------------------- |
---|
256 | |
---|
257 | itau = 0 |
---|
258 | iday = day_ini+itau/day_step |
---|
259 | time = FLOAT(itau-(iday-day_ini)*day_step)/day_step+time_0 |
---|
260 | IF(time.GT.1.) THEN |
---|
261 | time = time-1. |
---|
262 | iday = iday+1 |
---|
263 | ENDIF |
---|
264 | itaufin = nday*day_step |
---|
265 | itaufinp1 = itaufin +1 |
---|
266 | |
---|
267 | day_end = day_ini + nday |
---|
268 | PRINT 300, itau,itaufin,day_ini,day_end |
---|
269 | |
---|
270 | CALL dynredem0("restart.nc",day_end,anne_ini,phis,nqmx) |
---|
271 | |
---|
272 | ecripar = .TRUE. |
---|
273 | |
---|
274 | time_step = zdtvr |
---|
275 | t_ops = iecri * daysec |
---|
276 | t_wrt = iecri * daysec |
---|
277 | CALL inithist(dynhist_file,day_ini,anne_ini,time_step, |
---|
278 | . t_ops, t_wrt, nqmx, histid, histvid) |
---|
279 | |
---|
280 | t_ops = iperiod * time_step |
---|
281 | t_wrt = periodav * daysec |
---|
282 | CALL initdynav(dynhistave_file,day_ini,anne_ini,time_step, |
---|
283 | . t_ops, t_wrt, nqmx, histaveid) |
---|
284 | |
---|
285 | dtav = iperiod*dtvr/daysec |
---|
286 | |
---|
287 | |
---|
288 | c Quelques initialisations pour les traceurs |
---|
289 | call initial0(ijp1llm*nqmx,dq) |
---|
290 | istdyn=day_step/4 ! stockage toutes les 6h=1jour/4 |
---|
291 | istphy=istdyn/iphysiq |
---|
292 | |
---|
293 | c----------------------------------------------------------------------- |
---|
294 | c Debut de l'integration temporelle: |
---|
295 | c ---------------------------------- |
---|
296 | |
---|
297 | 1 CONTINUE |
---|
298 | c call nudge(itau,ucov,vcov,teta,masse,ps) |
---|
299 | c |
---|
300 | c IF( MOD( itau, 10* day_step ).EQ.0 ) THEN |
---|
301 | CALL test_period ( ucov,vcov,teta,q,p,phis ) |
---|
302 | PRINT *,' ---- Test_period apres continue OK ! -----', itau |
---|
303 | c ENDIF |
---|
304 | c |
---|
305 | CALL SCOPY( ijmllm ,vcov , 1, vcovm1 , 1 ) |
---|
306 | CALL SCOPY( ijp1llm,ucov , 1, ucovm1 , 1 ) |
---|
307 | CALL SCOPY( ijp1llm,teta , 1, tetam1 , 1 ) |
---|
308 | CALL SCOPY( ijp1llm,masse, 1, massem1, 1 ) |
---|
309 | CALL SCOPY( ip1jmp1, ps , 1, psm1 , 1 ) |
---|
310 | |
---|
311 | forward = .TRUE. |
---|
312 | leapf = .FALSE. |
---|
313 | dt = dtvr |
---|
314 | |
---|
315 | c ... P.Le Van .26/04/94 .... |
---|
316 | |
---|
317 | CALL SCOPY ( ijp1llm, masse, 1, finvmaold, 1 ) |
---|
318 | CALL filtreg ( finvmaold ,jjp1, llm, -2,2, .TRUE., 1 ) |
---|
319 | |
---|
320 | |
---|
321 | 2 CONTINUE |
---|
322 | |
---|
323 | c----------------------------------------------------------------------- |
---|
324 | |
---|
325 | c date: |
---|
326 | c ----- |
---|
327 | |
---|
328 | |
---|
329 | c gestion des appels de la physique et des dissipations: |
---|
330 | c ------------------------------------------------------ |
---|
331 | c |
---|
332 | c ... P.Le Van ( 6/02/95 ) .... |
---|
333 | |
---|
334 | apphys = .FALSE. |
---|
335 | statcl = .FALSE. |
---|
336 | conser = .FALSE. |
---|
337 | apdiss = .FALSE. |
---|
338 | |
---|
339 | IF( purmats ) THEN |
---|
340 | IF( MOD(itau,iconser) .EQ.0.AND. forward ) conser = .TRUE. |
---|
341 | IF( MOD(itau,idissip ).EQ.0.AND..NOT.forward ) apdiss = .TRUE. |
---|
342 | IF( MOD(itau,iphysiq ).EQ.0.AND..NOT.forward |
---|
343 | $ .AND. physic ) apphys = .TRUE. |
---|
344 | ELSE |
---|
345 | IF( MOD(itau ,iconser) .EQ. 0 ) conser = .TRUE. |
---|
346 | IF( MOD(itau+1,idissip) .EQ. 0 ) apdiss = .TRUE. |
---|
347 | IF( MOD(itau+1,iphysiq).EQ.0. AND. physic ) apphys = .TRUE. |
---|
348 | END IF |
---|
349 | |
---|
350 | c----------------------------------------------------------------------- |
---|
351 | c calcul des tendances dynamiques: |
---|
352 | c -------------------------------- |
---|
353 | |
---|
354 | CALL geopot ( ip1jmp1, teta , pk , pks, phis , phi ) |
---|
355 | c |
---|
356 | c |
---|
357 | CALL caldyn |
---|
358 | $ ( itau,ucov,vcov,teta,ps,masse,pk,pkf,phis , |
---|
359 | $ phi,conser,du,dv,dteta,dp,w, pbaru,pbarv, time+iday-day_ini ) |
---|
360 | |
---|
361 | c----------------------------------------------------------------------- |
---|
362 | c calcul des tendances advection des traceurs (dont l'humidite) |
---|
363 | c ------------------------------------------------------------- |
---|
364 | |
---|
365 | IF( forward. OR . leapf ) THEN |
---|
366 | c |
---|
367 | DO 15 iq = 1, nqmx |
---|
368 | c |
---|
369 | IF( iadv(iq).EQ.1.OR.iadv(iq).EQ.2 ) THEN |
---|
370 | CALL traceur( iq,iadv,q,teta,pk,w, pbaru, pbarv, dq ) |
---|
371 | |
---|
372 | ELSE IF( iq.EQ. nqmx ) THEN |
---|
373 | c |
---|
374 | iapp_tracvl = 5 |
---|
375 | c |
---|
376 | cccc iapp_tracvl est la frequence en pas du groupement des flux |
---|
377 | cccc de masse pour Van-Leer dans la routine tracvl . |
---|
378 | c |
---|
379 | CALL vanleer(numvanle,iapp_tracvl,nqmx,q,pbaru,pbarv, |
---|
380 | * p, masse, dq ) |
---|
381 | c |
---|
382 | ENDIF |
---|
383 | c |
---|
384 | 15 CONTINUE |
---|
385 | C |
---|
386 | IF (offline) THEN |
---|
387 | Cmaf stokage du flux de masse pour traceurs OFF-LINE |
---|
388 | |
---|
389 | CALL fluxstokenc(pbaru,pbarv,masse,teta,phi,phis, |
---|
390 | . time_step, itau,fluxid, fluxvid,fluxdid ) |
---|
391 | |
---|
392 | ENDIF |
---|
393 | c |
---|
394 | ENDIF |
---|
395 | |
---|
396 | |
---|
397 | c----------------------------------------------------------------------- |
---|
398 | c integrations dynamique et traceurs: |
---|
399 | c ---------------------------------- |
---|
400 | |
---|
401 | |
---|
402 | CALL integrd ( iadv, 2,vcovm1,ucovm1,tetam1,psm1,massem1 , |
---|
403 | $ dv,du,dteta,dq,dp,vcov,ucov,teta,q,ps,masse,phis , |
---|
404 | $ finvmaold ) |
---|
405 | |
---|
406 | c .P.Le Van (26/04/94 ajout de finvpold dans l'appel d'integrd) |
---|
407 | c |
---|
408 | c----------------------------------------------------------------------- |
---|
409 | c calcul des tendances physiques: |
---|
410 | c ------------------------------- |
---|
411 | c ######## P.Le Van ( Modif le 6/02/95 ) ########### |
---|
412 | c |
---|
413 | IF( purmats ) THEN |
---|
414 | IF( itau.EQ.itaufin.AND..NOT.forward ) lafin = .TRUE. |
---|
415 | ELSE |
---|
416 | IF( itau+1. EQ. itaufin ) lafin = .TRUE. |
---|
417 | ENDIF |
---|
418 | c |
---|
419 | c |
---|
420 | IF( apphys ) THEN |
---|
421 | c |
---|
422 | c ....... Ajout P.Le Van ( 17/04/96 ) ........... |
---|
423 | c |
---|
424 | |
---|
425 | CALL pression ( ip1jmp1, ap, bp, ps, p ) |
---|
426 | CALL exner_hyb( ip1jmp1, ps, p,alpha,beta,pks, pk, pkf ) |
---|
427 | |
---|
428 | rdaym_ini = itau * dtvr / daysec |
---|
429 | rdayvrai = rdaym_ini + day_ini |
---|
430 | |
---|
431 | IF ( ecritphy.LT.1. ) THEN |
---|
432 | rday_ecri = rdaym_ini |
---|
433 | ELSE |
---|
434 | rday_ecri = NINT( rdayvrai ) |
---|
435 | ENDIF |
---|
436 | c |
---|
437 | |
---|
438 | c rajout debug |
---|
439 | c lafin = .true. |
---|
440 | |
---|
441 | CALL calfis( nqmx, lafin ,rdayvrai,rday_ecri,time , |
---|
442 | $ ucov,vcov,teta,q,masse,ps,p,pk,phis,phi , |
---|
443 | $ du,dv,dteta,dq,w,clesphy0, dufi,dvfi,dhfi,dqfi,dpfi ) |
---|
444 | |
---|
445 | c ajout des tendances physiques: |
---|
446 | c ------------------------------ |
---|
447 | CALL addfi( nqmx, dtphys, leapf, forward , |
---|
448 | $ ucov, vcov, teta , q ,ps , |
---|
449 | $ dufi, dvfi, dhfi , dqfi ,dpfi ) |
---|
450 | c |
---|
451 | ENDIF |
---|
452 | |
---|
453 | CALL pression ( ip1jmp1, ap, bp, ps, p ) |
---|
454 | CALL exner_hyb( ip1jmp1, ps, p,alpha,beta, pks, pk, pkf ) |
---|
455 | |
---|
456 | c----------------------------------------------------------------------- |
---|
457 | c |
---|
458 | c |
---|
459 | c dissipation horizontale et verticale des petites echelles: |
---|
460 | c ---------------------------------------------------------- |
---|
461 | |
---|
462 | IF(apdiss) THEN |
---|
463 | |
---|
464 | CALL dissip(vcov,ucov,teta,p,dvdis,dudis,dhdis) |
---|
465 | |
---|
466 | CALL addit( ijp1llm,ucov ,dudis,ucov ) |
---|
467 | CALL addit( ijmllm ,vcov ,dvdis,vcov ) |
---|
468 | CALL addit( ijp1llm,teta ,dhdis,teta ) |
---|
469 | |
---|
470 | |
---|
471 | c ....... P. Le Van ( ajout le 17/04/96 ) ........... |
---|
472 | c ... Calcul de la valeur moyenne, unique de h aux poles ..... |
---|
473 | c |
---|
474 | |
---|
475 | DO l = 1, llm |
---|
476 | DO ij = 1,iim |
---|
477 | tppn(ij) = aire( ij ) * teta( ij ,l) |
---|
478 | tpps(ij) = aire(ij+ip1jm) * teta(ij+ip1jm,l) |
---|
479 | ENDDO |
---|
480 | tpn = SSUM(iim,tppn,1)/apoln |
---|
481 | tps = SSUM(iim,tpps,1)/apols |
---|
482 | |
---|
483 | DO ij = 1, iip1 |
---|
484 | teta( ij ,l) = tpn |
---|
485 | teta(ij+ip1jm,l) = tps |
---|
486 | ENDDO |
---|
487 | ENDDO |
---|
488 | |
---|
489 | DO ij = 1,iim |
---|
490 | tppn(ij) = aire( ij ) * ps ( ij ) |
---|
491 | tpps(ij) = aire(ij+ip1jm) * ps (ij+ip1jm) |
---|
492 | ENDDO |
---|
493 | tpn = SSUM(iim,tppn,1)/apoln |
---|
494 | tps = SSUM(iim,tpps,1)/apols |
---|
495 | |
---|
496 | DO ij = 1, iip1 |
---|
497 | ps( ij ) = tpn |
---|
498 | ps(ij+ip1jm) = tps |
---|
499 | ENDDO |
---|
500 | |
---|
501 | |
---|
502 | END IF |
---|
503 | |
---|
504 | c ajout debug |
---|
505 | c IF( lafin ) then |
---|
506 | c abort_message = 'Simulation finished' |
---|
507 | c call abort_gcm(modname,abort_message,0) |
---|
508 | c ENDIF |
---|
509 | |
---|
510 | c ******************************************************************** |
---|
511 | c ******************************************************************** |
---|
512 | c .... fin de l'integration dynamique et physique pour le pas itau .. |
---|
513 | c ******************************************************************** |
---|
514 | c ******************************************************************** |
---|
515 | |
---|
516 | c preparation du pas d'integration suivant ...... |
---|
517 | |
---|
518 | IF ( .NOT.purmats ) THEN |
---|
519 | c ........................................................ |
---|
520 | c .............. schema matsuno + leapfrog .............. |
---|
521 | c ........................................................ |
---|
522 | |
---|
523 | IF(forward. OR. leapf) THEN |
---|
524 | itau= itau + 1 |
---|
525 | iday= day_ini+itau/day_step |
---|
526 | time= FLOAT(itau-(iday-day_ini)*day_step)/day_step+time_0 |
---|
527 | IF(time.GT.1.) THEN |
---|
528 | time = time-1. |
---|
529 | iday = iday+1 |
---|
530 | ENDIF |
---|
531 | ENDIF |
---|
532 | |
---|
533 | |
---|
534 | IF( itau. EQ. itaufinp1 ) then |
---|
535 | abort_message = 'Simulation finished' |
---|
536 | call abort_gcm(modname,abort_message,0) |
---|
537 | ENDIF |
---|
538 | c----------------------------------------------------------------------- |
---|
539 | c ecriture du fichier histoire moyenne: |
---|
540 | c ------------------------------------- |
---|
541 | |
---|
542 | IF(MOD(itau,iperiod).EQ.0 .OR. itau.EQ.itaufin) THEN |
---|
543 | IF(itau.EQ.itaufin) THEN |
---|
544 | iav=1 |
---|
545 | ELSE |
---|
546 | iav=0 |
---|
547 | ENDIF |
---|
548 | CALL writedynav(histaveid, nqmx, itau,vcov , |
---|
549 | , ucov,teta,pk,phi,q,masse,ps,phis) |
---|
550 | ENDIF |
---|
551 | |
---|
552 | c----------------------------------------------------------------------- |
---|
553 | c ecriture de la bande histoire: |
---|
554 | c ------------------------------ |
---|
555 | |
---|
556 | IF( MOD(itau,iecri*day_step).EQ.0) THEN |
---|
557 | |
---|
558 | nbetat = nbetatdem |
---|
559 | CALL geopot ( ip1jmp1, teta , pk , pks, phis , phi ) |
---|
560 | CALL writehist( histid, histvid, nqmx, itau,vcov , |
---|
561 | , ucov,teta,phi,q,masse,ps,phis) |
---|
562 | |
---|
563 | |
---|
564 | ENDIF |
---|
565 | |
---|
566 | IF(itau.EQ.itaufin) THEN |
---|
567 | |
---|
568 | |
---|
569 | PRINT *,' Appel test_period avant redem ', itau |
---|
570 | CALL test_period ( ucov,vcov,teta,q,p,phis ) |
---|
571 | CALL dynredem1("restart.nc",0.0, |
---|
572 | . vcov,ucov,teta,q,nqmx,masse,ps) |
---|
573 | |
---|
574 | CLOSE(99) |
---|
575 | ENDIF |
---|
576 | |
---|
577 | c----------------------------------------------------------------------- |
---|
578 | c gestion de l'integration temporelle: |
---|
579 | c ------------------------------------ |
---|
580 | |
---|
581 | IF( MOD(itau,iperiod).EQ.0 ) THEN |
---|
582 | GO TO 1 |
---|
583 | ELSE IF ( MOD(itau-1,iperiod). EQ. 0 ) THEN |
---|
584 | |
---|
585 | IF( forward ) THEN |
---|
586 | c fin du pas forward et debut du pas backward |
---|
587 | |
---|
588 | forward = .FALSE. |
---|
589 | leapf = .FALSE. |
---|
590 | GO TO 2 |
---|
591 | |
---|
592 | ELSE |
---|
593 | c fin du pas backward et debut du premier pas leapfrog |
---|
594 | |
---|
595 | leapf = .TRUE. |
---|
596 | dt = 2.*dtvr |
---|
597 | GO TO 2 |
---|
598 | END IF |
---|
599 | ELSE |
---|
600 | |
---|
601 | c ...... pas leapfrog ..... |
---|
602 | |
---|
603 | leapf = .TRUE. |
---|
604 | dt = 2.*dtvr |
---|
605 | GO TO 2 |
---|
606 | END IF |
---|
607 | |
---|
608 | ELSE |
---|
609 | |
---|
610 | c ........................................................ |
---|
611 | c .............. schema matsuno ............... |
---|
612 | c ........................................................ |
---|
613 | IF( forward ) THEN |
---|
614 | |
---|
615 | itau = itau + 1 |
---|
616 | iday = day_ini+itau/day_step |
---|
617 | time = FLOAT(itau-(iday-day_ini)*day_step)/day_step+time_0 |
---|
618 | |
---|
619 | IF(time.GT.1.) THEN |
---|
620 | time = time-1. |
---|
621 | iday = iday+1 |
---|
622 | ENDIF |
---|
623 | |
---|
624 | forward = .FALSE. |
---|
625 | IF( itau. EQ. itaufinp1 ) then |
---|
626 | abort_message = 'Simulation finished' |
---|
627 | call abort_gcm(modname,abort_message,0) |
---|
628 | ENDIF |
---|
629 | GO TO 2 |
---|
630 | |
---|
631 | ELSE |
---|
632 | |
---|
633 | IF(MOD(itau,iperiod).EQ.0 .OR. itau.EQ.itaufin) THEN |
---|
634 | IF(itau.EQ.itaufin) THEN |
---|
635 | iav=1 |
---|
636 | ELSE |
---|
637 | iav=0 |
---|
638 | ENDIF |
---|
639 | CALL writedynav(histaveid, nqmx, itau,vcov , |
---|
640 | , ucov,teta,pk,phi,q,masse,ps,phis) |
---|
641 | |
---|
642 | ENDIF |
---|
643 | |
---|
644 | IF(MOD(itau,iecri*day_step).EQ.0) THEN |
---|
645 | nbetat = nbetatdem |
---|
646 | CALL geopot ( ip1jmp1, teta , pk , pks, phis , phi ) |
---|
647 | CALL writehist( histid, histvid, nqmx, itau,vcov , |
---|
648 | , ucov,teta,phi,q,masse,ps,phis) |
---|
649 | ENDIF |
---|
650 | |
---|
651 | IF(itau.EQ.itaufin) |
---|
652 | . CALL dynredem1("restart.nc",0.0, |
---|
653 | . vcov,ucov,teta,q,nqmx,masse,ps) |
---|
654 | |
---|
655 | forward = .TRUE. |
---|
656 | GO TO 1 |
---|
657 | |
---|
658 | ENDIF |
---|
659 | |
---|
660 | END IF |
---|
661 | |
---|
662 | 300 FORMAT('1'/,15x,'run du pas',i7,2x,'au pas',i7,2x, |
---|
663 | . 'c''est a dire du jour',i7,3x,'au jour',i7//) |
---|
664 | |
---|
665 | STOP |
---|
666 | END |
---|