1 | ! |
---|
2 | ! $Header$ |
---|
3 | ! |
---|
4 | c |
---|
5 | c |
---|
6 | PROGRAM gcm |
---|
7 | |
---|
8 | #ifdef CPP_IOIPSL |
---|
9 | USE IOIPSL |
---|
10 | #endif |
---|
11 | USE parallel |
---|
12 | USE dimphy |
---|
13 | USE comgeomphy |
---|
14 | USE mod_hallo |
---|
15 | USE Bands |
---|
16 | #ifdef INCA |
---|
17 | USE inca_dim |
---|
18 | #endif |
---|
19 | IMPLICIT NONE |
---|
20 | |
---|
21 | c ...... Version du 10/01/98 .......... |
---|
22 | |
---|
23 | c avec coordonnees verticales hybrides |
---|
24 | c avec nouveaux operat. dissipation * ( gradiv2,divgrad2,nxgraro2 ) |
---|
25 | |
---|
26 | c======================================================================= |
---|
27 | c |
---|
28 | c Auteur: P. Le Van /L. Fairhead/F.Hourdin |
---|
29 | c ------- |
---|
30 | c |
---|
31 | c Objet: |
---|
32 | c ------ |
---|
33 | c |
---|
34 | c GCM LMD nouvelle grille |
---|
35 | c |
---|
36 | c======================================================================= |
---|
37 | c |
---|
38 | c ... Dans inigeom , nouveaux calculs pour les elongations cu , cv |
---|
39 | c et possibilite d'appeler une fonction f(y) a derivee tangente |
---|
40 | c hyperbolique a la place de la fonction a derivee sinusoidale. |
---|
41 | c ... Possibilite de choisir le schema pour l'advection de |
---|
42 | c q , en modifiant iadv dans traceur.def (MAF,10/02) . |
---|
43 | c |
---|
44 | c Pour Van-Leer + Vapeur d'eau saturee, iadv(1)=4. (F.Codron,10/99) |
---|
45 | c Pour Van-Leer iadv=10 |
---|
46 | c |
---|
47 | c----------------------------------------------------------------------- |
---|
48 | c Declarations: |
---|
49 | c ------------- |
---|
50 | include 'mpif.h' |
---|
51 | #include "dimensions.h" |
---|
52 | #include "paramet.h" |
---|
53 | #include "comconst.h" |
---|
54 | #include "comdissnew.h" |
---|
55 | #include "comvert.h" |
---|
56 | #include "comgeom.h" |
---|
57 | #include "logic.h" |
---|
58 | #include "temps.h" |
---|
59 | #include "control.h" |
---|
60 | #include "ener.h" |
---|
61 | #include "description.h" |
---|
62 | #include "serre.h" |
---|
63 | #include "com_io_dyn.h" |
---|
64 | #include "iniprint.h" |
---|
65 | #include "tracstoke.h" |
---|
66 | |
---|
67 | |
---|
68 | INTEGER longcles |
---|
69 | PARAMETER ( longcles = 20 ) |
---|
70 | REAL clesphy0( longcles ) |
---|
71 | SAVE clesphy0 |
---|
72 | |
---|
73 | |
---|
74 | |
---|
75 | REAL zdtvr |
---|
76 | INTEGER nbetatmoy, nbetatdem,nbetat |
---|
77 | |
---|
78 | c variables dynamiques |
---|
79 | REAL vcov(ip1jm,llm),ucov(ip1jmp1,llm) ! vents covariants |
---|
80 | REAL teta(ip1jmp1,llm) ! temperature potentielle |
---|
81 | REAL q(ip1jmp1,llm,nqmx) ! champs advectes |
---|
82 | REAL ps(ip1jmp1) ! pression au sol |
---|
83 | REAL p (ip1jmp1,llmp1 ) ! pression aux interfac.des couches |
---|
84 | REAL pks(ip1jmp1) ! exner au sol |
---|
85 | REAL pk(ip1jmp1,llm) ! exner au milieu des couches |
---|
86 | REAL pkf(ip1jmp1,llm) ! exner filt.au milieu des couches |
---|
87 | REAL masse(ip1jmp1,llm) ! masse d'air |
---|
88 | REAL phis(ip1jmp1) ! geopotentiel au sol |
---|
89 | REAL phi(ip1jmp1,llm) ! geopotentiel |
---|
90 | REAL w(ip1jmp1,llm) ! vitesse verticale |
---|
91 | |
---|
92 | c variables dynamiques intermediaire pour le transport |
---|
93 | |
---|
94 | c variables pour le fichier histoire |
---|
95 | REAL dtav ! intervalle de temps elementaire |
---|
96 | |
---|
97 | REAL time_0 |
---|
98 | |
---|
99 | LOGICAL lafin |
---|
100 | INTEGER ij,iq,l,i,j |
---|
101 | |
---|
102 | |
---|
103 | real time_step, t_wrt, t_ops |
---|
104 | |
---|
105 | REAL rdayvrai,rdaym_ini,rday_ecri |
---|
106 | LOGICAL first |
---|
107 | |
---|
108 | LOGICAL call_iniphys |
---|
109 | data call_iniphys/.true./ |
---|
110 | |
---|
111 | REAL alpha(ip1jmp1,llm),beta(ip1jmp1,llm) |
---|
112 | c+jld variables test conservation energie |
---|
113 | REAL ecin(ip1jmp1,llm),ecin0(ip1jmp1,llm) |
---|
114 | C Tendance de la temp. potentiel d (theta)/ d t due a la |
---|
115 | C tansformation d'energie cinetique en energie thermique |
---|
116 | C cree par la dissipation |
---|
117 | REAL dhecdt(ip1jmp1,llm) |
---|
118 | REAL vcont(ip1jm,llm),ucont(ip1jmp1,llm) |
---|
119 | REAL d_h_vcol, d_qt, d_qw, d_ql, d_ec |
---|
120 | CHARACTER*15 ztit |
---|
121 | INTEGER ip_ebil_dyn ! PRINT level for energy conserv. diag. |
---|
122 | SAVE ip_ebil_dyn |
---|
123 | DATA ip_ebil_dyn/0/ |
---|
124 | c-jld |
---|
125 | |
---|
126 | |
---|
127 | character*80 dynhist_file, dynhistave_file |
---|
128 | character*20 modname |
---|
129 | character*80 abort_message |
---|
130 | |
---|
131 | C Calendrier |
---|
132 | LOGICAL true_calendar |
---|
133 | PARAMETER (true_calendar = .false.) |
---|
134 | |
---|
135 | c----------------------------------------------------------------------- |
---|
136 | c variables pour l'initialisation de la physique : |
---|
137 | c ------------------------------------------------ |
---|
138 | INTEGER ngridmx,nq |
---|
139 | PARAMETER( ngridmx = 2+(jjm-1)*iim - 1/jjm ) |
---|
140 | REAL zcufi(ngridmx),zcvfi(ngridmx) |
---|
141 | REAL latfi(ngridmx),lonfi(ngridmx) |
---|
142 | REAL airefi(ngridmx) |
---|
143 | SAVE latfi, lonfi, airefi |
---|
144 | |
---|
145 | c varaiable pour l'allocation du Buffer MPI (sur NEC) |
---|
146 | pointer (Pbuffer,MPI_Buffer(MaxBufferSize)) |
---|
147 | REAL :: MPI_Buffer |
---|
148 | INTEGER(KIND=MPI_ADDRESS_KIND) :: BS |
---|
149 | INTEGER :: ierr |
---|
150 | |
---|
151 | |
---|
152 | c----------------------------------------------------------------------- |
---|
153 | c Initialisations: |
---|
154 | c ---------------- |
---|
155 | |
---|
156 | abort_message = 'last timestep reached' |
---|
157 | modname = 'gcm' |
---|
158 | descript = 'Run GCM LMDZ' |
---|
159 | lafin = .FALSE. |
---|
160 | dynhist_file = 'dyn_hist' |
---|
161 | dynhistave_file = 'dyn_hist_ave' |
---|
162 | |
---|
163 | c-------------------------------------------------------------------------- |
---|
164 | c Iflag_phys controle l'appel a la physique : |
---|
165 | c ------------------------------------------- |
---|
166 | c 0 : pas de physique |
---|
167 | c 1 : Normale (appel a phylmd, phymars ...) |
---|
168 | c 2 : rappel Newtonien pour la temperature + friction au sol |
---|
169 | iflag_phys=1 |
---|
170 | |
---|
171 | c-------------------------------------------------------------------------- |
---|
172 | c Lecture de l'etat initial : |
---|
173 | c --------------------------- |
---|
174 | c T : on lit start.nc |
---|
175 | c F : le modele s'autoinitialise avec un cas academique (iniacademic) |
---|
176 | #ifdef CPP_IOIPSL |
---|
177 | read_start=.true. |
---|
178 | #else |
---|
179 | read_start=.false. |
---|
180 | #endif |
---|
181 | |
---|
182 | c----------------------------------------------------------------------- |
---|
183 | c Choix du calendrier |
---|
184 | c ------------------- |
---|
185 | |
---|
186 | #ifdef CPP_IOIPSL |
---|
187 | if (true_calendar) then |
---|
188 | call ioconf_calendar('gregorian') |
---|
189 | else |
---|
190 | call ioconf_calendar('360d') |
---|
191 | endif |
---|
192 | #endif |
---|
193 | c---------------------------------------------------------------------- |
---|
194 | c lecture des fichiers gcm.def ou run.def |
---|
195 | c --------------------------------------- |
---|
196 | c |
---|
197 | #ifdef CPP_IOIPSL |
---|
198 | CALL conf_gcm( 99, .TRUE. , clesphy0 ) |
---|
199 | #else |
---|
200 | CALL defrun( 99, .TRUE. , clesphy0 ) |
---|
201 | #endif |
---|
202 | c |
---|
203 | c |
---|
204 | c------------------------------------ |
---|
205 | c Initialisation partie parallele |
---|
206 | c------------------------------------ |
---|
207 | call init_parallel |
---|
208 | call InitDimphy |
---|
209 | call InitBands |
---|
210 | if (mpi_rank==0) call WriteBands |
---|
211 | call SetDistrib(jj_Nb_Caldyn) |
---|
212 | c Allocation du buffer MPI |
---|
213 | Bs=8*MaxBufferSize |
---|
214 | call MPI_ALLOC_MEM(BS,MPI_INFO_NULL,Pbuffer,ierr) |
---|
215 | print *,'ierr',ierr |
---|
216 | do i=1,MaxBufferSize |
---|
217 | MPI_Buffer(i)=i |
---|
218 | enddo |
---|
219 | call Init_Mod_hallo(MPI_Buffer) |
---|
220 | |
---|
221 | call InitComgeomphy |
---|
222 | |
---|
223 | #ifdef INCA |
---|
224 | call init_inca_dim |
---|
225 | #endif |
---|
226 | |
---|
227 | c----------------------------------------------------------------------- |
---|
228 | c Initialisation des traceurs |
---|
229 | c --------------------------- |
---|
230 | c Choix du schema pour l'advection |
---|
231 | c dans fichier trac.def ou via INCA |
---|
232 | |
---|
233 | call iniadvtrac(nq) |
---|
234 | c |
---|
235 | c----------------------------------------------------------------------- |
---|
236 | c Lecture de l'etat initial : |
---|
237 | c --------------------------- |
---|
238 | |
---|
239 | c lecture du fichier start.nc |
---|
240 | if (read_start) then |
---|
241 | #ifdef CPP_IOIPSL |
---|
242 | CALL dynetat0("start.nc",nqmx,vcov,ucov, |
---|
243 | . teta,q,masse,ps,phis, time_0) |
---|
244 | c write(73,*) 'ucov',ucov |
---|
245 | c write(74,*) 'vcov',vcov |
---|
246 | c write(75,*) 'teta',teta |
---|
247 | c write(76,*) 'ps',ps |
---|
248 | c write(77,*) 'q',q |
---|
249 | |
---|
250 | #endif |
---|
251 | endif |
---|
252 | |
---|
253 | |
---|
254 | |
---|
255 | c le cas echeant, creation d un etat initial |
---|
256 | IF (prt_level > 9) WRITE(lunout,*) |
---|
257 | . 'AVANT iniacademic AVANT AVANT AVANT AVANT' |
---|
258 | if (.not.read_start) then |
---|
259 | CALL iniacademic(nqmx,vcov,ucov,teta,q,masse,ps,phis,time_0) |
---|
260 | endif |
---|
261 | |
---|
262 | |
---|
263 | c----------------------------------------------------------------------- |
---|
264 | c Lecture des parametres de controle pour la simulation : |
---|
265 | c ------------------------------------------------------- |
---|
266 | c on recalcule eventuellement le pas de temps |
---|
267 | |
---|
268 | IF(MOD(day_step,iperiod).NE.0) THEN |
---|
269 | abort_message = |
---|
270 | . 'Il faut choisir un nb de pas par jour multiple de iperiod' |
---|
271 | call abort_gcm(modname,abort_message,1) |
---|
272 | ENDIF |
---|
273 | |
---|
274 | IF(MOD(day_step,iphysiq).NE.0) THEN |
---|
275 | abort_message = |
---|
276 | * 'Il faut choisir un nb de pas par jour multiple de iphysiq' |
---|
277 | call abort_gcm(modname,abort_message,1) |
---|
278 | ENDIF |
---|
279 | |
---|
280 | zdtvr = daysec/FLOAT(day_step) |
---|
281 | IF(dtvr.NE.zdtvr) THEN |
---|
282 | WRITE(lunout,*) |
---|
283 | . 'WARNING!!! changement de pas de temps',dtvr,'>',zdtvr |
---|
284 | ENDIF |
---|
285 | |
---|
286 | C |
---|
287 | C on remet le calendrier à zero si demande |
---|
288 | c |
---|
289 | if (annee_ref .ne. anneeref .or. day_ref .ne. dayref) then |
---|
290 | write(lunout,*) |
---|
291 | . ' Attention les dates initiales lues dans le fichier' |
---|
292 | write(lunout,*) |
---|
293 | . ' restart ne correspondent pas a celles lues dans ' |
---|
294 | write(lunout,*)' gcm.def' |
---|
295 | if (raz_date .ne. 1) then |
---|
296 | write(lunout,*) |
---|
297 | . ' On garde les dates du fichier restart' |
---|
298 | else |
---|
299 | annee_ref = anneeref |
---|
300 | day_ref = dayref |
---|
301 | day_ini = dayref |
---|
302 | itau_dyn = 0 |
---|
303 | itau_phy = 0 |
---|
304 | time_0 = 0. |
---|
305 | write(lunout,*) |
---|
306 | . ' On reinitialise a la date lue dans gcm.def' |
---|
307 | endif |
---|
308 | ELSE |
---|
309 | raz_date = 0 |
---|
310 | endif |
---|
311 | |
---|
312 | |
---|
313 | c nombre d'etats dans les fichiers demarrage et histoire |
---|
314 | nbetatdem = nday / iecri |
---|
315 | nbetatmoy = nday / periodav + 1 |
---|
316 | |
---|
317 | c----------------------------------------------------------------------- |
---|
318 | c Initialisation des constantes dynamiques : |
---|
319 | c ------------------------------------------ |
---|
320 | dtvr = zdtvr |
---|
321 | CALL iniconst |
---|
322 | |
---|
323 | c----------------------------------------------------------------------- |
---|
324 | c Initialisation de la geometrie : |
---|
325 | c -------------------------------- |
---|
326 | CALL inigeom |
---|
327 | |
---|
328 | c----------------------------------------------------------------------- |
---|
329 | c Initialisation du filtre : |
---|
330 | c -------------------------- |
---|
331 | CALL inifilr |
---|
332 | c |
---|
333 | c----------------------------------------------------------------------- |
---|
334 | c Initialisation de la dissipation : |
---|
335 | c ---------------------------------- |
---|
336 | |
---|
337 | CALL inidissip( lstardis, nitergdiv, nitergrot, niterh , |
---|
338 | * tetagdiv, tetagrot , tetatemp ) |
---|
339 | |
---|
340 | c----------------------------------------------------------------------- |
---|
341 | c Initialisation de la physique : |
---|
342 | c ------------------------------- |
---|
343 | #ifdef CPP_PHYS |
---|
344 | IF (call_iniphys.and.iflag_phys.eq.1) THEN |
---|
345 | latfi(1)=rlatu(1) |
---|
346 | lonfi(1)=0. |
---|
347 | zcufi(1) = cu(1) |
---|
348 | zcvfi(1) = cv(1) |
---|
349 | DO j=2,jjm |
---|
350 | DO i=1,iim |
---|
351 | latfi((j-2)*iim+1+i)= rlatu(j) |
---|
352 | lonfi((j-2)*iim+1+i)= rlonv(i) |
---|
353 | zcufi((j-2)*iim+1+i) = cu((j-1)*iip1+i) |
---|
354 | zcvfi((j-2)*iim+1+i) = cv((j-1)*iip1+i) |
---|
355 | ENDDO |
---|
356 | ENDDO |
---|
357 | latfi(ngridmx)= rlatu(jjp1) |
---|
358 | lonfi(ngridmx)= 0. |
---|
359 | zcufi(ngridmx) = cu(ip1jm+1) |
---|
360 | zcvfi(ngridmx) = cv(ip1jm-iim) |
---|
361 | CALL gr_dyn_fi(1,iip1,jjp1,ngridmx,aire,airefi) |
---|
362 | WRITE(lunout,*) |
---|
363 | . 'WARNING!!! vitesse verticale nulle dans la physique' |
---|
364 | CALL iniphysiq(ngridmx,llm,daysec,day_ini,dtphys , |
---|
365 | , latfi,lonfi,airefi,zcufi,zcvfi,rad,g,r,cpp ) |
---|
366 | call_iniphys=.false. |
---|
367 | ENDIF |
---|
368 | #endif |
---|
369 | |
---|
370 | c numero de stockage pour les fichiers de redemarrage: |
---|
371 | |
---|
372 | c----------------------------------------------------------------------- |
---|
373 | c Initialisation des I/O : |
---|
374 | c ------------------------ |
---|
375 | |
---|
376 | |
---|
377 | day_end = day_ini + nday |
---|
378 | WRITE(lunout,300)day_ini,day_end |
---|
379 | |
---|
380 | #ifdef CPP_IOIPSL |
---|
381 | CALL dynredem0_p("restart.nc", day_end, phis, nqmx) |
---|
382 | |
---|
383 | ecripar = .TRUE. |
---|
384 | |
---|
385 | if ( 1.eq.1) then |
---|
386 | time_step = zdtvr |
---|
387 | t_ops = iecri * daysec |
---|
388 | t_wrt = iecri * daysec |
---|
389 | CALL inithist_p(dynhist_file,day_ref,annee_ref,time_step, |
---|
390 | . t_ops, t_wrt, nqmx, histid, histvid) |
---|
391 | |
---|
392 | t_ops = iperiod * time_step |
---|
393 | t_wrt = periodav * daysec |
---|
394 | CALL initdynav_p(dynhistave_file,day_ref,annee_ref,time_step, |
---|
395 | . t_ops, t_wrt, nqmx, histaveid) |
---|
396 | |
---|
397 | dtav = iperiod*dtvr/daysec |
---|
398 | endif |
---|
399 | |
---|
400 | |
---|
401 | #endif |
---|
402 | |
---|
403 | c Choix des frequences de stokage pour le offline |
---|
404 | c istdyn=day_step/4 ! stockage toutes les 6h=1jour/4 |
---|
405 | c istdyn=day_step/12 ! stockage toutes les 2h=1jour/12 |
---|
406 | istdyn=day_step/4 ! stockage toutes les 6h=1jour/12 |
---|
407 | istphy=istdyn/iphysiq |
---|
408 | |
---|
409 | |
---|
410 | c |
---|
411 | c----------------------------------------------------------------------- |
---|
412 | c Integration temporelle du modele : |
---|
413 | c ---------------------------------- |
---|
414 | |
---|
415 | c write(78,*) 'ucov',ucov |
---|
416 | c write(78,*) 'vcov',vcov |
---|
417 | c write(78,*) 'teta',teta |
---|
418 | c write(78,*) 'ps',ps |
---|
419 | c write(78,*) 'q',q |
---|
420 | |
---|
421 | |
---|
422 | CALL leapfrog_p(ucov,vcov,teta,ps,masse,phis,nq,q,clesphy0, |
---|
423 | . time_0) |
---|
424 | |
---|
425 | |
---|
426 | |
---|
427 | 300 FORMAT('1'/,15x,'run du pas',i7,2x,'au pas',i7,2x, |
---|
428 | . 'c''est a dire du jour',i7,3x,'au jour',i7//) |
---|
429 | END |
---|
430 | |
---|