source: trunk/LMDZ.COMMON/libf/dyn3d/gcm.F90 @ 1543

Last change on this file since 1543 was 1543, checked in by emillour, 9 years ago

All models: Further adaptations to keep up with changes in LMDZ5 concerning
physics/dynamics separation:

  • dyn3d:
  • adapted gcm.F so that all physics initializations are now done in iniphysiq.
  • dyn3dpar:
  • adapted gcm.F so that all physics initializations are now done in iniphysiq.
  • updated calfis_p.F to follow up with changes.
  • copied over updated "bands.F90" from LMDZ5.
  • dynphy_lonlat:
  • calfis_p.F90, mod_interface_dyn_phys.F90, follow up of changes in phy_common/mod_* routines
  • phy_common:
  • added "geometry_mod.F90" to store information about the grid (replaces phy*/comgeomphy.F90) and give variables friendlier names: rlond => longitude , rlatd => latitude, airephy => cell_area, cuphy => dx , cvphy => dy
  • added "physics_distribution_mod.F90"
  • updated "mod_grid_phy_lmdz.F90", "mod_phys_lmdz_mpi_data.F90", "mod_phys_lmdz_para.F90", "mod_phys_lmdz_mpi_transfert.F90", "mod_grid_phy_lmdz.F90", "mod_phys_lmdz_omp_data.F90", "mod_phys_lmdz_omp_transfert.F90", "write_field_phy.F90" and "ioipsl_getin_p_mod.F90" to LMDZ5 versions.
  • phy[venus/titan/mars/std]:
  • removed "init_phys_lmdz.F90", "comgeomphy.F90"; adapted routines to use geometry_mod (longitude, latitude, cell_area, etc.)

EM

File size: 16.2 KB
Line 
1!
2! $Id: gcm.F 1446 2010-10-22 09:27:25Z emillour $
3!
4!
5!
6PROGRAM gcm
7
8#ifdef CPP_IOIPSL
9  USE IOIPSL
10#else
11  ! if not using IOIPSL, we still need to use (a local version of) getin
12  USE ioipsl_getincom
13#endif
14
15
16#ifdef CPP_XIOS
17  ! ug Pour les sorties XIOS
18  USE wxios
19#endif
20
21  USE filtreg_mod
22  USE infotrac
23  USE control_mod, only: planet_type,nday,day_step,iperiod,iphysiq, &
24                             raz_date,anneeref,starttime,dayref,    &
25                             ok_dyn_ins,ok_dyn_ave,iecri,periodav,  &
26                             less1day,fractday,ndynstep,nsplit_phys
27  USE mod_const_mpi, ONLY: COMM_LMDZ
28  use cpdet_mod, only: ini_cpdet
29  USE temps_mod, ONLY: calend,start_time,annee_ref,day_ref, &
30                itau_dyn,itau_phy,day_ini,jD_ref,jH_ref,day_end
31
32
33!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
34! FH 2008/05/09 On elimine toutes les clefs physiques dans la dynamique
35! A nettoyer. On ne veut qu'une ou deux routines d'interface
36! dynamique -> physique pour l'initialisation
37! Ehouarn: the following are needed with (parallel) physics:
38#ifdef CPP_PHYS
39  USE iniphysiq_mod, ONLY: iniphysiq
40#endif
41
42  USE comconst_mod, ONLY: daysec,dtvr,dtphys,rad,g,r,cpp
43  USE logic_mod, ONLY: read_start,iflag_phys,ok_guide,ecripar
44
45!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
46
47  IMPLICIT NONE
48
49  !      ......   Version  du 10/01/98    ..........
50
51  !             avec  coordonnees  verticales hybrides
52  !   avec nouveaux operat. dissipation * ( gradiv2,divgrad2,nxgraro2 )
53
54  !=======================================================================
55  !
56  !   Auteur:  P. Le Van /L. Fairhead/F.Hourdin
57  !   -------
58  !
59  !   Objet:
60  !   ------
61  !
62  !   GCM LMD nouvelle grille
63  !
64  !=======================================================================
65  !
66  !  ... Dans inigeom , nouveaux calculs pour les elongations  cu , cv
67  !      et possibilite d'appeler une fonction f(y)  a derivee tangente
68  !      hyperbolique a la  place de la fonction a derivee sinusoidale.
69  !  ... Possibilite de choisir le schema pour l'advection de
70  !        q  , en modifiant iadv dans traceur.def  (MAF,10/02) .
71  !
72  !      Pour Van-Leer + Vapeur d'eau saturee, iadv(1)=4. (F.Codron,10/99)
73  !      Pour Van-Leer iadv=10
74  !
75  !-----------------------------------------------------------------------
76  !   Declarations:
77  !   -------------
78
79  include "dimensions.h"
80  include "paramet.h"
81  include "comdissnew.h"
82  include "comgeom.h"
83!!!!!!!!!!!#include "control.h"
84!#include "com_io_dyn.h"
85  include "iniprint.h"
86  include "tracstoke.h"
87#ifdef INCA
88! Only INCA needs these informations (from the Earth's physics)
89!#include "indicesol.h"
90#endif
91
92
93  REAL zdtvr
94
95  !   variables dynamiques
96  REAL vcov(ip1jm,llm),ucov(ip1jmp1,llm) ! vents covariants
97  REAL teta(ip1jmp1,llm)                 ! temperature potentielle
98  REAL, ALLOCATABLE, DIMENSION(:,:,:):: q! champs advectes
99  REAL ps(ip1jmp1)                       ! pression  au sol
100  REAL p (ip1jmp1,llmp1  )               ! pression aux interfac.des couches
101  REAL masse(ip1jmp1,llm)                ! masse d'air
102  REAL phis(ip1jmp1)                     ! geopotentiel au sol
103  REAL phi(ip1jmp1,llm)                  ! geopotentiel
104  REAL w(ip1jmp1,llm)                    ! vitesse verticale
105
106  ! variables dynamiques intermediaire pour le transport
107
108  !   variables pour le fichier histoire
109  REAL dtav      ! intervalle de temps elementaire
110
111  REAL time_0
112
113  LOGICAL lafin
114  INTEGER ij,iq,l,i,j
115
116
117  real time_step, t_wrt, t_ops
118
119  LOGICAL first
120
121  !      LOGICAL call_iniphys
122  !      data call_iniphys/.true./
123
124  !+jld variables test conservation energie
125  !      REAL ecin(ip1jmp1,llm),ecin0(ip1jmp1,llm)
126  !     Tendance de la temp. potentiel d (theta)/ d t due a la
127  !     tansformation d'energie cinetique en energie thermique
128  !     cree par la dissipation
129  REAL dhecdt(ip1jmp1,llm)
130  !      REAL vcont(ip1jm,llm),ucont(ip1jmp1,llm)
131  !      REAL      d_h_vcol, d_qt, d_qw, d_ql, d_ec
132  CHARACTER (len=15) :: ztit
133  !-jld
134
135
136  character (len=80) :: dynhist_file, dynhistave_file
137  character (len=20) :: modname
138  character (len=80) :: abort_message
139  ! locales pour gestion du temps
140  INTEGER :: an, mois, jour
141  REAL :: heure
142  logical use_filtre_fft
143
144!-----------------------------------------------------------------------
145!   Initialisations:
146!   ----------------
147
148  abort_message = 'last timestep reached'
149  modname = 'gcm'
150  lafin    = .FALSE.
151  dynhist_file = 'dyn_hist.nc'
152  dynhistave_file = 'dyn_hist_ave.nc'
153
154
155
156!----------------------------------------------------------------------
157!  lecture des fichiers gcm.def ou run.def
158!  ---------------------------------------
159!
160  CALL conf_gcm( 99, .TRUE. )
161  if (mod(iphysiq, iperiod) /= 0) call abort_gcm("conf_gcm", &
162       "iphysiq must be a multiple of iperiod", 1)
163
164  use_filtre_fft=.FALSE.
165  CALL getin('use_filtre_fft',use_filtre_fft)
166  IF (use_filtre_fft) call abort_gcm('FFT filter is not available in the ' &
167          // 'sequential version of the dynamics.', 1)
168
169!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
170! Initialisation de XIOS
171!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
172
173#ifdef CPP_XIOS
174  CALL wxios_init("LMDZ")
175#endif
176
177
178!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
179! FH 2008/05/02
180! A nettoyer. On ne veut qu'une ou deux routines d'interface
181! dynamique -> physique pour l'initialisation
182!#ifdef CPP_PHYS
183!  CALL init_phys_lmdz(iim,jjp1,llm,1,(/(jjm-1)*iim+2/))
184!!      call initcomgeomphy ! now done in iniphysiq
185!#endif
186!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
187!
188! Initialisations pour Cp(T) Venus
189  call ini_cpdet
190!
191!-----------------------------------------------------------------------
192!   Choix du calendrier
193!   -------------------
194
195!      calend = 'earth_365d'
196
197#ifdef CPP_IOIPSL
198  if (calend == 'earth_360d') then
199    call ioconf_calendar('360d')
200    write(lunout,*)'CALENDRIER CHOISI: Terrestre a 360 jours/an'
201  else if (calend == 'earth_365d') then
202    call ioconf_calendar('noleap')
203    write(lunout,*)'CALENDRIER CHOISI: Terrestre a 365 jours/an'
204  else if (calend == 'earth_366d') then
205    call ioconf_calendar('gregorian')
206    write(lunout,*)'CALENDRIER CHOISI: Terrestre bissextile'
207  else if (calend == 'titan') then
208!        call ioconf_calendar('titan')
209    write(lunout,*)'CALENDRIER CHOISI: Titan'
210    abort_message = 'A FAIRE...'
211    call abort_gcm(modname,abort_message,1)
212  else if (calend == 'venus') then
213!        call ioconf_calendar('venus')
214    write(lunout,*)'CALENDRIER CHOISI: Venus'
215    abort_message = 'A FAIRE...'
216    call abort_gcm(modname,abort_message,1)
217  else
218    abort_message = 'Mauvais choix de calendrier'
219    call abort_gcm(modname,abort_message,1)
220  endif
221#endif
222!-----------------------------------------------------------------------
223  !
224  !
225  !------------------------------------
226  !   Initialisation partie parallele
227  !------------------------------------
228
229  !
230  !
231  !-----------------------------------------------------------------------
232  !   Initialisation des traceurs
233  !   ---------------------------
234  !  Choix du nombre de traceurs et du schema pour l'advection
235  !  dans fichier traceur.def, par default ou via INCA
236  call infotrac_init
237
238  ! Allocation de la tableau q : champs advectes   
239  allocate(q(ip1jmp1,llm,nqtot))
240
241  !-----------------------------------------------------------------------
242  !   Lecture de l'etat initial :
243  !   ---------------------------
244
245  !  lecture du fichier start.nc
246  if (read_start) then
247     ! we still need to run iniacademic to initialize some
248     ! constants & fields, if we run the 'newtonian' or 'SW' cases:
249     if (iflag_phys.ne.1) then
250        CALL iniacademic(vcov,ucov,teta,q,masse,ps,phis,time_0)
251     endif
252
253     CALL dynetat0("start.nc",vcov,ucov, &
254                    teta,q,masse,ps,phis, time_0)
255       
256     ! Load relaxation fields (simple nudging). AS 09/2013
257     ! ---------------------------------------------------
258     if (planet_type.eq."generic") then
259       if (ok_guide) then
260         CALL relaxetat0("relax.nc")
261       endif
262     endif
263 
264     !       write(73,*) 'ucov',ucov
265     !       write(74,*) 'vcov',vcov
266     !       write(75,*) 'teta',teta
267     !       write(76,*) 'ps',ps
268     !       write(77,*) 'q',q
269
270  endif ! of if (read_start)
271
272
273  ! le cas echeant, creation d un etat initial
274  IF (prt_level > 9) WRITE(lunout,*) &
275       'GCM: AVANT iniacademic AVANT AVANT AVANT AVANT'
276  if (.not.read_start) then
277     CALL iniacademic(vcov,ucov,teta,q,masse,ps,phis,time_0)
278  endif
279
280
281  !-----------------------------------------------------------------------
282  !   Lecture des parametres de controle pour la simulation :
283  !   -------------------------------------------------------
284  !  on recalcule eventuellement le pas de temps
285
286  IF(MOD(day_step,iperiod).NE.0) THEN
287     abort_message = &
288       'Il faut choisir un nb de pas par jour multiple de iperiod'
289     call abort_gcm(modname,abort_message,1)
290  ENDIF
291
292  IF(MOD(day_step,iphysiq).NE.0) THEN
293     abort_message = &
294       'Il faut choisir un nb de pas par jour multiple de iphysiq'
295     call abort_gcm(modname,abort_message,1)
296  ENDIF
297
298  zdtvr    = daysec/REAL(day_step)
299  IF(dtvr.NE.zdtvr) THEN
300     WRITE(lunout,*) &
301          'WARNING!!! changement de pas de temps',dtvr,'>',zdtvr
302  ENDIF
303
304  !
305  ! on remet le calendrier à zero si demande
306  !
307  IF (start_time /= starttime) then
308     WRITE(lunout,*)' GCM: Attention l''heure de depart lue dans le' &
309     ,' fichier restart ne correspond pas à celle lue dans le run.def'
310     IF (raz_date == 1) then
311        WRITE(lunout,*)'Je prends l''heure lue dans run.def'
312        start_time = starttime
313     ELSE
314        call abort_gcm("gcm", "'Je m''arrete'", 1)
315     ENDIF
316  ENDIF
317  IF (raz_date == 1) THEN
318     annee_ref = anneeref
319     day_ref = dayref
320     day_ini = dayref
321     itau_dyn = 0
322     itau_phy = 0
323     time_0 = 0.
324     write(lunout,*) &
325         'GCM: On reinitialise a la date lue dans gcm.def'
326  ELSE IF (annee_ref .ne. anneeref .or. day_ref .ne. dayref) THEN
327     write(lunout,*) &
328        'GCM: Attention les dates initiales lues dans le fichier'
329     write(lunout,*) &
330        ' restart ne correspondent pas a celles lues dans '
331     write(lunout,*)' gcm.def'
332     write(lunout,*)' annee_ref=',annee_ref," anneeref=",anneeref
333     write(lunout,*)' day_ref=',day_ref," dayref=",dayref
334     write(lunout,*)' Pas de remise a zero'
335  ENDIF
336
337!      if (annee_ref .ne. anneeref .or. day_ref .ne. dayref) then
338!        write(lunout,*)
339!     .  'GCM: Attention les dates initiales lues dans le fichier'
340!        write(lunout,*)
341!     .  ' restart ne correspondent pas a celles lues dans '
342!        write(lunout,*)' gcm.def'
343!        write(lunout,*)' annee_ref=',annee_ref," anneeref=",anneeref
344!        write(lunout,*)' day_ref=',day_ref," dayref=",dayref
345!        if (raz_date .ne. 1) then
346!          write(lunout,*)
347!     .    'GCM: On garde les dates du fichier restart'
348!        else
349!          annee_ref = anneeref
350!          day_ref = dayref
351!          day_ini = dayref
352!          itau_dyn = 0
353!          itau_phy = 0
354!          time_0 = 0.
355!          write(lunout,*)
356!     .   'GCM: On reinitialise a la date lue dans gcm.def'
357!        endif
358!      ELSE
359!        raz_date = 0
360!      endif
361
362#ifdef CPP_IOIPSL
363  mois = 1
364  heure = 0.
365! Ce n'est defini pour l'instant que pour la Terre...
366  if (planet_type.eq.'earth') then
367    call ymds2ju(annee_ref, mois, day_ref, heure, jD_ref)
368    jH_ref = jD_ref - int(jD_ref)
369    jD_ref = int(jD_ref)
370
371    call ioconf_startdate(INT(jD_ref), jH_ref)
372
373    write(lunout,*)'DEBUG'
374    write(lunout,*)'annee_ref, mois, day_ref, heure, jD_ref'
375    write(lunout,*)annee_ref, mois, day_ref, heure, jD_ref
376    call ju2ymds(jD_ref+jH_ref,an, mois, jour, heure)
377    write(lunout,*)'jD_ref+jH_ref,an, mois, jour, heure'
378    write(lunout,*)jD_ref+jH_ref,an, mois, jour, heure
379  else
380! A voir pour Titan et Venus
381    jD_ref=0
382    jH_ref=0
383    write(lunout,*)'A VOIR POUR VENUS ET TITAN: jD_ref, jH_ref'
384    write(lunout,*)jD_ref,jH_ref
385  endif ! planet_type
386#else
387  ! Ehouarn: we still need to define JD_ref and JH_ref
388  ! and since we don't know how many days there are in a year
389  ! we set JD_ref to 0 (this should be improved ...)
390  jD_ref=0
391  jH_ref=0
392#endif
393
394  if (iflag_phys.eq.1) then
395     ! these initialisations have already been done (via iniacademic)
396     ! if running in SW or Newtonian mode
397     !-----------------------------------------------------------------------
398     !   Initialisation des constantes dynamiques :
399     !   ------------------------------------------
400     dtvr = zdtvr
401     CALL iniconst
402
403     !-----------------------------------------------------------------------
404     !   Initialisation de la geometrie :
405     !   --------------------------------
406     CALL inigeom
407
408     !-----------------------------------------------------------------------
409     !   Initialisation du filtre :
410     !   --------------------------
411     CALL inifilr
412  endif ! of if (iflag_phys.eq.1)
413  !
414  !-----------------------------------------------------------------------
415  !   Initialisation de la dissipation :
416  !   ----------------------------------
417
418  CALL inidissip( lstardis, nitergdiv, nitergrot, niterh   , &
419                  tetagdiv, tetagrot , tetatemp, vert_prof_dissip)
420
421  !-----------------------------------------------------------------------
422  !   Initialisation de la physique :
423  !   -------------------------------
424
425  IF ((iflag_phys==1).or.(iflag_phys>=100)) THEN
426     ! Physics:
427#ifdef CPP_PHYS
428     CALL iniphysiq(iim,jjm,llm, &
429          (jjm-1)*iim+2,comm_lmdz, &
430          daysec,day_ini,dtphys/nsplit_phys, &
431          rlatu,rlatv,rlonu,rlonv,aire,cu,cv,rad,g,r,cpp, &
432          iflag_phys)
433#endif
434  ENDIF ! of IF ((iflag_phys==1).or.(iflag_phys>=100))
435
436  !-----------------------------------------------------------------------
437  !   Initialisation des I/O :
438  !   ------------------------
439
440  if (nday>=0) then ! standard case
441     day_end=day_ini+nday
442  else ! special case when nday <0, run -nday dynamical steps
443     day_end=day_ini-nday/day_step
444  endif
445  if (less1day) then
446     day_end=day_ini+floor(time_0+fractday)
447  endif
448  if (ndynstep.gt.0) then
449     day_end=day_ini+floor(time_0+float(ndynstep)/float(day_step))
450  endif
451     
452  WRITE(lunout,'(a,i7,a,i7)') &
453               "run from day ",day_ini,"  to day",day_end
454
455#ifdef CPP_IOIPSL
456  ! Ce n'est defini pour l'instant que pour la Terre...
457  if (planet_type.eq.'earth') then
458    call ju2ymds(jD_ref + day_ini - day_ref, an, mois, jour, heure)
459    write (lunout,301)jour, mois, an
460    call ju2ymds(jD_ref + day_end - day_ref, an, mois, jour, heure)
461    write (lunout,302)jour, mois, an
462  else
463  ! A voir pour Titan et Venus
464    write(lunout,*)'A VOIR POUR VENUS/TITAN: separation en annees...'
465  endif ! planet_type
466301  FORMAT('1'/,15x,'run du ', i2,'/',i2,'/',i4)
467302  FORMAT('1'/,15x,'    au ', i2,'/',i2,'/',i4)
468#endif
469
470  if (planet_type=="mars") then
471    ! For Mars we transmit day_ini
472    CALL dynredem0("restart.nc", day_ini, phis)
473  else
474    CALL dynredem0("restart.nc", day_end, phis)
475  endif
476  ecripar = .TRUE.
477
478#ifdef CPP_IOIPSL
479  time_step = zdtvr
480  if (ok_dyn_ins) then
481    ! initialize output file for instantaneous outputs
482    ! t_ops = iecri * daysec ! do operations every t_ops
483    t_ops =((1.0*iecri)/day_step) * daysec 
484    t_wrt = daysec ! iecri * daysec ! write output every t_wrt
485    CALL inithist(day_ref,annee_ref,time_step, &
486                   t_ops,t_wrt)
487  endif
488
489  IF (ok_dyn_ave) THEN
490    ! initialize output file for averaged outputs
491    t_ops = iperiod * time_step ! do operations every t_ops
492    t_wrt = periodav * daysec   ! write output every t_wrt
493    CALL initdynav(day_ref,annee_ref,time_step, &
494            t_ops,t_wrt)
495  END IF
496  dtav = iperiod*dtvr/daysec
497#endif
498! #endif of #ifdef CPP_IOIPSL
499
500  !  Choix des frequences de stokage pour le offline
501  !      istdyn=day_step/4     ! stockage toutes les 6h=1jour/4
502  !      istdyn=day_step/12     ! stockage toutes les 2h=1jour/12
503  istdyn=day_step/4     ! stockage toutes les 6h=1jour/12
504  istphy=istdyn/iphysiq     
505
506
507  !
508  !-----------------------------------------------------------------------
509  !   Integration temporelle du modele :
510  !   ----------------------------------
511
512  !       write(78,*) 'ucov',ucov
513  !       write(78,*) 'vcov',vcov
514  !       write(78,*) 'teta',teta
515  !       write(78,*) 'ps',ps
516  !       write(78,*) 'q',q
517
518
519  CALL leapfrog(ucov,vcov,teta,ps,masse,phis,q,time_0)
520
521END PROGRAM gcm
522
Note: See TracBrowser for help on using the repository browser.