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