source: trunk/libf/dyn3d/gcm.F @ 5

Last change on this file since 5 was 5, checked in by slebonnois, 14 years ago
  • Ajout des fichiers .def Venus et Titan (tels qu'ils sont utilisés

actuellement) dans les deftanks.

  • Ajout d'une doc sur Cp(T).
  • Modifications dans dyn3d concernant Cp(T), cf le log (v5) dans chantiers
  • Premières modifs de l'appel à la physique dans dyn3d/calfis, cf log (v5)
  • Elimination des cpdet.* dans phytitan et phyvenus (remplacés par cpdet.F

dans dyn3d).

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