[1279] | 1 | ! |
---|
| 2 | ! $Id: gcm.F 1420 2010-07-23 10:03:58Z idelkadi $ |
---|
| 3 | ! |
---|
[524] | 4 | c |
---|
| 5 | c |
---|
| 6 | PROGRAM gcm |
---|
| 7 | |
---|
| 8 | #ifdef CPP_IOIPSL |
---|
| 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 |
---|
[524] | 13 | #endif |
---|
[956] | 14 | |
---|
[1146] | 15 | USE filtreg_mod |
---|
| 16 | USE infotrac |
---|
| 17 | |
---|
[956] | 18 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
| 19 | ! FH 2008/05/09 On elimine toutes les clefs physiques dans la dynamique |
---|
| 20 | ! A nettoyer. On ne veut qu'une ou deux routines d'interface |
---|
| 21 | ! dynamique -> physique pour l'initialisation |
---|
[1146] | 22 | ! Ehouarn: for now these only apply to Earth: |
---|
| 23 | #ifdef CPP_EARTH |
---|
[762] | 24 | USE dimphy |
---|
| 25 | USE comgeomphy |
---|
[863] | 26 | USE mod_phys_lmdz_para, ONLY : klon_mpi_para_nb |
---|
[956] | 27 | #endif |
---|
| 28 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
| 29 | |
---|
[524] | 30 | IMPLICIT NONE |
---|
| 31 | |
---|
| 32 | c ...... Version du 10/01/98 .......... |
---|
| 33 | |
---|
| 34 | c avec coordonnees verticales hybrides |
---|
| 35 | c avec nouveaux operat. dissipation * ( gradiv2,divgrad2,nxgraro2 ) |
---|
| 36 | |
---|
| 37 | c======================================================================= |
---|
| 38 | c |
---|
| 39 | c Auteur: P. Le Van /L. Fairhead/F.Hourdin |
---|
| 40 | c ------- |
---|
| 41 | c |
---|
| 42 | c Objet: |
---|
| 43 | c ------ |
---|
| 44 | c |
---|
| 45 | c GCM LMD nouvelle grille |
---|
| 46 | c |
---|
| 47 | c======================================================================= |
---|
| 48 | c |
---|
| 49 | c ... Dans inigeom , nouveaux calculs pour les elongations cu , cv |
---|
| 50 | c et possibilite d'appeler une fonction f(y) a derivee tangente |
---|
| 51 | c hyperbolique a la place de la fonction a derivee sinusoidale. |
---|
| 52 | c ... Possibilite de choisir le schema pour l'advection de |
---|
| 53 | c q , en modifiant iadv dans traceur.def (MAF,10/02) . |
---|
| 54 | c |
---|
| 55 | c Pour Van-Leer + Vapeur d'eau saturee, iadv(1)=4. (F.Codron,10/99) |
---|
| 56 | c Pour Van-Leer iadv=10 |
---|
| 57 | c |
---|
| 58 | c----------------------------------------------------------------------- |
---|
| 59 | c Declarations: |
---|
| 60 | c ------------- |
---|
| 61 | |
---|
| 62 | #include "dimensions.h" |
---|
| 63 | #include "paramet.h" |
---|
| 64 | #include "comconst.h" |
---|
| 65 | #include "comdissnew.h" |
---|
| 66 | #include "comvert.h" |
---|
| 67 | #include "comgeom.h" |
---|
| 68 | #include "logic.h" |
---|
| 69 | #include "temps.h" |
---|
| 70 | #include "control.h" |
---|
| 71 | #include "ener.h" |
---|
| 72 | #include "description.h" |
---|
| 73 | #include "serre.h" |
---|
| 74 | #include "com_io_dyn.h" |
---|
| 75 | #include "iniprint.h" |
---|
[541] | 76 | #include "tracstoke.h" |
---|
[1315] | 77 | #include "indicesol.h" |
---|
[524] | 78 | |
---|
| 79 | INTEGER longcles |
---|
| 80 | PARAMETER ( longcles = 20 ) |
---|
| 81 | REAL clesphy0( longcles ) |
---|
| 82 | SAVE clesphy0 |
---|
| 83 | |
---|
| 84 | |
---|
| 85 | |
---|
| 86 | REAL zdtvr |
---|
| 87 | INTEGER nbetatmoy, nbetatdem,nbetat |
---|
| 88 | |
---|
| 89 | c variables dynamiques |
---|
| 90 | REAL vcov(ip1jm,llm),ucov(ip1jmp1,llm) ! vents covariants |
---|
| 91 | REAL teta(ip1jmp1,llm) ! temperature potentielle |
---|
[1146] | 92 | REAL, ALLOCATABLE, DIMENSION(:,:,:):: q! champs advectes |
---|
[524] | 93 | REAL ps(ip1jmp1) ! pression au sol |
---|
| 94 | REAL p (ip1jmp1,llmp1 ) ! pression aux interfac.des couches |
---|
| 95 | REAL pks(ip1jmp1) ! exner au sol |
---|
| 96 | REAL pk(ip1jmp1,llm) ! exner au milieu des couches |
---|
| 97 | REAL pkf(ip1jmp1,llm) ! exner filt.au milieu des couches |
---|
| 98 | REAL masse(ip1jmp1,llm) ! masse d'air |
---|
| 99 | REAL phis(ip1jmp1) ! geopotentiel au sol |
---|
| 100 | REAL phi(ip1jmp1,llm) ! geopotentiel |
---|
| 101 | 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 | INTEGER ij,iq,l,i,j |
---|
| 112 | |
---|
| 113 | |
---|
| 114 | real time_step, t_wrt, t_ops |
---|
| 115 | |
---|
| 116 | LOGICAL first |
---|
| 117 | |
---|
| 118 | LOGICAL call_iniphys |
---|
| 119 | data call_iniphys/.true./ |
---|
| 120 | |
---|
| 121 | REAL alpha(ip1jmp1,llm),beta(ip1jmp1,llm) |
---|
| 122 | c+jld variables test conservation energie |
---|
[962] | 123 | c REAL ecin(ip1jmp1,llm),ecin0(ip1jmp1,llm) |
---|
[524] | 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 | REAL dhecdt(ip1jmp1,llm) |
---|
[962] | 128 | c REAL vcont(ip1jm,llm),ucont(ip1jmp1,llm) |
---|
| 129 | c REAL d_h_vcol, d_qt, d_qw, d_ql, d_ec |
---|
| 130 | CHARACTER (len=15) :: ztit |
---|
[524] | 131 | c-jld |
---|
| 132 | |
---|
| 133 | |
---|
[962] | 134 | character (len=80) :: dynhist_file, dynhistave_file |
---|
| 135 | character (len=20) :: modname |
---|
| 136 | character (len=80) :: abort_message |
---|
[1279] | 137 | ! locales pour gestion du temps |
---|
| 138 | INTEGER :: an, mois, jour |
---|
| 139 | REAL :: heure |
---|
[524] | 140 | |
---|
| 141 | |
---|
| 142 | c----------------------------------------------------------------------- |
---|
| 143 | c variables pour l'initialisation de la physique : |
---|
| 144 | c ------------------------------------------------ |
---|
[1146] | 145 | INTEGER ngridmx |
---|
[524] | 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 | c----------------------------------------------------------------------- |
---|
| 153 | c Initialisations: |
---|
| 154 | c ---------------- |
---|
| 155 | |
---|
| 156 | abort_message = 'last timestep reached' |
---|
| 157 | modname = 'gcm' |
---|
| 158 | descript = 'Run GCM LMDZ' |
---|
| 159 | lafin = .FALSE. |
---|
| 160 | dynhist_file = 'dyn_hist.nc' |
---|
| 161 | dynhistave_file = 'dyn_hist_ave.nc' |
---|
| 162 | |
---|
[762] | 163 | |
---|
| 164 | |
---|
[524] | 165 | c---------------------------------------------------------------------- |
---|
| 166 | c lecture des fichiers gcm.def ou run.def |
---|
| 167 | c --------------------------------------- |
---|
| 168 | c |
---|
[1146] | 169 | ! Ehouarn: dump possibility of using defrun |
---|
| 170 | !#ifdef CPP_IOIPSL |
---|
[524] | 171 | CALL conf_gcm( 99, .TRUE. , clesphy0 ) |
---|
[1146] | 172 | !#else |
---|
| 173 | ! CALL defrun( 99, .TRUE. , clesphy0 ) |
---|
| 174 | !#endif |
---|
[762] | 175 | |
---|
[956] | 176 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
| 177 | ! FH 2008/05/02 |
---|
| 178 | ! A nettoyer. On ne veut qu'une ou deux routines d'interface |
---|
| 179 | ! dynamique -> physique pour l'initialisation |
---|
[1146] | 180 | ! Ehouarn : temporarily (?) keep this only for Earth |
---|
| 181 | if (planet_type.eq."earth") then |
---|
| 182 | #ifdef CPP_EARTH |
---|
| 183 | CALL Init_Phys_lmdz(iim,jjp1,llm,1,(jjm-1)*iim+2) |
---|
[762] | 184 | call InitComgeomphy |
---|
[956] | 185 | #endif |
---|
[1146] | 186 | endif |
---|
[956] | 187 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
[1279] | 188 | c----------------------------------------------------------------------- |
---|
| 189 | c Choix du calendrier |
---|
| 190 | c ------------------- |
---|
[762] | 191 | |
---|
[1279] | 192 | c calend = 'earth_365d' |
---|
| 193 | |
---|
| 194 | #ifdef CPP_IOIPSL |
---|
| 195 | if (calend == 'earth_360d') then |
---|
| 196 | call ioconf_calendar('360d') |
---|
| 197 | write(lunout,*)'CALENDRIER CHOISI: Terrestre a 360 jours/an' |
---|
| 198 | else if (calend == 'earth_365d') then |
---|
| 199 | call ioconf_calendar('noleap') |
---|
| 200 | write(lunout,*)'CALENDRIER CHOISI: Terrestre a 365 jours/an' |
---|
| 201 | else if (calend == 'earth_366d') then |
---|
| 202 | call ioconf_calendar('gregorian') |
---|
| 203 | write(lunout,*)'CALENDRIER CHOISI: Terrestre bissextile' |
---|
| 204 | else |
---|
| 205 | abort_message = 'Mauvais choix de calendrier' |
---|
| 206 | call abort_gcm(modname,abort_message,1) |
---|
| 207 | endif |
---|
| 208 | #endif |
---|
| 209 | c----------------------------------------------------------------------- |
---|
| 210 | |
---|
[960] | 211 | IF (config_inca /= 'none') THEN |
---|
[762] | 212 | #ifdef INCA |
---|
[1315] | 213 | call init_const_lmdz(nbtr,anneeref,dayref,iphysiq,day_step,nday, |
---|
| 214 | $ nbsrf, is_oce,is_sic,is_ter,is_lic) |
---|
[863] | 215 | call init_inca_para(iim,jjm+1,klon,1,klon_mpi_para_nb,0) |
---|
[762] | 216 | #endif |
---|
[960] | 217 | END IF |
---|
[524] | 218 | c |
---|
| 219 | c |
---|
[762] | 220 | c------------------------------------ |
---|
| 221 | c Initialisation partie parallele |
---|
| 222 | c------------------------------------ |
---|
| 223 | |
---|
| 224 | c |
---|
| 225 | c |
---|
[524] | 226 | c----------------------------------------------------------------------- |
---|
| 227 | c Initialisation des traceurs |
---|
| 228 | c --------------------------- |
---|
[1146] | 229 | c Choix du nombre de traceurs et du schema pour l'advection |
---|
| 230 | c dans fichier traceur.def, par default ou via INCA |
---|
| 231 | call infotrac_init |
---|
[524] | 232 | |
---|
[1146] | 233 | c Allocation de la tableau q : champs advectes |
---|
| 234 | allocate(q(ip1jmp1,llm,nqtot)) |
---|
| 235 | |
---|
[524] | 236 | c----------------------------------------------------------------------- |
---|
| 237 | c Lecture de l'etat initial : |
---|
| 238 | c --------------------------- |
---|
| 239 | |
---|
| 240 | c lecture du fichier start.nc |
---|
| 241 | if (read_start) then |
---|
[1146] | 242 | ! we still need to run iniacademic to initialize some |
---|
| 243 | ! constants & fields, if we run the 'newtonian' case: |
---|
| 244 | if (iflag_phys.eq.2) then |
---|
| 245 | CALL iniacademic(vcov,ucov,teta,q,masse,ps,phis,time_0) |
---|
| 246 | endif |
---|
| 247 | !#ifdef CPP_IOIPSL |
---|
| 248 | if (planet_type.eq."earth") then |
---|
| 249 | #ifdef CPP_EARTH |
---|
| 250 | ! Load an Earth-format start file |
---|
| 251 | CALL dynetat0("start.nc",vcov,ucov, |
---|
[524] | 252 | . teta,q,masse,ps,phis, time_0) |
---|
[1146] | 253 | #endif |
---|
| 254 | endif ! of if (planet_type.eq."earth") |
---|
[524] | 255 | c write(73,*) 'ucov',ucov |
---|
| 256 | c write(74,*) 'vcov',vcov |
---|
| 257 | c write(75,*) 'teta',teta |
---|
| 258 | c write(76,*) 'ps',ps |
---|
| 259 | c write(77,*) 'q',q |
---|
| 260 | |
---|
[1146] | 261 | endif ! of if (read_start) |
---|
[524] | 262 | |
---|
[960] | 263 | IF (config_inca /= 'none') THEN |
---|
[762] | 264 | #ifdef INCA |
---|
[960] | 265 | call init_inca_dim(klon,llm,iim,jjm, |
---|
| 266 | $ rlonu,rlatu,rlonv,rlatv) |
---|
[762] | 267 | #endif |
---|
[960] | 268 | END IF |
---|
[524] | 269 | |
---|
| 270 | |
---|
| 271 | c le cas echeant, creation d un etat initial |
---|
| 272 | IF (prt_level > 9) WRITE(lunout,*) |
---|
[1146] | 273 | . 'GCM: AVANT iniacademic AVANT AVANT AVANT AVANT' |
---|
[524] | 274 | if (.not.read_start) then |
---|
[1146] | 275 | CALL iniacademic(vcov,ucov,teta,q,masse,ps,phis,time_0) |
---|
[524] | 276 | endif |
---|
| 277 | |
---|
| 278 | |
---|
| 279 | c----------------------------------------------------------------------- |
---|
| 280 | c Lecture des parametres de controle pour la simulation : |
---|
| 281 | c ------------------------------------------------------- |
---|
| 282 | c on recalcule eventuellement le pas de temps |
---|
| 283 | |
---|
| 284 | IF(MOD(day_step,iperiod).NE.0) THEN |
---|
| 285 | abort_message = |
---|
| 286 | . 'Il faut choisir un nb de pas par jour multiple de iperiod' |
---|
| 287 | call abort_gcm(modname,abort_message,1) |
---|
| 288 | ENDIF |
---|
| 289 | |
---|
| 290 | IF(MOD(day_step,iphysiq).NE.0) THEN |
---|
| 291 | abort_message = |
---|
| 292 | * 'Il faut choisir un nb de pas par jour multiple de iphysiq' |
---|
| 293 | call abort_gcm(modname,abort_message,1) |
---|
| 294 | ENDIF |
---|
| 295 | |
---|
| 296 | zdtvr = daysec/FLOAT(day_step) |
---|
| 297 | IF(dtvr.NE.zdtvr) THEN |
---|
| 298 | WRITE(lunout,*) |
---|
| 299 | . 'WARNING!!! changement de pas de temps',dtvr,'>',zdtvr |
---|
| 300 | ENDIF |
---|
| 301 | |
---|
| 302 | C |
---|
| 303 | C on remet le calendrier à zero si demande |
---|
| 304 | c |
---|
[1420] | 305 | corig if (annee_ref .ne. anneeref .or. day_ref .ne. dayref) then |
---|
| 306 | cIM ajout test itau_dyn pour mettre a jour la date lorsque l'on part |
---|
| 307 | cIM du restart d'une simulation ayant la meme annee de reference que |
---|
| 308 | cIM la simulation presente |
---|
| 309 | if (annee_ref .ne. anneeref .or. day_ref .ne. dayref |
---|
| 310 | $ .or. itau_dyn .ne. 0 ) then |
---|
[524] | 311 | write(lunout,*) |
---|
[1146] | 312 | . 'GCM: Attention les dates initiales lues dans le fichier' |
---|
[524] | 313 | write(lunout,*) |
---|
| 314 | . ' restart ne correspondent pas a celles lues dans ' |
---|
| 315 | write(lunout,*)' gcm.def' |
---|
[1279] | 316 | write(lunout,*)' annee_ref=',annee_ref," anneeref=",anneeref |
---|
| 317 | write(lunout,*)' day_ref=',day_ref," dayref=",dayref |
---|
[524] | 318 | if (raz_date .ne. 1) then |
---|
| 319 | write(lunout,*) |
---|
[1146] | 320 | . 'GCM: On garde les dates du fichier restart' |
---|
[524] | 321 | else |
---|
| 322 | annee_ref = anneeref |
---|
| 323 | day_ref = dayref |
---|
| 324 | day_ini = dayref |
---|
| 325 | itau_dyn = 0 |
---|
| 326 | itau_phy = 0 |
---|
| 327 | time_0 = 0. |
---|
| 328 | write(lunout,*) |
---|
[1146] | 329 | . 'GCM: On reinitialise a la date lue dans gcm.def' |
---|
[524] | 330 | endif |
---|
| 331 | ELSE |
---|
| 332 | raz_date = 0 |
---|
| 333 | endif |
---|
[1279] | 334 | |
---|
[1147] | 335 | #ifdef CPP_IOIPSL |
---|
[1279] | 336 | mois = 1 |
---|
| 337 | heure = 0. |
---|
| 338 | call ymds2ju(annee_ref, mois, day_ref, heure, jD_ref) |
---|
| 339 | jH_ref = jD_ref - int(jD_ref) |
---|
| 340 | jD_ref = int(jD_ref) |
---|
| 341 | |
---|
| 342 | call ioconf_startdate(INT(jD_ref), jH_ref) |
---|
| 343 | |
---|
| 344 | write(lunout,*)'DEBUG' |
---|
| 345 | write(lunout,*)'annee_ref, mois, day_ref, heure, jD_ref' |
---|
| 346 | write(lunout,*)annee_ref, mois, day_ref, heure, jD_ref |
---|
| 347 | call ju2ymds(jD_ref+jH_ref,an, mois, jour, heure) |
---|
| 348 | write(lunout,*)'jD_ref+jH_ref,an, mois, jour, heure' |
---|
| 349 | write(lunout,*)jD_ref+jH_ref,an, mois, jour, heure |
---|
| 350 | #else |
---|
| 351 | ! Ehouarn: we still need to define JD_ref and JH_ref |
---|
| 352 | ! and since we don't know how many days there are in a year |
---|
| 353 | ! we set JD_ref to 0 (this should be improved ...) |
---|
| 354 | jD_ref=0 |
---|
| 355 | jH_ref=0 |
---|
[1147] | 356 | #endif |
---|
[524] | 357 | |
---|
| 358 | c nombre d'etats dans les fichiers demarrage et histoire |
---|
| 359 | nbetatdem = nday / iecri |
---|
| 360 | nbetatmoy = nday / periodav + 1 |
---|
| 361 | |
---|
| 362 | c----------------------------------------------------------------------- |
---|
| 363 | c Initialisation des constantes dynamiques : |
---|
| 364 | c ------------------------------------------ |
---|
| 365 | dtvr = zdtvr |
---|
| 366 | CALL iniconst |
---|
| 367 | |
---|
| 368 | c----------------------------------------------------------------------- |
---|
| 369 | c Initialisation de la geometrie : |
---|
| 370 | c -------------------------------- |
---|
| 371 | CALL inigeom |
---|
| 372 | |
---|
| 373 | c----------------------------------------------------------------------- |
---|
| 374 | c Initialisation du filtre : |
---|
| 375 | c -------------------------- |
---|
| 376 | CALL inifilr |
---|
| 377 | c |
---|
| 378 | c----------------------------------------------------------------------- |
---|
| 379 | c Initialisation de la dissipation : |
---|
| 380 | c ---------------------------------- |
---|
| 381 | |
---|
| 382 | CALL inidissip( lstardis, nitergdiv, nitergrot, niterh , |
---|
| 383 | * tetagdiv, tetagrot , tetatemp ) |
---|
| 384 | |
---|
| 385 | c----------------------------------------------------------------------- |
---|
| 386 | c Initialisation de la physique : |
---|
| 387 | c ------------------------------- |
---|
[1146] | 388 | |
---|
| 389 | IF (call_iniphys.and.(iflag_phys.eq.1)) THEN |
---|
[524] | 390 | latfi(1)=rlatu(1) |
---|
| 391 | lonfi(1)=0. |
---|
| 392 | zcufi(1) = cu(1) |
---|
| 393 | zcvfi(1) = cv(1) |
---|
| 394 | DO j=2,jjm |
---|
| 395 | DO i=1,iim |
---|
| 396 | latfi((j-2)*iim+1+i)= rlatu(j) |
---|
| 397 | lonfi((j-2)*iim+1+i)= rlonv(i) |
---|
| 398 | zcufi((j-2)*iim+1+i) = cu((j-1)*iip1+i) |
---|
| 399 | zcvfi((j-2)*iim+1+i) = cv((j-1)*iip1+i) |
---|
| 400 | ENDDO |
---|
| 401 | ENDDO |
---|
| 402 | latfi(ngridmx)= rlatu(jjp1) |
---|
| 403 | lonfi(ngridmx)= 0. |
---|
| 404 | zcufi(ngridmx) = cu(ip1jm+1) |
---|
| 405 | zcvfi(ngridmx) = cv(ip1jm-iim) |
---|
| 406 | CALL gr_dyn_fi(1,iip1,jjp1,ngridmx,aire,airefi) |
---|
| 407 | WRITE(lunout,*) |
---|
[1146] | 408 | . 'GCM: WARNING!!! vitesse verticale nulle dans la physique' |
---|
| 409 | ! Earth: |
---|
| 410 | if (planet_type.eq."earth") then |
---|
| 411 | #ifdef CPP_EARTH |
---|
[524] | 412 | CALL iniphysiq(ngridmx,llm,daysec,day_ini,dtphys , |
---|
| 413 | , latfi,lonfi,airefi,zcufi,zcvfi,rad,g,r,cpp ) |
---|
[1146] | 414 | #endif |
---|
| 415 | endif ! of if (planet_type.eq."earth") |
---|
[524] | 416 | call_iniphys=.false. |
---|
[1146] | 417 | ENDIF ! of IF (call_iniphys.and.(iflag_phys.eq.1)) |
---|
| 418 | !#endif |
---|
[524] | 419 | |
---|
| 420 | c numero de stockage pour les fichiers de redemarrage: |
---|
| 421 | |
---|
| 422 | c----------------------------------------------------------------------- |
---|
| 423 | c Initialisation des I/O : |
---|
| 424 | c ------------------------ |
---|
| 425 | |
---|
| 426 | |
---|
| 427 | day_end = day_ini + nday |
---|
| 428 | WRITE(lunout,300)day_ini,day_end |
---|
[1146] | 429 | 300 FORMAT('1'/,15x,'run du jour',i7,2x,'au jour',i7//) |
---|
[524] | 430 | |
---|
[1279] | 431 | #ifdef CPP_IOIPSL |
---|
| 432 | call ju2ymds(jD_ref + day_ini - day_ref, an, mois, jour, heure) |
---|
| 433 | write (lunout,301)jour, mois, an |
---|
| 434 | call ju2ymds(jD_ref + day_end - day_ref, an, mois, jour, heure) |
---|
| 435 | write (lunout,302)jour, mois, an |
---|
| 436 | 301 FORMAT('1'/,15x,'run du ', i2,'/',i2,'/',i4) |
---|
| 437 | 302 FORMAT('1'/,15x,' au ', i2,'/',i2,'/',i4) |
---|
| 438 | #endif |
---|
| 439 | |
---|
[1146] | 440 | if (planet_type.eq."earth") then |
---|
[1279] | 441 | CALL dynredem0("restart.nc", day_end, phis) |
---|
[1146] | 442 | endif |
---|
[524] | 443 | |
---|
| 444 | ecripar = .TRUE. |
---|
| 445 | |
---|
[1146] | 446 | #ifdef CPP_IOIPSL |
---|
[524] | 447 | if ( 1.eq.1) then |
---|
| 448 | time_step = zdtvr |
---|
| 449 | t_ops = iecri * daysec |
---|
| 450 | t_wrt = iecri * daysec |
---|
[1279] | 451 | ! CALL inithist(dynhist_file,day_ref,annee_ref,time_step, |
---|
| 452 | ! . t_ops, t_wrt, histid, histvid) |
---|
[524] | 453 | |
---|
[1279] | 454 | ! IF (ok_dynzon) THEN |
---|
| 455 | ! t_ops = iperiod * time_step |
---|
| 456 | ! t_wrt = periodav * daysec |
---|
| 457 | ! CALL initdynav(dynhistave_file,day_ref,annee_ref,time_step, |
---|
| 458 | ! . t_ops, t_wrt, histaveid) |
---|
| 459 | ! END IF |
---|
[524] | 460 | dtav = iperiod*dtvr/daysec |
---|
| 461 | endif |
---|
| 462 | |
---|
| 463 | |
---|
| 464 | #endif |
---|
[1146] | 465 | ! #endif of #ifdef CPP_IOIPSL |
---|
[524] | 466 | |
---|
[541] | 467 | c Choix des frequences de stokage pour le offline |
---|
| 468 | c istdyn=day_step/4 ! stockage toutes les 6h=1jour/4 |
---|
| 469 | c istdyn=day_step/12 ! stockage toutes les 2h=1jour/12 |
---|
| 470 | istdyn=day_step/4 ! stockage toutes les 6h=1jour/12 |
---|
| 471 | istphy=istdyn/iphysiq |
---|
| 472 | |
---|
| 473 | |
---|
[524] | 474 | c |
---|
| 475 | c----------------------------------------------------------------------- |
---|
| 476 | c Integration temporelle du modele : |
---|
| 477 | c ---------------------------------- |
---|
| 478 | |
---|
| 479 | c write(78,*) 'ucov',ucov |
---|
| 480 | c write(78,*) 'vcov',vcov |
---|
| 481 | c write(78,*) 'teta',teta |
---|
| 482 | c write(78,*) 'ps',ps |
---|
| 483 | c write(78,*) 'q',q |
---|
| 484 | |
---|
| 485 | |
---|
[1146] | 486 | CALL leapfrog(ucov,vcov,teta,ps,masse,phis,q,clesphy0, |
---|
[550] | 487 | . time_0) |
---|
[524] | 488 | |
---|
| 489 | END |
---|
| 490 | |
---|