source: LMDZ6/trunk/libf/dyn3dmem/conf_gcm.F90 @ 4146

Last change on this file since 4146 was 4146, checked in by Laurent Fairhead, 2 years ago

Source code and xml files needed for XIOS output in the LMDZ LonLat? dynamical core.
One flag controls everything: ok_dyn_xios. Parameters controlling outputs need to be put in the xml
files, nothing is set in the code
Work to follow on the dynzon file and the modipsl/libIGCM framework.
ok_dyn_xios = n should not change anything

  • Property copyright set to
    Name of program: LMDZ
    Creation date: 1984
    Version: LMDZ5
    License: CeCILL version 2
    Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
    See the license file in the root directory
File size: 34.4 KB
Line 
1
2! $Id$
3
4SUBROUTINE conf_gcm( tapedef, etatinit )
5
6  USE control_mod
7#ifdef CPP_IOIPSL
8  USE IOIPSL
9#else
10  ! if not using IOIPSL, we still need to use (a local version of) getin
11  USE ioipsl_getincom
12#endif
13  USE misc_mod
14  USE mod_filtre_fft, ONLY: use_filtre_fft
15  USE mod_filtre_fft_loc, ONLY: use_filtre_fft_loc=>use_filtre_fft
16  USE mod_hallo, ONLY: use_mpi_alloc
17  USE infotrac, ONLY: type_trac
18  USE assert_m, ONLY: assert
19  USE comconst_mod, ONLY: dissip_deltaz, dissip_factz, dissip_zref, &
20                          iflag_top_bound, mode_top_bound, tau_top_bound, &
21                          ngroup
22  USE logic_mod, ONLY: fxyhypb, iflag_phys, ok_etat0, ok_gradsfile, &
23                       ok_guide, ok_limit, ok_strato, purmats, read_start, &
24                       ysinus, read_orop
25  USE serre_mod, ONLY: clon,clat,grossismx,grossismy,dzoomx,dzoomy, &
26                       alphax,alphay,taux,tauy
27  USE temps_mod, ONLY: calend, year_len
28
29  IMPLICIT NONE
30  !-----------------------------------------------------------------------
31  !     Auteurs :   L. Fairhead , P. Le Van  .
32
33  !     Arguments :
34
35  !     tapedef   :
36  !     etatinit  :     = TRUE   , on ne  compare pas les valeurs des para-
37  !     -metres  du zoom  avec  celles lues sur le fichier start .
38
39  LOGICAL,INTENT(IN) :: etatinit
40  INTEGER,INTENT(IN) :: tapedef
41
42  !   Declarations :
43  !   --------------
44  include "dimensions.h"
45  include "paramet.h"
46  include "comdissnew.h"
47  include "iniprint.h"
48
49  !   local:
50  !   ------
51
52  CHARACTER ch1*72,ch2*72,ch3*72,ch4*12
53  REAL clonn,clatt,grossismxx,grossismyy
54  REAL dzoomxx,dzoomyy, tauxx,tauyy
55  LOGICAL  fxyhypbb, ysinuss
56  INTEGER i
57  CHARACTER(len=*), PARAMETER :: modname="conf_gcm"
58  CHARACTER(len=80) :: abort_message
59#ifdef CPP_OMP
60  INTEGER, EXTERNAL :: OMP_GET_NUM_THREADS
61#endif
62
63  !  -------------------------------------------------------------------
64
65  !       .........     Version  du 29/04/97       ..........
66
67  !   Nouveaux parametres nitergdiv,nitergrot,niterh,tetagdiv,tetagrot,
68  !      tetatemp   ajoutes  pour la dissipation   .
69
70  !   Autre parametre ajoute en fin de liste de tapedef : ** fxyhypb **
71
72  !  Si fxyhypb = .TRUE. , choix de la fonction a derivee tangente hyperb.
73  !    Sinon , choix de fxynew  , a derivee sinusoidale  ..
74
75  !   ......  etatinit = . TRUE. si defrun  est appele dans ETAT0_LMD  ou
76  !         LIMIT_LMD  pour l'initialisation de start.dat (dic) et
77  !                de limit.dat ( dic)                        ...........
78  !           Sinon  etatinit = . FALSE .
79
80  !   Donc etatinit = .F.  si on veut comparer les valeurs de  grossismx ,
81  !    grossismy,clon,clat, fxyhypb  lues sur  le fichier  start  avec
82  !   celles passees  par run.def ,  au debut du gcm, apres l'appel a
83  !    lectba . 
84  !   Ces parmetres definissant entre autres la grille et doivent etre
85  !   pareils et coherents , sinon il y aura  divergence du gcm .
86
87  !-----------------------------------------------------------------------
88  !   initialisations:
89  !   ----------------
90
91  !Config  Key  = lunout
92  !Config  Desc = unite de fichier pour les impressions
93  !Config  Def  = 6
94  !Config  Help = unite de fichier pour les impressions
95  !Config         (defaut sortie standard = 6)
96  lunout=6
97  CALL getin('lunout', lunout)
98  IF (lunout /= 5 .and. lunout /= 6) THEN
99     OPEN(UNIT=lunout,FILE='lmdz.out_0000',ACTION='write',  &
100          STATUS='unknown',FORM='formatted')
101  ENDIF
102
103  adjust=.false.
104  CALL getin('adjust',adjust)
105
106#ifdef CPP_OMP
107  ! adjust=y not implemented in case of OpenMP threads...
108  !$OMP PARALLEL
109  IF ((OMP_GET_NUM_THREADS()>1).and.adjust) then
110     write(lunout,*)'conf_gcm: Error, adjust should be set to n' &
111          ,' when running with OpenMP threads'
112     abort_message = 'Wrong value for adjust'
113     CALL abort_gcm(modname,abort_message,1)
114  ENDIF
115  !$OMP END PARALLEL         
116#endif
117
118  itaumax=0
119  CALL getin('itaumax',itaumax);
120  IF (itaumax<=0) itaumax=HUGE(itaumax)
121
122  !Config  Key  = prt_level
123  !Config  Desc = niveau d'impressions de débogage
124  !Config  Def  = 0
125  !Config  Help = Niveau d'impression pour le débogage
126  !Config         (0 = minimum d'impression)
127  prt_level = 0
128  CALL getin('prt_level',prt_level)
129
130  !-----------------------------------------------------------------------
131  !  Parametres de controle du run:
132  !-----------------------------------------------------------------------
133  !Config  Key  = planet_type
134  !Config  Desc = planet type ("earth", "mars", "venus", ...)
135  !Config  Def  = earth
136  !Config  Help = this flag sets the type of atymosphere that is considered
137  planet_type="earth"
138  CALL getin('planet_type',planet_type)
139
140  !Config  Key  = calend
141  !Config  Desc = type de calendrier utilise
142  !Config  Def  = earth_360d
143  !Config  Help = valeur possible: earth_360d, earth_365d, earth_366d
144  !Config         
145  calend = 'earth_360d'
146! initialize year_len for aquaplanets and 1D
147  CALL getin('calend', calend)
148  IF (calend == 'earth_360d') THEN
149    year_len=360
150  ELSE IF (calend == 'earth_365d') THEN
151    year_len=365
152  ELSE IF (calend == 'earth_366d') THEN
153    year_len=366
154  ELSE
155    year_len=1
156  ENDIF
157
158  !Config  Key  = dayref
159  !Config  Desc = Jour de l'etat initial
160  !Config  Def  = 1
161  !Config  Help = Jour de l'etat initial ( = 350  si 20 Decembre ,
162  !Config         par expl. ,comme ici ) ... A completer
163  dayref=1
164  CALL getin('dayref', dayref)
165
166  !Config  Key  = anneeref
167  !Config  Desc = Annee de l'etat initial
168  !Config  Def  = 1998
169  !Config  Help = Annee de l'etat  initial
170  !Config         (   avec  4  chiffres   ) ... A completer
171  anneeref = 1998
172  CALL getin('anneeref',anneeref)
173
174  !Config  Key  = raz_date
175  !Config  Desc = Remise a zero de la date initiale
176  !Config  Def  = 0 (pas de remise a zero)
177  !Config  Help = Remise a zero de la date initiale
178  !Config         0 pas de remise a zero, on garde la date du fichier restart
179  !Config         1 prise en compte de la date de gcm.def avec remise a zero
180  !Config         des compteurs de pas de temps
181  raz_date = 0
182  CALL getin('raz_date', raz_date)
183
184  !Config  Key  = resetvarc
185  !Config  Desc = Reinit des variables de controle
186  !Config  Def  = n
187  !Config  Help = Reinit des variables de controle
188  resetvarc = .false.
189  CALL getin('resetvarc',resetvarc)
190
191  !Config  Key  = nday
192  !Config  Desc = Nombre de jours d'integration
193  !Config  Def  = 10
194  !Config  Help = Nombre de jours d'integration
195  !Config         ... On pourait aussi permettre des mois ou des annees !
196  nday = 10
197  CALL getin('nday',nday)
198
199  !Config  Key  = starttime
200  !Config  Desc = Heure de depart de la simulation
201  !Config  Def  = 0
202  !Config  Help = Heure de depart de la simulation
203  !Config         en jour
204  starttime = 0
205  CALL getin('starttime',starttime)
206
207  !Config  Key  = day_step
208  !Config  Desc = nombre de pas par jour
209  !Config  Def  = 240
210  !Config  Help = nombre de pas par jour (multiple de iperiod) (
211  !Config          ici pour  dt = 1 min )
212  day_step = 240
213  CALL getin('day_step',day_step)
214
215  !Config  Key  = nsplit_phys
216  nsplit_phys = 1
217  CALL getin('nsplit_phys',nsplit_phys)
218
219  !Config  Key  = iperiod
220  !Config  Desc = periode pour le pas Matsuno
221  !Config  Def  = 5
222  !Config  Help = periode pour le pas Matsuno (en pas de temps)
223  iperiod = 5
224  CALL getin('iperiod',iperiod)
225
226  !Config  Key  = iapp_tracvl
227  !Config  Desc = frequence du groupement des flux
228  !Config  Def  = iperiod
229  !Config  Help = frequence du groupement des flux (en pas de temps)
230  iapp_tracvl = iperiod
231  CALL getin('iapp_tracvl',iapp_tracvl)
232
233  !Config  Key  = iconser
234  !Config  Desc = periode de sortie des variables de controle
235  !Config  Def  = 240 
236  !Config  Help = periode de sortie des variables de controle
237  !Config         (En pas de temps)
238  iconser = 240 
239  CALL getin('iconser', iconser)
240
241  !Config  Key  = iecri
242  !Config  Desc = periode d'ecriture du fichier histoire
243  !Config  Def  = 1
244  !Config  Help = periode d'ecriture du fichier histoire (en jour)
245  iecri = 1
246  CALL getin('iecri',iecri)
247
248  !Config  Key  = periodav
249  !Config  Desc = periode de stockage fichier histmoy
250  !Config  Def  = 1
251  !Config  Help = periode de stockage fichier histmoy (en jour)
252  periodav = 1.
253  CALL getin('periodav',periodav)
254
255  !Config  Key  = output_grads_dyn
256  !Config  Desc = output dynamics diagnostics in 'dyn.dat' file
257  !Config  Def  = n
258  !Config  Help = output dynamics diagnostics in Grads-readable 'dyn.dat' file
259  output_grads_dyn=.false.
260  CALL getin('output_grads_dyn',output_grads_dyn)
261
262  !Config  Key  = dissip_period
263  !Config  Desc = periode de la dissipation
264  !Config  Def  = 0
265  !Config  Help = periode de la dissipation
266  !Config  dissip_period=0 => la valeur sera calcule dans inidissip       
267  !Config  dissip_period>0 => on prend cette valeur
268  dissip_period = 0
269  CALL getin('dissip_period',dissip_period)
270
271  !cc  ....   P. Le Van , modif le 29/04/97 .pour la dissipation  ...
272  !cc
273
274  !Config  Key  = lstardis
275  !Config  Desc = choix de l'operateur de dissipation
276  !Config  Def  = y
277  !Config  Help = choix de l'operateur de dissipation
278  !Config         'y' si on veut star et 'n' si on veut non-start !
279  !Config         Moi y en a pas comprendre !
280  lstardis = .TRUE.
281  CALL getin('lstardis',lstardis)
282
283  !Config  Key  = nitergdiv
284  !Config  Desc = Nombre d'iteration de gradiv
285  !Config  Def  = 1
286  !Config  Help = nombre d'iterations de l'operateur de dissipation
287  !Config         gradiv
288  nitergdiv = 1
289  CALL getin('nitergdiv',nitergdiv)
290
291  !Config  Key  = nitergrot
292  !Config  Desc = nombre d'iterations de nxgradrot
293  !Config  Def  = 2
294  !Config  Help = nombre d'iterations de l'operateur de dissipation 
295  !Config         nxgradrot
296  nitergrot = 2
297  CALL getin('nitergrot',nitergrot)
298
299  !Config  Key  = niterh
300  !Config  Desc = nombre d'iterations de divgrad
301  !Config  Def  = 2
302  !Config  Help = nombre d'iterations de l'operateur de dissipation
303  !Config         divgrad
304  niterh = 2
305  CALL getin('niterh',niterh)
306
307  !Config  Key  = tetagdiv
308  !Config  Desc = temps de dissipation pour div
309  !Config  Def  = 7200
310  !Config  Help = temps de dissipation des plus petites longeur
311  !Config         d'ondes pour u,v (gradiv)
312  tetagdiv = 7200.
313  CALL getin('tetagdiv',tetagdiv)
314
315  !Config  Key  = tetagrot
316  !Config  Desc = temps de dissipation pour grad
317  !Config  Def  = 7200
318  !Config  Help = temps de dissipation des plus petites longeur
319  !Config         d'ondes pour u,v (nxgradrot)
320  tetagrot = 7200.
321  CALL getin('tetagrot',tetagrot)
322
323  !Config  Key  = tetatemp
324  !Config  Desc = temps de dissipation pour h
325  !Config  Def  = 7200
326  !Config  Help =  temps de dissipation des plus petites longeur
327  !Config         d'ondes pour h (divgrad)   
328  tetatemp  = 7200.
329  CALL getin('tetatemp',tetatemp )
330
331  ! Parametres controlant la variation sur la verticale des constantes de
332  ! dissipation.
333  ! Pour le moment actifs uniquement dans la version a 39 niveaux
334  ! avec ok_strato=y
335
336  dissip_factz=4.
337  dissip_deltaz=10.
338  dissip_zref=30.
339  CALL getin('dissip_factz',dissip_factz )
340  CALL getin('dissip_deltaz',dissip_deltaz )
341  CALL getin('dissip_zref',dissip_zref )
342
343  ! ngroup
344  ngroup=3
345  CALL getin('ngroup',ngroup)
346  IF (mod(iim, 2**ngroup) /= 0) &
347       call abort_gcm("conf_gcm", 'iim must be multiple of 2**ngroup', 1)
348  IF (2**ngroup > jjm + 1) &
349       call abort_gcm("conf_gcm", '2**ngroup must be <= jjm + 1', 1)
350
351  ! mode_top_bound : fields towards which sponge relaxation will be done:
352  ! top_bound sponge: only active if ok_strato=.true. and iflag_top_bound!=0
353  !                   iflag_top_bound=0 for no sponge
354  !                   iflag_top_bound=1 for sponge over 4 topmost layers
355  !                   iflag_top_bound=2 for sponge from top to ~1% of top layer pressure
356  iflag_top_bound=1
357  CALL getin('iflag_top_bound',iflag_top_bound)
358  IF (iflag_top_bound < 0 .or. iflag_top_bound > 2) &
359       call abort_gcm("conf_gcm", 'iflag_top_bound must be 0, 1 or 2', 1)
360
361  ! mode_top_bound : fields towards which sponge relaxation will be done:
362  !                  mode_top_bound=0: no relaxation
363  !                  mode_top_bound=1: u and v relax towards 0
364  !                  mode_top_bound=2: u and v relax towards their zonal mean
365  !                  mode_top_bound=3: u,v and pot. temp. relax towards their zonal mean
366  mode_top_bound=3
367  CALL getin('mode_top_bound',mode_top_bound)
368
369  ! top_bound sponge : inverse of charactericstic relaxation time scale for sponge
370  tau_top_bound=1.e-5
371  CALL getin('tau_top_bound',tau_top_bound)
372
373  !Config  Key  = coefdis
374  !Config  Desc = coefficient pour gamdissip
375  !Config  Def  = 0
376  !Config  Help = coefficient pour gamdissip 
377  coefdis = 0.
378  CALL getin('coefdis',coefdis)
379
380  !Config  Key  = purmats
381  !Config  Desc = Schema d'integration
382  !Config  Def  = n
383  !Config  Help = Choix du schema d'integration temporel.
384  !Config         y = pure Matsuno sinon c'est du Matsuno-leapfrog
385  purmats = .FALSE.
386  CALL getin('purmats',purmats)
387
388  !Config  Key  = ok_guide
389  !Config  Desc = Guidage
390  !Config  Def  = n
391  !Config  Help = Guidage
392  ok_guide = .FALSE.
393  CALL getin('ok_guide',ok_guide)
394
395  IF (ok_guide .and. adjust) call abort_gcm("conf_gcm", &
396       "adjust does not work with ok_guide", 1)
397
398  !Config  Key  =  read_start
399  !Config  Desc = Initialize model using a 'start.nc' file
400  !Config  Def  = y
401  !Config  Help = y: intialize dynamical fields using a 'start.nc' file
402  !               n: fields are initialized by 'iniacademic' routine
403  read_start= .true.
404  CALL getin('read_start',read_start)
405
406  !Config  Key  = iflag_phys
407  !Config  Desc = Avec ls physique
408  !Config  Def  = 1
409  !Config  Help = Permet de faire tourner le modele sans
410  !Config         physique.
411  iflag_phys = 1
412  CALL getin('iflag_phys',iflag_phys)
413
414  !Config  Key  =  iphysiq
415  !Config  Desc = Periode de la physique
416  !Config  Def  = 5
417  !Config  Help = Periode de la physique en pas de temps de la dynamique.
418  iphysiq = 5
419  CALL getin('iphysiq', iphysiq)
420
421  !Config  Key  = ip_ebil_dyn
422  !Config  Desc = PRINT level for energy conserv. diag.
423  !Config  Def  = 0
424  !Config  Help = PRINT level for energy conservation diag. ;
425  !               les options suivantes existent :
426  !Config         0 pas de print
427  !Config         1 pas de print
428  !Config         2 print,
429  ip_ebil_dyn = 0
430  CALL getin('ip_ebil_dyn',ip_ebil_dyn)
431
432  !cc  ....   P. Le Van , ajout  le 7/03/95 .pour le zoom ...
433  !     .........   (  modif  le 17/04/96 )   .........
434
435  test_etatinit: IF (.not. etatinit) then
436     !Config  Key  = clon
437     !Config  Desc = centre du zoom, longitude
438     !Config  Def  = 0
439     !Config  Help = longitude en degres du centre
440     !Config         du zoom
441     clonn = 0.
442     CALL getin('clon',clonn)
443
444     !Config  Key  = clat
445     !Config  Desc = centre du zoom, latitude
446     !Config  Def  = 0
447     !Config  Help = latitude en degres du centre du zoom
448     !Config         
449     clatt = 0.
450     CALL getin('clat',clatt)
451
452     IF( ABS(clat - clatt).GE. 0.001 )  THEN
453        write(lunout,*)'conf_gcm: La valeur de clat passee par run.def', &
454             ' est differente de celle lue sur le fichier  start '
455        STOP
456     ENDIF
457
458     !Config  Key  = grossismx
459     !Config  Desc = zoom en longitude
460     !Config  Def  = 1.0
461     !Config  Help = facteur de grossissement du zoom,
462     !Config         selon la longitude
463     grossismxx = 1.0
464     CALL getin('grossismx',grossismxx)
465
466     IF( ABS(grossismx - grossismxx).GE. 0.001 )  THEN
467        write(lunout,*)'conf_gcm: La valeur de grossismx passee par ', &
468             'run.def est differente de celle lue sur le fichier  start '
469        STOP
470     ENDIF
471
472     !Config  Key  = grossismy
473     !Config  Desc = zoom en latitude
474     !Config  Def  = 1.0
475     !Config  Help = facteur de grossissement du zoom,
476     !Config         selon la latitude
477     grossismyy = 1.0
478     CALL getin('grossismy',grossismyy)
479
480     IF( ABS(grossismy - grossismyy).GE. 0.001 )  THEN
481        write(lunout,*)'conf_gcm: La valeur de grossismy passee par ', &
482             'run.def est differente de celle lue sur le fichier  start '
483        STOP
484     ENDIF
485
486     IF( grossismx.LT.1. )  THEN
487        write(lunout,*) &
488             'conf_gcm: ***  ATTENTION !! grossismx < 1 .   *** '
489        STOP
490     ELSE
491        alphax = 1. - 1./ grossismx
492     ENDIF
493
494     IF( grossismy.LT.1. )  THEN
495        write(lunout,*) &
496             'conf_gcm: ***  ATTENTION !! grossismy < 1 .   *** '
497        STOP
498     ELSE
499        alphay = 1. - 1./ grossismy
500     ENDIF
501
502     write(lunout,*)'conf_gcm: alphax alphay',alphax,alphay
503
504     !    alphax et alphay sont les anciennes formulat. des grossissements
505
506     !Config  Key  = fxyhypb
507     !Config  Desc = Fonction  hyperbolique
508     !Config  Def  = y
509     !Config  Help = Fonction  f(y)  hyperbolique  si = .true. 
510     !Config         sinon  sinusoidale
511     fxyhypbb = .TRUE.
512     CALL getin('fxyhypb',fxyhypbb)
513
514     IF( .NOT.fxyhypb )  THEN
515        IF( fxyhypbb )     THEN
516           write(lunout,*)' ********  PBS DANS  CONF_GCM  ******** '
517           write(lunout,*)' *** fxyhypb lu sur le fichier start est ', &
518                'F alors  qu il est  T  sur  run.def  ***'
519           STOP
520        ENDIF
521     ELSE
522        IF( .NOT.fxyhypbb )   THEN
523           write(lunout,*)' ********  PBS DANS  CONF_GCM  ******** '
524           write(lunout,*)' ***  fxyhypb lu sur le fichier start est ', &
525                'T alors  qu il est  F  sur  run.def  ****  '
526           STOP
527        ENDIF
528     ENDIF
529
530     !Config  Key  = dzoomx
531     !Config  Desc = extension en longitude
532     !Config  Def  = 0
533     !Config  Help = extension en longitude  de la zone du zoom 
534     !Config         ( fraction de la zone totale)
535     dzoomxx = 0.0
536     CALL getin('dzoomx',dzoomxx)
537
538     IF( fxyhypb )  THEN
539        IF( ABS(dzoomx - dzoomxx).GE. 0.001 )  THEN
540           write(lunout,*)'conf_gcm: La valeur de dzoomx passee par ', &
541                'run.def est differente de celle lue sur le fichier  start '
542           STOP
543        ENDIF
544     ENDIF
545
546     !Config  Key  = dzoomy
547     !Config  Desc = extension en latitude
548     !Config  Def  = 0
549     !Config  Help = extension en latitude de la zone  du zoom 
550     !Config         ( fraction de la zone totale)
551     dzoomyy = 0.0
552     CALL getin('dzoomy',dzoomyy)
553
554     IF( fxyhypb )  THEN
555        IF( ABS(dzoomy - dzoomyy).GE. 0.001 )  THEN
556           write(lunout,*)'conf_gcm: La valeur de dzoomy passee par ', &
557                'run.def est differente de celle lue sur le fichier  start '
558           STOP
559        ENDIF
560     ENDIF
561
562     !Config  Key  = taux
563     !Config  Desc = raideur du zoom en  X
564     !Config  Def  = 3
565     !Config  Help = raideur du zoom en  X
566     tauxx = 3.0
567     CALL getin('taux',tauxx)
568
569     IF( fxyhypb )  THEN
570        IF( ABS(taux - tauxx).GE. 0.001 )  THEN
571           write(lunout,*)'conf_gcm: La valeur de taux passee par ', &
572                'run.def est differente de celle lue sur le fichier  start '
573           STOP
574        ENDIF
575     ENDIF
576
577     !Config  Key  = tauyy
578     !Config  Desc = raideur du zoom en  Y
579     !Config  Def  = 3
580     !Config  Help = raideur du zoom en  Y
581     tauyy = 3.0
582     CALL getin('tauy',tauyy)
583
584     IF( fxyhypb )  THEN
585        IF( ABS(tauy - tauyy).GE. 0.001 )  THEN
586           write(lunout,*)'conf_gcm: La valeur de tauy passee par ', &
587                'run.def est differente de celle lue sur le fichier  start '
588           STOP
589        ENDIF
590     ENDIF
591
592     !c
593     IF( .NOT.fxyhypb  )  THEN
594
595        !Config  Key  = ysinus
596        !Config  IF   = !fxyhypb
597        !Config  Desc = Fonction en Sinus
598        !Config  Def  = y
599        !Config  Help = Fonction  f(y) avec y = Sin(latit.) si = .true.
600        !Config         sinon y = latit.
601        ysinuss = .TRUE.
602        CALL getin('ysinus',ysinuss)
603
604        IF( .NOT.ysinus )  THEN
605           IF( ysinuss )     THEN
606              write(lunout,*)' ********  PBS DANS  CONF_GCM  ******** '
607              write(lunout,*)' *** ysinus lu sur le fichier start est F', &
608                   ' alors  qu il est  T  sur  run.def  ***'
609              STOP
610           ENDIF
611        ELSE
612           IF( .NOT.ysinuss )   THEN
613              write(lunout,*)' ********  PBS DANS  CONF_GCM  ******** '
614              write(lunout,*)' *** ysinus lu sur le fichier start est T', &
615                   ' alors  qu il est  F  sur  run.def  ****  '
616              STOP
617           ENDIF
618        ENDIF
619     ENDIF ! of IF( .NOT.fxyhypb  )
620
621     !Config  Key  = offline
622     !Config  Desc = Nouvelle eau liquide
623     !Config  Def  = n
624     !Config  Help = Permet de mettre en route la
625     !Config         nouvelle parametrisation de l'eau liquide !
626     offline = .FALSE.
627     CALL getin('offline',offline)
628     IF (offline .AND. adjust) THEN
629        WRITE(lunout,*)  &
630             'WARNING : option offline does not work with adjust=y :'
631        WRITE(lunout,*) 'the files defstoke.nc, fluxstoke.nc ',  &
632             'and fluxstokev.nc will not be created'
633        WRITE(lunout,*)  &
634             'only the file phystoke.nc will still be created '
635     ENDIF
636
637     !Config  Key  = type_trac
638     !Config  Desc = Choix de couplage avec model de chimie INCA ou REPROBUS
639     !Config  Def  = lmdz
640     !Config  Help =
641     !Config         'lmdz' = pas de couplage, pur LMDZ
642     !Config         'inca' = model de chime INCA
643     !Config         'repr' = model de chime REPROBUS
644     type_trac = 'lmdz'
645     CALL getin('type_trac',type_trac)
646
647     !Config  Key  = config_inca
648     !Config  Desc = Choix de configuration de INCA
649     !Config  Def  = none
650     !Config  Help = Choix de configuration de INCA :
651     !Config         'none' = sans INCA
652     !Config         'chem' = INCA avec calcul de chemie
653     !Config         'aero' = INCA avec calcul des aerosols
654     config_inca = 'none'
655     CALL getin('config_inca',config_inca)
656
657     !Config  Key  = ok_dynzon
658     !Config  Desc = calcul et sortie des transports
659     !Config  Def  = n
660     !Config  Help = Permet de mettre en route le calcul des transports
661     !Config         
662     ok_dynzon = .FALSE.
663     CALL getin('ok_dynzon',ok_dynzon)
664
665     !Config  Key  = ok_dyn_ins
666     !Config  Desc = sorties instantanees dans la dynamique
667     !Config  Def  = n
668     !Config  Help =
669     !Config         
670     ok_dyn_ins = .FALSE.
671     CALL getin('ok_dyn_ins',ok_dyn_ins)
672
673     !Config  Key  = ok_dyn_ave
674     !Config  Desc = sorties moyennes dans la dynamique
675     !Config  Def  = n
676     !Config  Help =
677     !Config         
678     ok_dyn_ave = .FALSE.
679     CALL getin('ok_dyn_ave',ok_dyn_ave)
680
681     !Config  Key  = ok_dyn_xios
682     !Config  Desc = sorties moyennes dans la dynamique
683     !Config  Def  = n
684     !Config  Help =
685     !Config         
686     ok_dyn_xios = .FALSE.
687     CALL getin('ok_dyn_xios',ok_dyn_xios)
688
689     write(lunout,*)' #########################################'
690     write(lunout,*)' Configuration des parametres du gcm: '
691     write(lunout,*)' planet_type = ', planet_type
692     write(lunout,*)' calend = ', calend
693     write(lunout,*)' dayref = ', dayref
694     write(lunout,*)' anneeref = ', anneeref
695     write(lunout,*)' nday = ', nday
696     write(lunout,*)' day_step = ', day_step
697     write(lunout,*)' iperiod = ', iperiod
698     write(lunout,*)' nsplit_phys = ', nsplit_phys
699     write(lunout,*)' iconser = ', iconser
700     write(lunout,*)' iecri = ', iecri
701     write(lunout,*)' periodav = ', periodav
702     write(lunout,*)' output_grads_dyn = ', output_grads_dyn
703     write(lunout,*)' dissip_period = ', dissip_period
704     write(lunout,*)' lstardis = ', lstardis
705     write(lunout,*)' nitergdiv = ', nitergdiv
706     write(lunout,*)' nitergrot = ', nitergrot
707     write(lunout,*)' niterh = ', niterh
708     write(lunout,*)' tetagdiv = ', tetagdiv
709     write(lunout,*)' tetagrot = ', tetagrot
710     write(lunout,*)' tetatemp = ', tetatemp
711     write(lunout,*)' coefdis = ', coefdis
712     write(lunout,*)' purmats = ', purmats
713     write(lunout,*)' read_start = ', read_start
714     write(lunout,*)' iflag_phys = ', iflag_phys
715     write(lunout,*)' iphysiq = ', iphysiq
716     write(lunout,*)' clonn = ', clonn
717     write(lunout,*)' clatt = ', clatt
718     write(lunout,*)' grossismx = ', grossismx
719     write(lunout,*)' grossismy = ', grossismy
720     write(lunout,*)' fxyhypbb = ', fxyhypbb
721     write(lunout,*)' dzoomxx = ', dzoomxx
722     write(lunout,*)' dzoomy = ', dzoomyy
723     write(lunout,*)' tauxx = ', tauxx
724     write(lunout,*)' tauyy = ', tauyy
725     write(lunout,*)' offline = ', offline
726     write(lunout,*)' type_trac = ', type_trac
727     write(lunout,*)' config_inca = ', config_inca
728     write(lunout,*)' ok_dynzon = ', ok_dynzon
729     write(lunout,*)' ok_dyn_ins = ', ok_dyn_ins
730     write(lunout,*)' ok_dyn_ave = ', ok_dyn_ave
731     write(lunout,*)' ok_dyn_xios = ', ok_dyn_xios
732  else
733     !Config  Key  = clon
734     !Config  Desc = centre du zoom, longitude
735     !Config  Def  = 0
736     !Config  Help = longitude en degres du centre
737     !Config         du zoom
738     clon = 0.
739     CALL getin('clon',clon)
740
741     !Config  Key  = clat
742     !Config  Desc = centre du zoom, latitude
743     !Config  Def  = 0
744     !Config  Help = latitude en degres du centre du zoom
745     !Config         
746     clat = 0.
747     CALL getin('clat',clat)
748
749     !Config  Key  = grossismx
750     !Config  Desc = zoom en longitude
751     !Config  Def  = 1.0
752     !Config  Help = facteur de grossissement du zoom,
753     !Config         selon la longitude
754     grossismx = 1.0
755     CALL getin('grossismx',grossismx)
756
757     !Config  Key  = grossismy
758     !Config  Desc = zoom en latitude
759     !Config  Def  = 1.0
760     !Config  Help = facteur de grossissement du zoom,
761     !Config         selon la latitude
762     grossismy = 1.0
763     CALL getin('grossismy',grossismy)
764
765     IF( grossismx.LT.1. )  THEN
766        write(lunout,*) 'conf_gcm: ***ATTENTION !! grossismx < 1 . *** '
767        STOP
768     ELSE
769        alphax = 1. - 1./ grossismx
770     ENDIF
771
772     IF( grossismy.LT.1. )  THEN
773        write(lunout,*) 'conf_gcm: ***ATTENTION !! grossismy < 1 . *** '
774        STOP
775     ELSE
776        alphay = 1. - 1./ grossismy
777     ENDIF
778
779     write(lunout,*) 'conf_gcm: alphax alphay ',alphax,alphay
780
781     !    alphax et alphay sont les anciennes formulat. des grossissements
782
783     !Config  Key  = fxyhypb
784     !Config  Desc = Fonction  hyperbolique
785     !Config  Def  = y
786     !Config  Help = Fonction  f(y)  hyperbolique  si = .true. 
787     !Config         sinon  sinusoidale
788     fxyhypb = .TRUE.
789     CALL getin('fxyhypb',fxyhypb)
790
791     !Config  Key  = dzoomx
792     !Config  Desc = extension en longitude
793     !Config  Def  = 0
794     !Config  Help = extension en longitude  de la zone du zoom 
795     !Config         ( fraction de la zone totale)
796     dzoomx = 0.2
797     CALL getin('dzoomx',dzoomx)
798     call assert(dzoomx < 1, "conf_gcm: dzoomx must be < 1")
799
800     !Config  Key  = dzoomy
801     !Config  Desc = extension en latitude
802     !Config  Def  = 0
803     !Config  Help = extension en latitude de la zone  du zoom 
804     !Config         ( fraction de la zone totale)
805     dzoomy = 0.2
806     CALL getin('dzoomy',dzoomy)
807     call assert(dzoomy < 1, "conf_gcm: dzoomy must be < 1")
808
809     !Config  Key  = taux
810     !Config  Desc = raideur du zoom en  X
811     !Config  Def  = 3
812     !Config  Help = raideur du zoom en  X
813     taux = 3.0
814     CALL getin('taux',taux)
815
816     !Config  Key  = tauy
817     !Config  Desc = raideur du zoom en  Y
818     !Config  Def  = 3
819     !Config  Help = raideur du zoom en  Y
820     tauy = 3.0
821     CALL getin('tauy',tauy)
822
823     !Config  Key  = ysinus
824     !Config  IF   = !fxyhypb
825     !Config  Desc = Fonction en Sinus
826     !Config  Def  = y
827     !Config  Help = Fonction  f(y) avec y = Sin(latit.) si = .true.
828     !Config         sinon y = latit.
829     ysinus = .TRUE.
830     CALL getin('ysinus',ysinus)
831
832     !Config  Key  = offline
833     !Config  Desc = Nouvelle eau liquide
834     !Config  Def  = n
835     !Config  Help = Permet de mettre en route la
836     !Config         nouvelle parametrisation de l'eau liquide !
837     offline = .FALSE.
838     CALL getin('offline',offline)
839     IF (offline .AND. adjust) THEN
840        WRITE(lunout,*)  &
841             'WARNING : option offline does not work with adjust=y :'
842        WRITE(lunout,*) 'the files defstoke.nc, fluxstoke.nc ',  &
843             'and fluxstokev.nc will not be created'
844        WRITE(lunout,*)  &
845             'only the file phystoke.nc will still be created '
846     ENDIF
847
848     !Config  Key  = type_trac
849     !Config  Desc = Choix de couplage avec model de chimie INCA ou REPROBUS
850     !Config  Def  = lmdz
851     !Config  Help =
852     !Config         'lmdz' = pas de couplage, pur LMDZ
853     !Config         'inca' = model de chime INCA
854     !Config         'repr' = model de chime REPROBUS
855     type_trac = 'lmdz'
856     CALL getin('type_trac',type_trac)
857
858     !Config  Key  = config_inca
859     !Config  Desc = Choix de configuration de INCA
860     !Config  Def  = none
861     !Config  Help = Choix de configuration de INCA :
862     !Config         'none' = sans INCA
863     !Config         'chem' = INCA avec calcul de chemie
864     !Config         'aero' = INCA avec calcul des aerosols
865     config_inca = 'none'
866     CALL getin('config_inca',config_inca)
867
868     !Config  Key  = ok_dynzon
869     !Config  Desc = sortie des transports zonaux dans la dynamique
870     !Config  Def  = n
871     !Config  Help = Permet de mettre en route le calcul des transports
872     !Config         
873     ok_dynzon = .FALSE.
874     CALL getin('ok_dynzon',ok_dynzon)
875
876     !Config  Key  = ok_dyn_ins
877     !Config  Desc = sorties instantanees dans la dynamique
878     !Config  Def  = n
879     !Config  Help =
880     !Config         
881     ok_dyn_ins = .FALSE.
882     CALL getin('ok_dyn_ins',ok_dyn_ins)
883
884     !Config  Key  = ok_dyn_ave
885     !Config  Desc = sorties moyennes dans la dynamique
886     !Config  Def  = n
887     !Config  Help =
888     !Config         
889     ok_dyn_ave = .FALSE.
890     CALL getin('ok_dyn_ave',ok_dyn_ave)
891
892     !Config  Key  = ok_dyn_xios
893     !Config  Desc = sorties moyennes dans la dynamique
894     !Config  Def  = n
895     !Config  Help =
896     !Config         
897     ok_dyn_xios = .FALSE.
898     CALL getin('ok_dyn_xios',ok_dyn_xios)
899
900     !Config  Key  = use_filtre_fft
901     !Config  Desc = flag to activate FFTs for the filter
902     !Config  Def  = false
903     !Config  Help = enables to use FFts to do the longitudinal polar
904     !Config         filtering around the poles.
905     use_filtre_fft=.FALSE.
906     CALL getin('use_filtre_fft',use_filtre_fft)
907     IF (use_filtre_fft .AND. grossismx /= 1.0) THEN
908        write(lunout,*)'WARNING !!! '
909        write(lunout,*)"A zoom in longitude is not compatible", &
910             " with the FFT filter ", &
911             "---> FFT filter deactivated"
912        use_filtre_fft=.FALSE.
913     ENDIF
914     use_filtre_fft_loc=use_filtre_fft
915
916     !Config  Key  = use_mpi_alloc
917     !Config  Desc = Utilise un buffer MPI en m�moire globale
918     !Config  Def  = false
919     !Config  Help = permet d'activer l'utilisation d'un buffer MPI
920     !Config         en m�moire globale a l'aide de la fonction MPI_ALLOC.
921     !Config         Cela peut am�liorer la bande passante des transferts MPI
922     !Config         d'un facteur 2 
923     use_mpi_alloc=.FALSE.
924     CALL getin('use_mpi_alloc',use_mpi_alloc)
925
926     !Config key = ok_strato
927     !Config  Desc = activation de la version strato
928     !Config  Def  = .FALSE.
929     !Config  Help = active la version stratosphérique de LMDZ de F. Lott
930
931     ok_strato=.FALSE.
932     CALL getin('ok_strato',ok_strato)
933
934     vert_prof_dissip = merge(1, 0, ok_strato .and. llm==39)
935     CALL getin('vert_prof_dissip', vert_prof_dissip)
936     call assert(vert_prof_dissip == 0 .or. vert_prof_dissip ==  1, &
937          "bad value for vert_prof_dissip")
938
939     !Config  Key  = ok_gradsfile
940     !Config  Desc = activation des sorties grads du guidage
941     !Config  Def  = n
942     !Config  Help = active les sorties grads du guidage
943
944     ok_gradsfile = .FALSE.
945     CALL getin('ok_gradsfile',ok_gradsfile)
946
947     !Config  Key  = ok_limit
948     !Config  Desc = creation des fichiers limit dans create_etat0_limit
949     !Config  Def  = y
950     !Config  Help = production du fichier limit.nc requise
951
952     ok_limit = .TRUE.
953     CALL getin('ok_limit',ok_limit)
954
955     !Config  Key  = ok_etat0
956     !Config  Desc = creation des fichiers etat0 dans create_etat0_limit
957     !Config  Def  = y
958     !Config  Help = production des fichiers start.nc, startphy.nc requise
959
960     ok_etat0 = .TRUE.
961     CALL getin('ok_etat0',ok_etat0)
962
963     !Config  Key  = read_orop
964     !Config  Desc = lecture du fichier de params orographiques sous maille
965     !Config  Def  = f
966     !Config  Help = lecture fichier plutot que grid_noro
967
968     read_orop = .FALSE.
969     CALL getin('read_orop',read_orop)
970
971     write(lunout,*)' #########################################'
972     write(lunout,*)' Configuration des parametres de cel0_limit: '
973     write(lunout,*)' planet_type = ', planet_type
974     write(lunout,*)' calend = ', calend
975     write(lunout,*)' dayref = ', dayref
976     write(lunout,*)' anneeref = ', anneeref
977     write(lunout,*)' nday = ', nday
978     write(lunout,*)' day_step = ', day_step
979     write(lunout,*)' iperiod = ', iperiod
980     write(lunout,*)' iconser = ', iconser
981     write(lunout,*)' iecri = ', iecri
982     write(lunout,*)' periodav = ', periodav
983     write(lunout,*)' output_grads_dyn = ', output_grads_dyn
984     write(lunout,*)' dissip_period = ', dissip_period
985     write(lunout,*)' lstardis = ', lstardis
986     write(lunout,*)' nitergdiv = ', nitergdiv
987     write(lunout,*)' nitergrot = ', nitergrot
988     write(lunout,*)' niterh = ', niterh
989     write(lunout,*)' tetagdiv = ', tetagdiv
990     write(lunout,*)' tetagrot = ', tetagrot
991     write(lunout,*)' tetatemp = ', tetatemp
992     write(lunout,*)' coefdis = ', coefdis
993     write(lunout,*)' purmats = ', purmats
994     write(lunout,*)' read_start = ', read_start
995     write(lunout,*)' iflag_phys = ', iflag_phys
996     write(lunout,*)' iphysiq = ', iphysiq
997     write(lunout,*)' clon = ', clon
998     write(lunout,*)' clat = ', clat
999     write(lunout,*)' grossismx = ', grossismx
1000     write(lunout,*)' grossismy = ', grossismy
1001     write(lunout,*)' fxyhypb = ', fxyhypb
1002     write(lunout,*)' dzoomx = ', dzoomx
1003     write(lunout,*)' dzoomy = ', dzoomy
1004     write(lunout,*)' taux = ', taux
1005     write(lunout,*)' tauy = ', tauy
1006     write(lunout,*)' offline = ', offline
1007     write(lunout,*)' type_trac = ', type_trac
1008     write(lunout,*)' config_inca = ', config_inca
1009     write(lunout,*)' ok_dynzon = ', ok_dynzon
1010     write(lunout,*)' ok_dyn_ins = ', ok_dyn_ins
1011     write(lunout,*)' ok_dyn_ave = ', ok_dyn_ave
1012     write(lunout,*)' ok_dyn_xios = ', ok_dyn_xios
1013     write(lunout,*)' use_filtre_fft = ', use_filtre_fft
1014     write(lunout,*)' use_mpi_alloc = ', use_mpi_alloc
1015     write(lunout,*)' ok_strato = ', ok_strato
1016     write(lunout,*)' ok_gradsfile = ', ok_gradsfile
1017     write(lunout,*)' ok_limit = ', ok_limit
1018     write(lunout,*)' ok_etat0 = ', ok_etat0
1019     write(lunout,*)' ok_guide = ', ok_guide
1020     write(lunout,*)' read_orop = ', read_orop
1021  ENDIF test_etatinit
1022
1023END SUBROUTINE conf_gcm
Note: See TracBrowser for help on using the repository browser.