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