[1632] | 1 | ! |
---|
[1673] | 2 | ! $Id$ |
---|
[1632] | 3 | ! |
---|
| 4 | c |
---|
| 5 | c |
---|
| 6 | PROGRAM gcm |
---|
| 7 | |
---|
| 8 | #ifdef CPP_IOIPSL |
---|
| 9 | USE IOIPSL |
---|
| 10 | #endif |
---|
| 11 | |
---|
| 12 | USE mod_const_mpi, ONLY: init_const_mpi |
---|
| 13 | USE parallel |
---|
| 14 | USE infotrac |
---|
| 15 | USE mod_interface_dyn_phys |
---|
| 16 | USE mod_hallo |
---|
| 17 | USE Bands |
---|
| 18 | USE getparam |
---|
| 19 | USE filtreg_mod |
---|
| 20 | USE control_mod |
---|
| 21 | |
---|
[1673] | 22 | #ifdef CPP_PHYS |
---|
[1632] | 23 | USE mod_grid_phy_lmdz |
---|
| 24 | USE mod_phys_lmdz_para, ONLY : klon_mpi_para_nb |
---|
| 25 | USE mod_phys_lmdz_omp_data, ONLY: klon_omp |
---|
| 26 | USE dimphy |
---|
| 27 | USE comgeomphy |
---|
| 28 | #endif |
---|
| 29 | IMPLICIT NONE |
---|
| 30 | |
---|
| 31 | c ...... Version du 10/01/98 .......... |
---|
| 32 | |
---|
| 33 | c avec coordonnees verticales hybrides |
---|
| 34 | c avec nouveaux operat. dissipation * ( gradiv2,divgrad2,nxgraro2 ) |
---|
| 35 | |
---|
| 36 | c======================================================================= |
---|
| 37 | c |
---|
| 38 | c Auteur: P. Le Van /L. Fairhead/F.Hourdin |
---|
| 39 | c ------- |
---|
| 40 | c |
---|
| 41 | c Objet: |
---|
| 42 | c ------ |
---|
| 43 | c |
---|
| 44 | c GCM LMD nouvelle grille |
---|
| 45 | c |
---|
| 46 | c======================================================================= |
---|
| 47 | c |
---|
| 48 | c ... Dans inigeom , nouveaux calculs pour les elongations cu , cv |
---|
| 49 | c et possibilite d'appeler une fonction f(y) a derivee tangente |
---|
| 50 | c hyperbolique a la place de la fonction a derivee sinusoidale. |
---|
| 51 | c ... Possibilite de choisir le schema pour l'advection de |
---|
| 52 | c q , en modifiant iadv dans traceur.def (MAF,10/02) . |
---|
| 53 | c |
---|
| 54 | c Pour Van-Leer + Vapeur d'eau saturee, iadv(1)=4. (F.Codron,10/99) |
---|
| 55 | c Pour Van-Leer iadv=10 |
---|
| 56 | c |
---|
| 57 | c----------------------------------------------------------------------- |
---|
| 58 | c Declarations: |
---|
| 59 | c ------------- |
---|
| 60 | #include "dimensions.h" |
---|
| 61 | #include "paramet.h" |
---|
| 62 | #include "comconst.h" |
---|
| 63 | #include "comdissnew.h" |
---|
| 64 | #include "comvert.h" |
---|
| 65 | #include "comgeom.h" |
---|
| 66 | #include "logic.h" |
---|
| 67 | #include "temps.h" |
---|
| 68 | #include "ener.h" |
---|
| 69 | #include "description.h" |
---|
| 70 | #include "serre.h" |
---|
[1657] | 71 | !#include "com_io_dyn.h" |
---|
[1632] | 72 | #include "iniprint.h" |
---|
| 73 | #include "tracstoke.h" |
---|
[1658] | 74 | |
---|
[1657] | 75 | #ifdef INCA |
---|
| 76 | ! Only INCA needs these informations (from the Earth's physics) |
---|
[1632] | 77 | #include "indicesol.h" |
---|
[1657] | 78 | #endif |
---|
[1632] | 79 | |
---|
| 80 | INTEGER longcles |
---|
| 81 | PARAMETER ( longcles = 20 ) |
---|
| 82 | REAL clesphy0( longcles ) |
---|
| 83 | SAVE clesphy0 |
---|
| 84 | |
---|
| 85 | |
---|
| 86 | |
---|
| 87 | REAL zdtvr |
---|
| 88 | |
---|
| 89 | c variables dynamiques |
---|
| 90 | REAL,ALLOCATABLE,SAVE :: vcov(:,:),ucov(:,:) ! vents covariants |
---|
| 91 | REAL,ALLOCATABLE,SAVE :: teta(:,:) ! temperature potentielle |
---|
| 92 | REAL, ALLOCATABLE,SAVE :: q(:,:,:) ! champs advectes |
---|
| 93 | REAL,ALLOCATABLE,SAVE :: ps(:) ! pression au sol |
---|
| 94 | c REAL p (ip1jmp1,llmp1 ) ! pression aux interfac.des couches |
---|
| 95 | c REAL pks(ip1jmp1) ! exner au sol |
---|
| 96 | c REAL pk(ip1jmp1,llm) ! exner au milieu des couches |
---|
| 97 | c REAL pkf(ip1jmp1,llm) ! exner filt.au milieu des couches |
---|
| 98 | REAL,ALLOCATABLE,SAVE :: masse(:,:) ! masse d'air |
---|
| 99 | REAL,ALLOCATABLE,SAVE :: phis(:) ! geopotentiel au sol |
---|
| 100 | c REAL phi(ip1jmp1,llm) ! geopotentiel |
---|
| 101 | c REAL w(ip1jmp1,llm) ! vitesse verticale |
---|
| 102 | |
---|
| 103 | c variables dynamiques intermediaire pour le transport |
---|
| 104 | |
---|
| 105 | c variables pour le fichier histoire |
---|
| 106 | REAL dtav ! intervalle de temps elementaire |
---|
| 107 | |
---|
| 108 | REAL time_0 |
---|
| 109 | |
---|
| 110 | LOGICAL lafin |
---|
| 111 | c INTEGER ij,iq,l,i,j |
---|
| 112 | INTEGER i,j |
---|
| 113 | |
---|
| 114 | |
---|
| 115 | real time_step, t_wrt, t_ops |
---|
| 116 | |
---|
| 117 | |
---|
| 118 | LOGICAL call_iniphys |
---|
| 119 | data call_iniphys/.true./ |
---|
| 120 | |
---|
| 121 | c REAL alpha(ip1jmp1,llm),beta(ip1jmp1,llm) |
---|
| 122 | c+jld variables test conservation energie |
---|
| 123 | c REAL ecin(ip1jmp1,llm),ecin0(ip1jmp1,llm) |
---|
| 124 | C Tendance de la temp. potentiel d (theta)/ d t due a la |
---|
| 125 | C tansformation d'energie cinetique en energie thermique |
---|
| 126 | C cree par la dissipation |
---|
| 127 | c REAL dhecdt(ip1jmp1,llm) |
---|
| 128 | c REAL vcont(ip1jm,llm),ucont(ip1jmp1,llm) |
---|
| 129 | c REAL d_h_vcol, d_qt, d_qw, d_ql, d_ec |
---|
| 130 | c CHARACTER (len=15) :: ztit |
---|
| 131 | c-jld |
---|
| 132 | |
---|
| 133 | |
---|
| 134 | character (len=80) :: dynhist_file, dynhistave_file |
---|
| 135 | character (len=20) :: modname |
---|
| 136 | character (len=80) :: abort_message |
---|
| 137 | ! locales pour gestion du temps |
---|
| 138 | INTEGER :: an, mois, jour |
---|
| 139 | REAL :: heure |
---|
| 140 | |
---|
| 141 | |
---|
| 142 | c----------------------------------------------------------------------- |
---|
| 143 | c variables pour l'initialisation de la physique : |
---|
| 144 | c ------------------------------------------------ |
---|
| 145 | INTEGER ngridmx |
---|
| 146 | PARAMETER( ngridmx = 2+(jjm-1)*iim - 1/jjm ) |
---|
| 147 | REAL zcufi(ngridmx),zcvfi(ngridmx) |
---|
| 148 | REAL latfi(ngridmx),lonfi(ngridmx) |
---|
| 149 | REAL airefi(ngridmx) |
---|
| 150 | SAVE latfi, lonfi, airefi |
---|
| 151 | |
---|
| 152 | INTEGER :: ierr |
---|
| 153 | |
---|
| 154 | |
---|
| 155 | c----------------------------------------------------------------------- |
---|
| 156 | c Initialisations: |
---|
| 157 | c ---------------- |
---|
| 158 | |
---|
| 159 | abort_message = 'last timestep reached' |
---|
| 160 | modname = 'gcm' |
---|
| 161 | descript = 'Run GCM LMDZ' |
---|
| 162 | lafin = .FALSE. |
---|
| 163 | dynhist_file = 'dyn_hist' |
---|
| 164 | dynhistave_file = 'dyn_hist_ave' |
---|
| 165 | |
---|
| 166 | |
---|
| 167 | |
---|
| 168 | c---------------------------------------------------------------------- |
---|
| 169 | c lecture des fichiers gcm.def ou run.def |
---|
| 170 | c --------------------------------------- |
---|
| 171 | c |
---|
| 172 | ! Ehouarn: dump possibility of using defrun |
---|
| 173 | !#ifdef CPP_IOIPSL |
---|
| 174 | CALL conf_gcm( 99, .TRUE. , clesphy0 ) |
---|
| 175 | !#else |
---|
| 176 | ! CALL defrun( 99, .TRUE. , clesphy0 ) |
---|
| 177 | !#endif |
---|
| 178 | c |
---|
| 179 | c |
---|
| 180 | c------------------------------------ |
---|
| 181 | c Initialisation partie parallele |
---|
| 182 | c------------------------------------ |
---|
| 183 | CALL init_const_mpi |
---|
| 184 | |
---|
| 185 | call init_parallel |
---|
| 186 | call ini_getparam("out.def") |
---|
| 187 | call Read_Distrib |
---|
[1673] | 188 | |
---|
| 189 | #ifdef CPP_PHYS |
---|
[1632] | 190 | CALL Init_Phys_lmdz(iim,jjp1,llm,mpi_size,distrib_phys) |
---|
| 191 | #endif |
---|
| 192 | CALL set_bands |
---|
[1673] | 193 | #ifdef CPP_PHYS |
---|
[1632] | 194 | CALL Init_interface_dyn_phys |
---|
| 195 | #endif |
---|
| 196 | CALL barrier |
---|
| 197 | |
---|
| 198 | if (mpi_rank==0) call WriteBands |
---|
| 199 | call Set_Distrib(distrib_caldyn) |
---|
| 200 | |
---|
| 201 | c$OMP PARALLEL |
---|
| 202 | call Init_Mod_hallo |
---|
| 203 | c$OMP END PARALLEL |
---|
| 204 | |
---|
[1673] | 205 | #ifdef CPP_PHYS |
---|
[1632] | 206 | c$OMP PARALLEL |
---|
| 207 | call InitComgeomphy |
---|
| 208 | c$OMP END PARALLEL |
---|
| 209 | #endif |
---|
| 210 | |
---|
| 211 | c----------------------------------------------------------------------- |
---|
| 212 | c Choix du calendrier |
---|
| 213 | c ------------------- |
---|
| 214 | |
---|
| 215 | c calend = 'earth_365d' |
---|
| 216 | |
---|
| 217 | #ifdef CPP_IOIPSL |
---|
| 218 | if (calend == 'earth_360d') then |
---|
| 219 | call ioconf_calendar('360d') |
---|
| 220 | write(lunout,*)'CALENDRIER CHOISI: Terrestre a 360 jours/an' |
---|
| 221 | else if (calend == 'earth_365d') then |
---|
| 222 | call ioconf_calendar('noleap') |
---|
| 223 | write(lunout,*)'CALENDRIER CHOISI: Terrestre a 365 jours/an' |
---|
| 224 | else if (calend == 'earth_366d') then |
---|
| 225 | call ioconf_calendar('gregorian') |
---|
| 226 | write(lunout,*)'CALENDRIER CHOISI: Terrestre bissextile' |
---|
| 227 | else |
---|
| 228 | abort_message = 'Mauvais choix de calendrier' |
---|
| 229 | call abort_gcm(modname,abort_message,1) |
---|
| 230 | endif |
---|
| 231 | #endif |
---|
| 232 | |
---|
[1673] | 233 | IF (type_trac == 'inca') THEN |
---|
[1632] | 234 | #ifdef INCA |
---|
| 235 | call init_const_lmdz( |
---|
| 236 | $ nbtr,anneeref,dayref, |
---|
| 237 | $ iphysiq,day_step,nday, |
---|
| 238 | $ nbsrf, is_oce,is_sic, |
---|
| 239 | $ is_ter,is_lic) |
---|
| 240 | |
---|
| 241 | call init_inca_para( |
---|
| 242 | $ iim,jjm+1,llm,klon_glo,mpi_size, |
---|
| 243 | $ distrib_phys,COMM_LMDZ) |
---|
| 244 | #endif |
---|
| 245 | END IF |
---|
| 246 | |
---|
| 247 | c----------------------------------------------------------------------- |
---|
| 248 | c Initialisation des traceurs |
---|
| 249 | c --------------------------- |
---|
| 250 | c Choix du nombre de traceurs et du schema pour l'advection |
---|
| 251 | c dans fichier traceur.def, par default ou via INCA |
---|
| 252 | call infotrac_init |
---|
| 253 | |
---|
| 254 | c Allocation de la tableau q : champs advectes |
---|
| 255 | ALLOCATE(ucov(ijb_u:ije_u,llm)) |
---|
| 256 | ALLOCATE(vcov(ijb_v:ije_v,llm)) |
---|
| 257 | ALLOCATE(teta(ijb_u:ije_u,llm)) |
---|
| 258 | ALLOCATE(masse(ijb_u:ije_u,llm)) |
---|
| 259 | ALLOCATE(ps(ijb_u:ije_u)) |
---|
| 260 | ALLOCATE(phis(ijb_u:ije_u)) |
---|
| 261 | ALLOCATE(q(ijb_u:ije_u,llm,nqtot)) |
---|
| 262 | |
---|
| 263 | c----------------------------------------------------------------------- |
---|
| 264 | c Lecture de l'etat initial : |
---|
| 265 | c --------------------------- |
---|
| 266 | |
---|
| 267 | c lecture du fichier start.nc |
---|
| 268 | if (read_start) then |
---|
| 269 | ! we still need to run iniacademic to initialize some |
---|
[1657] | 270 | ! constants & fields, if we run the 'newtonian' or 'SW' cases: |
---|
| 271 | if (iflag_phys.ne.1) then |
---|
[1632] | 272 | CALL iniacademic(vcov,ucov,teta,q,masse,ps,phis,time_0) |
---|
| 273 | endif |
---|
[1657] | 274 | |
---|
[1673] | 275 | ! if (planet_type.eq."earth") then |
---|
[1632] | 276 | ! Load an Earth-format start file |
---|
| 277 | CALL dynetat0_loc("start.nc",vcov,ucov, |
---|
[1657] | 278 | & teta,q,masse,ps,phis, time_0) |
---|
[1673] | 279 | ! endif ! of if (planet_type.eq."earth") |
---|
| 280 | |
---|
[1632] | 281 | c write(73,*) 'ucov',ucov |
---|
| 282 | c write(74,*) 'vcov',vcov |
---|
| 283 | c write(75,*) 'teta',teta |
---|
| 284 | c write(76,*) 'ps',ps |
---|
| 285 | c write(77,*) 'q',q |
---|
| 286 | |
---|
| 287 | endif ! of if (read_start) |
---|
| 288 | |
---|
| 289 | c le cas echeant, creation d un etat initial |
---|
| 290 | IF (prt_level > 9) WRITE(lunout,*) |
---|
| 291 | . 'GCM: AVANT iniacademic AVANT AVANT AVANT AVANT' |
---|
| 292 | if (.not.read_start) then |
---|
| 293 | CALL iniacademic(vcov,ucov,teta,q,masse,ps,phis,time_0) |
---|
| 294 | endif |
---|
| 295 | |
---|
| 296 | c----------------------------------------------------------------------- |
---|
| 297 | c Lecture des parametres de controle pour la simulation : |
---|
| 298 | c ------------------------------------------------------- |
---|
| 299 | c on recalcule eventuellement le pas de temps |
---|
| 300 | |
---|
| 301 | IF(MOD(day_step,iperiod).NE.0) THEN |
---|
| 302 | abort_message = |
---|
| 303 | . 'Il faut choisir un nb de pas par jour multiple de iperiod' |
---|
| 304 | call abort_gcm(modname,abort_message,1) |
---|
| 305 | ENDIF |
---|
| 306 | |
---|
| 307 | IF(MOD(day_step,iphysiq).NE.0) THEN |
---|
| 308 | abort_message = |
---|
| 309 | * 'Il faut choisir un nb de pas par jour multiple de iphysiq' |
---|
| 310 | call abort_gcm(modname,abort_message,1) |
---|
| 311 | ENDIF |
---|
| 312 | |
---|
| 313 | zdtvr = daysec/REAL(day_step) |
---|
| 314 | IF(dtvr.NE.zdtvr) THEN |
---|
| 315 | WRITE(lunout,*) |
---|
| 316 | . 'WARNING!!! changement de pas de temps',dtvr,'>',zdtvr |
---|
| 317 | ENDIF |
---|
| 318 | |
---|
| 319 | C |
---|
| 320 | C on remet le calendrier à zero si demande |
---|
| 321 | c |
---|
[1673] | 322 | IF (start_time /= starttime) then |
---|
| 323 | WRITE(lunout,*)' GCM: Attention l''heure de depart lue dans le' |
---|
| 324 | &,' fichier restart ne correspond pas à celle lue dans le run.def' |
---|
| 325 | IF (raz_date == 1) then |
---|
| 326 | WRITE(lunout,*)'Je prends l''heure lue dans run.def' |
---|
| 327 | start_time = starttime |
---|
| 328 | ELSE |
---|
| 329 | WRITE(lunout,*)'Je m''arrete' |
---|
| 330 | CALL abort |
---|
| 331 | ENDIF |
---|
| 332 | ENDIF |
---|
[1657] | 333 | IF (raz_date == 1) THEN |
---|
| 334 | annee_ref = anneeref |
---|
| 335 | day_ref = dayref |
---|
| 336 | day_ini = dayref |
---|
| 337 | itau_dyn = 0 |
---|
| 338 | itau_phy = 0 |
---|
| 339 | time_0 = 0. |
---|
[1632] | 340 | write(lunout,*) |
---|
[1657] | 341 | . 'GCM: On reinitialise a la date lue dans gcm.def' |
---|
| 342 | ELSE IF (annee_ref .ne. anneeref .or. day_ref .ne. dayref) THEN |
---|
| 343 | write(lunout,*) |
---|
[1632] | 344 | . 'GCM: Attention les dates initiales lues dans le fichier' |
---|
| 345 | write(lunout,*) |
---|
| 346 | . ' restart ne correspondent pas a celles lues dans ' |
---|
| 347 | write(lunout,*)' gcm.def' |
---|
[1657] | 348 | write(lunout,*)' annee_ref=',annee_ref," anneeref=",anneeref |
---|
| 349 | write(lunout,*)' day_ref=',day_ref," dayref=",dayref |
---|
| 350 | write(lunout,*)' Pas de remise a zero' |
---|
| 351 | ENDIF |
---|
| 352 | c if (annee_ref .ne. anneeref .or. day_ref .ne. dayref) then |
---|
| 353 | c write(lunout,*) |
---|
| 354 | c . 'GCM: Attention les dates initiales lues dans le fichier' |
---|
| 355 | c write(lunout,*) |
---|
| 356 | c . ' restart ne correspondent pas a celles lues dans ' |
---|
| 357 | c write(lunout,*)' gcm.def' |
---|
| 358 | c write(lunout,*)' annee_ref=',annee_ref," anneeref=",anneeref |
---|
| 359 | c write(lunout,*)' day_ref=',day_ref," dayref=",dayref |
---|
| 360 | c if (raz_date .ne. 1) then |
---|
| 361 | c write(lunout,*) |
---|
| 362 | c . 'GCM: On garde les dates du fichier restart' |
---|
| 363 | c else |
---|
| 364 | c annee_ref = anneeref |
---|
| 365 | c day_ref = dayref |
---|
| 366 | c day_ini = dayref |
---|
| 367 | c itau_dyn = 0 |
---|
| 368 | c itau_phy = 0 |
---|
| 369 | c time_0 = 0. |
---|
| 370 | c write(lunout,*) |
---|
| 371 | c . 'GCM: On reinitialise a la date lue dans gcm.def' |
---|
| 372 | c endif |
---|
| 373 | c ELSE |
---|
| 374 | c raz_date = 0 |
---|
| 375 | c endif |
---|
[1632] | 376 | |
---|
| 377 | #ifdef CPP_IOIPSL |
---|
| 378 | mois = 1 |
---|
| 379 | heure = 0. |
---|
| 380 | call ymds2ju(annee_ref, mois, day_ref, heure, jD_ref) |
---|
| 381 | jH_ref = jD_ref - int(jD_ref) |
---|
| 382 | jD_ref = int(jD_ref) |
---|
| 383 | |
---|
| 384 | call ioconf_startdate(INT(jD_ref), jH_ref) |
---|
| 385 | |
---|
| 386 | write(lunout,*)'DEBUG' |
---|
| 387 | write(lunout,*)'annee_ref, mois, day_ref, heure, jD_ref' |
---|
| 388 | write(lunout,*)annee_ref, mois, day_ref, heure, jD_ref |
---|
| 389 | call ju2ymds(jD_ref+jH_ref,an, mois, jour, heure) |
---|
| 390 | write(lunout,*)'jD_ref+jH_ref,an, mois, jour, heure' |
---|
| 391 | write(lunout,*)jD_ref+jH_ref,an, mois, jour, heure |
---|
| 392 | #else |
---|
| 393 | ! Ehouarn: we still need to define JD_ref and JH_ref |
---|
| 394 | ! and since we don't know how many days there are in a year |
---|
| 395 | ! we set JD_ref to 0 (this should be improved ...) |
---|
| 396 | jD_ref=0 |
---|
| 397 | jH_ref=0 |
---|
| 398 | #endif |
---|
| 399 | |
---|
| 400 | |
---|
| 401 | c----------------------------------------------------------------------- |
---|
| 402 | c Initialisation des constantes dynamiques : |
---|
| 403 | c ------------------------------------------ |
---|
[1673] | 404 | dtvr = zdtvr |
---|
| 405 | CALL iniconst |
---|
[1632] | 406 | |
---|
| 407 | c----------------------------------------------------------------------- |
---|
| 408 | c Initialisation de la geometrie : |
---|
| 409 | c -------------------------------- |
---|
[1673] | 410 | CALL inigeom |
---|
[1632] | 411 | |
---|
| 412 | c----------------------------------------------------------------------- |
---|
| 413 | c Initialisation du filtre : |
---|
| 414 | c -------------------------- |
---|
[1673] | 415 | CALL inifilr |
---|
[1632] | 416 | c |
---|
| 417 | c----------------------------------------------------------------------- |
---|
| 418 | c Initialisation de la dissipation : |
---|
| 419 | c ---------------------------------- |
---|
| 420 | |
---|
| 421 | CALL inidissip( lstardis, nitergdiv, nitergrot, niterh , |
---|
[1699] | 422 | * tetagdiv, tetagrot , tetatemp, vert_prof_dissip) |
---|
[1632] | 423 | |
---|
| 424 | c----------------------------------------------------------------------- |
---|
| 425 | c Initialisation de la physique : |
---|
| 426 | c ------------------------------- |
---|
[1673] | 427 | IF (call_iniphys.and.(iflag_phys==1.or.iflag_phys>=100)) THEN |
---|
[1632] | 428 | latfi(1)=rlatu(1) |
---|
| 429 | lonfi(1)=0. |
---|
| 430 | zcufi(1) = cu(1) |
---|
| 431 | zcvfi(1) = cv(1) |
---|
| 432 | DO j=2,jjm |
---|
| 433 | DO i=1,iim |
---|
| 434 | latfi((j-2)*iim+1+i)= rlatu(j) |
---|
| 435 | lonfi((j-2)*iim+1+i)= rlonv(i) |
---|
| 436 | zcufi((j-2)*iim+1+i) = cu((j-1)*iip1+i) |
---|
| 437 | zcvfi((j-2)*iim+1+i) = cv((j-1)*iip1+i) |
---|
| 438 | ENDDO |
---|
| 439 | ENDDO |
---|
| 440 | latfi(ngridmx)= rlatu(jjp1) |
---|
| 441 | lonfi(ngridmx)= 0. |
---|
| 442 | zcufi(ngridmx) = cu(ip1jm+1) |
---|
| 443 | zcvfi(ngridmx) = cv(ip1jm-iim) |
---|
| 444 | CALL gr_dyn_fi(1,iip1,jjp1,ngridmx,aire,airefi) |
---|
| 445 | |
---|
| 446 | WRITE(lunout,*) |
---|
| 447 | . 'GCM: WARNING!!! vitesse verticale nulle dans la physique' |
---|
[1673] | 448 | ! Physics: |
---|
| 449 | #ifdef CPP_PHYS |
---|
| 450 | CALL iniphysiq(ngridmx,llm,daysec,day_ini,dtphys/nsplit_phys, |
---|
| 451 | & latfi,lonfi,airefi,zcufi,zcvfi,rad,g,r,cpp, |
---|
| 452 | & iflag_phys) |
---|
[1632] | 453 | #endif |
---|
| 454 | call_iniphys=.false. |
---|
[1673] | 455 | ENDIF ! of IF (call_iniphys.and.(iflag_phys==1.or.iflag_phys>=100)) |
---|
[1632] | 456 | |
---|
| 457 | |
---|
| 458 | c----------------------------------------------------------------------- |
---|
| 459 | c Initialisation des dimensions d'INCA : |
---|
| 460 | c -------------------------------------- |
---|
[1673] | 461 | IF (type_trac == 'inca') THEN |
---|
[1632] | 462 | !$OMP PARALLEL |
---|
| 463 | #ifdef INCA |
---|
| 464 | CALL init_inca_dim(klon_omp,llm,iim,jjm, |
---|
| 465 | $ rlonu,rlatu,rlonv,rlatv) |
---|
| 466 | #endif |
---|
| 467 | !$OMP END PARALLEL |
---|
| 468 | END IF |
---|
| 469 | |
---|
| 470 | c----------------------------------------------------------------------- |
---|
| 471 | c Initialisation des I/O : |
---|
| 472 | c ------------------------ |
---|
| 473 | |
---|
| 474 | |
---|
| 475 | day_end = day_ini + nday |
---|
| 476 | WRITE(lunout,300)day_ini,day_end |
---|
| 477 | 300 FORMAT('1'/,15x,'run du jour',i7,2x,'au jour',i7//) |
---|
| 478 | |
---|
| 479 | #ifdef CPP_IOIPSL |
---|
| 480 | call ju2ymds(jD_ref + day_ini - day_ref, an, mois, jour, heure) |
---|
| 481 | write (lunout,301)jour, mois, an |
---|
| 482 | call ju2ymds(jD_ref + day_end - day_ref, an, mois, jour, heure) |
---|
| 483 | write (lunout,302)jour, mois, an |
---|
| 484 | 301 FORMAT('1'/,15x,'run du ', i2,'/',i2,'/',i4) |
---|
| 485 | 302 FORMAT('1'/,15x,' au ', i2,'/',i2,'/',i4) |
---|
| 486 | #endif |
---|
| 487 | |
---|
[1673] | 488 | ! if (planet_type.eq."earth") then |
---|
| 489 | ! Write an Earth-format restart file |
---|
[1632] | 490 | CALL dynredem0_loc("restart.nc", day_end, phis) |
---|
[1673] | 491 | ! endif |
---|
[1632] | 492 | |
---|
| 493 | ecripar = .TRUE. |
---|
| 494 | |
---|
| 495 | #ifdef CPP_IOIPSL |
---|
| 496 | time_step = zdtvr |
---|
[1657] | 497 | IF (mpi_rank==0) then |
---|
| 498 | if (ok_dyn_ins) then |
---|
| 499 | ! initialize output file for instantaneous outputs |
---|
| 500 | ! t_ops = iecri * daysec ! do operations every t_ops |
---|
| 501 | t_ops =((1.0*iecri)/day_step) * daysec |
---|
| 502 | t_wrt = daysec ! iecri * daysec ! write output every t_wrt |
---|
| 503 | t_wrt = daysec ! iecri * daysec ! write output every t_wrt |
---|
| 504 | CALL inithist(day_ref,annee_ref,time_step, |
---|
| 505 | & t_ops,t_wrt) |
---|
| 506 | endif |
---|
[1632] | 507 | |
---|
| 508 | IF (ok_dyn_ave) THEN |
---|
[1657] | 509 | ! initialize output file for averaged outputs |
---|
| 510 | t_ops = iperiod * time_step ! do operations every t_ops |
---|
| 511 | t_wrt = periodav * daysec ! write output every t_wrt |
---|
[1632] | 512 | CALL initdynav_loc(day_ref,annee_ref,time_step,t_ops,t_wrt) |
---|
[1657] | 513 | END IF |
---|
| 514 | ENDIF |
---|
[1632] | 515 | dtav = iperiod*dtvr/daysec |
---|
| 516 | #endif |
---|
| 517 | ! #endif of #ifdef CPP_IOIPSL |
---|
| 518 | |
---|
| 519 | c Choix des frequences de stokage pour le offline |
---|
| 520 | c istdyn=day_step/4 ! stockage toutes les 6h=1jour/4 |
---|
| 521 | c istdyn=day_step/12 ! stockage toutes les 2h=1jour/12 |
---|
| 522 | istdyn=day_step/4 ! stockage toutes les 6h=1jour/12 |
---|
| 523 | istphy=istdyn/iphysiq |
---|
| 524 | |
---|
| 525 | |
---|
| 526 | c |
---|
| 527 | c----------------------------------------------------------------------- |
---|
| 528 | c Integration temporelle du modele : |
---|
| 529 | c ---------------------------------- |
---|
| 530 | |
---|
| 531 | c write(78,*) 'ucov',ucov |
---|
| 532 | c write(78,*) 'vcov',vcov |
---|
| 533 | c write(78,*) 'teta',teta |
---|
| 534 | c write(78,*) 'ps',ps |
---|
| 535 | c write(78,*) 'q',q |
---|
| 536 | |
---|
[1673] | 537 | c$OMP PARALLEL DEFAULT(SHARED) COPYIN(/temps/,/logici/,/logicl/) |
---|
[1632] | 538 | CALL leapfrog_loc(ucov,vcov,teta,ps,masse,phis,q,clesphy0, |
---|
| 539 | . time_0) |
---|
| 540 | c$OMP END PARALLEL |
---|
| 541 | |
---|
| 542 | OPEN(unit=5487,file='ok_lmdz',status='replace') |
---|
| 543 | WRITE(5487,*) 'ok_lmdz' |
---|
| 544 | CLOSE(5487) |
---|
| 545 | END |
---|
| 546 | |
---|