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/dyn3d/conf_gcm.F

    r1146 r1279  
    11!
    2 ! $Header$
     2! $Id$
    33!
    44c
     
    3838#include "serre.h"
    3939#include "comdissnew.h"
     40#include "temps.h"
     41#include "comconst.h"
    4042
    4143! FH 2008/05/09 On elimine toutes les clefs physiques dans la dynamique
     
    111113      CALL getin('planet_type',planet_type)
    112114
     115!Config  Key  = calend
     116!Config  Desc = type de calendrier utilise
     117!Config  Def  = earth_360d
     118!Config  Help = valeur possible: earth_360d, earth_365d, earth_366d
     119!Config         
     120      calend = 'earth_360d'
     121      CALL getin('calend', calend)
     122
    113123!Config  Key  = dayref
    114124!Config  Desc = Jour de l'etat initial
     
    267277       tetatemp  = 7200.
    268278       CALL getin('tetatemp',tetatemp )
     279
     280! Parametres controlant la variation sur la verticale des constantes de
     281! dissipation.
     282! Pour le moment actifs uniquement dans la version a 39 niveaux
     283! avec ok_strato=y
     284
     285       dissip_factz=4.
     286       dissip_deltaz=10.
     287       dissip_zref=30.
     288       CALL getin('dissip_factz',dissip_factz )
     289       CALL getin('dissip_deltaz',dissip_deltaz )
     290       CALL getin('dissip_zref',dissip_zref )
     291
     292       iflag_top_bound=1
     293       tau_top_bound=1.e-5
     294       CALL getin('iflag_top_bound',iflag_top_bound)
     295       CALL getin('tau_top_bound',tau_top_bound)
    269296
    270297!Config  Key  = coefdis
     
    558585      write(lunout,*)' Configuration des parametres du gcm: '
    559586      write(lunout,*)' planet_type = ', planet_type
     587      write(lunout,*)' calend = ', calend
    560588      write(lunout,*)' dayref = ', dayref
    561589      write(lunout,*)' anneeref = ', anneeref
     
    744772      write(lunout,*)' Configuration des parametres du gcm: '
    745773      write(lunout,*)' planet_type = ', planet_type
     774      write(lunout,*)' calend = ', calend
    746775      write(lunout,*)' dayref = ', dayref
    747776      write(lunout,*)' anneeref = ', anneeref
Note: See TracChangeset for help on using the changeset viewer.