source: LMDZ5/trunk/libf/dyn3d/gcm.F @ 1604

Last change on this file since 1604 was 1592, checked in by Ehouarn Millour, 13 years ago

Minor cleanup: remove unused variables nbetat, nbetatmoy and nbetatdem.
EM

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 16.5 KB
Line 
1!
2! $Id: gcm.F 1592 2011-11-26 06:57:55Z lguez $
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
91c   variables dynamiques
92      REAL vcov(ip1jm,llm),ucov(ip1jmp1,llm) ! vents covariants
93      REAL teta(ip1jmp1,llm)                 ! temperature potentielle
94      REAL, ALLOCATABLE, DIMENSION(:,:,:):: q! champs advectes
95      REAL ps(ip1jmp1)                       ! pression  au sol
96      REAL p (ip1jmp1,llmp1  )               ! pression aux interfac.des couches
97      REAL pks(ip1jmp1)                      ! exner au  sol
98      REAL pk(ip1jmp1,llm)                   ! exner au milieu des couches
99      REAL pkf(ip1jmp1,llm)                  ! exner filt.au milieu des couches
100      REAL masse(ip1jmp1,llm)                ! masse d'air
101      REAL phis(ip1jmp1)                     ! geopotentiel au sol
102      REAL phi(ip1jmp1,llm)                  ! geopotentiel
103      REAL w(ip1jmp1,llm)                    ! vitesse verticale
104
105c variables dynamiques intermediaire pour le transport
106
107c   variables pour le fichier histoire
108      REAL dtav      ! intervalle de temps elementaire
109
110      REAL time_0
111
112      LOGICAL lafin
113      INTEGER ij,iq,l,i,j
114
115
116      real time_step, t_wrt, t_ops
117
118      LOGICAL first
119
120      LOGICAL call_iniphys
121      data call_iniphys/.true./
122
123      REAL alpha(ip1jmp1,llm),beta(ip1jmp1,llm)
124c+jld variables test conservation energie
125c      REAL ecin(ip1jmp1,llm),ecin0(ip1jmp1,llm)
126C     Tendance de la temp. potentiel d (theta)/ d t due a la
127C     tansformation d'energie cinetique en energie thermique
128C     cree par la dissipation
129      REAL dhecdt(ip1jmp1,llm)
130c      REAL vcont(ip1jm,llm),ucont(ip1jmp1,llm)
131c      REAL      d_h_vcol, d_qt, d_qw, d_ql, d_ec
132      CHARACTER (len=15) :: ztit
133c-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
143
144c-----------------------------------------------------------------------
145c    variables pour l'initialisation de la physique :
146c    ------------------------------------------------
147      INTEGER ngridmx
148      PARAMETER( ngridmx = 2+(jjm-1)*iim - 1/jjm   )
149      REAL zcufi(ngridmx),zcvfi(ngridmx)
150      REAL latfi(ngridmx),lonfi(ngridmx)
151      REAL airefi(ngridmx)
152      SAVE latfi, lonfi, airefi
153
154c-----------------------------------------------------------------------
155c   Initialisations:
156c   ----------------
157
158      abort_message = 'last timestep reached'
159      modname = 'gcm'
160      descript = 'Run GCM LMDZ'
161      lafin    = .FALSE.
162      dynhist_file = 'dyn_hist.nc'
163      dynhistave_file = 'dyn_hist_ave.nc'
164
165
166
167c----------------------------------------------------------------------
168c  lecture des fichiers gcm.def ou run.def
169c  ---------------------------------------
170c
171! Ehouarn: dump possibility of using defrun
172!#ifdef CPP_IOIPSL
173      CALL conf_gcm( 99, .TRUE. , clesphy0 )
174!#else
175!      CALL defrun( 99, .TRUE. , clesphy0 )
176!#endif
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! Ehouarn : temporarily (?) keep this only for Earth
183      if (planet_type.eq."earth") then
184#ifdef CPP_EARTH
185      CALL Init_Phys_lmdz(iim,jjp1,llm,1,(/(jjm-1)*iim+2/))
186      call InitComgeomphy
187#endif
188      endif
189!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
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
211c-----------------------------------------------------------------------
212
213      IF (type_trac == 'inca') THEN
214#ifdef INCA
215      call init_const_lmdz(nbtr,anneeref,dayref,iphysiq,day_step,nday,
216     $        nbsrf, is_oce,is_sic,is_ter,is_lic)
217      call init_inca_para(iim,jjm+1,klon,1,klon_mpi_para_nb,0)
218#endif
219      END IF
220c
221c
222c------------------------------------
223c   Initialisation partie parallele
224c------------------------------------
225
226c
227c
228c-----------------------------------------------------------------------
229c   Initialisation des traceurs
230c   ---------------------------
231c  Choix du nombre de traceurs et du schema pour l'advection
232c  dans fichier traceur.def, par default ou via INCA
233      call infotrac_init
234
235c Allocation de la tableau q : champs advectes   
236      allocate(q(ip1jmp1,llm,nqtot))
237
238c-----------------------------------------------------------------------
239c   Lecture de l'etat initial :
240c   ---------------------------
241
242c  lecture du fichier start.nc
243      if (read_start) then
244      ! we still need to run iniacademic to initialize some
245      ! constants & fields, if we run the 'newtonian' or 'SW' cases:
246        if (iflag_phys.ne.1) then
247          CALL iniacademic(vcov,ucov,teta,q,masse,ps,phis,time_0)
248        endif
249
250!        if (planet_type.eq."earth") then
251! Load an Earth-format start file
252         CALL dynetat0("start.nc",vcov,ucov,
253     &              teta,q,masse,ps,phis, time_0)
254!        endif ! of if (planet_type.eq."earth")
255       
256c       write(73,*) 'ucov',ucov
257c       write(74,*) 'vcov',vcov
258c       write(75,*) 'teta',teta
259c       write(76,*) 'ps',ps
260c       write(77,*) 'q',q
261
262      endif ! of if (read_start)
263
264      IF (type_trac == 'inca') THEN
265#ifdef INCA
266         call init_inca_dim(klon,llm,iim,jjm,
267     $        rlonu,rlatu,rlonv,rlatv)
268#endif
269      END IF
270
271
272c le cas echeant, creation d un etat initial
273      IF (prt_level > 9) WRITE(lunout,*)
274     .              'GCM: AVANT iniacademic AVANT AVANT AVANT AVANT'
275      if (.not.read_start) then
276         CALL iniacademic(vcov,ucov,teta,q,masse,ps,phis,time_0)
277      endif
278
279
280c-----------------------------------------------------------------------
281c   Lecture des parametres de controle pour la simulation :
282c   -------------------------------------------------------
283c  on recalcule eventuellement le pas de temps
284
285      IF(MOD(day_step,iperiod).NE.0) THEN
286        abort_message =
287     .  'Il faut choisir un nb de pas par jour multiple de iperiod'
288        call abort_gcm(modname,abort_message,1)
289      ENDIF
290
291      IF(MOD(day_step,iphysiq).NE.0) THEN
292        abort_message =
293     * 'Il faut choisir un nb de pas par jour multiple de iphysiq'
294        call abort_gcm(modname,abort_message,1)
295      ENDIF
296
297      zdtvr    = daysec/REAL(day_step)
298        IF(dtvr.NE.zdtvr) THEN
299         WRITE(lunout,*)
300     .    'WARNING!!! changement de pas de temps',dtvr,'>',zdtvr
301        ENDIF
302
303C
304C on remet le calendrier à zero si demande
305c
306      IF (start_time /= starttime) then
307        WRITE(lunout,*)' GCM: Attention l''heure de depart lue dans le'
308     &,' fichier restart ne correspond pas à celle lue dans le run.def'
309        IF (raz_date == 1) then
310          WRITE(lunout,*)'Je prends l''heure lue dans run.def'
311          start_time = starttime
312        ELSE
313          WRITE(lunout,*)'Je m''arrete'
314          CALL abort
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
337c      if (annee_ref .ne. anneeref .or. day_ref .ne. dayref) then
338c        write(lunout,*)
339c     .  'GCM: Attention les dates initiales lues dans le fichier'
340c        write(lunout,*)
341c     .  ' restart ne correspondent pas a celles lues dans '
342c        write(lunout,*)' gcm.def'
343c        write(lunout,*)' annee_ref=',annee_ref," anneeref=",anneeref
344c        write(lunout,*)' day_ref=',day_ref," dayref=",dayref
345c        if (raz_date .ne. 1) then
346c          write(lunout,*)
347c     .    'GCM: On garde les dates du fichier restart'
348c        else
349c          annee_ref = anneeref
350c          day_ref = dayref
351c          day_ini = dayref
352c          itau_dyn = 0
353c          itau_phy = 0
354c          time_0 = 0.
355c          write(lunout,*)
356c     .   'GCM: On reinitialise a la date lue dans gcm.def'
357c        endif
358c      ELSE
359c        raz_date = 0
360c      endif
361
362#ifdef CPP_IOIPSL
363      mois = 1
364      heure = 0.
365      call ymds2ju(annee_ref, mois, day_ref, heure, jD_ref)
366      jH_ref = jD_ref - int(jD_ref)
367      jD_ref = int(jD_ref)
368
369      call ioconf_startdate(INT(jD_ref), jH_ref)
370
371      write(lunout,*)'DEBUG'
372      write(lunout,*)'annee_ref, mois, day_ref, heure, jD_ref'
373      write(lunout,*)annee_ref, mois, day_ref, heure, jD_ref
374      call ju2ymds(jD_ref+jH_ref,an, mois, jour, heure)
375      write(lunout,*)'jD_ref+jH_ref,an, mois, jour, heure'
376      write(lunout,*)jD_ref+jH_ref,an, mois, jour, heure
377#else
378! Ehouarn: we still need to define JD_ref and JH_ref
379! and since we don't know how many days there are in a year
380! we set JD_ref to 0 (this should be improved ...)
381      jD_ref=0
382      jH_ref=0
383#endif
384
385
386      if (iflag_phys.eq.1) then
387      ! these initialisations have already been done (via iniacademic)
388      ! if running in SW or Newtonian mode
389c-----------------------------------------------------------------------
390c   Initialisation des constantes dynamiques :
391c   ------------------------------------------
392        dtvr = zdtvr
393        CALL iniconst
394
395c-----------------------------------------------------------------------
396c   Initialisation de la geometrie :
397c   --------------------------------
398        CALL inigeom
399
400c-----------------------------------------------------------------------
401c   Initialisation du filtre :
402c   --------------------------
403        CALL inifilr
404      endif ! of if (iflag_phys.eq.1)
405c
406c-----------------------------------------------------------------------
407c   Initialisation de la dissipation :
408c   ----------------------------------
409
410      CALL inidissip( lstardis, nitergdiv, nitergrot, niterh   ,
411     *                tetagdiv, tetagrot , tetatemp              )
412
413c-----------------------------------------------------------------------
414c   Initialisation de la physique :
415c   -------------------------------
416
417      IF (call_iniphys.and.(iflag_phys==1.or.iflag_phys>=100)) THEN
418         latfi(1)=rlatu(1)
419         lonfi(1)=0.
420         zcufi(1) = cu(1)
421         zcvfi(1) = cv(1)
422         DO j=2,jjm
423            DO i=1,iim
424               latfi((j-2)*iim+1+i)= rlatu(j)
425               lonfi((j-2)*iim+1+i)= rlonv(i)
426               zcufi((j-2)*iim+1+i) = cu((j-1)*iip1+i)
427               zcvfi((j-2)*iim+1+i) = cv((j-1)*iip1+i)
428            ENDDO
429         ENDDO
430         latfi(ngridmx)= rlatu(jjp1)
431         lonfi(ngridmx)= 0.
432         zcufi(ngridmx) = cu(ip1jm+1)
433         zcvfi(ngridmx) = cv(ip1jm-iim)
434         CALL gr_dyn_fi(1,iip1,jjp1,ngridmx,aire,airefi)
435         WRITE(lunout,*)
436     .       'GCM: WARNING!!! vitesse verticale nulle dans la physique'
437! Earth:
438         if (planet_type.eq."earth") then
439#ifdef CPP_EARTH
440         CALL iniphysiq(ngridmx,llm,daysec,day_ini,dtphys/nsplit_phys ,
441     ,                latfi,lonfi,airefi,zcufi,zcvfi,rad,g,r,cpp     )
442#endif
443         endif ! of if (planet_type.eq."earth")
444         call_iniphys=.false.
445      ENDIF ! of IF (call_iniphys.and.(iflag_phys.eq.1))
446!#endif
447
448c  numero de stockage pour les fichiers de redemarrage:
449
450c-----------------------------------------------------------------------
451c   Initialisation des I/O :
452c   ------------------------
453
454
455      day_end = day_ini + nday
456      WRITE(lunout,300)day_ini,day_end
457 300  FORMAT('1'/,15x,'run du jour',i7,2x,'au jour',i7//)
458
459#ifdef CPP_IOIPSL
460      call ju2ymds(jD_ref + day_ini - day_ref, an, mois, jour, heure)
461      write (lunout,301)jour, mois, an
462      call ju2ymds(jD_ref + day_end - day_ref, an, mois, jour, heure)
463      write (lunout,302)jour, mois, an
464 301  FORMAT('1'/,15x,'run du ', i2,'/',i2,'/',i4)
465 302  FORMAT('1'/,15x,'    au ', i2,'/',i2,'/',i4)
466#endif
467
468#ifdef CPP_EARTH
469! Create start file (startphy.nc) and boundary conditions (limit.nc)
470! for the Earth verstion
471       if (iflag_phys>=100) then
472          call iniaqua(ngridmx,latfi,lonfi,iflag_phys)
473       endif
474#endif
475
476!      if (planet_type.eq."earth") then
477! Write an Earth-format restart file
478
479        CALL dynredem0("restart.nc", day_end, phis)
480!      endif
481
482      ecripar = .TRUE.
483
484#ifdef CPP_IOIPSL
485      time_step = zdtvr
486      if (ok_dyn_ins) then
487        ! initialize output file for instantaneous outputs
488        ! t_ops = iecri * daysec ! do operations every t_ops
489        t_ops =((1.0*iecri)/day_step) * daysec 
490        t_wrt = daysec ! iecri * daysec ! write output every t_wrt
491        CALL inithist(day_ref,annee_ref,time_step,
492     &              t_ops,t_wrt)
493      endif
494
495      IF (ok_dyn_ave) THEN
496        ! initialize output file for averaged outputs
497        t_ops = iperiod * time_step ! do operations every t_ops
498        t_wrt = periodav * daysec   ! write output every t_wrt
499        CALL initdynav(day_ref,annee_ref,time_step,
500     &       t_ops,t_wrt)
501      END IF
502      dtav = iperiod*dtvr/daysec
503#endif
504! #endif of #ifdef CPP_IOIPSL
505
506c  Choix des frequences de stokage pour le offline
507c      istdyn=day_step/4     ! stockage toutes les 6h=1jour/4
508c      istdyn=day_step/12     ! stockage toutes les 2h=1jour/12
509      istdyn=day_step/4     ! stockage toutes les 6h=1jour/12
510      istphy=istdyn/iphysiq     
511
512
513c
514c-----------------------------------------------------------------------
515c   Integration temporelle du modele :
516c   ----------------------------------
517
518c       write(78,*) 'ucov',ucov
519c       write(78,*) 'vcov',vcov
520c       write(78,*) 'teta',teta
521c       write(78,*) 'ps',ps
522c       write(78,*) 'q',q
523
524
525      CALL leapfrog(ucov,vcov,teta,ps,masse,phis,q,clesphy0,
526     .              time_0)
527
528      END
529
Note: See TracBrowser for help on using the repository browser.