source: LMDZ5/trunk/libf/dyn3dpar/gcm.F @ 2225

Last change on this file since 2225 was 2225, checked in by Ehouarn Millour, 9 years ago

Some cleanup and tidying up in the dynamics/physics interface.
EM

  • 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
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 15.3 KB
RevLine 
[630]1!
[1279]2! $Id: gcm.F 2225 2015-03-11 14:55:23Z emillour $
[630]3!
4c
5c
6      PROGRAM gcm
7
8#ifdef CPP_IOIPSL
9      USE IOIPSL
10#endif
[1146]11
[1825]12
[774]13      USE mod_const_mpi, ONLY: init_const_mpi
[1823]14      USE parallel_lmdz
[1146]15      USE infotrac
16      USE mod_interface_dyn_phys
17      USE mod_hallo
18      USE Bands
[1279]19      USE getparam
[1146]20      USE filtreg_mod
[1403]21      USE control_mod
[1146]22
[1785]23#ifdef INCA
24! Only INCA needs these informations (from the Earth's physics)
25      USE indice_sol_mod
[2225]26      USE mod_phys_lmdz_omp_data, ONLY: klon_omp
[1785]27#endif
28
[1615]29#ifdef CPP_PHYS
[2225]30!      USE mod_grid_phy_lmdz
31!      USE mod_phys_lmdz_para, ONLY : klon_mpi_para_nb
32!      USE dimphy
33!      USE comgeomphy
[1146]34#endif
[630]35      IMPLICIT NONE
36
37c      ......   Version  du 10/01/98    ..........
38
39c             avec  coordonnees  verticales hybrides
40c   avec nouveaux operat. dissipation * ( gradiv2,divgrad2,nxgraro2 )
41
42c=======================================================================
43c
44c   Auteur:  P. Le Van /L. Fairhead/F.Hourdin
45c   -------
46c
47c   Objet:
48c   ------
49c
50c   GCM LMD nouvelle grille
51c
52c=======================================================================
53c
54c  ... Dans inigeom , nouveaux calculs pour les elongations  cu , cv
55c      et possibilite d'appeler une fonction f(y)  a derivee tangente
56c      hyperbolique a la  place de la fonction a derivee sinusoidale.
57c  ... Possibilite de choisir le schema pour l'advection de
58c        q  , en modifiant iadv dans traceur.def  (MAF,10/02) .
59c
60c      Pour Van-Leer + Vapeur d'eau saturee, iadv(1)=4. (F.Codron,10/99)
61c      Pour Van-Leer iadv=10
62c
63c-----------------------------------------------------------------------
64c   Declarations:
65c   -------------
66#include "dimensions.h"
67#include "paramet.h"
68#include "comconst.h"
69#include "comdissnew.h"
70#include "comvert.h"
71#include "comgeom.h"
72#include "logic.h"
73#include "temps.h"
74#include "ener.h"
75#include "description.h"
76#include "serre.h"
[1403]77!#include "com_io_dyn.h"
[630]78#include "iniprint.h"
79#include "tracstoke.h"
[1403]80
81#ifdef INCA
82! Only INCA needs these informations (from the Earth's physics)
[1785]83!#include "indicesol.h"
[1403]84#endif
[630]85
86      REAL zdtvr
87
88c   variables dynamiques
89      REAL vcov(ip1jm,llm),ucov(ip1jmp1,llm) ! vents covariants
90      REAL teta(ip1jmp1,llm)                 ! temperature potentielle
[1146]91      REAL, ALLOCATABLE, DIMENSION(:,:,:) :: q ! champs advectes
[630]92      REAL ps(ip1jmp1)                       ! pression  au sol
[949]93c      REAL p (ip1jmp1,llmp1  )               ! pression aux interfac.des couches
[630]94      REAL masse(ip1jmp1,llm)                ! masse d'air
95      REAL phis(ip1jmp1)                     ! geopotentiel au sol
[949]96c      REAL phi(ip1jmp1,llm)                  ! geopotentiel
97c      REAL w(ip1jmp1,llm)                    ! vitesse verticale
[630]98
99c variables dynamiques intermediaire pour le transport
100
101c   variables pour le fichier histoire
102      REAL dtav      ! intervalle de temps elementaire
103
104      REAL time_0
105
106      LOGICAL lafin
107
108      real time_step, t_wrt, t_ops
109
110
111c+jld variables test conservation energie
[949]112c      REAL ecin(ip1jmp1,llm),ecin0(ip1jmp1,llm)
[630]113C     Tendance de la temp. potentiel d (theta)/ d t due a la
114C     tansformation d'energie cinetique en energie thermique
115C     cree par la dissipation
[949]116c      REAL dhecdt(ip1jmp1,llm)
117c      REAL vcont(ip1jm,llm),ucont(ip1jmp1,llm)
118c      REAL      d_h_vcol, d_qt, d_qw, d_ql, d_ec
119c      CHARACTER (len=15) :: ztit
[630]120c-jld
121
122
[949]123      character (len=80) :: dynhist_file, dynhistave_file
[1279]124      character (len=20) :: modname
125      character (len=80) :: abort_message
126! locales pour gestion du temps
127      INTEGER :: an, mois, jour
128      REAL :: heure
[630]129
130
131c-----------------------------------------------------------------------
132c   Initialisations:
133c   ----------------
134
135      abort_message = 'last timestep reached'
136      modname = 'gcm'
137      descript = 'Run GCM LMDZ'
138      lafin    = .FALSE.
139      dynhist_file = 'dyn_hist'
140      dynhistave_file = 'dyn_hist_ave'
141
[764]142
[630]143
144c----------------------------------------------------------------------
145c  lecture des fichiers gcm.def ou run.def
146c  ---------------------------------------
147c
[2221]148      CALL conf_gcm( 99, .TRUE. )
[2151]149      if (mod(iphysiq, iperiod) /= 0) call abort_gcm("conf_gcm",
150     s "iphysiq must be a multiple of iperiod", 1)
[630]151c
152c
153c------------------------------------
154c   Initialisation partie parallele
155c------------------------------------
[1852]156
[807]157      CALL init_const_mpi
[630]158      call init_parallel
[1279]159      call ini_getparam("out.def")
[774]160      call Read_Distrib
[1615]161
162#ifdef CPP_PHYS
[1146]163        CALL Init_Phys_lmdz(iim,jjp1,llm,mpi_size,distrib_phys)
[2225]164!#endif
165!      CALL set_bands
166!#ifdef CPP_PHYS
[774]167      CALL Init_interface_dyn_phys
[1279]168#endif
[1000]169      CALL barrier
170
[2225]171      CALL set_bands
[630]172      if (mpi_rank==0) call WriteBands
173      call SetDistrib(jj_Nb_Caldyn)
[985]174
175c$OMP PARALLEL
[807]176      call Init_Mod_hallo
[985]177c$OMP END PARALLEL
[807]178
[2225]179!#ifdef CPP_PHYS
180!c$OMP PARALLEL
181!      call InitComgeomphy ! now done in iniphysiq
182!c$OMP END PARALLEL
183!#endif
[960]184
[1825]185!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
186! Initialisation de XIOS
187!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
188
189
[1279]190c-----------------------------------------------------------------------
191c   Choix du calendrier
192c   -------------------
193
194c      calend = 'earth_365d'
195
196#ifdef CPP_IOIPSL
197      if (calend == 'earth_360d') then
198        call ioconf_calendar('360d')
199        write(lunout,*)'CALENDRIER CHOISI: Terrestre a 360 jours/an'
200      else if (calend == 'earth_365d') then
201        call ioconf_calendar('noleap')
202        write(lunout,*)'CALENDRIER CHOISI: Terrestre a 365 jours/an'
203      else if (calend == 'earth_366d') then
204        call ioconf_calendar('gregorian')
205        write(lunout,*)'CALENDRIER CHOISI: Terrestre bissextile'
206      else
207        abort_message = 'Mauvais choix de calendrier'
208        call abort_gcm(modname,abort_message,1)
209      endif
210#endif
211
[1563]212      IF (type_trac == 'inca') THEN
[630]213#ifdef INCA
[1017]214         call init_const_lmdz(
[1146]215     $        nbtr,anneeref,dayref,
[1315]216     $        iphysiq,day_step,nday,
217     $        nbsrf, is_oce,is_sic,
[2180]218     $        is_ter,is_lic, calend)
[1017]219
220         call init_inca_para(
[1077]221     $        iim,jjm+1,llm,klon_glo,mpi_size,
222     $        distrib_phys,COMM_LMDZ)
[630]223#endif
[960]224      END IF
[630]225
226c-----------------------------------------------------------------------
227c   Initialisation des traceurs
228c   ---------------------------
[1146]229c  Choix du nombre de traceurs et du schema pour l'advection
230c  dans fichier traceur.def, par default ou via INCA
231      call infotrac_init
[630]232
[1146]233c Allocation de la tableau q : champs advectes   
234      ALLOCATE(q(ip1jmp1,llm,nqtot))
235
[630]236c-----------------------------------------------------------------------
237c   Lecture de l'etat initial :
238c   ---------------------------
239
240c  lecture du fichier start.nc
241      if (read_start) then
[1146]242      ! we still need to run iniacademic to initialize some
[1403]243      ! constants & fields, if we run the 'newtonian' or 'SW' cases:
244        if (iflag_phys.ne.1) then
[1146]245          CALL iniacademic(vcov,ucov,teta,q,masse,ps,phis,time_0)
246        endif
[1403]247
[1454]248!        if (planet_type.eq."earth") then
[1146]249! Load an Earth-format start file
250         CALL dynetat0("start.nc",vcov,ucov,
[1403]251     &              teta,q,masse,ps,phis, time_0)
[1454]252!        endif ! of if (planet_type.eq."earth")
253
[630]254c       write(73,*) 'ucov',ucov
255c       write(74,*) 'vcov',vcov
256c       write(75,*) 'teta',teta
257c       write(76,*) 'ps',ps
258c       write(77,*) 'q',q
259
[1146]260      endif ! of if (read_start)
[630]261
262c le cas echeant, creation d un etat initial
263      IF (prt_level > 9) WRITE(lunout,*)
[1146]264     .              'GCM: AVANT iniacademic AVANT AVANT AVANT AVANT'
[630]265      if (.not.read_start) then
[1146]266         CALL iniacademic(vcov,ucov,teta,q,masse,ps,phis,time_0)
[630]267      endif
268
269c-----------------------------------------------------------------------
270c   Lecture des parametres de controle pour la simulation :
271c   -------------------------------------------------------
272c  on recalcule eventuellement le pas de temps
273
274      IF(MOD(day_step,iperiod).NE.0) THEN
275        abort_message =
276     .  'Il faut choisir un nb de pas par jour multiple de iperiod'
277        call abort_gcm(modname,abort_message,1)
278      ENDIF
279
280      IF(MOD(day_step,iphysiq).NE.0) THEN
281        abort_message =
282     * 'Il faut choisir un nb de pas par jour multiple de iphysiq'
283        call abort_gcm(modname,abort_message,1)
284      ENDIF
285
[1403]286      zdtvr    = daysec/REAL(day_step)
[630]287        IF(dtvr.NE.zdtvr) THEN
288         WRITE(lunout,*)
289     .    'WARNING!!! changement de pas de temps',dtvr,'>',zdtvr
290        ENDIF
291
292C
293C on remet le calendrier à zero si demande
294c
[1577]295      IF (start_time /= starttime) then
296        WRITE(lunout,*)' GCM: Attention l''heure de depart lue dans le'
297     &,' fichier restart ne correspond pas à celle lue dans le run.def'
298        IF (raz_date == 1) then
299          WRITE(lunout,*)'Je prends l''heure lue dans run.def'
300          start_time = starttime
301        ELSE
[1939]302          call abort_gcm("gcm", "'Je m''arrete'", 1)
[1577]303        ENDIF
304      ENDIF
[1403]305      IF (raz_date == 1) THEN
306        annee_ref = anneeref
307        day_ref = dayref
308        day_ini = dayref
309        itau_dyn = 0
310        itau_phy = 0
311        time_0 = 0.
[630]312        write(lunout,*)
[1403]313     .   'GCM: On reinitialise a la date lue dans gcm.def'
314      ELSE IF (annee_ref .ne. anneeref .or. day_ref .ne. dayref) THEN
315        write(lunout,*)
[1279]316     .  'GCM: Attention les dates initiales lues dans le fichier'
[630]317        write(lunout,*)
318     .  ' restart ne correspondent pas a celles lues dans '
319        write(lunout,*)' gcm.def'
[1403]320        write(lunout,*)' annee_ref=',annee_ref," anneeref=",anneeref
321        write(lunout,*)' day_ref=',day_ref," dayref=",dayref
322        write(lunout,*)' Pas de remise a zero'
323      ENDIF
324c      if (annee_ref .ne. anneeref .or. day_ref .ne. dayref) then
325c        write(lunout,*)
326c     .  'GCM: Attention les dates initiales lues dans le fichier'
327c        write(lunout,*)
328c     .  ' restart ne correspondent pas a celles lues dans '
329c        write(lunout,*)' gcm.def'
330c        write(lunout,*)' annee_ref=',annee_ref," anneeref=",anneeref
331c        write(lunout,*)' day_ref=',day_ref," dayref=",dayref
332c        if (raz_date .ne. 1) then
333c          write(lunout,*)
334c     .    'GCM: On garde les dates du fichier restart'
335c        else
336c          annee_ref = anneeref
337c          day_ref = dayref
338c          day_ini = dayref
339c          itau_dyn = 0
340c          itau_phy = 0
341c          time_0 = 0.
342c          write(lunout,*)
343c     .   'GCM: On reinitialise a la date lue dans gcm.def'
344c        endif
345c      ELSE
346c        raz_date = 0
347c      endif
[1279]348
[1147]349#ifdef CPP_IOIPSL
[1279]350      mois = 1
351      heure = 0.
352      call ymds2ju(annee_ref, mois, day_ref, heure, jD_ref)
353      jH_ref = jD_ref - int(jD_ref)
354      jD_ref = int(jD_ref)
355
356      call ioconf_startdate(INT(jD_ref), jH_ref)
357
358      write(lunout,*)'DEBUG'
359      write(lunout,*)'annee_ref, mois, day_ref, heure, jD_ref'
360      write(lunout,*)annee_ref, mois, day_ref, heure, jD_ref
361      call ju2ymds(jD_ref+jH_ref,an, mois, jour, heure)
362      write(lunout,*)'jD_ref+jH_ref,an, mois, jour, heure'
363      write(lunout,*)jD_ref+jH_ref,an, mois, jour, heure
364#else
365! Ehouarn: we still need to define JD_ref and JH_ref
366! and since we don't know how many days there are in a year
367! we set JD_ref to 0 (this should be improved ...)
368      jD_ref=0
369      jH_ref=0
[1147]370#endif
[630]371
372
[1403]373      if (iflag_phys.eq.1) then
374      ! these initialisations have already been done (via iniacademic)
375      ! if running in SW or Newtonian mode
[630]376c-----------------------------------------------------------------------
377c   Initialisation des constantes dynamiques :
378c   ------------------------------------------
[1403]379        dtvr = zdtvr
380        CALL iniconst
[630]381
382c-----------------------------------------------------------------------
383c   Initialisation de la geometrie :
384c   --------------------------------
[1403]385        CALL inigeom
[630]386
387c-----------------------------------------------------------------------
388c   Initialisation du filtre :
389c   --------------------------
[1403]390        CALL inifilr
391      endif ! of if (iflag_phys.eq.1)
[630]392c
393c-----------------------------------------------------------------------
394c   Initialisation de la dissipation :
395c   ----------------------------------
396
397      CALL inidissip( lstardis, nitergdiv, nitergrot, niterh   ,
[1697]398     *                tetagdiv, tetagrot , tetatemp, vert_prof_dissip)
[630]399
400c-----------------------------------------------------------------------
401c   Initialisation de la physique :
402c   -------------------------------
[2225]403      IF ((iflag_phys==1).or.(iflag_phys>=100)) THEN
[1615]404! Physics:
405#ifdef CPP_PHYS
[2225]406         CALL iniphysiq(iim,jjm,llm,daysec,day_ini,dtphys/nsplit_phys,
407     &                rlatu,rlonv,aire,cu,cv,rad,g,r,cpp,
[1671]408     &                iflag_phys)
[1146]409#endif
[2225]410      ENDIF ! of IF ((iflag_phys==1).or.(iflag_phys>=100))
[807]411
[1146]412
413c-----------------------------------------------------------------------
414c   Initialisation des dimensions d'INCA :
415c   --------------------------------------
[1563]416      IF (type_trac == 'inca') THEN
[1146]417!$OMP PARALLEL
418#ifdef INCA
419         CALL init_inca_dim(klon_omp,llm,iim,jjm,
420     $        rlonu,rlatu,rlonv,rlatv)
[630]421#endif
[1146]422!$OMP END PARALLEL
423      END IF
[630]424
425c-----------------------------------------------------------------------
426c   Initialisation des I/O :
427c   ------------------------
428
429
[2038]430      if (nday>=0) then
431         day_end = day_ini + nday
432      else
433         day_end = day_ini - nday/day_step
434      endif
435
[630]436      WRITE(lunout,300)day_ini,day_end
[1146]437 300  FORMAT('1'/,15x,'run du jour',i7,2x,'au jour',i7//)
[630]438
[1279]439#ifdef CPP_IOIPSL
440      call ju2ymds(jD_ref + day_ini - day_ref, an, mois, jour, heure)
441      write (lunout,301)jour, mois, an
442      call ju2ymds(jD_ref + day_end - day_ref, an, mois, jour, heure)
443      write (lunout,302)jour, mois, an
444 301  FORMAT('1'/,15x,'run du ', i2,'/',i2,'/',i4)
445 302  FORMAT('1'/,15x,'    au ', i2,'/',i2,'/',i4)
446#endif
447
[1454]448!      if (planet_type.eq."earth") then
449! Write an Earth-format restart file
[1279]450        CALL dynredem0_p("restart.nc", day_end, phis)
[1454]451!      endif
[630]452
453      ecripar = .TRUE.
454
[1146]455#ifdef CPP_IOIPSL
[630]456      time_step = zdtvr
[1403]457      IF (mpi_rank==0) then
458        if (ok_dyn_ins) then
459          ! initialize output file for instantaneous outputs
460          ! t_ops = iecri * daysec ! do operations every t_ops
461          t_ops =((1.0*iecri)/day_step) * daysec 
462          t_wrt = daysec ! iecri * daysec ! write output every t_wrt
463          t_wrt = daysec ! iecri * daysec ! write output every t_wrt
464          CALL inithist(day_ref,annee_ref,time_step,
465     &                  t_ops,t_wrt)
466        endif
[630]467
[1403]468        IF (ok_dyn_ave) THEN
469          ! initialize output file for averaged outputs
470          t_ops = iperiod * time_step ! do operations every t_ops
471          t_wrt = periodav * daysec   ! write output every t_wrt
472          CALL initdynav(day_ref,annee_ref,time_step,
473     &                   t_ops,t_wrt)
[1279]474!         CALL initdynav_p(dynhistave_file,day_ref,annee_ref,time_step,
475!     .        t_ops, t_wrt, histaveid)
[1403]476        END IF
477      ENDIF
[630]478      dtav = iperiod*dtvr/daysec
479#endif
[1146]480! #endif of #ifdef CPP_IOIPSL
[630]481
482c  Choix des frequences de stokage pour le offline
483c      istdyn=day_step/4     ! stockage toutes les 6h=1jour/4
484c      istdyn=day_step/12     ! stockage toutes les 2h=1jour/12
485      istdyn=day_step/4     ! stockage toutes les 6h=1jour/12
486      istphy=istdyn/iphysiq     
487
488
489c
490c-----------------------------------------------------------------------
491c   Integration temporelle du modele :
492c   ----------------------------------
493
494c       write(78,*) 'ucov',ucov
495c       write(78,*) 'vcov',vcov
496c       write(78,*) 'teta',teta
497c       write(78,*) 'ps',ps
498c       write(78,*) 'q',q
499
[1520]500c$OMP PARALLEL DEFAULT(SHARED) COPYIN(/temps/,/logici/,/logicl/)
[2221]501      CALL leapfrog_p(ucov,vcov,teta,ps,masse,phis,q,time_0)
[774]502c$OMP END PARALLEL
[630]503
504
505      END
506
Note: See TracBrowser for help on using the repository browser.