Changeset 1279 for LMDZ4/trunk/libf/dyn3dpar/conf_gcm.F
- Timestamp:
- Dec 10, 2009, 10:02:56 AM (15 years ago)
- Location:
- LMDZ4/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ4/trunk
- Property svn:mergeinfo changed
/LMDZ4/branches/LMDZ4-dev merged: 1150-1162,1164-1193,1195-1231,1234-1235,1237-1240,1242-1274,1276
- Property svn:mergeinfo changed
-
LMDZ4/trunk/libf/dyn3dpar/conf_gcm.F
r1146 r1279 1 1 ! 2 ! $ Header$2 ! $Id$ 3 3 ! 4 4 c … … 44 44 !#include "clesphys.h" 45 45 #include "iniprint.h" 46 #include "temps.h" 47 #include "comconst.h" 46 48 47 49 ! FH 2008/05/09 On elimine toutes les clefs physiques dans la dynamique … … 121 123 CALL getin('planet_type',planet_type) 122 124 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 123 133 !Config Key = dayref 124 134 !Config Desc = Jour de l'etat initial … … 278 288 CALL getin('tetatemp',tetatemp ) 279 289 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 ! 280 308 !Config Key = coefdis 281 309 !Config Desc = coefficient pour gamdissip … … 569 597 write(lunout,*)' Configuration des parametres du gcm: ' 570 598 write(lunout,*)' planet_type = ', planet_type 599 write(lunout,*)' calend = ', calend 571 600 write(lunout,*)' dayref = ', dayref 572 601 write(lunout,*)' anneeref = ', anneeref … … 590 619 write(lunout,*)' read_start = ', read_start 591 620 write(lunout,*)' iflag_phys = ', iflag_phys 621 write(lunout,*)' iphysiq = ', iphysiq 592 622 write(lunout,*)' clonn = ', clonn 593 623 write(lunout,*)' clatt = ', clatt … … 776 806 !Config Desc = activation de la version strato 777 807 !Config Def = .FALSE. 778 !Config Help = active la version stratosph �rique de LMDZ de F. Lott808 !Config Help = active la version stratosphérique de LMDZ de F. Lott 779 809 780 810 ok_strato=.FALSE. … … 792 822 write(lunout,*)' Configuration des parametres du gcm: ' 793 823 write(lunout,*)' planet_type = ', planet_type 824 write(lunout,*)' calend = ', calend 794 825 write(lunout,*)' dayref = ', dayref 795 826 write(lunout,*)' anneeref = ', anneeref … … 813 844 write(lunout,*)' read_start = ', read_start 814 845 write(lunout,*)' iflag_phys = ', iflag_phys 815 write(lunout,*)' clon = ', clon 846 write(lunout,*)' iphysiq = ', iphysiq 847 write(lunout,*)' clon = ', clon 816 848 write(lunout,*)' clat = ', clat 817 849 write(lunout,*)' grossismx = ', grossismx
Note: See TracChangeset
for help on using the changeset viewer.