Ignore:
Timestamp:
Dec 10, 2009, 10:02:56 AM (15 years ago)
Author:
Laurent Fairhead
Message:

Merged LMDZ4-dev branch changes r1241:1278 into the trunk
Running trunk and LMDZ4-dev in LMDZOR configuration on local
machine (sequential) and SX8 (4-proc) yields identical results
(restart and restartphy are identical binarily)
Log history from r1241 to r1278 is available by switching to
source:LMDZ4/branches/LMDZ4-dev-20091210

Location:
LMDZ4/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • LMDZ4/trunk

  • LMDZ4/trunk/libf/dyn3dpar/conf_gcm.F

    r1146 r1279  
    11!
    2 ! $Header$
     2! $Id$
    33!
    44c
     
    4444!#include "clesphys.h"
    4545#include "iniprint.h"
     46#include "temps.h"
     47#include "comconst.h"
    4648
    4749! FH 2008/05/09 On elimine toutes les clefs physiques dans la dynamique
     
    121123      CALL getin('planet_type',planet_type)
    122124
     125!Config  Key  = calend
     126!Config  Desc = type de calendrier utilise
     127!Config  Def  = earth_360d
     128!Config  Help = valeur possible: earth_360d, earth_365d, earth_366d
     129!Config         
     130      calend = 'earth_360d'
     131      CALL getin('calend', calend)
     132
    123133!Config  Key  = dayref
    124134!Config  Desc = Jour de l'etat initial
     
    278288       CALL getin('tetatemp',tetatemp )
    279289
     290! Parametres controlant la variation sur la verticale des constantes de
     291! dissipation.
     292! Pour le moment actifs uniquement dans la version a 39 niveaux
     293! avec ok_strato=y
     294
     295       dissip_factz=4.
     296       dissip_deltaz=10.
     297       dissip_zref=30.
     298       CALL getin('dissip_factz',dissip_factz )
     299       CALL getin('dissip_deltaz',dissip_deltaz )
     300       CALL getin('dissip_zref',dissip_zref )
     301
     302       iflag_top_bound=1
     303       tau_top_bound=1.e-5
     304       CALL getin('iflag_top_bound',iflag_top_bound)
     305       CALL getin('tau_top_bound',tau_top_bound)
     306
     307!
    280308!Config  Key  = coefdis
    281309!Config  Desc = coefficient pour gamdissip
     
    569597      write(lunout,*)' Configuration des parametres du gcm: '
    570598      write(lunout,*)' planet_type = ', planet_type
     599      write(lunout,*)' calend = ', calend
    571600      write(lunout,*)' dayref = ', dayref
    572601      write(lunout,*)' anneeref = ', anneeref
     
    590619      write(lunout,*)' read_start = ', read_start
    591620      write(lunout,*)' iflag_phys = ', iflag_phys
     621      write(lunout,*)' iphysiq = ', iphysiq
    592622      write(lunout,*)' clonn = ', clonn
    593623      write(lunout,*)' clatt = ', clatt
     
    776806!Config  Desc = activation de la version strato
    777807!Config  Def  = .FALSE.
    778 !Config  Help = active la version stratosph�rique de LMDZ de F. Lott
     808!Config  Help = active la version stratosphérique de LMDZ de F. Lott
    779809
    780810      ok_strato=.FALSE.
     
    792822      write(lunout,*)' Configuration des parametres du gcm: '
    793823      write(lunout,*)' planet_type = ', planet_type
     824      write(lunout,*)' calend = ', calend
    794825      write(lunout,*)' dayref = ', dayref
    795826      write(lunout,*)' anneeref = ', anneeref
     
    813844      write(lunout,*)' read_start = ', read_start
    814845      write(lunout,*)' iflag_phys = ', iflag_phys
    815       write(lunout,*)' clon = ', clon
     846      write(lunout,*)' iphysiq = ', iphysiq
     847      write(lunout,*)' clon = ', clon
    816848      write(lunout,*)' clat = ', clat
    817849      write(lunout,*)' grossismx = ', grossismx
Note: See TracChangeset for help on using the changeset viewer.