[630] | 1 | ! |
---|
| 2 | ! $Header$ |
---|
| 3 | ! |
---|
| 4 | c |
---|
| 5 | c |
---|
| 6 | SUBROUTINE conf_gcm( tapedef, etatinit, clesphy0 ) |
---|
| 7 | c |
---|
[1146] | 8 | #ifdef CPP_IOIPSL |
---|
[630] | 9 | use IOIPSL |
---|
[1146] | 10 | #else |
---|
| 11 | ! if not using IOIPSL, we still need to use (a local version of) getin |
---|
| 12 | use ioipsl_getincom |
---|
| 13 | #endif |
---|
[630] | 14 | use misc_mod |
---|
[985] | 15 | use mod_filtre_fft, ONLY : use_filtre_fft |
---|
| 16 | use mod_hallo, ONLY : use_mpi_alloc |
---|
| 17 | use parallel, ONLY : omp_chunk |
---|
[630] | 18 | IMPLICIT NONE |
---|
| 19 | c----------------------------------------------------------------------- |
---|
| 20 | c Auteurs : L. Fairhead , P. Le Van . |
---|
| 21 | c |
---|
| 22 | c Arguments : |
---|
| 23 | c |
---|
| 24 | c tapedef : |
---|
| 25 | c etatinit : = TRUE , on ne compare pas les valeurs des para- |
---|
| 26 | c -metres du zoom avec celles lues sur le fichier start . |
---|
| 27 | c clesphy0 : sortie . |
---|
| 28 | c |
---|
| 29 | LOGICAL etatinit |
---|
| 30 | INTEGER tapedef |
---|
| 31 | |
---|
| 32 | INTEGER longcles |
---|
| 33 | PARAMETER( longcles = 20 ) |
---|
| 34 | REAL clesphy0( longcles ) |
---|
| 35 | c |
---|
| 36 | c Declarations : |
---|
| 37 | c -------------- |
---|
| 38 | #include "dimensions.h" |
---|
| 39 | #include "paramet.h" |
---|
| 40 | #include "control.h" |
---|
| 41 | #include "logic.h" |
---|
| 42 | #include "serre.h" |
---|
| 43 | #include "comdissnew.h" |
---|
[985] | 44 | !#include "clesphys.h" |
---|
[630] | 45 | #include "iniprint.h" |
---|
[985] | 46 | |
---|
| 47 | ! FH 2008/05/09 On elimine toutes les clefs physiques dans la dynamique |
---|
[630] | 48 | c |
---|
| 49 | c |
---|
| 50 | c local: |
---|
| 51 | c ------ |
---|
| 52 | |
---|
| 53 | CHARACTER ch1*72,ch2*72,ch3*72,ch4*12 |
---|
| 54 | REAL clonn,clatt,grossismxx,grossismyy |
---|
| 55 | REAL dzoomxx,dzoomyy, tauxx,tauyy |
---|
| 56 | LOGICAL fxyhypbb, ysinuss |
---|
| 57 | INTEGER i |
---|
| 58 | |
---|
| 59 | c |
---|
| 60 | c ------------------------------------------------------------------- |
---|
| 61 | c |
---|
| 62 | c ......... Version du 29/04/97 .......... |
---|
| 63 | c |
---|
| 64 | c Nouveaux parametres nitergdiv,nitergrot,niterh,tetagdiv,tetagrot, |
---|
| 65 | c tetatemp ajoutes pour la dissipation . |
---|
| 66 | c |
---|
| 67 | c Autre parametre ajoute en fin de liste de tapedef : ** fxyhypb ** |
---|
| 68 | c |
---|
| 69 | c Si fxyhypb = .TRUE. , choix de la fonction a derivee tangente hyperb. |
---|
| 70 | c Sinon , choix de fxynew , a derivee sinusoidale .. |
---|
| 71 | c |
---|
| 72 | c ...... etatinit = . TRUE. si defrun est appele dans ETAT0_LMD ou |
---|
| 73 | c LIMIT_LMD pour l'initialisation de start.dat (dic) et |
---|
| 74 | c de limit.dat ( dic) ........... |
---|
| 75 | c Sinon etatinit = . FALSE . |
---|
| 76 | c |
---|
| 77 | c Donc etatinit = .F. si on veut comparer les valeurs de grossismx , |
---|
| 78 | c grossismy,clon,clat, fxyhypb lues sur le fichier start avec |
---|
| 79 | c celles passees par run.def , au debut du gcm, apres l'appel a |
---|
| 80 | c lectba . |
---|
| 81 | c Ces parmetres definissant entre autres la grille et doivent etre |
---|
| 82 | c pareils et coherents , sinon il y aura divergence du gcm . |
---|
| 83 | c |
---|
| 84 | c----------------------------------------------------------------------- |
---|
| 85 | c initialisations: |
---|
| 86 | c ---------------- |
---|
| 87 | adjust=.false. |
---|
| 88 | call getin('adjust',adjust) |
---|
| 89 | |
---|
| 90 | itaumax=0 |
---|
| 91 | call getin('itaumax',itaumax); |
---|
| 92 | if (itaumax<=0) itaumax=HUGE(itaumax) |
---|
| 93 | |
---|
| 94 | !Config Key = lunout |
---|
| 95 | !Config Desc = unite de fichier pour les impressions |
---|
| 96 | !Config Def = 6 |
---|
| 97 | !Config Help = unite de fichier pour les impressions |
---|
| 98 | !Config (defaut sortie standard = 6) |
---|
| 99 | lunout=6 |
---|
| 100 | CALL getin('lunout', lunout) |
---|
| 101 | IF (lunout /= 5 .and. lunout /= 6) THEN |
---|
| 102 | OPEN(lunout,FILE='lmdz.out') |
---|
| 103 | ENDIF |
---|
| 104 | |
---|
| 105 | !Config Key = prt_level |
---|
| 106 | !Config Desc = niveau d'impressions de débogage |
---|
| 107 | !Config Def = 0 |
---|
| 108 | !Config Help = Niveau d'impression pour le débogage |
---|
| 109 | !Config (0 = minimum d'impression) |
---|
| 110 | prt_level = 0 |
---|
| 111 | CALL getin('prt_level',prt_level) |
---|
| 112 | |
---|
| 113 | c----------------------------------------------------------------------- |
---|
| 114 | c Parametres de controle du run: |
---|
| 115 | c----------------------------------------------------------------------- |
---|
[1146] | 116 | !Config Key = planet_type |
---|
| 117 | !Config Desc = planet type ("earth", "mars", "venus", ...) |
---|
| 118 | !Config Def = earth |
---|
| 119 | !Config Help = this flag sets the type of atymosphere that is considered |
---|
| 120 | planet_type="earth" |
---|
| 121 | CALL getin('planet_type',planet_type) |
---|
[630] | 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 | |
---|
| 149 | !Config Key = nday |
---|
| 150 | !Config Desc = Nombre de jours d'integration |
---|
| 151 | !Config Def = 10 |
---|
| 152 | !Config Help = Nombre de jours d'integration |
---|
| 153 | !Config ... On pourait aussi permettre des mois ou des annees ! |
---|
| 154 | nday = 10 |
---|
| 155 | CALL getin('nday',nday) |
---|
| 156 | |
---|
| 157 | !Config Key = day_step |
---|
| 158 | !Config Desc = nombre de pas par jour |
---|
| 159 | !Config Def = 240 |
---|
| 160 | !Config Help = nombre de pas par jour (multiple de iperiod) ( |
---|
| 161 | !Config ici pour dt = 1 min ) |
---|
| 162 | day_step = 240 |
---|
| 163 | CALL getin('day_step',day_step) |
---|
| 164 | |
---|
| 165 | !Config Key = iperiod |
---|
| 166 | !Config Desc = periode pour le pas Matsuno |
---|
| 167 | !Config Def = 5 |
---|
| 168 | !Config Help = periode pour le pas Matsuno (en pas de temps) |
---|
| 169 | iperiod = 5 |
---|
| 170 | CALL getin('iperiod',iperiod) |
---|
| 171 | |
---|
| 172 | !Config Key = iapp_tracvl |
---|
| 173 | !Config Desc = frequence du groupement des flux |
---|
| 174 | !Config Def = iperiod |
---|
| 175 | !Config Help = frequence du groupement des flux (en pas de temps) |
---|
| 176 | iapp_tracvl = iperiod |
---|
| 177 | CALL getin('iapp_tracvl',iapp_tracvl) |
---|
| 178 | |
---|
| 179 | !Config Key = iconser |
---|
| 180 | !Config Desc = periode de sortie des variables de controle |
---|
| 181 | !Config Def = 240 |
---|
| 182 | !Config Help = periode de sortie des variables de controle |
---|
| 183 | !Config (En pas de temps) |
---|
| 184 | iconser = 240 |
---|
| 185 | CALL getin('iconser', iconser) |
---|
| 186 | |
---|
| 187 | !Config Key = iecri |
---|
| 188 | !Config Desc = periode d'ecriture du fichier histoire |
---|
| 189 | !Config Def = 1 |
---|
| 190 | !Config Help = periode d'ecriture du fichier histoire (en jour) |
---|
| 191 | iecri = 1 |
---|
| 192 | CALL getin('iecri',iecri) |
---|
| 193 | |
---|
| 194 | |
---|
| 195 | !Config Key = periodav |
---|
| 196 | !Config Desc = periode de stockage fichier histmoy |
---|
| 197 | !Config Def = 1 |
---|
| 198 | !Config Help = periode de stockage fichier histmoy (en jour) |
---|
| 199 | periodav = 1. |
---|
| 200 | CALL getin('periodav',periodav) |
---|
| 201 | |
---|
[1146] | 202 | !Config Key = output_grads_dyn |
---|
| 203 | !Config Desc = output dynamics diagnostics in 'dyn.dat' file |
---|
| 204 | !Config Def = n |
---|
| 205 | !Config Help = output dynamics diagnostics in Grads-readable 'dyn.dat' file |
---|
| 206 | output_grads_dyn=.false. |
---|
| 207 | CALL getin('output_grads_dyn',output_grads_dyn) |
---|
| 208 | |
---|
[630] | 209 | !Config Key = idissip |
---|
| 210 | !Config Desc = periode de la dissipation |
---|
| 211 | !Config Def = 10 |
---|
| 212 | !Config Help = periode de la dissipation |
---|
| 213 | !Config (en pas) ... a completer ! |
---|
| 214 | idissip = 10 |
---|
| 215 | CALL getin('idissip',idissip) |
---|
| 216 | |
---|
| 217 | ccc .... P. Le Van , modif le 29/04/97 .pour la dissipation ... |
---|
| 218 | ccc |
---|
| 219 | |
---|
| 220 | !Config Key = lstardis |
---|
| 221 | !Config Desc = choix de l'operateur de dissipation |
---|
| 222 | !Config Def = y |
---|
| 223 | !Config Help = choix de l'operateur de dissipation |
---|
| 224 | !Config 'y' si on veut star et 'n' si on veut non-start ! |
---|
| 225 | !Config Moi y en a pas comprendre ! |
---|
| 226 | lstardis = .TRUE. |
---|
| 227 | CALL getin('lstardis',lstardis) |
---|
| 228 | |
---|
| 229 | |
---|
| 230 | !Config Key = nitergdiv |
---|
| 231 | !Config Desc = Nombre d'iteration de gradiv |
---|
| 232 | !Config Def = 1 |
---|
| 233 | !Config Help = nombre d'iterations de l'operateur de dissipation |
---|
| 234 | !Config gradiv |
---|
| 235 | nitergdiv = 1 |
---|
| 236 | CALL getin('nitergdiv',nitergdiv) |
---|
| 237 | |
---|
| 238 | !Config Key = nitergrot |
---|
| 239 | !Config Desc = nombre d'iterations de nxgradrot |
---|
| 240 | !Config Def = 2 |
---|
| 241 | !Config Help = nombre d'iterations de l'operateur de dissipation |
---|
| 242 | !Config nxgradrot |
---|
| 243 | nitergrot = 2 |
---|
| 244 | CALL getin('nitergrot',nitergrot) |
---|
| 245 | |
---|
| 246 | |
---|
| 247 | !Config Key = niterh |
---|
| 248 | !Config Desc = nombre d'iterations de divgrad |
---|
| 249 | !Config Def = 2 |
---|
| 250 | !Config Help = nombre d'iterations de l'operateur de dissipation |
---|
| 251 | !Config divgrad |
---|
| 252 | niterh = 2 |
---|
| 253 | CALL getin('niterh',niterh) |
---|
| 254 | |
---|
| 255 | |
---|
| 256 | !Config Key = tetagdiv |
---|
| 257 | !Config Desc = temps de dissipation pour div |
---|
| 258 | !Config Def = 7200 |
---|
| 259 | !Config Help = temps de dissipation des plus petites longeur |
---|
| 260 | !Config d'ondes pour u,v (gradiv) |
---|
| 261 | tetagdiv = 7200. |
---|
| 262 | CALL getin('tetagdiv',tetagdiv) |
---|
| 263 | |
---|
| 264 | !Config Key = tetagrot |
---|
| 265 | !Config Desc = temps de dissipation pour grad |
---|
| 266 | !Config Def = 7200 |
---|
| 267 | !Config Help = temps de dissipation des plus petites longeur |
---|
| 268 | !Config d'ondes pour u,v (nxgradrot) |
---|
| 269 | tetagrot = 7200. |
---|
| 270 | CALL getin('tetagrot',tetagrot) |
---|
| 271 | |
---|
| 272 | !Config Key = tetatemp |
---|
| 273 | !Config Desc = temps de dissipation pour h |
---|
| 274 | !Config Def = 7200 |
---|
| 275 | !Config Help = temps de dissipation des plus petites longeur |
---|
| 276 | !Config d'ondes pour h (divgrad) |
---|
| 277 | tetatemp = 7200. |
---|
| 278 | CALL getin('tetatemp',tetatemp ) |
---|
| 279 | |
---|
| 280 | !Config Key = coefdis |
---|
| 281 | !Config Desc = coefficient pour gamdissip |
---|
| 282 | !Config Def = 0 |
---|
| 283 | !Config Help = coefficient pour gamdissip |
---|
| 284 | coefdis = 0. |
---|
| 285 | CALL getin('coefdis',coefdis) |
---|
| 286 | |
---|
| 287 | !Config Key = purmats |
---|
| 288 | !Config Desc = Schema d'integration |
---|
| 289 | !Config Def = n |
---|
| 290 | !Config Help = Choix du schema d'integration temporel. |
---|
| 291 | !Config y = pure Matsuno sinon c'est du Matsuno-leapfrog |
---|
| 292 | purmats = .FALSE. |
---|
| 293 | CALL getin('purmats',purmats) |
---|
| 294 | |
---|
| 295 | !Config Key = ok_guide |
---|
| 296 | !Config Desc = Guidage |
---|
| 297 | !Config Def = n |
---|
| 298 | !Config Help = Guidage |
---|
| 299 | ok_guide = .FALSE. |
---|
| 300 | CALL getin('ok_guide',ok_guide) |
---|
| 301 | |
---|
| 302 | c ............................................................... |
---|
| 303 | |
---|
[1146] | 304 | !Config Key = read_start |
---|
| 305 | !Config Desc = Initialize model using a 'start.nc' file |
---|
| 306 | !Config Def = y |
---|
| 307 | !Config Help = y: intialize dynamical fields using a 'start.nc' file |
---|
| 308 | ! n: fields are initialized by 'iniacademic' routine |
---|
| 309 | read_start= .true. |
---|
| 310 | CALL getin('read_start',read_start) |
---|
| 311 | |
---|
[630] | 312 | !Config Key = iflag_phys |
---|
| 313 | !Config Desc = Avec ls physique |
---|
| 314 | !Config Def = 1 |
---|
| 315 | !Config Help = Permet de faire tourner le modele sans |
---|
| 316 | !Config physique. |
---|
| 317 | iflag_phys = 1 |
---|
| 318 | CALL getin('iflag_phys',iflag_phys) |
---|
| 319 | |
---|
| 320 | |
---|
| 321 | !Config Key = iphysiq |
---|
| 322 | !Config Desc = Periode de la physique |
---|
| 323 | !Config Def = 5 |
---|
| 324 | !Config Help = Periode de la physique en pas de temps de la dynamique. |
---|
| 325 | iphysiq = 5 |
---|
| 326 | CALL getin('iphysiq', iphysiq) |
---|
| 327 | |
---|
| 328 | ccc .... P.Le Van, ajout le 03/01/96 pour l'ecriture phys ... |
---|
| 329 | c |
---|
| 330 | |
---|
| 331 | |
---|
[764] | 332 | !Config Key = ip_ebil_dyn |
---|
| 333 | !Config Desc = PRINT level for energy conserv. diag. |
---|
| 334 | !Config Def = 0 |
---|
| 335 | !Config Help = PRINT level for energy conservation diag. ; |
---|
| 336 | ! les options suivantes existent : |
---|
| 337 | !Config 0 pas de print |
---|
| 338 | !Config 1 pas de print |
---|
| 339 | !Config 2 print, |
---|
| 340 | ip_ebil_dyn = 0 |
---|
| 341 | CALL getin('ip_ebil_dyn',ip_ebil_dyn) |
---|
| 342 | ! |
---|
[630] | 343 | |
---|
| 344 | |
---|
| 345 | ccc .... P. Le Van , ajout le 7/03/95 .pour le zoom ... |
---|
| 346 | c ......... ( modif le 17/04/96 ) ......... |
---|
| 347 | c |
---|
| 348 | IF( etatinit ) GO TO 100 |
---|
| 349 | |
---|
| 350 | !Config Key = clon |
---|
| 351 | !Config Desc = centre du zoom, longitude |
---|
| 352 | !Config Def = 0 |
---|
| 353 | !Config Help = longitude en degres du centre |
---|
| 354 | !Config du zoom |
---|
| 355 | clonn = 0. |
---|
| 356 | CALL getin('clon',clonn) |
---|
| 357 | |
---|
| 358 | !Config Key = clat |
---|
| 359 | !Config Desc = centre du zoom, latitude |
---|
| 360 | !Config Def = 0 |
---|
| 361 | !Config Help = latitude en degres du centre du zoom |
---|
| 362 | !Config |
---|
| 363 | clatt = 0. |
---|
| 364 | CALL getin('clat',clatt) |
---|
| 365 | |
---|
| 366 | c |
---|
| 367 | c |
---|
| 368 | IF( ABS(clat - clatt).GE. 0.001 ) THEN |
---|
[1146] | 369 | write(lunout,*)'conf_gcm: La valeur de clat passee par run.def', |
---|
| 370 | & ' est differente de celle lue sur le fichier start ' |
---|
[630] | 371 | STOP |
---|
| 372 | ENDIF |
---|
| 373 | |
---|
| 374 | !Config Key = grossismx |
---|
| 375 | !Config Desc = zoom en longitude |
---|
| 376 | !Config Def = 1.0 |
---|
| 377 | !Config Help = facteur de grossissement du zoom, |
---|
| 378 | !Config selon la longitude |
---|
| 379 | grossismxx = 1.0 |
---|
| 380 | CALL getin('grossismx',grossismxx) |
---|
| 381 | |
---|
| 382 | |
---|
| 383 | IF( ABS(grossismx - grossismxx).GE. 0.001 ) THEN |
---|
[1146] | 384 | write(lunout,*)'conf_gcm: La valeur de grossismx passee par ', |
---|
| 385 | & 'run.def est differente de celle lue sur le fichier start ' |
---|
[630] | 386 | STOP |
---|
| 387 | ENDIF |
---|
| 388 | |
---|
| 389 | !Config Key = grossismy |
---|
| 390 | !Config Desc = zoom en latitude |
---|
| 391 | !Config Def = 1.0 |
---|
| 392 | !Config Help = facteur de grossissement du zoom, |
---|
| 393 | !Config selon la latitude |
---|
| 394 | grossismyy = 1.0 |
---|
| 395 | CALL getin('grossismy',grossismyy) |
---|
| 396 | |
---|
| 397 | IF( ABS(grossismy - grossismyy).GE. 0.001 ) THEN |
---|
[1146] | 398 | write(lunout,*)'conf_gcm: La valeur de grossismy passee par ', |
---|
| 399 | & 'run.def est differente de celle lue sur le fichier start ' |
---|
[630] | 400 | STOP |
---|
| 401 | ENDIF |
---|
| 402 | |
---|
| 403 | IF( grossismx.LT.1. ) THEN |
---|
[1146] | 404 | write(lunout,*) |
---|
| 405 | & 'conf_gcm: *** ATTENTION !! grossismx < 1 . *** ' |
---|
[630] | 406 | STOP |
---|
| 407 | ELSE |
---|
| 408 | alphax = 1. - 1./ grossismx |
---|
| 409 | ENDIF |
---|
| 410 | |
---|
| 411 | |
---|
| 412 | IF( grossismy.LT.1. ) THEN |
---|
[1146] | 413 | write(lunout,*) |
---|
| 414 | & 'conf_gcm: *** ATTENTION !! grossismy < 1 . *** ' |
---|
[630] | 415 | STOP |
---|
| 416 | ELSE |
---|
| 417 | alphay = 1. - 1./ grossismy |
---|
| 418 | ENDIF |
---|
| 419 | |
---|
[1146] | 420 | write(lunout,*)'conf_gcm: alphax alphay',alphax,alphay |
---|
[630] | 421 | c |
---|
| 422 | c alphax et alphay sont les anciennes formulat. des grossissements |
---|
| 423 | c |
---|
| 424 | c |
---|
| 425 | |
---|
| 426 | !Config Key = fxyhypb |
---|
| 427 | !Config Desc = Fonction hyperbolique |
---|
| 428 | !Config Def = y |
---|
| 429 | !Config Help = Fonction f(y) hyperbolique si = .true. |
---|
| 430 | !Config sinon sinusoidale |
---|
| 431 | fxyhypbb = .TRUE. |
---|
| 432 | CALL getin('fxyhypb',fxyhypbb) |
---|
| 433 | |
---|
| 434 | IF( .NOT.fxyhypb ) THEN |
---|
[1146] | 435 | IF( fxyhypbb ) THEN |
---|
| 436 | write(lunout,*)' ******** PBS DANS CONF_GCM ******** ' |
---|
| 437 | write(lunout,*)' *** fxyhypb lu sur le fichier start est ', |
---|
| 438 | * 'F alors qu il est T sur run.def ***' |
---|
[630] | 439 | STOP |
---|
[1146] | 440 | ENDIF |
---|
[630] | 441 | ELSE |
---|
[1146] | 442 | IF( .NOT.fxyhypbb ) THEN |
---|
| 443 | write(lunout,*)' ******** PBS DANS CONF_GCM ******** ' |
---|
| 444 | write(lunout,*)' *** fxyhypb lu sur le fichier start est ', |
---|
| 445 | * 'T alors qu il est F sur run.def **** ' |
---|
[630] | 446 | STOP |
---|
[1146] | 447 | ENDIF |
---|
[630] | 448 | ENDIF |
---|
| 449 | c |
---|
| 450 | !Config Key = dzoomx |
---|
| 451 | !Config Desc = extension en longitude |
---|
| 452 | !Config Def = 0 |
---|
| 453 | !Config Help = extension en longitude de la zone du zoom |
---|
| 454 | !Config ( fraction de la zone totale) |
---|
| 455 | dzoomxx = 0.0 |
---|
| 456 | CALL getin('dzoomx',dzoomxx) |
---|
| 457 | |
---|
| 458 | IF( fxyhypb ) THEN |
---|
| 459 | IF( ABS(dzoomx - dzoomxx).GE. 0.001 ) THEN |
---|
[1146] | 460 | write(lunout,*)'conf_gcm: La valeur de dzoomx passee par ', |
---|
| 461 | * 'run.def est differente de celle lue sur le fichier start ' |
---|
[630] | 462 | STOP |
---|
| 463 | ENDIF |
---|
| 464 | ENDIF |
---|
| 465 | |
---|
| 466 | !Config Key = dzoomy |
---|
| 467 | !Config Desc = extension en latitude |
---|
| 468 | !Config Def = 0 |
---|
| 469 | !Config Help = extension en latitude de la zone du zoom |
---|
| 470 | !Config ( fraction de la zone totale) |
---|
| 471 | dzoomyy = 0.0 |
---|
| 472 | CALL getin('dzoomy',dzoomyy) |
---|
| 473 | |
---|
| 474 | IF( fxyhypb ) THEN |
---|
| 475 | IF( ABS(dzoomy - dzoomyy).GE. 0.001 ) THEN |
---|
[1146] | 476 | write(lunout,*)'conf_gcm: La valeur de dzoomy passee par ', |
---|
| 477 | * 'run.def est differente de celle lue sur le fichier start ' |
---|
[630] | 478 | STOP |
---|
| 479 | ENDIF |
---|
| 480 | ENDIF |
---|
| 481 | |
---|
| 482 | !Config Key = taux |
---|
| 483 | !Config Desc = raideur du zoom en X |
---|
| 484 | !Config Def = 3 |
---|
| 485 | !Config Help = raideur du zoom en X |
---|
| 486 | tauxx = 3.0 |
---|
| 487 | CALL getin('taux',tauxx) |
---|
| 488 | |
---|
| 489 | IF( fxyhypb ) THEN |
---|
| 490 | IF( ABS(taux - tauxx).GE. 0.001 ) THEN |
---|
[1146] | 491 | write(lunout,*)'conf_gcm: La valeur de taux passee par ', |
---|
| 492 | * 'run.def est differente de celle lue sur le fichier start ' |
---|
[630] | 493 | STOP |
---|
| 494 | ENDIF |
---|
| 495 | ENDIF |
---|
| 496 | |
---|
| 497 | !Config Key = tauyy |
---|
| 498 | !Config Desc = raideur du zoom en Y |
---|
| 499 | !Config Def = 3 |
---|
| 500 | !Config Help = raideur du zoom en Y |
---|
| 501 | tauyy = 3.0 |
---|
| 502 | CALL getin('tauy',tauyy) |
---|
| 503 | |
---|
| 504 | IF( fxyhypb ) THEN |
---|
| 505 | IF( ABS(tauy - tauyy).GE. 0.001 ) THEN |
---|
[1146] | 506 | write(lunout,*)'conf_gcm: La valeur de tauy passee par ', |
---|
| 507 | * 'run.def est differente de celle lue sur le fichier start ' |
---|
[630] | 508 | STOP |
---|
| 509 | ENDIF |
---|
| 510 | ENDIF |
---|
| 511 | |
---|
| 512 | cc |
---|
| 513 | IF( .NOT.fxyhypb ) THEN |
---|
| 514 | |
---|
| 515 | !Config Key = ysinus |
---|
| 516 | !Config IF = !fxyhypb |
---|
| 517 | !Config Desc = Fonction en Sinus |
---|
| 518 | !Config Def = y |
---|
| 519 | !Config Help = Fonction f(y) avec y = Sin(latit.) si = .true. |
---|
| 520 | !Config sinon y = latit. |
---|
| 521 | ysinuss = .TRUE. |
---|
| 522 | CALL getin('ysinus',ysinuss) |
---|
| 523 | |
---|
| 524 | IF( .NOT.ysinus ) THEN |
---|
[1146] | 525 | IF( ysinuss ) THEN |
---|
| 526 | write(lunout,*)' ******** PBS DANS CONF_GCM ******** ' |
---|
| 527 | write(lunout,*)' *** ysinus lu sur le fichier start est F', |
---|
| 528 | * ' alors qu il est T sur run.def ***' |
---|
| 529 | STOP |
---|
| 530 | ENDIF |
---|
[630] | 531 | ELSE |
---|
[1146] | 532 | IF( .NOT.ysinuss ) THEN |
---|
| 533 | write(lunout,*)' ******** PBS DANS CONF_GCM ******** ' |
---|
| 534 | write(lunout,*)' *** ysinus lu sur le fichier start est T', |
---|
| 535 | * ' alors qu il est F sur run.def **** ' |
---|
[630] | 536 | STOP |
---|
[1146] | 537 | ENDIF |
---|
[630] | 538 | ENDIF |
---|
[1146] | 539 | ENDIF ! of IF( .NOT.fxyhypb ) |
---|
[630] | 540 | c |
---|
| 541 | !Config Key = offline |
---|
| 542 | !Config Desc = Nouvelle eau liquide |
---|
| 543 | !Config Def = n |
---|
| 544 | !Config Help = Permet de mettre en route la |
---|
| 545 | !Config nouvelle parametrisation de l'eau liquide ! |
---|
| 546 | offline = .FALSE. |
---|
| 547 | CALL getin('offline',offline) |
---|
| 548 | |
---|
[960] | 549 | !Config Key = config_inca |
---|
| 550 | !Config Desc = Choix de configuration de INCA |
---|
| 551 | !Config Def = none |
---|
| 552 | !Config Help = Choix de configuration de INCA : |
---|
| 553 | !Config 'none' = sans INCA |
---|
| 554 | !Config 'chem' = INCA avec calcul de chemie |
---|
| 555 | !Config 'aero' = INCA avec calcul des aerosols |
---|
| 556 | config_inca = 'none' |
---|
| 557 | CALL getin('config_inca',config_inca) |
---|
[630] | 558 | |
---|
[1146] | 559 | !Config Key = ok_dynzon |
---|
| 560 | !Config Desc = calcul et sortie des transports |
---|
| 561 | !Config Def = n |
---|
| 562 | !Config Help = Permet de mettre en route le calcul des transports |
---|
| 563 | !Config |
---|
| 564 | ok_dynzon = .FALSE. |
---|
| 565 | CALL getin('ok_dynzon',ok_dynzon) |
---|
[960] | 566 | |
---|
[1146] | 567 | |
---|
[630] | 568 | write(lunout,*)' #########################################' |
---|
| 569 | write(lunout,*)' Configuration des parametres du gcm: ' |
---|
[1146] | 570 | write(lunout,*)' planet_type = ', planet_type |
---|
[630] | 571 | write(lunout,*)' dayref = ', dayref |
---|
| 572 | write(lunout,*)' anneeref = ', anneeref |
---|
| 573 | write(lunout,*)' nday = ', nday |
---|
| 574 | write(lunout,*)' day_step = ', day_step |
---|
| 575 | write(lunout,*)' iperiod = ', iperiod |
---|
| 576 | write(lunout,*)' iconser = ', iconser |
---|
| 577 | write(lunout,*)' iecri = ', iecri |
---|
| 578 | write(lunout,*)' periodav = ', periodav |
---|
[1146] | 579 | write(lunout,*)' output_grads_dyn = ', output_grads_dyn |
---|
[630] | 580 | write(lunout,*)' idissip = ', idissip |
---|
| 581 | write(lunout,*)' lstardis = ', lstardis |
---|
| 582 | write(lunout,*)' nitergdiv = ', nitergdiv |
---|
| 583 | write(lunout,*)' nitergrot = ', nitergrot |
---|
| 584 | write(lunout,*)' niterh = ', niterh |
---|
| 585 | write(lunout,*)' tetagdiv = ', tetagdiv |
---|
| 586 | write(lunout,*)' tetagrot = ', tetagrot |
---|
| 587 | write(lunout,*)' tetatemp = ', tetatemp |
---|
| 588 | write(lunout,*)' coefdis = ', coefdis |
---|
| 589 | write(lunout,*)' purmats = ', purmats |
---|
[1146] | 590 | write(lunout,*)' read_start = ', read_start |
---|
[630] | 591 | write(lunout,*)' iflag_phys = ', iflag_phys |
---|
| 592 | write(lunout,*)' clonn = ', clonn |
---|
| 593 | write(lunout,*)' clatt = ', clatt |
---|
| 594 | write(lunout,*)' grossismx = ', grossismx |
---|
| 595 | write(lunout,*)' grossismy = ', grossismy |
---|
| 596 | write(lunout,*)' fxyhypbb = ', fxyhypbb |
---|
| 597 | write(lunout,*)' dzoomxx = ', dzoomxx |
---|
| 598 | write(lunout,*)' dzoomy = ', dzoomyy |
---|
| 599 | write(lunout,*)' tauxx = ', tauxx |
---|
| 600 | write(lunout,*)' tauyy = ', tauyy |
---|
| 601 | write(lunout,*)' offline = ', offline |
---|
[960] | 602 | write(lunout,*)' config_inca = ', config_inca |
---|
[1146] | 603 | write(lunout,*)' ok_dynzon = ', ok_dynzon |
---|
[630] | 604 | |
---|
| 605 | RETURN |
---|
| 606 | c ............................................... |
---|
| 607 | c |
---|
| 608 | 100 CONTINUE |
---|
| 609 | !Config Key = clon |
---|
| 610 | !Config Desc = centre du zoom, longitude |
---|
| 611 | !Config Def = 0 |
---|
| 612 | !Config Help = longitude en degres du centre |
---|
| 613 | !Config du zoom |
---|
| 614 | clon = 0. |
---|
| 615 | CALL getin('clon',clon) |
---|
| 616 | |
---|
| 617 | !Config Key = clat |
---|
| 618 | !Config Desc = centre du zoom, latitude |
---|
| 619 | !Config Def = 0 |
---|
| 620 | !Config Help = latitude en degres du centre du zoom |
---|
| 621 | !Config |
---|
| 622 | clat = 0. |
---|
| 623 | CALL getin('clat',clat) |
---|
| 624 | |
---|
| 625 | !Config Key = grossismx |
---|
| 626 | !Config Desc = zoom en longitude |
---|
| 627 | !Config Def = 1.0 |
---|
| 628 | !Config Help = facteur de grossissement du zoom, |
---|
| 629 | !Config selon la longitude |
---|
| 630 | grossismx = 1.0 |
---|
| 631 | CALL getin('grossismx',grossismx) |
---|
| 632 | |
---|
| 633 | !Config Key = grossismy |
---|
| 634 | !Config Desc = zoom en latitude |
---|
| 635 | !Config Def = 1.0 |
---|
| 636 | !Config Help = facteur de grossissement du zoom, |
---|
| 637 | !Config selon la latitude |
---|
| 638 | grossismy = 1.0 |
---|
| 639 | CALL getin('grossismy',grossismy) |
---|
| 640 | |
---|
| 641 | IF( grossismx.LT.1. ) THEN |
---|
[1146] | 642 | write(lunout,*) |
---|
| 643 | & 'conf_gcm: *** ATTENTION !! grossismx < 1 . *** ' |
---|
[630] | 644 | STOP |
---|
| 645 | ELSE |
---|
| 646 | alphax = 1. - 1./ grossismx |
---|
| 647 | ENDIF |
---|
| 648 | |
---|
| 649 | |
---|
| 650 | IF( grossismy.LT.1. ) THEN |
---|
[1146] | 651 | write(lunout,*) |
---|
| 652 | & 'conf_gcm: *** ATTENTION !! grossismy < 1 . *** ' |
---|
[630] | 653 | STOP |
---|
| 654 | ELSE |
---|
| 655 | alphay = 1. - 1./ grossismy |
---|
| 656 | ENDIF |
---|
| 657 | |
---|
[1146] | 658 | write(lunout,*)'conf_gcm: alphax alphay ',alphax,alphay |
---|
[630] | 659 | c |
---|
| 660 | c alphax et alphay sont les anciennes formulat. des grossissements |
---|
| 661 | c |
---|
| 662 | c |
---|
| 663 | |
---|
| 664 | !Config Key = fxyhypb |
---|
| 665 | !Config Desc = Fonction hyperbolique |
---|
| 666 | !Config Def = y |
---|
| 667 | !Config Help = Fonction f(y) hyperbolique si = .true. |
---|
| 668 | !Config sinon sinusoidale |
---|
| 669 | fxyhypb = .TRUE. |
---|
| 670 | CALL getin('fxyhypb',fxyhypb) |
---|
| 671 | |
---|
| 672 | !Config Key = dzoomx |
---|
| 673 | !Config Desc = extension en longitude |
---|
| 674 | !Config Def = 0 |
---|
| 675 | !Config Help = extension en longitude de la zone du zoom |
---|
| 676 | !Config ( fraction de la zone totale) |
---|
| 677 | dzoomx = 0.0 |
---|
| 678 | CALL getin('dzoomx',dzoomx) |
---|
| 679 | |
---|
| 680 | !Config Key = dzoomy |
---|
| 681 | !Config Desc = extension en latitude |
---|
| 682 | !Config Def = 0 |
---|
| 683 | !Config Help = extension en latitude de la zone du zoom |
---|
| 684 | !Config ( fraction de la zone totale) |
---|
| 685 | dzoomy = 0.0 |
---|
| 686 | CALL getin('dzoomy',dzoomy) |
---|
| 687 | |
---|
| 688 | !Config Key = taux |
---|
| 689 | !Config Desc = raideur du zoom en X |
---|
| 690 | !Config Def = 3 |
---|
| 691 | !Config Help = raideur du zoom en X |
---|
| 692 | taux = 3.0 |
---|
| 693 | CALL getin('taux',taux) |
---|
| 694 | |
---|
| 695 | !Config Key = tauy |
---|
| 696 | !Config Desc = raideur du zoom en Y |
---|
| 697 | !Config Def = 3 |
---|
| 698 | !Config Help = raideur du zoom en Y |
---|
| 699 | tauy = 3.0 |
---|
| 700 | CALL getin('tauy',tauy) |
---|
| 701 | |
---|
| 702 | !Config Key = ysinus |
---|
| 703 | !Config IF = !fxyhypb |
---|
| 704 | !Config Desc = Fonction en Sinus |
---|
| 705 | !Config Def = y |
---|
| 706 | !Config Help = Fonction f(y) avec y = Sin(latit.) si = .true. |
---|
| 707 | !Config sinon y = latit. |
---|
| 708 | ysinus = .TRUE. |
---|
| 709 | CALL getin('ysinus',ysinus) |
---|
| 710 | c |
---|
| 711 | !Config Key = offline |
---|
| 712 | !Config Desc = Nouvelle eau liquide |
---|
| 713 | !Config Def = n |
---|
| 714 | !Config Help = Permet de mettre en route la |
---|
| 715 | !Config nouvelle parametrisation de l'eau liquide ! |
---|
| 716 | offline = .FALSE. |
---|
| 717 | CALL getin('offline',offline) |
---|
| 718 | |
---|
[960] | 719 | !Config Key = config_inca |
---|
| 720 | !Config Desc = Choix de configuration de INCA |
---|
| 721 | !Config Def = none |
---|
| 722 | !Config Help = Choix de configuration de INCA : |
---|
| 723 | !Config 'none' = sans INCA |
---|
| 724 | !Config 'chem' = INCA avec calcul de chemie |
---|
| 725 | !Config 'aero' = INCA avec calcul des aerosols |
---|
| 726 | config_inca = 'none' |
---|
| 727 | CALL getin('config_inca',config_inca) |
---|
[630] | 728 | |
---|
[1146] | 729 | !Config Key = ok_dynzon |
---|
| 730 | !Config Desc = calcul et sortie des transports |
---|
| 731 | !Config Def = n |
---|
| 732 | !Config Help = Permet de mettre en route le calcul des transports |
---|
| 733 | !Config |
---|
| 734 | ok_dynzon = .FALSE. |
---|
| 735 | CALL getin('ok_dynzon',ok_dynzon) |
---|
| 736 | |
---|
[985] | 737 | !Config Key = use_filtre_fft |
---|
| 738 | !Config Desc = flag d'activation des FFT pour le filtre |
---|
| 739 | !Config Def = false |
---|
| 740 | !Config Help = permet d'activer l'utilisation des FFT pour effectuer |
---|
| 741 | !Config le filtrage aux poles. |
---|
| 742 | use_filtre_fft=.FALSE. |
---|
| 743 | CALL getin('use_filtre_fft',use_filtre_fft) |
---|
[1146] | 744 | |
---|
| 745 | IF (use_filtre_fft .AND. grossismx /= 1.0) THEN |
---|
| 746 | write(lunout,*)'WARNING !!! ' |
---|
| 747 | write(lunout,*)"Le zoom en longitude est incompatible", |
---|
| 748 | & " avec l'utilisation du filtre FFT ", |
---|
| 749 | & "---> filtre FFT désactivé " |
---|
| 750 | use_filtre_fft=.FALSE. |
---|
| 751 | ENDIF |
---|
[985] | 752 | |
---|
[1146] | 753 | |
---|
| 754 | |
---|
[985] | 755 | !Config Key = use_mpi_alloc |
---|
[1146] | 756 | !Config Desc = Utilise un buffer MPI en m�moire globale |
---|
[985] | 757 | !Config Def = false |
---|
| 758 | !Config Help = permet d'activer l'utilisation d'un buffer MPI |
---|
[1146] | 759 | !Config en m�moire globale a l'aide de la fonction MPI_ALLOC. |
---|
| 760 | !Config Cela peut am�liorer la bande passante des transferts MPI |
---|
[985] | 761 | !Config d'un facteur 2 |
---|
| 762 | use_mpi_alloc=.FALSE. |
---|
| 763 | CALL getin('use_mpi_alloc',use_mpi_alloc) |
---|
[960] | 764 | |
---|
[985] | 765 | !Config Key = omp_chunk |
---|
| 766 | !Config Desc = taille des blocs openmp |
---|
| 767 | !Config Def = 1 |
---|
[1146] | 768 | !Config Help = defini la taille des packets d'it�ration openmp |
---|
| 769 | !Config distribu�e � chaque t�che lors de l'entr�e dans une |
---|
| 770 | !Config boucle parall�lis�e |
---|
[985] | 771 | |
---|
| 772 | omp_chunk=1 |
---|
| 773 | CALL getin('omp_chunk',omp_chunk) |
---|
| 774 | |
---|
[1000] | 775 | !Config key = ok_strato |
---|
| 776 | !Config Desc = activation de la version strato |
---|
| 777 | !Config Def = .FALSE. |
---|
[1146] | 778 | !Config Help = active la version stratosph�rique de LMDZ de F. Lott |
---|
[1000] | 779 | |
---|
| 780 | ok_strato=.FALSE. |
---|
| 781 | CALL getin('ok_strato',ok_strato) |
---|
| 782 | |
---|
[1046] | 783 | !Config Key = ok_gradsfile |
---|
| 784 | !Config Desc = activation des sorties grads du guidage |
---|
| 785 | !Config Def = n |
---|
| 786 | !Config Help = active les sorties grads du guidage |
---|
| 787 | |
---|
| 788 | ok_gradsfile = .FALSE. |
---|
| 789 | CALL getin('ok_gradsfile',ok_gradsfile) |
---|
| 790 | |
---|
[630] | 791 | write(lunout,*)' #########################################' |
---|
| 792 | write(lunout,*)' Configuration des parametres du gcm: ' |
---|
[1146] | 793 | write(lunout,*)' planet_type = ', planet_type |
---|
[630] | 794 | write(lunout,*)' dayref = ', dayref |
---|
| 795 | write(lunout,*)' anneeref = ', anneeref |
---|
| 796 | write(lunout,*)' nday = ', nday |
---|
| 797 | write(lunout,*)' day_step = ', day_step |
---|
| 798 | write(lunout,*)' iperiod = ', iperiod |
---|
| 799 | write(lunout,*)' iconser = ', iconser |
---|
| 800 | write(lunout,*)' iecri = ', iecri |
---|
| 801 | write(lunout,*)' periodav = ', periodav |
---|
[1146] | 802 | write(lunout,*)' output_grads_dyn = ', output_grads_dyn |
---|
[630] | 803 | write(lunout,*)' idissip = ', idissip |
---|
| 804 | write(lunout,*)' lstardis = ', lstardis |
---|
| 805 | write(lunout,*)' nitergdiv = ', nitergdiv |
---|
| 806 | write(lunout,*)' nitergrot = ', nitergrot |
---|
| 807 | write(lunout,*)' niterh = ', niterh |
---|
| 808 | write(lunout,*)' tetagdiv = ', tetagdiv |
---|
| 809 | write(lunout,*)' tetagrot = ', tetagrot |
---|
| 810 | write(lunout,*)' tetatemp = ', tetatemp |
---|
| 811 | write(lunout,*)' coefdis = ', coefdis |
---|
| 812 | write(lunout,*)' purmats = ', purmats |
---|
[1146] | 813 | write(lunout,*)' read_start = ', read_start |
---|
[630] | 814 | write(lunout,*)' iflag_phys = ', iflag_phys |
---|
[985] | 815 | write(lunout,*)' clon = ', clon |
---|
| 816 | write(lunout,*)' clat = ', clat |
---|
[630] | 817 | write(lunout,*)' grossismx = ', grossismx |
---|
| 818 | write(lunout,*)' grossismy = ', grossismy |
---|
[1146] | 819 | write(lunout,*)' fxyhypb = ', fxyhypb |
---|
[630] | 820 | write(lunout,*)' dzoomx = ', dzoomx |
---|
| 821 | write(lunout,*)' dzoomy = ', dzoomy |
---|
| 822 | write(lunout,*)' taux = ', taux |
---|
| 823 | write(lunout,*)' tauy = ', tauy |
---|
| 824 | write(lunout,*)' offline = ', offline |
---|
[960] | 825 | write(lunout,*)' config_inca = ', config_inca |
---|
[1146] | 826 | write(lunout,*)' ok_dynzon = ', ok_dynzon |
---|
[985] | 827 | write(lunout,*)' use_filtre_fft = ', use_filtre_fft |
---|
| 828 | write(lunout,*)' use_mpi_alloc = ', use_mpi_alloc |
---|
| 829 | write(lunout,*)' omp_chunk = ', omp_chunk |
---|
[1000] | 830 | write(lunout,*)' ok_strato = ', ok_strato |
---|
[1046] | 831 | write(lunout,*)' ok_gradsfile = ', ok_gradsfile |
---|
[630] | 832 | c |
---|
| 833 | RETURN |
---|
| 834 | END |
---|