[630] | 1 | ! |
---|
| 2 | ! $Header$ |
---|
| 3 | ! |
---|
| 4 | c |
---|
| 5 | c |
---|
| 6 | PROGRAM gcm |
---|
| 7 | |
---|
| 8 | #ifdef CPP_IOIPSL |
---|
| 9 | USE IOIPSL |
---|
| 10 | #endif |
---|
[774] | 11 | USE mod_const_mpi, ONLY: init_const_mpi |
---|
[630] | 12 | USE parallel |
---|
[791] | 13 | USE mod_phys_lmdz_para, ONLY : klon_mpi_para_nb |
---|
| 14 | USE mod_grid_phy_lmdz |
---|
[1129] | 15 | USE mod_phys_lmdz_omp_data, ONLY: klon_omp |
---|
[630] | 16 | USE dimphy |
---|
[1114] | 17 | USE infotrac |
---|
[774] | 18 | USE mod_interface_dyn_phys |
---|
[630] | 19 | USE comgeomphy |
---|
| 20 | USE mod_hallo |
---|
| 21 | USE Bands |
---|
[1086] | 22 | |
---|
[1108] | 23 | USE filtreg_mod |
---|
[1086] | 24 | |
---|
[630] | 25 | IMPLICIT NONE |
---|
| 26 | |
---|
| 27 | c ...... Version du 10/01/98 .......... |
---|
| 28 | |
---|
| 29 | c avec coordonnees verticales hybrides |
---|
| 30 | c avec nouveaux operat. dissipation * ( gradiv2,divgrad2,nxgraro2 ) |
---|
| 31 | |
---|
| 32 | c======================================================================= |
---|
| 33 | c |
---|
| 34 | c Auteur: P. Le Van /L. Fairhead/F.Hourdin |
---|
| 35 | c ------- |
---|
| 36 | c |
---|
| 37 | c Objet: |
---|
| 38 | c ------ |
---|
| 39 | c |
---|
| 40 | c GCM LMD nouvelle grille |
---|
| 41 | c |
---|
| 42 | c======================================================================= |
---|
| 43 | c |
---|
| 44 | c ... Dans inigeom , nouveaux calculs pour les elongations cu , cv |
---|
| 45 | c et possibilite d'appeler une fonction f(y) a derivee tangente |
---|
| 46 | c hyperbolique a la place de la fonction a derivee sinusoidale. |
---|
| 47 | c ... Possibilite de choisir le schema pour l'advection de |
---|
| 48 | c q , en modifiant iadv dans traceur.def (MAF,10/02) . |
---|
| 49 | c |
---|
| 50 | c Pour Van-Leer + Vapeur d'eau saturee, iadv(1)=4. (F.Codron,10/99) |
---|
| 51 | c Pour Van-Leer iadv=10 |
---|
| 52 | c |
---|
| 53 | c----------------------------------------------------------------------- |
---|
| 54 | c Declarations: |
---|
| 55 | c ------------- |
---|
| 56 | #include "dimensions.h" |
---|
| 57 | #include "paramet.h" |
---|
| 58 | #include "comconst.h" |
---|
| 59 | #include "comdissnew.h" |
---|
| 60 | #include "comvert.h" |
---|
| 61 | #include "comgeom.h" |
---|
| 62 | #include "logic.h" |
---|
| 63 | #include "temps.h" |
---|
| 64 | #include "control.h" |
---|
| 65 | #include "ener.h" |
---|
| 66 | #include "description.h" |
---|
| 67 | #include "serre.h" |
---|
| 68 | #include "com_io_dyn.h" |
---|
| 69 | #include "iniprint.h" |
---|
| 70 | #include "tracstoke.h" |
---|
| 71 | |
---|
| 72 | INTEGER longcles |
---|
| 73 | PARAMETER ( longcles = 20 ) |
---|
| 74 | REAL clesphy0( longcles ) |
---|
| 75 | SAVE clesphy0 |
---|
| 76 | |
---|
| 77 | |
---|
| 78 | |
---|
| 79 | REAL zdtvr |
---|
[949] | 80 | c INTEGER nbetatmoy, nbetatdem,nbetat |
---|
| 81 | INTEGER nbetatmoy, nbetatdem |
---|
[630] | 82 | |
---|
| 83 | c variables dynamiques |
---|
| 84 | REAL vcov(ip1jm,llm),ucov(ip1jmp1,llm) ! vents covariants |
---|
| 85 | REAL teta(ip1jmp1,llm) ! temperature potentielle |
---|
[1114] | 86 | REAL, ALLOCATABLE, DIMENSION(:,:,:) :: q ! champs advectes |
---|
[630] | 87 | REAL ps(ip1jmp1) ! pression au sol |
---|
[949] | 88 | c REAL p (ip1jmp1,llmp1 ) ! pression aux interfac.des couches |
---|
| 89 | c REAL pks(ip1jmp1) ! exner au sol |
---|
| 90 | c REAL pk(ip1jmp1,llm) ! exner au milieu des couches |
---|
| 91 | c REAL pkf(ip1jmp1,llm) ! exner filt.au milieu des couches |
---|
[630] | 92 | REAL masse(ip1jmp1,llm) ! masse d'air |
---|
| 93 | REAL phis(ip1jmp1) ! geopotentiel au sol |
---|
[949] | 94 | c REAL phi(ip1jmp1,llm) ! geopotentiel |
---|
| 95 | c REAL w(ip1jmp1,llm) ! vitesse verticale |
---|
[630] | 96 | |
---|
| 97 | c variables dynamiques intermediaire pour le transport |
---|
| 98 | |
---|
| 99 | c variables pour le fichier histoire |
---|
| 100 | REAL dtav ! intervalle de temps elementaire |
---|
| 101 | |
---|
| 102 | REAL time_0 |
---|
| 103 | |
---|
| 104 | LOGICAL lafin |
---|
[949] | 105 | c INTEGER ij,iq,l,i,j |
---|
| 106 | INTEGER i,j |
---|
[630] | 107 | |
---|
| 108 | |
---|
| 109 | real time_step, t_wrt, t_ops |
---|
| 110 | |
---|
[949] | 111 | c REAL rdayvrai,rdaym_ini,rday_ecri |
---|
| 112 | c LOGICAL first |
---|
[630] | 113 | |
---|
| 114 | LOGICAL call_iniphys |
---|
| 115 | data call_iniphys/.true./ |
---|
| 116 | |
---|
[949] | 117 | c REAL alpha(ip1jmp1,llm),beta(ip1jmp1,llm) |
---|
[630] | 118 | c+jld variables test conservation energie |
---|
[949] | 119 | c REAL ecin(ip1jmp1,llm),ecin0(ip1jmp1,llm) |
---|
[630] | 120 | C Tendance de la temp. potentiel d (theta)/ d t due a la |
---|
| 121 | C tansformation d'energie cinetique en energie thermique |
---|
| 122 | C cree par la dissipation |
---|
[949] | 123 | c REAL dhecdt(ip1jmp1,llm) |
---|
| 124 | c REAL vcont(ip1jm,llm),ucont(ip1jmp1,llm) |
---|
| 125 | c REAL d_h_vcol, d_qt, d_qw, d_ql, d_ec |
---|
| 126 | c CHARACTER (len=15) :: ztit |
---|
[630] | 127 | c-jld |
---|
| 128 | |
---|
| 129 | |
---|
[949] | 130 | character (len=80) :: dynhist_file, dynhistave_file |
---|
| 131 | character (len=20) ::modname |
---|
| 132 | character (len=80) ::abort_message |
---|
[630] | 133 | |
---|
| 134 | C Calendrier |
---|
| 135 | LOGICAL true_calendar |
---|
| 136 | PARAMETER (true_calendar = .false.) |
---|
| 137 | |
---|
| 138 | c----------------------------------------------------------------------- |
---|
| 139 | c variables pour l'initialisation de la physique : |
---|
| 140 | c ------------------------------------------------ |
---|
[1114] | 141 | INTEGER ngridmx |
---|
[630] | 142 | PARAMETER( ngridmx = 2+(jjm-1)*iim - 1/jjm ) |
---|
| 143 | REAL zcufi(ngridmx),zcvfi(ngridmx) |
---|
| 144 | REAL latfi(ngridmx),lonfi(ngridmx) |
---|
| 145 | REAL airefi(ngridmx) |
---|
| 146 | SAVE latfi, lonfi, airefi |
---|
| 147 | |
---|
| 148 | INTEGER :: ierr |
---|
| 149 | |
---|
| 150 | |
---|
| 151 | c----------------------------------------------------------------------- |
---|
| 152 | c Initialisations: |
---|
| 153 | c ---------------- |
---|
| 154 | |
---|
| 155 | abort_message = 'last timestep reached' |
---|
| 156 | modname = 'gcm' |
---|
| 157 | descript = 'Run GCM LMDZ' |
---|
| 158 | lafin = .FALSE. |
---|
| 159 | dynhist_file = 'dyn_hist' |
---|
| 160 | dynhistave_file = 'dyn_hist_ave' |
---|
| 161 | |
---|
| 162 | c-------------------------------------------------------------------------- |
---|
| 163 | c Iflag_phys controle l'appel a la physique : |
---|
| 164 | c ------------------------------------------- |
---|
| 165 | c 0 : pas de physique |
---|
| 166 | c 1 : Normale (appel a phylmd, phymars ...) |
---|
| 167 | c 2 : rappel Newtonien pour la temperature + friction au sol |
---|
| 168 | iflag_phys=1 |
---|
| 169 | |
---|
| 170 | c-------------------------------------------------------------------------- |
---|
| 171 | c Lecture de l'etat initial : |
---|
| 172 | c --------------------------- |
---|
| 173 | c T : on lit start.nc |
---|
| 174 | c F : le modele s'autoinitialise avec un cas academique (iniacademic) |
---|
| 175 | #ifdef CPP_IOIPSL |
---|
| 176 | read_start=.true. |
---|
| 177 | #else |
---|
| 178 | read_start=.false. |
---|
| 179 | #endif |
---|
| 180 | |
---|
| 181 | c----------------------------------------------------------------------- |
---|
| 182 | c Choix du calendrier |
---|
| 183 | c ------------------- |
---|
| 184 | |
---|
| 185 | #ifdef CPP_IOIPSL |
---|
| 186 | if (true_calendar) then |
---|
| 187 | call ioconf_calendar('gregorian') |
---|
| 188 | else |
---|
| 189 | call ioconf_calendar('360d') |
---|
| 190 | endif |
---|
| 191 | #endif |
---|
| 192 | c---------------------------------------------------------------------- |
---|
| 193 | c lecture des fichiers gcm.def ou run.def |
---|
| 194 | c --------------------------------------- |
---|
| 195 | c |
---|
| 196 | #ifdef CPP_IOIPSL |
---|
| 197 | CALL conf_gcm( 99, .TRUE. , clesphy0 ) |
---|
| 198 | #else |
---|
| 199 | CALL defrun( 99, .TRUE. , clesphy0 ) |
---|
| 200 | #endif |
---|
| 201 | c |
---|
| 202 | c |
---|
| 203 | c------------------------------------ |
---|
| 204 | c Initialisation partie parallele |
---|
| 205 | c------------------------------------ |
---|
[807] | 206 | CALL init_const_mpi |
---|
| 207 | |
---|
[630] | 208 | call init_parallel |
---|
[774] | 209 | call Read_Distrib |
---|
[1114] | 210 | CALL Init_Phys_lmdz(iim,jjp1,llm,mpi_size,distrib_phys) |
---|
[774] | 211 | CALL set_bands |
---|
| 212 | CALL Init_interface_dyn_phys |
---|
[1000] | 213 | CALL barrier |
---|
| 214 | |
---|
[630] | 215 | if (mpi_rank==0) call WriteBands |
---|
| 216 | call SetDistrib(jj_Nb_Caldyn) |
---|
[985] | 217 | |
---|
| 218 | c$OMP PARALLEL |
---|
[807] | 219 | call Init_Mod_hallo |
---|
[985] | 220 | c$OMP END PARALLEL |
---|
[807] | 221 | |
---|
[764] | 222 | c$OMP PARALLEL |
---|
[630] | 223 | call InitComgeomphy |
---|
[764] | 224 | c$OMP END PARALLEL |
---|
[960] | 225 | |
---|
| 226 | IF (config_inca /= 'none') THEN |
---|
[630] | 227 | #ifdef INCA |
---|
[1017] | 228 | call init_const_lmdz( |
---|
[1114] | 229 | $ nbtr,anneeref,dayref, |
---|
[1017] | 230 | $ iphysiq,day_step,nday) |
---|
| 231 | |
---|
| 232 | call init_inca_para( |
---|
[1078] | 233 | $ iim,jjm+1,llm,klon_glo,mpi_size, |
---|
| 234 | $ distrib_phys,COMM_LMDZ) |
---|
[630] | 235 | #endif |
---|
[960] | 236 | END IF |
---|
[630] | 237 | |
---|
| 238 | c----------------------------------------------------------------------- |
---|
| 239 | c Initialisation des traceurs |
---|
| 240 | c --------------------------- |
---|
[1114] | 241 | c Choix du nombre de traceurs et du schema pour l'advection |
---|
| 242 | c dans fichier traceur.def, par default ou via INCA |
---|
| 243 | call infotrac_init |
---|
[630] | 244 | |
---|
[1114] | 245 | c Allocation de la tableau q : champs advectes |
---|
| 246 | ALLOCATE(q(ip1jmp1,llm,nqtot)) |
---|
| 247 | |
---|
[630] | 248 | c----------------------------------------------------------------------- |
---|
| 249 | c Lecture de l'etat initial : |
---|
| 250 | c --------------------------- |
---|
| 251 | |
---|
| 252 | c lecture du fichier start.nc |
---|
| 253 | if (read_start) then |
---|
| 254 | #ifdef CPP_IOIPSL |
---|
[1114] | 255 | CALL dynetat0("start.nc",vcov,ucov, |
---|
[630] | 256 | . teta,q,masse,ps,phis, time_0) |
---|
| 257 | c write(73,*) 'ucov',ucov |
---|
| 258 | c write(74,*) 'vcov',vcov |
---|
| 259 | c write(75,*) 'teta',teta |
---|
| 260 | c write(76,*) 'ps',ps |
---|
| 261 | c write(77,*) 'q',q |
---|
| 262 | |
---|
| 263 | #endif |
---|
| 264 | endif |
---|
| 265 | |
---|
| 266 | c le cas echeant, creation d un etat initial |
---|
| 267 | IF (prt_level > 9) WRITE(lunout,*) |
---|
| 268 | . 'AVANT iniacademic AVANT AVANT AVANT AVANT' |
---|
| 269 | if (.not.read_start) then |
---|
[1114] | 270 | CALL iniacademic(vcov,ucov,teta,q,masse,ps,phis,time_0) |
---|
[630] | 271 | endif |
---|
| 272 | |
---|
| 273 | c----------------------------------------------------------------------- |
---|
| 274 | c Lecture des parametres de controle pour la simulation : |
---|
| 275 | c ------------------------------------------------------- |
---|
| 276 | c on recalcule eventuellement le pas de temps |
---|
| 277 | |
---|
| 278 | IF(MOD(day_step,iperiod).NE.0) THEN |
---|
| 279 | abort_message = |
---|
| 280 | . 'Il faut choisir un nb de pas par jour multiple de iperiod' |
---|
| 281 | call abort_gcm(modname,abort_message,1) |
---|
| 282 | ENDIF |
---|
| 283 | |
---|
| 284 | IF(MOD(day_step,iphysiq).NE.0) THEN |
---|
| 285 | abort_message = |
---|
| 286 | * 'Il faut choisir un nb de pas par jour multiple de iphysiq' |
---|
| 287 | call abort_gcm(modname,abort_message,1) |
---|
| 288 | ENDIF |
---|
| 289 | |
---|
| 290 | zdtvr = daysec/FLOAT(day_step) |
---|
| 291 | IF(dtvr.NE.zdtvr) THEN |
---|
| 292 | WRITE(lunout,*) |
---|
| 293 | . 'WARNING!!! changement de pas de temps',dtvr,'>',zdtvr |
---|
| 294 | ENDIF |
---|
| 295 | |
---|
| 296 | C |
---|
| 297 | C on remet le calendrier à zero si demande |
---|
| 298 | c |
---|
| 299 | if (annee_ref .ne. anneeref .or. day_ref .ne. dayref) then |
---|
| 300 | write(lunout,*) |
---|
| 301 | . ' Attention les dates initiales lues dans le fichier' |
---|
| 302 | write(lunout,*) |
---|
| 303 | . ' restart ne correspondent pas a celles lues dans ' |
---|
| 304 | write(lunout,*)' gcm.def' |
---|
| 305 | if (raz_date .ne. 1) then |
---|
| 306 | write(lunout,*) |
---|
| 307 | . ' On garde les dates du fichier restart' |
---|
| 308 | else |
---|
| 309 | annee_ref = anneeref |
---|
| 310 | day_ref = dayref |
---|
| 311 | day_ini = dayref |
---|
| 312 | itau_dyn = 0 |
---|
| 313 | itau_phy = 0 |
---|
| 314 | time_0 = 0. |
---|
| 315 | write(lunout,*) |
---|
| 316 | . ' On reinitialise a la date lue dans gcm.def' |
---|
| 317 | endif |
---|
| 318 | ELSE |
---|
| 319 | raz_date = 0 |
---|
| 320 | endif |
---|
| 321 | |
---|
| 322 | |
---|
| 323 | c nombre d'etats dans les fichiers demarrage et histoire |
---|
| 324 | nbetatdem = nday / iecri |
---|
| 325 | nbetatmoy = nday / periodav + 1 |
---|
| 326 | |
---|
| 327 | c----------------------------------------------------------------------- |
---|
| 328 | c Initialisation des constantes dynamiques : |
---|
| 329 | c ------------------------------------------ |
---|
| 330 | dtvr = zdtvr |
---|
| 331 | CALL iniconst |
---|
| 332 | |
---|
| 333 | c----------------------------------------------------------------------- |
---|
| 334 | c Initialisation de la geometrie : |
---|
| 335 | c -------------------------------- |
---|
| 336 | CALL inigeom |
---|
| 337 | |
---|
| 338 | c----------------------------------------------------------------------- |
---|
| 339 | c Initialisation du filtre : |
---|
| 340 | c -------------------------- |
---|
| 341 | CALL inifilr |
---|
| 342 | c |
---|
| 343 | c----------------------------------------------------------------------- |
---|
| 344 | c Initialisation de la dissipation : |
---|
| 345 | c ---------------------------------- |
---|
| 346 | |
---|
| 347 | CALL inidissip( lstardis, nitergdiv, nitergrot, niterh , |
---|
| 348 | * tetagdiv, tetagrot , tetatemp ) |
---|
| 349 | |
---|
| 350 | c----------------------------------------------------------------------- |
---|
| 351 | c Initialisation de la physique : |
---|
| 352 | c ------------------------------- |
---|
| 353 | #ifdef CPP_PHYS |
---|
| 354 | IF (call_iniphys.and.iflag_phys.eq.1) THEN |
---|
| 355 | latfi(1)=rlatu(1) |
---|
| 356 | lonfi(1)=0. |
---|
| 357 | zcufi(1) = cu(1) |
---|
| 358 | zcvfi(1) = cv(1) |
---|
| 359 | DO j=2,jjm |
---|
| 360 | DO i=1,iim |
---|
| 361 | latfi((j-2)*iim+1+i)= rlatu(j) |
---|
| 362 | lonfi((j-2)*iim+1+i)= rlonv(i) |
---|
| 363 | zcufi((j-2)*iim+1+i) = cu((j-1)*iip1+i) |
---|
| 364 | zcvfi((j-2)*iim+1+i) = cv((j-1)*iip1+i) |
---|
| 365 | ENDDO |
---|
| 366 | ENDDO |
---|
| 367 | latfi(ngridmx)= rlatu(jjp1) |
---|
| 368 | lonfi(ngridmx)= 0. |
---|
| 369 | zcufi(ngridmx) = cu(ip1jm+1) |
---|
| 370 | zcvfi(ngridmx) = cv(ip1jm-iim) |
---|
| 371 | CALL gr_dyn_fi(1,iip1,jjp1,ngridmx,aire,airefi) |
---|
[807] | 372 | |
---|
[630] | 373 | WRITE(lunout,*) |
---|
| 374 | . 'WARNING!!! vitesse verticale nulle dans la physique' |
---|
[764] | 375 | |
---|
[630] | 376 | CALL iniphysiq(ngridmx,llm,daysec,day_ini,dtphys , |
---|
| 377 | , latfi,lonfi,airefi,zcufi,zcvfi,rad,g,r,cpp ) |
---|
[764] | 378 | |
---|
[630] | 379 | call_iniphys=.false. |
---|
[807] | 380 | |
---|
[630] | 381 | ENDIF |
---|
| 382 | #endif |
---|
| 383 | |
---|
| 384 | |
---|
| 385 | c----------------------------------------------------------------------- |
---|
[1078] | 386 | c Initialisation des dimensions d'INCA : |
---|
| 387 | c -------------------------------------- |
---|
| 388 | IF (config_inca /= 'none') THEN |
---|
| 389 | !$OMP PARALLEL |
---|
| 390 | #ifdef INCA |
---|
| 391 | CALL init_inca_dim(klon_omp,llm,iim,jjm, |
---|
| 392 | $ rlonu,rlatu,rlonv,rlatv) |
---|
| 393 | #endif |
---|
| 394 | !$OMP END PARALLEL |
---|
| 395 | END IF |
---|
| 396 | |
---|
| 397 | c----------------------------------------------------------------------- |
---|
[630] | 398 | c Initialisation des I/O : |
---|
| 399 | c ------------------------ |
---|
| 400 | |
---|
| 401 | |
---|
| 402 | day_end = day_ini + nday |
---|
| 403 | WRITE(lunout,300)day_ini,day_end |
---|
| 404 | |
---|
| 405 | #ifdef CPP_IOIPSL |
---|
[1114] | 406 | CALL dynredem0_p("restart.nc", day_end, phis) |
---|
[630] | 407 | |
---|
| 408 | ecripar = .TRUE. |
---|
| 409 | |
---|
| 410 | if ( 1.eq.1) then |
---|
| 411 | time_step = zdtvr |
---|
| 412 | t_ops = iecri * daysec |
---|
| 413 | t_wrt = iecri * daysec |
---|
| 414 | CALL inithist_p(dynhist_file,day_ref,annee_ref,time_step, |
---|
[1114] | 415 | . t_ops, t_wrt, histid, histvid) |
---|
[630] | 416 | |
---|
| 417 | t_ops = iperiod * time_step |
---|
| 418 | t_wrt = periodav * daysec |
---|
| 419 | CALL initdynav_p(dynhistave_file,day_ref,annee_ref,time_step, |
---|
[1114] | 420 | . t_ops, t_wrt, histaveid) |
---|
[630] | 421 | |
---|
| 422 | dtav = iperiod*dtvr/daysec |
---|
| 423 | endif |
---|
| 424 | |
---|
| 425 | |
---|
| 426 | #endif |
---|
| 427 | |
---|
| 428 | c Choix des frequences de stokage pour le offline |
---|
| 429 | c istdyn=day_step/4 ! stockage toutes les 6h=1jour/4 |
---|
| 430 | c istdyn=day_step/12 ! stockage toutes les 2h=1jour/12 |
---|
| 431 | istdyn=day_step/4 ! stockage toutes les 6h=1jour/12 |
---|
| 432 | istphy=istdyn/iphysiq |
---|
| 433 | |
---|
| 434 | |
---|
| 435 | c |
---|
| 436 | c----------------------------------------------------------------------- |
---|
| 437 | c Integration temporelle du modele : |
---|
| 438 | c ---------------------------------- |
---|
| 439 | |
---|
| 440 | c write(78,*) 'ucov',ucov |
---|
| 441 | c write(78,*) 'vcov',vcov |
---|
| 442 | c write(78,*) 'teta',teta |
---|
| 443 | c write(78,*) 'ps',ps |
---|
| 444 | c write(78,*) 'q',q |
---|
| 445 | |
---|
[774] | 446 | c$OMP PARALLEL DEFAULT(SHARED) COPYIN(/temps/,/logic/) |
---|
[1114] | 447 | CALL leapfrog_p(ucov,vcov,teta,ps,masse,phis,q,clesphy0, |
---|
[630] | 448 | . time_0) |
---|
[774] | 449 | c$OMP END PARALLEL |
---|
[630] | 450 | |
---|
| 451 | |
---|
| 452 | 300 FORMAT('1'/,15x,'run du pas',i7,2x,'au pas',i7,2x, |
---|
| 453 | . 'c''est a dire du jour',i7,3x,'au jour',i7//) |
---|
| 454 | END |
---|
| 455 | |
---|