[1] | 1 | ! |
---|
| 2 | ! $Id: conf_gcm.F 1418 2010-07-19 15:11:24Z jghattas $ |
---|
| 3 | ! |
---|
| 4 | c |
---|
| 5 | c |
---|
[97] | 6 | SUBROUTINE conf_gcm( tapedef, etatinit ) |
---|
[1] | 7 | c |
---|
| 8 | USE control_mod |
---|
| 9 | #ifdef CPP_IOIPSL |
---|
| 10 | use IOIPSL |
---|
| 11 | #else |
---|
| 12 | ! if not using IOIPSL, we still need to use (a local version of) getin |
---|
| 13 | use ioipsl_getincom |
---|
| 14 | #endif |
---|
[492] | 15 | USE infotrac, ONLY : type_trac |
---|
[979] | 16 | use assert_m, only: assert |
---|
[1017] | 17 | use sponge_mod, only: callsponge,mode_sponge,nsponge,tetasponge |
---|
[979] | 18 | |
---|
[1] | 19 | IMPLICIT NONE |
---|
| 20 | c----------------------------------------------------------------------- |
---|
| 21 | c Auteurs : L. Fairhead , P. Le Van . |
---|
| 22 | c |
---|
| 23 | c Arguments : |
---|
| 24 | c |
---|
| 25 | c tapedef : |
---|
| 26 | c etatinit : = TRUE , on ne compare pas les valeurs des para- |
---|
| 27 | c -metres du zoom avec celles lues sur le fichier start . |
---|
| 28 | c |
---|
| 29 | LOGICAL etatinit |
---|
| 30 | INTEGER tapedef |
---|
| 31 | |
---|
| 32 | c Declarations : |
---|
| 33 | c -------------- |
---|
| 34 | #include "dimensions.h" |
---|
| 35 | #include "paramet.h" |
---|
| 36 | #include "logic.h" |
---|
| 37 | #include "serre.h" |
---|
| 38 | #include "comdissnew.h" |
---|
[617] | 39 | #include "iniprint.h" |
---|
[1] | 40 | #include "temps.h" |
---|
| 41 | #include "comconst.h" |
---|
| 42 | |
---|
| 43 | ! FH 2008/05/09 On elimine toutes les clefs physiques dans la dynamique |
---|
| 44 | ! #include "clesphys.h" |
---|
| 45 | c |
---|
| 46 | c |
---|
| 47 | c local: |
---|
| 48 | c ------ |
---|
| 49 | |
---|
| 50 | CHARACTER ch1*72,ch2*72,ch3*72,ch4*12 |
---|
| 51 | REAL clonn,clatt,grossismxx,grossismyy |
---|
| 52 | REAL dzoomxx,dzoomyy, tauxx,tauyy |
---|
| 53 | LOGICAL fxyhypbb, ysinuss |
---|
| 54 | INTEGER i |
---|
| 55 | LOGICAL use_filtre_fft |
---|
| 56 | c |
---|
| 57 | c ------------------------------------------------------------------- |
---|
| 58 | c |
---|
| 59 | c ......... Version du 29/04/97 .......... |
---|
| 60 | c |
---|
| 61 | c Nouveaux parametres nitergdiv,nitergrot,niterh,tetagdiv,tetagrot, |
---|
| 62 | c tetatemp ajoutes pour la dissipation . |
---|
| 63 | c |
---|
| 64 | c Autre parametre ajoute en fin de liste de tapedef : ** fxyhypb ** |
---|
| 65 | c |
---|
| 66 | c Si fxyhypb = .TRUE. , choix de la fonction a derivee tangente hyperb. |
---|
| 67 | c Sinon , choix de fxynew , a derivee sinusoidale .. |
---|
| 68 | c |
---|
| 69 | c ...... etatinit = . TRUE. si defrun est appele dans ETAT0_LMD ou |
---|
| 70 | c LIMIT_LMD pour l'initialisation de start.dat (dic) et |
---|
| 71 | c de limit.dat ( dic) ........... |
---|
| 72 | c Sinon etatinit = . FALSE . |
---|
| 73 | c |
---|
| 74 | c Donc etatinit = .F. si on veut comparer les valeurs de grossismx , |
---|
| 75 | c grossismy,clon,clat, fxyhypb lues sur le fichier start avec |
---|
| 76 | c celles passees par run.def , au debut du gcm, apres l'appel a |
---|
| 77 | c lectba . |
---|
| 78 | c Ces parmetres definissant entre autres la grille et doivent etre |
---|
| 79 | c pareils et coherents , sinon il y aura divergence du gcm . |
---|
| 80 | c |
---|
| 81 | c----------------------------------------------------------------------- |
---|
| 82 | c initialisations: |
---|
| 83 | c ---------------- |
---|
| 84 | |
---|
| 85 | !Config Key = lunout |
---|
| 86 | !Config Desc = unite de fichier pour les impressions |
---|
| 87 | !Config Def = 6 |
---|
| 88 | !Config Help = unite de fichier pour les impressions |
---|
| 89 | !Config (defaut sortie standard = 6) |
---|
| 90 | lunout=6 |
---|
| 91 | CALL getin('lunout', lunout) |
---|
| 92 | IF (lunout /= 5 .and. lunout /= 6) THEN |
---|
[979] | 93 | OPEN(UNIT=lunout,FILE='lmdz.out',ACTION='write', |
---|
| 94 | & STATUS='unknown',FORM='formatted') |
---|
[1] | 95 | ENDIF |
---|
| 96 | |
---|
| 97 | !Config Key = prt_level |
---|
| 98 | !Config Desc = niveau d'impressions de débogage |
---|
| 99 | !Config Def = 0 |
---|
| 100 | !Config Help = Niveau d'impression pour le débogage |
---|
| 101 | !Config (0 = minimum d'impression) |
---|
| 102 | prt_level = 0 |
---|
| 103 | CALL getin('prt_level',prt_level) |
---|
| 104 | |
---|
| 105 | c----------------------------------------------------------------------- |
---|
| 106 | c Parametres de controle du run: |
---|
| 107 | c----------------------------------------------------------------------- |
---|
| 108 | !Config Key = planet_type |
---|
| 109 | !Config Desc = planet type ("earth", "mars", "venus", ...) |
---|
| 110 | !Config Def = earth |
---|
| 111 | !Config Help = this flag sets the type of atymosphere that is considered |
---|
| 112 | planet_type="earth" |
---|
| 113 | CALL getin('planet_type',planet_type) |
---|
| 114 | |
---|
| 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 | |
---|
| 123 | !Config Key = dayref |
---|
| 124 | !Config Desc = Jour de l'etat initial |
---|
| 125 | !Config Def = 1 |
---|
| 126 | !Config Help = Jour de l'etat initial ( = 350 si 20 Decembre , |
---|
| 127 | !Config par expl. ,comme ici ) ... A completer |
---|
| 128 | dayref=1 |
---|
| 129 | CALL getin('dayref', dayref) |
---|
| 130 | |
---|
| 131 | !Config Key = anneeref |
---|
| 132 | !Config Desc = Annee de l'etat initial |
---|
| 133 | !Config Def = 1998 |
---|
| 134 | !Config Help = Annee de l'etat initial |
---|
| 135 | !Config ( avec 4 chiffres ) ... A completer |
---|
| 136 | anneeref = 1998 |
---|
| 137 | CALL getin('anneeref',anneeref) |
---|
| 138 | |
---|
| 139 | !Config Key = raz_date |
---|
| 140 | !Config Desc = Remise a zero de la date initiale |
---|
| 141 | !Config Def = 0 (pas de remise a zero) |
---|
| 142 | !Config Help = Remise a zero de la date initiale |
---|
| 143 | !Config 0 pas de remise a zero, on garde la date du fichier restart |
---|
| 144 | !Config 1 prise en compte de la date de gcm.def avec remise a zero |
---|
| 145 | !Config des compteurs de pas de temps |
---|
| 146 | raz_date = 0 |
---|
| 147 | CALL getin('raz_date', raz_date) |
---|
| 148 | |
---|
[97] | 149 | !Config Key = resetvarc |
---|
| 150 | !Config Desc = Reinit des variables de controle |
---|
| 151 | !Config Def = n |
---|
| 152 | !Config Help = Reinit des variables de controle |
---|
| 153 | resetvarc = .false. |
---|
| 154 | CALL getin('resetvarc',resetvarc) |
---|
| 155 | |
---|
[1] | 156 | !Config Key = nday |
---|
| 157 | !Config Desc = Nombre de jours d'integration |
---|
| 158 | !Config Def = 10 |
---|
| 159 | !Config Help = Nombre de jours d'integration |
---|
| 160 | !Config ... On pourait aussi permettre des mois ou des annees ! |
---|
| 161 | nday = 10 |
---|
| 162 | CALL getin('nday',nday) |
---|
| 163 | |
---|
[1022] | 164 | ! alternative to specifying nday (see also 'less1day' and 'fractday' |
---|
| 165 | ! options below: sopecify numbre of dynamic steps to run: |
---|
| 166 | ndynstep = -9999 ! default value ; if ndynstep <0 then option not used. |
---|
| 167 | call getin('ndynstep',ndynstep) |
---|
| 168 | |
---|
[492] | 169 | !Config Key = starttime |
---|
| 170 | !Config Desc = Heure de depart de la simulation |
---|
| 171 | !Config Def = 0 |
---|
| 172 | !Config Help = Heure de depart de la simulation |
---|
| 173 | !Config en jour |
---|
| 174 | starttime = 0 |
---|
| 175 | CALL getin('starttime',starttime) |
---|
[1189] | 176 | |
---|
| 177 | ! Mars: time of start for run in "start.nc" (when there are multiple time |
---|
| 178 | ! steps stored in the file) |
---|
| 179 | timestart=-9999 ! default value; if <0, use last stored time |
---|
| 180 | call getin("timestart",timestart) |
---|
| 181 | |
---|
[97] | 182 | !Config Key = less1day |
---|
| 183 | !Config Desc = Possibilite d'integrer moins d'un jour |
---|
| 184 | !Config Def = n |
---|
| 185 | !Config Help = Possibilite d'integrer moins d'un jour |
---|
| 186 | less1day = .false. |
---|
| 187 | CALL getin('less1day',less1day) |
---|
| 188 | |
---|
| 189 | !Config Key = fractday |
---|
| 190 | !Config Desc = integration sur une fraction de jour |
---|
| 191 | !Config Def = 0.01 |
---|
| 192 | !Config Help = integration sur une fraction de jour |
---|
| 193 | fractday = 0.01 |
---|
| 194 | CALL getin('fractday',fractday) |
---|
| 195 | |
---|
[1] | 196 | !Config Key = day_step |
---|
| 197 | !Config Desc = nombre de pas par jour |
---|
| 198 | !Config Def = 240 |
---|
| 199 | !Config Help = nombre de pas par jour (multiple de iperiod) ( |
---|
| 200 | !Config ici pour dt = 1 min ) |
---|
| 201 | day_step = 240 |
---|
| 202 | CALL getin('day_step',day_step) |
---|
| 203 | |
---|
| 204 | !Config Key = nsplit_phys |
---|
[6] | 205 | !Config Desc = nombre de subdivisions par pas physique |
---|
[1] | 206 | !Config Def = 1 |
---|
[6] | 207 | !Config Help = nombre de subdivisions par pas physique |
---|
[1] | 208 | nsplit_phys = 1 |
---|
| 209 | CALL getin('nsplit_phys',nsplit_phys) |
---|
| 210 | |
---|
| 211 | !Config Key = iperiod |
---|
| 212 | !Config Desc = periode pour le pas Matsuno |
---|
| 213 | !Config Def = 5 |
---|
| 214 | !Config Help = periode pour le pas Matsuno (en pas de temps) |
---|
| 215 | iperiod = 5 |
---|
| 216 | CALL getin('iperiod',iperiod) |
---|
| 217 | |
---|
| 218 | !Config Key = iapp_tracvl |
---|
| 219 | !Config Desc = frequence du groupement des flux |
---|
| 220 | !Config Def = iperiod |
---|
| 221 | !Config Help = frequence du groupement des flux (en pas de temps) |
---|
| 222 | iapp_tracvl = iperiod |
---|
| 223 | CALL getin('iapp_tracvl',iapp_tracvl) |
---|
| 224 | |
---|
| 225 | !Config Key = iconser |
---|
| 226 | !Config Desc = periode de sortie des variables de controle |
---|
| 227 | !Config Def = 240 |
---|
| 228 | !Config Help = periode de sortie des variables de controle |
---|
| 229 | !Config (En pas de temps) |
---|
| 230 | iconser = 240 |
---|
| 231 | CALL getin('iconser', iconser) |
---|
| 232 | |
---|
| 233 | !Config Key = iecri |
---|
| 234 | !Config Desc = periode d'ecriture du fichier histoire |
---|
| 235 | !Config Def = 1 |
---|
| 236 | !Config Help = periode d'ecriture du fichier histoire (en jour) |
---|
| 237 | iecri = 1 |
---|
| 238 | CALL getin('iecri',iecri) |
---|
| 239 | |
---|
| 240 | |
---|
| 241 | !Config Key = periodav |
---|
| 242 | !Config Desc = periode de stockage fichier histmoy |
---|
| 243 | !Config Def = 1 |
---|
| 244 | !Config Help = periode de stockage fichier histmoy (en jour) |
---|
| 245 | periodav = 1. |
---|
| 246 | CALL getin('periodav',periodav) |
---|
| 247 | |
---|
| 248 | !Config Key = output_grads_dyn |
---|
| 249 | !Config Desc = output dynamics diagnostics in 'dyn.dat' file |
---|
| 250 | !Config Def = n |
---|
| 251 | !Config Help = output dynamics diagnostics in Grads-readable 'dyn.dat' file |
---|
| 252 | output_grads_dyn=.false. |
---|
| 253 | CALL getin('output_grads_dyn',output_grads_dyn) |
---|
| 254 | |
---|
[270] | 255 | !Config Key = dissip_period |
---|
[1] | 256 | !Config Desc = periode de la dissipation |
---|
[270] | 257 | !Config Def = 0 |
---|
[1] | 258 | !Config Help = periode de la dissipation |
---|
[270] | 259 | !Config dissip_period=0 => la valeur sera calcule dans inidissip |
---|
| 260 | !Config dissip_period>0 => on prend cette valeur |
---|
| 261 | dissip_period = 0 |
---|
[1021] | 262 | call getin('idissip',dissip_period) ! old Mars/Genreic model parameter |
---|
| 263 | ! if there is a "dissip_period" in run.def, it overrides "idissip" |
---|
[270] | 264 | CALL getin('dissip_period',dissip_period) |
---|
[1] | 265 | |
---|
| 266 | ccc .... P. Le Van , modif le 29/04/97 .pour la dissipation ... |
---|
| 267 | ccc |
---|
| 268 | |
---|
| 269 | !Config Key = lstardis |
---|
| 270 | !Config Desc = choix de l'operateur de dissipation |
---|
| 271 | !Config Def = y |
---|
| 272 | !Config Help = choix de l'operateur de dissipation |
---|
| 273 | !Config 'y' si on veut star et 'n' si on veut non-start ! |
---|
| 274 | !Config Moi y en a pas comprendre ! |
---|
| 275 | lstardis = .TRUE. |
---|
| 276 | CALL getin('lstardis',lstardis) |
---|
| 277 | |
---|
| 278 | |
---|
| 279 | !Config Key = nitergdiv |
---|
| 280 | !Config Desc = Nombre d'iteration de gradiv |
---|
| 281 | !Config Def = 1 |
---|
| 282 | !Config Help = nombre d'iterations de l'operateur de dissipation |
---|
| 283 | !Config gradiv |
---|
| 284 | nitergdiv = 1 |
---|
| 285 | CALL getin('nitergdiv',nitergdiv) |
---|
| 286 | |
---|
| 287 | !Config Key = nitergrot |
---|
| 288 | !Config Desc = nombre d'iterations de nxgradrot |
---|
| 289 | !Config Def = 2 |
---|
| 290 | !Config Help = nombre d'iterations de l'operateur de dissipation |
---|
| 291 | !Config nxgradrot |
---|
| 292 | nitergrot = 2 |
---|
| 293 | CALL getin('nitergrot',nitergrot) |
---|
| 294 | |
---|
| 295 | |
---|
| 296 | !Config Key = niterh |
---|
| 297 | !Config Desc = nombre d'iterations de divgrad |
---|
| 298 | !Config Def = 2 |
---|
| 299 | !Config Help = nombre d'iterations de l'operateur de dissipation |
---|
| 300 | !Config divgrad |
---|
| 301 | niterh = 2 |
---|
| 302 | CALL getin('niterh',niterh) |
---|
| 303 | |
---|
| 304 | |
---|
| 305 | !Config Key = tetagdiv |
---|
| 306 | !Config Desc = temps de dissipation pour div |
---|
| 307 | !Config Def = 7200 |
---|
| 308 | !Config Help = temps de dissipation des plus petites longeur |
---|
| 309 | !Config d'ondes pour u,v (gradiv) |
---|
| 310 | tetagdiv = 7200. |
---|
| 311 | CALL getin('tetagdiv',tetagdiv) |
---|
| 312 | |
---|
| 313 | !Config Key = tetagrot |
---|
| 314 | !Config Desc = temps de dissipation pour grad |
---|
| 315 | !Config Def = 7200 |
---|
| 316 | !Config Help = temps de dissipation des plus petites longeur |
---|
| 317 | !Config d'ondes pour u,v (nxgradrot) |
---|
| 318 | tetagrot = 7200. |
---|
| 319 | CALL getin('tetagrot',tetagrot) |
---|
| 320 | |
---|
| 321 | !Config Key = tetatemp |
---|
| 322 | !Config Desc = temps de dissipation pour h |
---|
| 323 | !Config Def = 7200 |
---|
| 324 | !Config Help = temps de dissipation des plus petites longeur |
---|
| 325 | !Config d'ondes pour h (divgrad) |
---|
| 326 | tetatemp = 7200. |
---|
| 327 | CALL getin('tetatemp',tetatemp ) |
---|
| 328 | |
---|
[979] | 329 | ! For Earth model only: |
---|
[1] | 330 | ! Parametres controlant la variation sur la verticale des constantes de |
---|
| 331 | ! dissipation. |
---|
[979] | 332 | ! Pour le moment actifs uniquement dans la version a 39 niveaux |
---|
| 333 | ! avec ok_strato=y |
---|
| 334 | |
---|
| 335 | dissip_factz=4. |
---|
| 336 | dissip_deltaz=10. |
---|
| 337 | dissip_zref=30. |
---|
| 338 | CALL getin('dissip_factz',dissip_factz ) |
---|
| 339 | CALL getin('dissip_deltaz',dissip_deltaz ) |
---|
| 340 | CALL getin('dissip_zref',dissip_zref ) |
---|
| 341 | |
---|
| 342 | ! For other planets: |
---|
| 343 | ! Parametres controlant la variation sur la verticale des constantes de |
---|
| 344 | ! dissipation. |
---|
[108] | 345 | ! Actifs uniquement avec ok_strato=y |
---|
[1] | 346 | |
---|
[108] | 347 | dissip_fac_mid=2. |
---|
| 348 | dissip_fac_up=10. |
---|
| 349 | dissip_deltaz=10.! Intervalle (km) pour le changement mid / up |
---|
| 350 | dissip_hdelta=5. ! scale height (km) dans la zone de la transition(m) |
---|
| 351 | dissip_pupstart=1.e3 ! pression (Pa) au bas la transition mid / up |
---|
| 352 | CALL getin('dissip_fac_mid',dissip_fac_mid ) |
---|
| 353 | CALL getin('dissip_fac_up',dissip_fac_up ) |
---|
[1] | 354 | CALL getin('dissip_deltaz',dissip_deltaz ) |
---|
[108] | 355 | CALL getin('dissip_hdelta',dissip_hdelta ) |
---|
| 356 | CALL getin('dissip_pupstart',dissip_pupstart ) |
---|
[1] | 357 | |
---|
[1024] | 358 | ! top_bound sponge: only active if iflag_top_bound!=0 |
---|
[1010] | 359 | ! iflag_top_bound=0 for no sponge |
---|
| 360 | ! iflag_top_bound=1 for sponge over 4 topmost layers |
---|
| 361 | ! iflag_top_bound=2 for sponge from top to ~1% of top layer pressure |
---|
[1012] | 362 | iflag_top_bound=0 |
---|
[1010] | 363 | CALL getin('iflag_top_bound',iflag_top_bound) |
---|
| 364 | |
---|
| 365 | ! mode_top_bound : fields towards which sponge relaxation will be done: |
---|
| 366 | ! mode_top_bound=0: no relaxation |
---|
| 367 | ! mode_top_bound=1: u and v relax towards 0 |
---|
| 368 | ! mode_top_bound=2: u and v relax towards their zonal mean |
---|
| 369 | ! mode_top_bound=3: u,v and pot. temp. relax towards their zonal mean |
---|
[108] | 370 | mode_top_bound=3 |
---|
[1010] | 371 | CALL getin('mode_top_bound',mode_top_bound) |
---|
| 372 | |
---|
| 373 | ! top_bound sponge : inverse of charactericstic relaxation time scale for sponge |
---|
[1] | 374 | tau_top_bound=1.e-5 |
---|
| 375 | CALL getin('tau_top_bound',tau_top_bound) |
---|
| 376 | |
---|
[1017] | 377 | ! the other possible sponge layer (sponge_mod) |
---|
| 378 | callsponge=.false. ! default value; don't use the sponge |
---|
| 379 | call getin("callsponge",callsponge) |
---|
| 380 | ! check that user is not trying to use both sponge models |
---|
| 381 | if ((iflag_top_bound.ge.1).and.callsponge) then |
---|
| 382 | write(lunout,*)'Bad choice of options:' |
---|
| 383 | write(lunout,*)' iflag_top_bound=',iflag_top_bound |
---|
| 384 | write(lunout,*)' and callsponge=.true.' |
---|
| 385 | write(lunout,*)'But both sponge models should not be', |
---|
| 386 | & ' used simultaneously!' |
---|
| 387 | stop |
---|
| 388 | endif |
---|
| 389 | |
---|
| 390 | ! nsponge: number of atmospheric layers over which the sponge extends |
---|
| 391 | nsponge=3 ! default value |
---|
| 392 | call getin("nsponge",nsponge) |
---|
| 393 | |
---|
| 394 | ! mode_sponge: (quenching is towards ... over the upper nsponge layers) |
---|
| 395 | ! 0: (h=hmean,u=v=0) |
---|
| 396 | ! 1: (h=hmean,u=umean,v=0) |
---|
| 397 | ! 2: (h=hmean,u=umean,v=vmean)" |
---|
| 398 | mode_sponge=2 ! default value |
---|
| 399 | call getin("mode_sponge",mode_sponge) |
---|
| 400 | |
---|
| 401 | ! tetasponge: characteristic time scale (seconds) at topmost layer |
---|
| 402 | ! (time scale then doubles with decreasing layer index)." |
---|
| 403 | tetasponge=50000.0 |
---|
| 404 | call getin("tetasponge",tetasponge) |
---|
| 405 | |
---|
[495] | 406 | ! FOR TITAN: tidal forces |
---|
| 407 | tidal=.TRUE. |
---|
| 408 | CALL getin('tidal',tidal) |
---|
| 409 | |
---|
[1] | 410 | !Config Key = coefdis |
---|
| 411 | !Config Desc = coefficient pour gamdissip |
---|
| 412 | !Config Def = 0 |
---|
| 413 | !Config Help = coefficient pour gamdissip |
---|
| 414 | coefdis = 0. |
---|
| 415 | CALL getin('coefdis',coefdis) |
---|
| 416 | |
---|
| 417 | !Config Key = purmats |
---|
| 418 | !Config Desc = Schema d'integration |
---|
| 419 | !Config Def = n |
---|
| 420 | !Config Help = Choix du schema d'integration temporel. |
---|
| 421 | !Config y = pure Matsuno sinon c'est du Matsuno-leapfrog |
---|
| 422 | purmats = .FALSE. |
---|
| 423 | CALL getin('purmats',purmats) |
---|
| 424 | |
---|
| 425 | !Config Key = ok_guide |
---|
| 426 | !Config Desc = Guidage |
---|
| 427 | !Config Def = n |
---|
| 428 | !Config Help = Guidage |
---|
| 429 | ok_guide = .FALSE. |
---|
| 430 | CALL getin('ok_guide',ok_guide) |
---|
| 431 | |
---|
| 432 | c ............................................................... |
---|
| 433 | |
---|
| 434 | !Config Key = read_start |
---|
| 435 | !Config Desc = Initialize model using a 'start.nc' file |
---|
| 436 | !Config Def = y |
---|
| 437 | !Config Help = y: intialize dynamical fields using a 'start.nc' file |
---|
| 438 | ! n: fields are initialized by 'iniacademic' routine |
---|
| 439 | read_start= .true. |
---|
| 440 | CALL getin('read_start',read_start) |
---|
| 441 | |
---|
| 442 | !Config Key = iflag_phys |
---|
| 443 | !Config Desc = Avec ls physique |
---|
| 444 | !Config Def = 1 |
---|
| 445 | !Config Help = Permet de faire tourner le modele sans |
---|
| 446 | !Config physique. |
---|
| 447 | iflag_phys = 1 |
---|
| 448 | CALL getin('iflag_phys',iflag_phys) |
---|
| 449 | |
---|
| 450 | |
---|
| 451 | !Config Key = iphysiq |
---|
| 452 | !Config Desc = Periode de la physique |
---|
| 453 | !Config Def = 5 |
---|
| 454 | !Config Help = Periode de la physique en pas de temps de la dynamique. |
---|
| 455 | iphysiq = 5 |
---|
| 456 | CALL getin('iphysiq', iphysiq) |
---|
| 457 | |
---|
[119] | 458 | !Config Key = iflag_trac |
---|
| 459 | !Config Desc = traceurs presents ou non |
---|
| 460 | !Config Def = 1 |
---|
| 461 | !Config Help = Permet de faire tourner le modele sans traceurs |
---|
| 462 | !Config |
---|
| 463 | iflag_trac = 1 |
---|
| 464 | CALL getin('iflag_trac',iflag_trac) |
---|
| 465 | |
---|
[1] | 466 | !Config Key = ip_ebil_dyn |
---|
| 467 | !Config Desc = PRINT level for energy conserv. diag. |
---|
| 468 | !Config Def = 0 |
---|
| 469 | !Config Help = PRINT level for energy conservation diag. ; |
---|
| 470 | ! les options suivantes existent : |
---|
| 471 | !Config 0 pas de print |
---|
| 472 | !Config 1 pas de print |
---|
| 473 | !Config 2 print, |
---|
| 474 | ip_ebil_dyn = 0 |
---|
| 475 | CALL getin('ip_ebil_dyn',ip_ebil_dyn) |
---|
| 476 | |
---|
[617] | 477 | !Config Key = offline |
---|
| 478 | !Config Desc = Nouvelle eau liquide |
---|
| 479 | !Config Def = n |
---|
| 480 | !Config Help = Permet de mettre en route la |
---|
| 481 | !Config nouvelle parametrisation de l'eau liquide ! |
---|
| 482 | offline = .FALSE. |
---|
| 483 | CALL getin('offline',offline) |
---|
| 484 | |
---|
| 485 | !Config Key = type_trac |
---|
| 486 | !Config Desc = Choix de couplage avec model de chimie INCA ou REPROBUS |
---|
| 487 | !Config Def = lmdz |
---|
| 488 | !Config Help = |
---|
| 489 | !Config 'lmdz' = pas de couplage, pur LMDZ |
---|
| 490 | !Config 'inca' = model de chime INCA |
---|
| 491 | !Config 'repr' = model de chime REPROBUS |
---|
| 492 | type_trac = 'lmdz' |
---|
| 493 | CALL getin('type_trac',type_trac) |
---|
| 494 | |
---|
| 495 | !Config Key = config_inca |
---|
| 496 | !Config Desc = Choix de configuration de INCA |
---|
| 497 | !Config Def = none |
---|
| 498 | !Config Help = Choix de configuration de INCA : |
---|
| 499 | !Config 'none' = sans INCA |
---|
| 500 | !Config 'chem' = INCA avec calcul de chemie |
---|
| 501 | !Config 'aero' = INCA avec calcul des aerosols |
---|
| 502 | config_inca = 'none' |
---|
| 503 | CALL getin('config_inca',config_inca) |
---|
| 504 | |
---|
| 505 | !Config Key = ok_dynzon |
---|
| 506 | !Config Desc = calcul et sortie des transports |
---|
| 507 | !Config Def = n |
---|
| 508 | !Config Help = Permet de mettre en route le calcul des transports |
---|
| 509 | !Config |
---|
| 510 | ok_dynzon = .FALSE. |
---|
| 511 | CALL getin('ok_dynzon',ok_dynzon) |
---|
| 512 | |
---|
| 513 | !Config Key = ok_dyn_ins |
---|
| 514 | !Config Desc = sorties instantanees dans la dynamique |
---|
| 515 | !Config Def = n |
---|
| 516 | !Config Help = |
---|
| 517 | !Config |
---|
| 518 | ok_dyn_ins = .FALSE. |
---|
| 519 | CALL getin('ok_dyn_ins',ok_dyn_ins) |
---|
| 520 | |
---|
| 521 | !Config Key = ok_dyn_ave |
---|
| 522 | !Config Desc = sorties moyennes dans la dynamique |
---|
| 523 | !Config Def = n |
---|
| 524 | !Config Help = |
---|
| 525 | !Config |
---|
| 526 | ok_dyn_ave = .FALSE. |
---|
| 527 | CALL getin('ok_dyn_ave',ok_dyn_ave) |
---|
| 528 | |
---|
| 529 | !Config Key = use_filtre_fft |
---|
| 530 | !Config Desc = flag d'activation des FFT pour le filtre |
---|
| 531 | !Config Def = false |
---|
| 532 | !Config Help = permet d'activer l'utilisation des FFT pour effectuer |
---|
| 533 | !Config le filtrage aux poles. |
---|
| 534 | ! Le filtre fft n'est pas implemente dans dyn3d |
---|
| 535 | use_filtre_fft=.FALSE. |
---|
| 536 | CALL getin('use_filtre_fft',use_filtre_fft) |
---|
| 537 | |
---|
| 538 | IF (use_filtre_fft) THEN |
---|
| 539 | write(lunout,*)'STOP !!!' |
---|
| 540 | write(lunout,*)'use_filtre_fft n est pas implemente dans dyn3d' |
---|
[979] | 541 | STOP 1 |
---|
[617] | 542 | ENDIF |
---|
| 543 | |
---|
| 544 | !Config key = ok_strato |
---|
| 545 | !Config Desc = activation de la version strato |
---|
| 546 | !Config Def = .FALSE. |
---|
| 547 | !Config Help = active la version stratosphérique de LMDZ de F. Lott |
---|
| 548 | |
---|
| 549 | ok_strato=.TRUE. |
---|
| 550 | CALL getin('ok_strato',ok_strato) |
---|
| 551 | |
---|
[979] | 552 | ! NB: vert_prof_dissip is Earth-specific; should not impact other models |
---|
| 553 | if (planet_type=="earth") then |
---|
| 554 | vert_prof_dissip = merge(1, 0, ok_strato .and. llm==39) |
---|
| 555 | CALL getin('vert_prof_dissip', vert_prof_dissip) |
---|
| 556 | call assert(vert_prof_dissip == 0 .or. vert_prof_dissip == 1, |
---|
| 557 | $ "bad value for vert_prof_dissip") |
---|
| 558 | else |
---|
[1021] | 559 | vert_prof_dissip=0 ! default for planets ! |
---|
| 560 | if (planet_type=="mars") then |
---|
| 561 | vert_prof_dissip=1 ! use fac_mid & fac_up & startalt & delta |
---|
| 562 | endif |
---|
[979] | 563 | endif |
---|
| 564 | |
---|
[617] | 565 | !Config Key = ok_gradsfile |
---|
| 566 | !Config Desc = activation des sorties grads du guidage |
---|
| 567 | !Config Def = n |
---|
| 568 | !Config Help = active les sorties grads du guidage |
---|
| 569 | |
---|
| 570 | ok_gradsfile = .FALSE. |
---|
| 571 | CALL getin('ok_gradsfile',ok_gradsfile) |
---|
| 572 | |
---|
| 573 | !Config Key = ok_limit |
---|
| 574 | !Config Desc = creation des fichiers limit dans create_etat0_limit |
---|
| 575 | !Config Def = y |
---|
| 576 | !Config Help = production du fichier limit.nc requise |
---|
| 577 | |
---|
| 578 | ok_limit = .TRUE. |
---|
| 579 | CALL getin('ok_limit',ok_limit) |
---|
| 580 | |
---|
| 581 | !Config Key = ok_etat0 |
---|
| 582 | !Config Desc = creation des fichiers etat0 dans create_etat0_limit |
---|
| 583 | !Config Def = y |
---|
| 584 | !Config Help = production des fichiers start.nc, startphy.nc requise |
---|
| 585 | |
---|
| 586 | ok_etat0 = .TRUE. |
---|
| 587 | CALL getin('ok_etat0',ok_etat0) |
---|
| 588 | |
---|
| 589 | !Config Key = grilles_gcm_netcdf |
---|
| 590 | !Config Desc = creation de fichier grilles_gcm.nc dans create_etat0_limit |
---|
| 591 | !Config Def = n |
---|
| 592 | grilles_gcm_netcdf = .FALSE. |
---|
| 593 | CALL getin('grilles_gcm_netcdf',grilles_gcm_netcdf) |
---|
| 594 | |
---|
| 595 | c---------------------------------------- |
---|
[1056] | 596 | c Parameters for zonal averages in the case of Titan |
---|
| 597 | moyzon_mu = .false. |
---|
| 598 | moyzon_ch = .false. |
---|
| 599 | if (planet_type=="titan") then |
---|
| 600 | CALL getin('moyzon_mu', moyzon_mu) |
---|
| 601 | CALL getin('moyzon_ch', moyzon_ch) |
---|
| 602 | endif |
---|
| 603 | c---------------------------------------- |
---|
| 604 | |
---|
| 605 | c---------------------------------------- |
---|
[1] | 606 | ccc .... P. Le Van , ajout le 7/03/95 .pour le zoom ... |
---|
| 607 | c ......... ( modif le 17/04/96 ) ......... |
---|
| 608 | c |
---|
[617] | 609 | C ZOOM PARAMETERS ... the ones read in start.nc prevail anyway ! (SL, 2012) |
---|
| 610 | c |
---|
| 611 | c---------------------------------------- |
---|
| 612 | IF( etatinit ) then |
---|
[1] | 613 | |
---|
| 614 | !Config Key = clon |
---|
| 615 | !Config Desc = centre du zoom, longitude |
---|
| 616 | !Config Def = 0 |
---|
| 617 | !Config Help = longitude en degres du centre |
---|
| 618 | !Config du zoom |
---|
[617] | 619 | clon = 0. |
---|
| 620 | CALL getin('clon',clon) |
---|
| 621 | |
---|
| 622 | !Config Key = clat |
---|
| 623 | !Config Desc = centre du zoom, latitude |
---|
| 624 | !Config Def = 0 |
---|
| 625 | !Config Help = latitude en degres du centre du zoom |
---|
| 626 | !Config |
---|
| 627 | clat = 0. |
---|
| 628 | CALL getin('clat',clat) |
---|
| 629 | |
---|
| 630 | !Config Key = grossismx |
---|
| 631 | !Config Desc = zoom en longitude |
---|
| 632 | !Config Def = 1.0 |
---|
| 633 | !Config Help = facteur de grossissement du zoom, |
---|
| 634 | !Config selon la longitude |
---|
| 635 | grossismx = 1.0 |
---|
| 636 | CALL getin('grossismx',grossismx) |
---|
| 637 | |
---|
| 638 | !Config Key = grossismy |
---|
| 639 | !Config Desc = zoom en latitude |
---|
| 640 | !Config Def = 1.0 |
---|
| 641 | !Config Help = facteur de grossissement du zoom, |
---|
| 642 | !Config selon la latitude |
---|
| 643 | grossismy = 1.0 |
---|
| 644 | CALL getin('grossismy',grossismy) |
---|
| 645 | |
---|
| 646 | IF( grossismx.LT.1. ) THEN |
---|
| 647 | write(lunout,*) |
---|
| 648 | & 'conf_gcm: *** ATTENTION !! grossismx < 1 . *** ' |
---|
| 649 | STOP |
---|
| 650 | ELSE |
---|
| 651 | alphax = 1. - 1./ grossismx |
---|
| 652 | ENDIF |
---|
| 653 | |
---|
| 654 | |
---|
| 655 | IF( grossismy.LT.1. ) THEN |
---|
| 656 | write(lunout,*) |
---|
| 657 | & 'conf_gcm: *** ATTENTION !! grossismy < 1 . *** ' |
---|
| 658 | STOP |
---|
| 659 | ELSE |
---|
| 660 | alphay = 1. - 1./ grossismy |
---|
| 661 | ENDIF |
---|
| 662 | |
---|
| 663 | write(lunout,*)'conf_gcm: alphax alphay ',alphax,alphay |
---|
| 664 | c |
---|
| 665 | c alphax et alphay sont les anciennes formulat. des grossissements |
---|
| 666 | c |
---|
| 667 | c |
---|
| 668 | |
---|
| 669 | !Config Key = fxyhypb |
---|
| 670 | !Config Desc = Fonction hyperbolique |
---|
| 671 | !Config Def = y |
---|
| 672 | !Config Help = Fonction f(y) hyperbolique si = .true. |
---|
| 673 | !Config sinon sinusoidale |
---|
| 674 | fxyhypb = .TRUE. |
---|
| 675 | CALL getin('fxyhypb',fxyhypb) |
---|
| 676 | |
---|
| 677 | !Config Key = dzoomx |
---|
| 678 | !Config Desc = extension en longitude |
---|
| 679 | !Config Def = 0 |
---|
| 680 | !Config Help = extension en longitude de la zone du zoom |
---|
| 681 | !Config ( fraction de la zone totale) |
---|
| 682 | dzoomx = 0.0 |
---|
| 683 | CALL getin('dzoomx',dzoomx) |
---|
| 684 | |
---|
| 685 | !Config Key = dzoomy |
---|
| 686 | !Config Desc = extension en latitude |
---|
| 687 | !Config Def = 0 |
---|
| 688 | !Config Help = extension en latitude de la zone du zoom |
---|
| 689 | !Config ( fraction de la zone totale) |
---|
| 690 | dzoomy = 0.0 |
---|
| 691 | CALL getin('dzoomy',dzoomy) |
---|
| 692 | |
---|
| 693 | !Config Key = taux |
---|
| 694 | !Config Desc = raideur du zoom en X |
---|
| 695 | !Config Def = 3 |
---|
| 696 | !Config Help = raideur du zoom en X |
---|
| 697 | taux = 3.0 |
---|
| 698 | CALL getin('taux',taux) |
---|
| 699 | |
---|
| 700 | !Config Key = tauy |
---|
| 701 | !Config Desc = raideur du zoom en Y |
---|
| 702 | !Config Def = 3 |
---|
| 703 | !Config Help = raideur du zoom en Y |
---|
| 704 | tauy = 3.0 |
---|
| 705 | CALL getin('tauy',tauy) |
---|
| 706 | |
---|
| 707 | !Config Key = ysinus |
---|
| 708 | !Config IF = !fxyhypb |
---|
| 709 | !Config Desc = Fonction en Sinus |
---|
| 710 | !Config Def = y |
---|
| 711 | !Config Help = Fonction f(y) avec y = Sin(latit.) si = .true. |
---|
| 712 | !Config sinon y = latit. |
---|
| 713 | ysinus = .TRUE. |
---|
| 714 | CALL getin('ysinus',ysinus) |
---|
| 715 | c |
---|
| 716 | c---------------------------------------- |
---|
| 717 | else ! etatinit=false |
---|
| 718 | c---------------------------------------- |
---|
| 719 | |
---|
| 720 | !Config Key = clon |
---|
| 721 | !Config Desc = centre du zoom, longitude |
---|
| 722 | !Config Def = 0 |
---|
| 723 | !Config Help = longitude en degres du centre |
---|
| 724 | !Config du zoom |
---|
[1] | 725 | clonn = 0. |
---|
| 726 | CALL getin('clon',clonn) |
---|
| 727 | |
---|
| 728 | !Config Key = clat |
---|
| 729 | !Config Desc = centre du zoom, latitude |
---|
| 730 | !Config Def = 0 |
---|
| 731 | !Config Help = latitude en degres du centre du zoom |
---|
| 732 | !Config |
---|
| 733 | clatt = 0. |
---|
| 734 | CALL getin('clat',clatt) |
---|
| 735 | |
---|
| 736 | c |
---|
| 737 | c |
---|
| 738 | IF( ABS(clat - clatt).GE. 0.001 ) THEN |
---|
| 739 | write(lunout,*)'conf_gcm: La valeur de clat passee par run.def', |
---|
| 740 | & ' est differente de celle lue sur le fichier start ' |
---|
| 741 | STOP |
---|
| 742 | ENDIF |
---|
| 743 | |
---|
| 744 | !Config Key = grossismx |
---|
| 745 | !Config Desc = zoom en longitude |
---|
| 746 | !Config Def = 1.0 |
---|
| 747 | !Config Help = facteur de grossissement du zoom, |
---|
| 748 | !Config selon la longitude |
---|
| 749 | grossismxx = 1.0 |
---|
| 750 | CALL getin('grossismx',grossismxx) |
---|
| 751 | |
---|
| 752 | |
---|
| 753 | IF( ABS(grossismx - grossismxx).GE. 0.001 ) THEN |
---|
| 754 | write(lunout,*)'conf_gcm: La valeur de grossismx passee par ', |
---|
| 755 | & 'run.def est differente de celle lue sur le fichier start ' |
---|
| 756 | STOP |
---|
| 757 | ENDIF |
---|
| 758 | |
---|
| 759 | !Config Key = grossismy |
---|
| 760 | !Config Desc = zoom en latitude |
---|
| 761 | !Config Def = 1.0 |
---|
| 762 | !Config Help = facteur de grossissement du zoom, |
---|
| 763 | !Config selon la latitude |
---|
| 764 | grossismyy = 1.0 |
---|
| 765 | CALL getin('grossismy',grossismyy) |
---|
| 766 | |
---|
| 767 | IF( ABS(grossismy - grossismyy).GE. 0.001 ) THEN |
---|
| 768 | write(lunout,*)'conf_gcm: La valeur de grossismy passee par ', |
---|
| 769 | & 'run.def est differente de celle lue sur le fichier start ' |
---|
| 770 | STOP |
---|
| 771 | ENDIF |
---|
| 772 | |
---|
| 773 | IF( grossismx.LT.1. ) THEN |
---|
| 774 | write(lunout,*) |
---|
| 775 | & 'conf_gcm: *** ATTENTION !! grossismx < 1 . *** ' |
---|
| 776 | STOP |
---|
| 777 | ELSE |
---|
| 778 | alphax = 1. - 1./ grossismx |
---|
| 779 | ENDIF |
---|
| 780 | |
---|
| 781 | |
---|
| 782 | IF( grossismy.LT.1. ) THEN |
---|
| 783 | write(lunout,*) |
---|
| 784 | & 'conf_gcm: *** ATTENTION !! grossismy < 1 . *** ' |
---|
| 785 | STOP |
---|
| 786 | ELSE |
---|
| 787 | alphay = 1. - 1./ grossismy |
---|
| 788 | ENDIF |
---|
| 789 | |
---|
| 790 | write(lunout,*)'conf_gcm: alphax alphay',alphax,alphay |
---|
| 791 | c |
---|
| 792 | c alphax et alphay sont les anciennes formulat. des grossissements |
---|
| 793 | c |
---|
| 794 | c |
---|
| 795 | |
---|
| 796 | !Config Key = fxyhypb |
---|
| 797 | !Config Desc = Fonction hyperbolique |
---|
| 798 | !Config Def = y |
---|
| 799 | !Config Help = Fonction f(y) hyperbolique si = .true. |
---|
| 800 | !Config sinon sinusoidale |
---|
| 801 | fxyhypbb = .TRUE. |
---|
| 802 | CALL getin('fxyhypb',fxyhypbb) |
---|
| 803 | |
---|
| 804 | IF( .NOT.fxyhypb ) THEN |
---|
| 805 | IF( fxyhypbb ) THEN |
---|
| 806 | write(lunout,*)' ******** PBS DANS CONF_GCM ******** ' |
---|
| 807 | write(lunout,*)' *** fxyhypb lu sur le fichier start est ', |
---|
| 808 | * 'F alors qu il est T sur run.def ***' |
---|
| 809 | STOP |
---|
| 810 | ENDIF |
---|
| 811 | ELSE |
---|
| 812 | IF( .NOT.fxyhypbb ) THEN |
---|
| 813 | write(lunout,*)' ******** PBS DANS CONF_GCM ******** ' |
---|
| 814 | write(lunout,*)' *** fxyhypb lu sur le fichier start est ', |
---|
| 815 | * 'T alors qu il est F sur run.def **** ' |
---|
| 816 | STOP |
---|
| 817 | ENDIF |
---|
| 818 | ENDIF |
---|
| 819 | c |
---|
| 820 | !Config Key = dzoomx |
---|
| 821 | !Config Desc = extension en longitude |
---|
| 822 | !Config Def = 0 |
---|
| 823 | !Config Help = extension en longitude de la zone du zoom |
---|
| 824 | !Config ( fraction de la zone totale) |
---|
| 825 | dzoomxx = 0.0 |
---|
| 826 | CALL getin('dzoomx',dzoomxx) |
---|
| 827 | |
---|
| 828 | IF( fxyhypb ) THEN |
---|
| 829 | IF( ABS(dzoomx - dzoomxx).GE. 0.001 ) THEN |
---|
| 830 | write(lunout,*)'conf_gcm: La valeur de dzoomx passee par ', |
---|
| 831 | * 'run.def est differente de celle lue sur le fichier start ' |
---|
| 832 | STOP |
---|
| 833 | ENDIF |
---|
| 834 | ENDIF |
---|
| 835 | |
---|
| 836 | !Config Key = dzoomy |
---|
| 837 | !Config Desc = extension en latitude |
---|
| 838 | !Config Def = 0 |
---|
| 839 | !Config Help = extension en latitude de la zone du zoom |
---|
| 840 | !Config ( fraction de la zone totale) |
---|
| 841 | dzoomyy = 0.0 |
---|
| 842 | CALL getin('dzoomy',dzoomyy) |
---|
| 843 | |
---|
| 844 | IF( fxyhypb ) THEN |
---|
| 845 | IF( ABS(dzoomy - dzoomyy).GE. 0.001 ) THEN |
---|
| 846 | write(lunout,*)'conf_gcm: La valeur de dzoomy passee par ', |
---|
| 847 | * 'run.def est differente de celle lue sur le fichier start ' |
---|
| 848 | STOP |
---|
| 849 | ENDIF |
---|
| 850 | ENDIF |
---|
| 851 | |
---|
| 852 | !Config Key = taux |
---|
| 853 | !Config Desc = raideur du zoom en X |
---|
| 854 | !Config Def = 3 |
---|
| 855 | !Config Help = raideur du zoom en X |
---|
| 856 | tauxx = 3.0 |
---|
| 857 | CALL getin('taux',tauxx) |
---|
| 858 | |
---|
| 859 | IF( fxyhypb ) THEN |
---|
| 860 | IF( ABS(taux - tauxx).GE. 0.001 ) THEN |
---|
| 861 | write(lunout,*)'conf_gcm: La valeur de taux passee par ', |
---|
| 862 | * 'run.def est differente de celle lue sur le fichier start ' |
---|
| 863 | STOP |
---|
| 864 | ENDIF |
---|
| 865 | ENDIF |
---|
| 866 | |
---|
| 867 | !Config Key = tauyy |
---|
| 868 | !Config Desc = raideur du zoom en Y |
---|
| 869 | !Config Def = 3 |
---|
| 870 | !Config Help = raideur du zoom en Y |
---|
| 871 | tauyy = 3.0 |
---|
| 872 | CALL getin('tauy',tauyy) |
---|
| 873 | |
---|
| 874 | IF( fxyhypb ) THEN |
---|
| 875 | IF( ABS(tauy - tauyy).GE. 0.001 ) THEN |
---|
| 876 | write(lunout,*)'conf_gcm: La valeur de tauy passee par ', |
---|
| 877 | * 'run.def est differente de celle lue sur le fichier start ' |
---|
| 878 | STOP |
---|
| 879 | ENDIF |
---|
| 880 | ENDIF |
---|
| 881 | |
---|
| 882 | cc |
---|
| 883 | IF( .NOT.fxyhypb ) THEN |
---|
| 884 | |
---|
| 885 | !Config Key = ysinus |
---|
| 886 | !Config IF = !fxyhypb |
---|
| 887 | !Config Desc = Fonction en Sinus |
---|
| 888 | !Config Def = y |
---|
| 889 | !Config Help = Fonction f(y) avec y = Sin(latit.) si = .true. |
---|
| 890 | !Config sinon y = latit. |
---|
| 891 | ysinuss = .TRUE. |
---|
| 892 | CALL getin('ysinus',ysinuss) |
---|
| 893 | |
---|
| 894 | IF( .NOT.ysinus ) THEN |
---|
| 895 | IF( ysinuss ) THEN |
---|
| 896 | write(lunout,*)' ******** PBS DANS CONF_GCM ******** ' |
---|
| 897 | write(lunout,*)' *** ysinus lu sur le fichier start est F', |
---|
| 898 | * ' alors qu il est T sur run.def ***' |
---|
| 899 | STOP |
---|
| 900 | ENDIF |
---|
| 901 | ELSE |
---|
| 902 | IF( .NOT.ysinuss ) THEN |
---|
| 903 | write(lunout,*)' ******** PBS DANS CONF_GCM ******** ' |
---|
| 904 | write(lunout,*)' *** ysinus lu sur le fichier start est T', |
---|
| 905 | * ' alors qu il est F sur run.def **** ' |
---|
| 906 | STOP |
---|
| 907 | ENDIF |
---|
| 908 | ENDIF |
---|
| 909 | ENDIF ! of IF( .NOT.fxyhypb ) |
---|
| 910 | |
---|
[617] | 911 | endif ! etatinit |
---|
| 912 | c---------------------------------------- |
---|
[1] | 913 | |
---|
| 914 | |
---|
| 915 | write(lunout,*)' #########################################' |
---|
[617] | 916 | write(lunout,*)' Configuration des parametres lus via run.def ' |
---|
[1] | 917 | write(lunout,*)' planet_type = ', planet_type |
---|
| 918 | write(lunout,*)' calend = ', calend |
---|
| 919 | write(lunout,*)' dayref = ', dayref |
---|
| 920 | write(lunout,*)' anneeref = ', anneeref |
---|
| 921 | write(lunout,*)' nday = ', nday |
---|
[1022] | 922 | if (ndynstep.ne.-9999) write(lunout,*)' ndynstep = ', ndynstep |
---|
| 923 | if (less1day) write(lunout,*)' fractday = ', fractday |
---|
[1] | 924 | write(lunout,*)' day_step = ', day_step |
---|
| 925 | write(lunout,*)' iperiod = ', iperiod |
---|
[979] | 926 | write(lunout,*)' nsplit_phys = ', nsplit_phys |
---|
[1] | 927 | write(lunout,*)' iconser = ', iconser |
---|
| 928 | write(lunout,*)' iecri = ', iecri |
---|
| 929 | write(lunout,*)' periodav = ', periodav |
---|
| 930 | write(lunout,*)' output_grads_dyn = ', output_grads_dyn |
---|
[270] | 931 | write(lunout,*)' dissip_period = ', dissip_period |
---|
[1] | 932 | write(lunout,*)' lstardis = ', lstardis |
---|
| 933 | write(lunout,*)' nitergdiv = ', nitergdiv |
---|
| 934 | write(lunout,*)' nitergrot = ', nitergrot |
---|
| 935 | write(lunout,*)' niterh = ', niterh |
---|
| 936 | write(lunout,*)' tetagdiv = ', tetagdiv |
---|
| 937 | write(lunout,*)' tetagrot = ', tetagrot |
---|
| 938 | write(lunout,*)' tetatemp = ', tetatemp |
---|
| 939 | write(lunout,*)' coefdis = ', coefdis |
---|
| 940 | write(lunout,*)' purmats = ', purmats |
---|
| 941 | write(lunout,*)' read_start = ', read_start |
---|
| 942 | write(lunout,*)' iflag_phys = ', iflag_phys |
---|
| 943 | write(lunout,*)' iphysiq = ', iphysiq |
---|
[119] | 944 | write(lunout,*)' iflag_trac = ', iflag_trac |
---|
[1] | 945 | write(lunout,*)' clon = ', clon |
---|
| 946 | write(lunout,*)' clat = ', clat |
---|
| 947 | write(lunout,*)' grossismx = ', grossismx |
---|
| 948 | write(lunout,*)' grossismy = ', grossismy |
---|
| 949 | write(lunout,*)' fxyhypb = ', fxyhypb |
---|
| 950 | write(lunout,*)' dzoomx = ', dzoomx |
---|
| 951 | write(lunout,*)' dzoomy = ', dzoomy |
---|
| 952 | write(lunout,*)' taux = ', taux |
---|
| 953 | write(lunout,*)' tauy = ', tauy |
---|
| 954 | write(lunout,*)' offline = ', offline |
---|
[492] | 955 | write(lunout,*)' type_trac = ', type_trac |
---|
[1] | 956 | write(lunout,*)' config_inca = ', config_inca |
---|
| 957 | write(lunout,*)' ok_dynzon = ', ok_dynzon |
---|
| 958 | write(lunout,*)' ok_dyn_ins = ', ok_dyn_ins |
---|
| 959 | write(lunout,*)' ok_dyn_ave = ', ok_dyn_ave |
---|
| 960 | write(lunout,*)' ok_strato = ', ok_strato |
---|
| 961 | write(lunout,*)' ok_gradsfile = ', ok_gradsfile |
---|
| 962 | write(lunout,*)' ok_limit = ', ok_limit |
---|
| 963 | write(lunout,*)' ok_etat0 = ', ok_etat0 |
---|
[270] | 964 | write(lunout,*)' grilles_gcm_netcdf = ', grilles_gcm_netcdf |
---|
[1056] | 965 | if (planet_type=="titan") then |
---|
| 966 | write(lunout,*)' moyzon_mu = ', moyzon_mu |
---|
| 967 | write(lunout,*)' moyzon_ch = ', moyzon_ch |
---|
| 968 | endif |
---|
| 969 | |
---|
[1] | 970 | RETURN |
---|
| 971 | END |
---|