[524] | 1 | ! |
---|
[1403] | 2 | ! $Id: phyetat0.F 1403 2010-07-01 09:02:53Z fairhead $ |
---|
[524] | 3 | ! |
---|
| 4 | c |
---|
| 5 | c |
---|
[967] | 6 | SUBROUTINE phyetat0 (fichnom, |
---|
| 7 | . clesphy0, |
---|
| 8 | . tabcntr0) |
---|
[782] | 9 | |
---|
[776] | 10 | USE dimphy |
---|
| 11 | USE mod_grid_phy_lmdz |
---|
| 12 | USE mod_phys_lmdz_para |
---|
[766] | 13 | USE iophy |
---|
[782] | 14 | USE ocean_cpl_mod, ONLY : ocean_cpl_init |
---|
| 15 | USE fonte_neige_mod, ONLY : fonte_neige_init |
---|
| 16 | USE pbl_surface_mod, ONLY : pbl_surface_init |
---|
[996] | 17 | USE surface_data, ONLY : type_ocean |
---|
[967] | 18 | USE phys_state_var_mod |
---|
[1001] | 19 | USE iostart |
---|
| 20 | USE write_field_phy |
---|
[1279] | 21 | USE infotrac |
---|
| 22 | USE traclmdz_mod, ONLY : traclmdz_from_restart |
---|
| 23 | USE carbon_cycle_mod,ONLY : carbon_cycle_tr, carbon_cycle_cpl |
---|
| 24 | |
---|
[524] | 25 | IMPLICIT none |
---|
| 26 | c====================================================================== |
---|
| 27 | c Auteur(s) Z.X. Li (LMD/CNRS) date: 19930818 |
---|
| 28 | c Objet: Lecture de l'etat initial pour la physique |
---|
| 29 | c====================================================================== |
---|
| 30 | #include "dimensions.h" |
---|
| 31 | #include "netcdf.inc" |
---|
| 32 | #include "indicesol.h" |
---|
| 33 | #include "dimsoil.h" |
---|
| 34 | #include "clesphys.h" |
---|
| 35 | #include "temps.h" |
---|
[878] | 36 | #include "thermcell.h" |
---|
| 37 | #include "compbl.h" |
---|
[524] | 38 | c====================================================================== |
---|
| 39 | CHARACTER*(*) fichnom |
---|
[967] | 40 | |
---|
| 41 | c les variables globales lues dans le fichier restart |
---|
[524] | 42 | |
---|
[1001] | 43 | REAL tsoil(klon,nsoilmx,nbsrf) |
---|
| 44 | REAL tslab(klon), seaice(klon) |
---|
| 45 | REAL qsurf(klon,nbsrf) |
---|
| 46 | REAL qsol(klon) |
---|
| 47 | REAL snow(klon,nbsrf) |
---|
| 48 | REAL evap(klon,nbsrf) |
---|
| 49 | real fder(klon) |
---|
| 50 | REAL frugs(klon,nbsrf) |
---|
| 51 | REAL agesno(klon,nbsrf) |
---|
| 52 | REAL run_off_lic_0(klon) |
---|
| 53 | REAL fractint(klon) |
---|
[1279] | 54 | REAL trs(klon,nbtr) |
---|
[1001] | 55 | |
---|
[782] | 56 | CHARACTER*6 ocean_in |
---|
| 57 | LOGICAL ok_veget_in |
---|
[651] | 58 | |
---|
[524] | 59 | INTEGER longcles |
---|
| 60 | PARAMETER ( longcles = 20 ) |
---|
| 61 | REAL clesphy0( longcles ) |
---|
| 62 | c |
---|
| 63 | REAL xmin, xmax |
---|
| 64 | c |
---|
| 65 | INTEGER nid, nvarid |
---|
[878] | 66 | INTEGER ierr, i, nsrf, isoil ,k |
---|
[524] | 67 | INTEGER length |
---|
| 68 | PARAMETER (length=100) |
---|
[1279] | 69 | INTEGER it, iiq |
---|
[524] | 70 | REAL tab_cntrl(length), tabcntr0(length) |
---|
| 71 | CHARACTER*7 str7 |
---|
| 72 | CHARACTER*2 str2 |
---|
[1001] | 73 | LOGICAL :: found |
---|
[879] | 74 | |
---|
| 75 | c FH1D |
---|
| 76 | c real iolat(jjm+1) |
---|
| 77 | real iolat(jjm+1-1/iim) |
---|
[524] | 78 | c |
---|
| 79 | c Ouvrir le fichier contenant l'etat initial: |
---|
| 80 | c |
---|
[766] | 81 | |
---|
[1001] | 82 | |
---|
| 83 | CALL open_startphy(fichnom) |
---|
| 84 | |
---|
[766] | 85 | |
---|
[524] | 86 | c |
---|
| 87 | c Lecture des parametres de controle: |
---|
| 88 | c |
---|
[1001] | 89 | CALL get_var("controle",tab_cntrl) |
---|
[766] | 90 | |
---|
[524] | 91 | c |
---|
[956] | 92 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
| 93 | ! FH 2008/05/09 On elimine toutes les clefs physiques dans la dynamique |
---|
| 94 | ! Les constantes de la physiques sont lues dans la physique seulement. |
---|
| 95 | ! Les egalites du type |
---|
| 96 | ! tab_cntrl( 5 )=clesphy0(1) |
---|
| 97 | ! sont remplacees par |
---|
| 98 | ! clesphy0(1)=tab_cntrl( 5 ) |
---|
| 99 | ! On inverse aussi la logique. |
---|
| 100 | ! On remplit les tab_cntrl avec les parametres lus dans les .def |
---|
| 101 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
| 102 | |
---|
[524] | 103 | DO i = 1, length |
---|
| 104 | tabcntr0( i ) = tab_cntrl( i ) |
---|
| 105 | ENDDO |
---|
| 106 | c |
---|
[956] | 107 | tab_cntrl(1)=dtime |
---|
| 108 | tab_cntrl(2)=radpas |
---|
[1279] | 109 | |
---|
| 110 | c co2_ppm : value from the previous time step |
---|
| 111 | IF (carbon_cycle_tr .OR. carbon_cycle_cpl) THEN |
---|
| 112 | co2_ppm = tab_cntrl(3) |
---|
| 113 | RCO2 = co2_ppm * 1.0e-06 * 44.011/28.97 |
---|
| 114 | c ELSE : keep value from .def |
---|
| 115 | END IF |
---|
| 116 | |
---|
| 117 | c co2_ppm0 : initial value of atmospheric CO2 (from create_etat0_limit.e .def) |
---|
| 118 | co2_ppm0 = tab_cntrl(16) |
---|
| 119 | |
---|
[956] | 120 | solaire_etat0 = tab_cntrl(4) |
---|
| 121 | tab_cntrl(5)=iflag_con |
---|
| 122 | tab_cntrl(6)=nbapp_rad |
---|
[524] | 123 | |
---|
[956] | 124 | if (cycle_diurne) tab_cntrl( 7) =1. |
---|
| 125 | if (soil_model) tab_cntrl( 8) =1. |
---|
| 126 | if (new_oliq) tab_cntrl( 9) =1. |
---|
| 127 | if (ok_orodr) tab_cntrl(10) =1. |
---|
| 128 | if (ok_orolf) tab_cntrl(11) =1. |
---|
| 129 | if (ok_limitvrai) tab_cntrl(12) =1. |
---|
[524] | 130 | |
---|
[956] | 131 | |
---|
| 132 | itau_phy = tab_cntrl(15) |
---|
| 133 | |
---|
| 134 | |
---|
| 135 | |
---|
[524] | 136 | IF( clesphy0(1).NE.tab_cntrl( 5 ) ) THEN |
---|
[956] | 137 | clesphy0(1)=tab_cntrl( 5 ) |
---|
[524] | 138 | ENDIF |
---|
| 139 | |
---|
| 140 | IF( clesphy0(2).NE.tab_cntrl( 6 ) ) THEN |
---|
[956] | 141 | clesphy0(2)=tab_cntrl( 6 ) |
---|
[524] | 142 | ENDIF |
---|
| 143 | |
---|
| 144 | IF( clesphy0(3).NE.tab_cntrl( 7 ) ) THEN |
---|
[956] | 145 | clesphy0(3)=tab_cntrl( 7 ) |
---|
[524] | 146 | ENDIF |
---|
| 147 | |
---|
| 148 | IF( clesphy0(4).NE.tab_cntrl( 8 ) ) THEN |
---|
[956] | 149 | clesphy0(4)=tab_cntrl( 8 ) |
---|
[524] | 150 | ENDIF |
---|
| 151 | |
---|
| 152 | IF( clesphy0(5).NE.tab_cntrl( 9 ) ) THEN |
---|
[956] | 153 | clesphy0(5)=tab_cntrl( 9 ) |
---|
[524] | 154 | ENDIF |
---|
| 155 | |
---|
| 156 | IF( clesphy0(6).NE.tab_cntrl( 10 ) ) THEN |
---|
[956] | 157 | clesphy0(6)=tab_cntrl( 10 ) |
---|
[524] | 158 | ENDIF |
---|
| 159 | |
---|
| 160 | IF( clesphy0(7).NE.tab_cntrl( 11 ) ) THEN |
---|
[956] | 161 | clesphy0(7)=tab_cntrl( 11 ) |
---|
[524] | 162 | ENDIF |
---|
| 163 | |
---|
| 164 | IF( clesphy0(8).NE.tab_cntrl( 12 ) ) THEN |
---|
[956] | 165 | clesphy0(8)=tab_cntrl( 12 ) |
---|
[524] | 166 | ENDIF |
---|
| 167 | |
---|
| 168 | |
---|
| 169 | c |
---|
| 170 | c Lecture des latitudes (coordonnees): |
---|
| 171 | c |
---|
[1001] | 172 | CALL get_field("latitude",rlat) |
---|
[766] | 173 | |
---|
[524] | 174 | c |
---|
| 175 | c Lecture des longitudes (coordonnees): |
---|
| 176 | c |
---|
[1001] | 177 | CALL get_field("longitude",rlon) |
---|
| 178 | |
---|
[524] | 179 | C |
---|
| 180 | C |
---|
| 181 | C Lecture du masque terre mer |
---|
| 182 | C |
---|
[1001] | 183 | CALL get_field("masque",zmasq,found) |
---|
| 184 | IF (.NOT. found) THEN |
---|
| 185 | PRINT*, 'phyetat0: Le champ <masque> est absent' |
---|
| 186 | PRINT *, 'fichier startphy non compatible avec phyetat0' |
---|
[524] | 187 | ENDIF |
---|
[766] | 188 | |
---|
| 189 | |
---|
[524] | 190 | C Lecture des fractions pour chaque sous-surface |
---|
| 191 | C |
---|
| 192 | C initialisation des sous-surfaces |
---|
| 193 | C |
---|
| 194 | pctsrf = 0. |
---|
| 195 | C |
---|
| 196 | C fraction de terre |
---|
| 197 | C |
---|
[766] | 198 | |
---|
[1001] | 199 | CALL get_field("FTER",pctsrf(:,is_ter),found) |
---|
| 200 | IF (.NOT. found) PRINT*, 'phyetat0: Le champ <FTER> est absent' |
---|
[766] | 201 | |
---|
[524] | 202 | C |
---|
| 203 | C fraction de glace de terre |
---|
| 204 | C |
---|
[1001] | 205 | CALL get_field("FLIC",pctsrf(:,is_lic),found) |
---|
| 206 | IF (.NOT. found) PRINT*, 'phyetat0: Le champ <FLIC> est absent' |
---|
| 207 | |
---|
[524] | 208 | C |
---|
| 209 | C fraction d'ocean |
---|
| 210 | C |
---|
[1001] | 211 | CALL get_field("FOCE",pctsrf(:,is_oce),found) |
---|
| 212 | IF (.NOT. found) PRINT*, 'phyetat0: Le champ <FOCE> est absent' |
---|
[766] | 213 | |
---|
[524] | 214 | C |
---|
| 215 | C fraction glace de mer |
---|
| 216 | C |
---|
[1001] | 217 | CALL get_field("FSIC",pctsrf(:,is_sic),found) |
---|
| 218 | IF (.NOT. found) PRINT*, 'phyetat0: Le champ <FSIC> est absent' |
---|
[766] | 219 | |
---|
[524] | 220 | C |
---|
| 221 | C Verification de l'adequation entre le masque et les sous-surfaces |
---|
| 222 | C |
---|
[1001] | 223 | fractint( 1 : klon) = pctsrf(1 : klon, is_ter) |
---|
| 224 | $ + pctsrf(1 : klon, is_lic) |
---|
| 225 | DO i = 1 , klon |
---|
| 226 | IF ( abs(fractint(i) - zmasq(i) ) .GT. EPSFRA ) THEN |
---|
[524] | 227 | WRITE(*,*) 'phyetat0: attention fraction terre pas ', |
---|
[1001] | 228 | $ 'coherente ', i, zmasq(i), pctsrf(i, is_ter) |
---|
| 229 | $ ,pctsrf(i, is_lic) |
---|
[1403] | 230 | WRITE(*,*) 'Je force la coherence zmasq=fractint' |
---|
[1319] | 231 | zmasq(i) = fractint(i) |
---|
[524] | 232 | ENDIF |
---|
| 233 | END DO |
---|
[1001] | 234 | fractint (1 : klon) = pctsrf(1 : klon, is_oce) |
---|
| 235 | $ + pctsrf(1 : klon, is_sic) |
---|
| 236 | DO i = 1 , klon |
---|
| 237 | IF ( abs( fractint(i) - (1. - zmasq(i))) .GT. EPSFRA ) THEN |
---|
[524] | 238 | WRITE(*,*) 'phyetat0 attention fraction ocean pas ', |
---|
[1001] | 239 | $ 'coherente ', i, zmasq(i) , pctsrf(i, is_oce) |
---|
| 240 | $ ,pctsrf(i, is_sic) |
---|
[1403] | 241 | WRITE(*,*) 'Je force la coherence zmasq=fractint' |
---|
[1319] | 242 | zmasq(i) = fractint(i) |
---|
[524] | 243 | ENDIF |
---|
| 244 | END DO |
---|
[766] | 245 | |
---|
[524] | 246 | C |
---|
| 247 | c Lecture des temperatures du sol: |
---|
| 248 | c |
---|
[766] | 249 | |
---|
[1001] | 250 | CALL get_field("TS",ftsol(:,1),found) |
---|
| 251 | IF (.NOT. found) THEN |
---|
[524] | 252 | PRINT*, 'phyetat0: Le champ <TS> est absent' |
---|
| 253 | PRINT*, ' Mais je vais essayer de lire TS**' |
---|
| 254 | DO nsrf = 1, nbsrf |
---|
| 255 | IF (nsrf.GT.99) THEN |
---|
| 256 | PRINT*, "Trop de sous-mailles" |
---|
| 257 | CALL abort |
---|
| 258 | ENDIF |
---|
| 259 | WRITE(str2,'(i2.2)') nsrf |
---|
[1001] | 260 | CALL get_field("TS"//str2,ftsol(:,nsrf)) |
---|
[766] | 261 | |
---|
[524] | 262 | xmin = 1.0E+20 |
---|
| 263 | xmax = -1.0E+20 |
---|
[1001] | 264 | DO i = 1, klon |
---|
| 265 | xmin = MIN(ftsol(i,nsrf),xmin) |
---|
| 266 | xmax = MAX(ftsol(i,nsrf),xmax) |
---|
[524] | 267 | ENDDO |
---|
| 268 | PRINT*,'Temperature du sol TS**:', nsrf, xmin, xmax |
---|
| 269 | ENDDO |
---|
| 270 | ELSE |
---|
| 271 | PRINT*, 'phyetat0: Le champ <TS> est present' |
---|
| 272 | PRINT*, ' J ignore donc les autres temperatures TS**' |
---|
| 273 | xmin = 1.0E+20 |
---|
| 274 | xmax = -1.0E+20 |
---|
[1001] | 275 | DO i = 1, klon |
---|
| 276 | xmin = MIN(ftsol(i,1),xmin) |
---|
| 277 | xmax = MAX(ftsol(i,1),xmax) |
---|
[524] | 278 | ENDDO |
---|
| 279 | PRINT*,'Temperature du sol <TS>', xmin, xmax |
---|
| 280 | DO nsrf = 2, nbsrf |
---|
[1001] | 281 | DO i = 1, klon |
---|
| 282 | ftsol(i,nsrf) = ftsol(i,1) |
---|
[524] | 283 | ENDDO |
---|
| 284 | ENDDO |
---|
| 285 | ENDIF |
---|
[766] | 286 | |
---|
[524] | 287 | c |
---|
| 288 | c Lecture des temperatures du sol profond: |
---|
| 289 | c |
---|
| 290 | DO nsrf = 1, nbsrf |
---|
[1001] | 291 | DO isoil=1, nsoilmx |
---|
| 292 | IF (isoil.GT.99 .AND. nsrf.GT.99) THEN |
---|
| 293 | PRINT*, "Trop de couches ou sous-mailles" |
---|
[524] | 294 | CALL abort |
---|
[1001] | 295 | ENDIF |
---|
| 296 | WRITE(str7,'(i2.2,"srf",i2.2)') isoil, nsrf |
---|
| 297 | |
---|
| 298 | CALL get_field('Tsoil'//str7,tsoil(:,isoil,nsrf),found) |
---|
| 299 | IF (.NOT. found) THEN |
---|
| 300 | PRINT*, "phyetat0: Le champ <Tsoil"//str7//"> est absent" |
---|
| 301 | PRINT*, " Il prend donc la valeur de surface" |
---|
| 302 | DO i=1, klon |
---|
| 303 | tsoil(i,isoil,nsrf)=ftsol(i,nsrf) |
---|
| 304 | ENDDO |
---|
| 305 | ENDIF |
---|
| 306 | ENDDO |
---|
[524] | 307 | ENDDO |
---|
| 308 | c |
---|
| 309 | c Lecture de l'humidite de l'air juste au dessus du sol: |
---|
| 310 | c |
---|
[1001] | 311 | |
---|
| 312 | CALL get_field("QS",qsurf(:,1),found) |
---|
| 313 | IF (.NOT. found) THEN |
---|
[524] | 314 | PRINT*, 'phyetat0: Le champ <QS> est absent' |
---|
| 315 | PRINT*, ' Mais je vais essayer de lire QS**' |
---|
| 316 | DO nsrf = 1, nbsrf |
---|
| 317 | IF (nsrf.GT.99) THEN |
---|
| 318 | PRINT*, "Trop de sous-mailles" |
---|
| 319 | CALL abort |
---|
| 320 | ENDIF |
---|
| 321 | WRITE(str2,'(i2.2)') nsrf |
---|
[1001] | 322 | CALL get_field("QS"//str2,qsurf(:,nsrf)) |
---|
[524] | 323 | xmin = 1.0E+20 |
---|
| 324 | xmax = -1.0E+20 |
---|
[1001] | 325 | DO i = 1, klon |
---|
[524] | 326 | xmin = MIN(qsurf(i,nsrf),xmin) |
---|
| 327 | xmax = MAX(qsurf(i,nsrf),xmax) |
---|
| 328 | ENDDO |
---|
| 329 | PRINT*,'Humidite pres du sol QS**:', nsrf, xmin, xmax |
---|
| 330 | ENDDO |
---|
| 331 | ELSE |
---|
| 332 | PRINT*, 'phyetat0: Le champ <QS> est present' |
---|
| 333 | PRINT*, ' J ignore donc les autres humidites QS**' |
---|
| 334 | xmin = 1.0E+20 |
---|
| 335 | xmax = -1.0E+20 |
---|
[1001] | 336 | DO i = 1, klon |
---|
[524] | 337 | xmin = MIN(qsurf(i,1),xmin) |
---|
| 338 | xmax = MAX(qsurf(i,1),xmax) |
---|
| 339 | ENDDO |
---|
| 340 | PRINT*,'Humidite pres du sol <QS>', xmin, xmax |
---|
| 341 | DO nsrf = 2, nbsrf |
---|
[1001] | 342 | DO i = 1, klon |
---|
| 343 | qsurf(i,nsrf) = qsurf(i,1) |
---|
| 344 | ENDDO |
---|
[524] | 345 | ENDDO |
---|
| 346 | ENDIF |
---|
[1001] | 347 | |
---|
[524] | 348 | C |
---|
| 349 | C Eau dans le sol (pour le modele de sol "bucket") |
---|
| 350 | C |
---|
[1001] | 351 | CALL get_field("QSOL",qsol,found) |
---|
| 352 | IF (.NOT. found) THEN |
---|
| 353 | PRINT*, 'phyetat0: Le champ <QSOL> est absent' |
---|
| 354 | PRINT*, ' Valeur par defaut nulle' |
---|
[524] | 355 | qsol(:)=0. |
---|
| 356 | ENDIF |
---|
[1001] | 357 | |
---|
[524] | 358 | xmin = 1.0E+20 |
---|
| 359 | xmax = -1.0E+20 |
---|
[1001] | 360 | DO i = 1, klon |
---|
[524] | 361 | xmin = MIN(qsol(i),xmin) |
---|
| 362 | xmax = MAX(qsol(i),xmax) |
---|
| 363 | ENDDO |
---|
| 364 | PRINT*,'Eau dans le sol (mm) <QSOL>', xmin, xmax |
---|
[1001] | 365 | |
---|
[524] | 366 | c |
---|
| 367 | c Lecture de neige au sol: |
---|
| 368 | c |
---|
[1001] | 369 | |
---|
[1053] | 370 | CALL get_field("SNOW",snow(:,1),found) |
---|
[1001] | 371 | IF (.NOT. found) THEN |
---|
| 372 | PRINT*, 'phyetat0: Le champ <SNOW> est absent' |
---|
| 373 | PRINT*, ' Mais je vais essayer de lire SNOW**' |
---|
| 374 | DO nsrf = 1, nbsrf |
---|
| 375 | IF (nsrf.GT.99) THEN |
---|
| 376 | PRINT*, "Trop de sous-mailles" |
---|
| 377 | CALL abort |
---|
| 378 | ENDIF |
---|
| 379 | WRITE(str2,'(i2.2)') nsrf |
---|
| 380 | CALL get_field( "SNOW"//str2,snow(:,nsrf)) |
---|
| 381 | xmin = 1.0E+20 |
---|
| 382 | xmax = -1.0E+20 |
---|
| 383 | DO i = 1, klon |
---|
| 384 | xmin = MIN(snow(i,nsrf),xmin) |
---|
| 385 | xmax = MAX(snow(i,nsrf),xmax) |
---|
| 386 | ENDDO |
---|
| 387 | PRINT*,'Neige du sol SNOW**:', nsrf, xmin, xmax |
---|
| 388 | ENDDO |
---|
[524] | 389 | ELSE |
---|
| 390 | PRINT*, 'phyetat0: Le champ <SNOW> est present' |
---|
| 391 | PRINT*, ' J ignore donc les autres neiges SNOW**' |
---|
| 392 | xmin = 1.0E+20 |
---|
| 393 | xmax = -1.0E+20 |
---|
[1001] | 394 | DO i = 1, klon |
---|
[524] | 395 | xmin = MIN(snow(i,1),xmin) |
---|
| 396 | xmax = MAX(snow(i,1),xmax) |
---|
| 397 | ENDDO |
---|
| 398 | PRINT*,'Neige du sol <SNOW>', xmin, xmax |
---|
| 399 | DO nsrf = 2, nbsrf |
---|
[1001] | 400 | DO i = 1, klon |
---|
[524] | 401 | snow(i,nsrf) = snow(i,1) |
---|
| 402 | ENDDO |
---|
| 403 | ENDDO |
---|
| 404 | ENDIF |
---|
| 405 | c |
---|
[888] | 406 | c Lecture de albedo de l'interval visible au sol: |
---|
[524] | 407 | c |
---|
[1001] | 408 | CALL get_field("ALBE",falb1(:,1),found) |
---|
| 409 | IF (.NOT. found) THEN |
---|
[524] | 410 | PRINT*, 'phyetat0: Le champ <ALBE> est absent' |
---|
| 411 | PRINT*, ' Mais je vais essayer de lire ALBE**' |
---|
| 412 | DO nsrf = 1, nbsrf |
---|
| 413 | IF (nsrf.GT.99) THEN |
---|
| 414 | PRINT*, "Trop de sous-mailles" |
---|
| 415 | CALL abort |
---|
| 416 | ENDIF |
---|
| 417 | WRITE(str2,'(i2.2)') nsrf |
---|
[1001] | 418 | CALL get_field("ALBE"//str2,falb1(:,nsrf)) |
---|
[524] | 419 | xmin = 1.0E+20 |
---|
| 420 | xmax = -1.0E+20 |
---|
[1001] | 421 | DO i = 1, klon |
---|
| 422 | xmin = MIN(falb1(i,nsrf),xmin) |
---|
| 423 | xmax = MAX(falb1(i,nsrf),xmax) |
---|
[524] | 424 | ENDDO |
---|
| 425 | PRINT*,'Albedo du sol ALBE**:', nsrf, xmin, xmax |
---|
| 426 | ENDDO |
---|
| 427 | ELSE |
---|
| 428 | PRINT*, 'phyetat0: Le champ <ALBE> est present' |
---|
| 429 | PRINT*, ' J ignore donc les autres ALBE**' |
---|
| 430 | xmin = 1.0E+20 |
---|
| 431 | xmax = -1.0E+20 |
---|
[1001] | 432 | DO i = 1, klon |
---|
| 433 | xmin = MIN(falb1(i,1),xmin) |
---|
| 434 | xmax = MAX(falb1(i,1),xmax) |
---|
[524] | 435 | ENDDO |
---|
| 436 | PRINT*,'Neige du sol <ALBE>', xmin, xmax |
---|
| 437 | DO nsrf = 2, nbsrf |
---|
[1001] | 438 | DO i = 1, klon |
---|
| 439 | falb1(i,nsrf) = falb1(i,1) |
---|
| 440 | ENDDO |
---|
[524] | 441 | ENDDO |
---|
| 442 | ENDIF |
---|
| 443 | |
---|
| 444 | c |
---|
[888] | 445 | c Lecture de albedo au sol dans l'interval proche infra-rouge: |
---|
[524] | 446 | c |
---|
[1001] | 447 | CALL get_field("ALBLW",falb2(:,1),found) |
---|
| 448 | IF (.NOT. found) THEN |
---|
[524] | 449 | PRINT*, 'phyetat0: Le champ <ALBLW> est absent' |
---|
| 450 | PRINT*, ' Mais je vais prendre ALBE**' |
---|
| 451 | DO nsrf = 1, nbsrf |
---|
[1001] | 452 | DO i = 1, klon |
---|
| 453 | falb2(i,nsrf) = falb1(i,nsrf) |
---|
[524] | 454 | ENDDO |
---|
| 455 | ENDDO |
---|
| 456 | ELSE |
---|
| 457 | PRINT*, 'phyetat0: Le champ <ALBLW> est present' |
---|
| 458 | PRINT*, ' J ignore donc les autres ALBLW**' |
---|
| 459 | xmin = 1.0E+20 |
---|
| 460 | xmax = -1.0E+20 |
---|
[1001] | 461 | DO i = 1, klon |
---|
| 462 | xmin = MIN(falb2(i,1),xmin) |
---|
| 463 | xmax = MAX(falb2(i,1),xmax) |
---|
[524] | 464 | ENDDO |
---|
| 465 | PRINT*,'Neige du sol <ALBLW>', xmin, xmax |
---|
| 466 | DO nsrf = 2, nbsrf |
---|
[1001] | 467 | DO i = 1, klon |
---|
| 468 | falb2(i,nsrf) = falb2(i,1) |
---|
| 469 | ENDDO |
---|
[524] | 470 | ENDDO |
---|
| 471 | ENDIF |
---|
| 472 | c |
---|
| 473 | c Lecture de evaporation: |
---|
| 474 | c |
---|
[1001] | 475 | CALL get_field("EVAP",evap(:,1),found) |
---|
| 476 | IF (.NOT. found) THEN |
---|
[524] | 477 | PRINT*, 'phyetat0: Le champ <EVAP> est absent' |
---|
| 478 | PRINT*, ' Mais je vais essayer de lire EVAP**' |
---|
| 479 | DO nsrf = 1, nbsrf |
---|
| 480 | IF (nsrf.GT.99) THEN |
---|
| 481 | PRINT*, "Trop de sous-mailles" |
---|
| 482 | CALL abort |
---|
| 483 | ENDIF |
---|
| 484 | WRITE(str2,'(i2.2)') nsrf |
---|
[1001] | 485 | CALL get_field("EVAP"//str2, evap(:,nsrf)) |
---|
[524] | 486 | xmin = 1.0E+20 |
---|
| 487 | xmax = -1.0E+20 |
---|
[1001] | 488 | DO i = 1, klon |
---|
[524] | 489 | xmin = MIN(evap(i,nsrf),xmin) |
---|
| 490 | xmax = MAX(evap(i,nsrf),xmax) |
---|
| 491 | ENDDO |
---|
| 492 | PRINT*,'evap du sol EVAP**:', nsrf, xmin, xmax |
---|
| 493 | ENDDO |
---|
| 494 | ELSE |
---|
| 495 | PRINT*, 'phyetat0: Le champ <EVAP> est present' |
---|
| 496 | PRINT*, ' J ignore donc les autres EVAP**' |
---|
| 497 | xmin = 1.0E+20 |
---|
| 498 | xmax = -1.0E+20 |
---|
[1001] | 499 | DO i = 1, klon |
---|
[524] | 500 | xmin = MIN(evap(i,1),xmin) |
---|
| 501 | xmax = MAX(evap(i,1),xmax) |
---|
| 502 | ENDDO |
---|
| 503 | PRINT*,'Evap du sol <EVAP>', xmin, xmax |
---|
| 504 | DO nsrf = 2, nbsrf |
---|
[1001] | 505 | DO i = 1, klon |
---|
[524] | 506 | evap(i,nsrf) = evap(i,1) |
---|
| 507 | ENDDO |
---|
| 508 | ENDDO |
---|
| 509 | ENDIF |
---|
| 510 | c |
---|
| 511 | c Lecture precipitation liquide: |
---|
| 512 | c |
---|
[1001] | 513 | CALL get_field("rain_f",rain_fall) |
---|
[524] | 514 | xmin = 1.0E+20 |
---|
| 515 | xmax = -1.0E+20 |
---|
[1001] | 516 | DO i = 1, klon |
---|
| 517 | xmin = MIN(rain_fall(i),xmin) |
---|
| 518 | xmax = MAX(rain_fall(i),xmax) |
---|
[524] | 519 | ENDDO |
---|
| 520 | PRINT*,'Precipitation liquide rain_f:', xmin, xmax |
---|
| 521 | c |
---|
| 522 | c Lecture precipitation solide: |
---|
| 523 | c |
---|
[1001] | 524 | CALL get_field("snow_f",snow_fall) |
---|
[524] | 525 | xmin = 1.0E+20 |
---|
| 526 | xmax = -1.0E+20 |
---|
[1001] | 527 | DO i = 1, klon |
---|
| 528 | xmin = MIN(snow_fall(i),xmin) |
---|
| 529 | xmax = MAX(snow_fall(i),xmax) |
---|
[524] | 530 | ENDDO |
---|
| 531 | PRINT*,'Precipitation solide snow_f:', xmin, xmax |
---|
| 532 | c |
---|
| 533 | c Lecture rayonnement solaire au sol: |
---|
| 534 | c |
---|
[1001] | 535 | CALL get_field("solsw",solsw,found) |
---|
| 536 | IF (.NOT. found) THEN |
---|
[524] | 537 | PRINT*, 'phyetat0: Le champ <solsw> est absent' |
---|
| 538 | PRINT*, 'mis a zero' |
---|
[1001] | 539 | solsw(:) = 0. |
---|
[524] | 540 | ENDIF |
---|
| 541 | xmin = 1.0E+20 |
---|
| 542 | xmax = -1.0E+20 |
---|
[1001] | 543 | DO i = 1, klon |
---|
| 544 | xmin = MIN(solsw(i),xmin) |
---|
| 545 | xmax = MAX(solsw(i),xmax) |
---|
[524] | 546 | ENDDO |
---|
| 547 | PRINT*,'Rayonnement solaire au sol solsw:', xmin, xmax |
---|
| 548 | c |
---|
| 549 | c Lecture rayonnement IF au sol: |
---|
| 550 | c |
---|
[1001] | 551 | CALL get_field("sollw",sollw,found) |
---|
| 552 | IF (.NOT. found) THEN |
---|
[524] | 553 | PRINT*, 'phyetat0: Le champ <sollw> est absent' |
---|
| 554 | PRINT*, 'mis a zero' |
---|
[1001] | 555 | sollw = 0. |
---|
[524] | 556 | ENDIF |
---|
| 557 | xmin = 1.0E+20 |
---|
| 558 | xmax = -1.0E+20 |
---|
[1001] | 559 | DO i = 1, klon |
---|
| 560 | xmin = MIN(sollw(i),xmin) |
---|
| 561 | xmax = MAX(sollw(i),xmax) |
---|
[524] | 562 | ENDDO |
---|
| 563 | PRINT*,'Rayonnement IF au sol sollw:', xmin, xmax |
---|
[776] | 564 | |
---|
[524] | 565 | c |
---|
| 566 | c Lecture derive des flux: |
---|
| 567 | c |
---|
[1001] | 568 | CALL get_field("fder",fder,found) |
---|
| 569 | IF (.NOT. found) THEN |
---|
[524] | 570 | PRINT*, 'phyetat0: Le champ <fder> est absent' |
---|
| 571 | PRINT*, 'mis a zero' |
---|
| 572 | fder = 0. |
---|
| 573 | ENDIF |
---|
| 574 | xmin = 1.0E+20 |
---|
| 575 | xmax = -1.0E+20 |
---|
[1001] | 576 | DO i = 1, klon |
---|
[524] | 577 | xmin = MIN(fder(i),xmin) |
---|
| 578 | xmax = MAX(fder(i),xmax) |
---|
| 579 | ENDDO |
---|
| 580 | PRINT*,'Derive des flux fder:', xmin, xmax |
---|
| 581 | |
---|
| 582 | c |
---|
| 583 | c Lecture du rayonnement net au sol: |
---|
| 584 | c |
---|
[1001] | 585 | CALL get_field("RADS",radsol) |
---|
[524] | 586 | xmin = 1.0E+20 |
---|
| 587 | xmax = -1.0E+20 |
---|
[1001] | 588 | DO i = 1, klon |
---|
| 589 | xmin = MIN(radsol(i),xmin) |
---|
| 590 | xmax = MAX(radsol(i),xmax) |
---|
[524] | 591 | ENDDO |
---|
| 592 | PRINT*,'Rayonnement net au sol radsol:', xmin, xmax |
---|
| 593 | c |
---|
| 594 | c Lecture de la longueur de rugosite |
---|
| 595 | c |
---|
| 596 | c |
---|
[1001] | 597 | CALL get_field("RUG",frugs(:,1),found) |
---|
| 598 | IF (.NOT. found) THEN |
---|
[524] | 599 | PRINT*, 'phyetat0: Le champ <RUG> est absent' |
---|
| 600 | PRINT*, ' Mais je vais essayer de lire RUG**' |
---|
| 601 | DO nsrf = 1, nbsrf |
---|
| 602 | IF (nsrf.GT.99) THEN |
---|
| 603 | PRINT*, "Trop de sous-mailles" |
---|
| 604 | CALL abort |
---|
| 605 | ENDIF |
---|
| 606 | WRITE(str2,'(i2.2)') nsrf |
---|
[1001] | 607 | CALL get_field("RUG"//str2,frugs(:,nsrf)) |
---|
[524] | 608 | xmin = 1.0E+20 |
---|
| 609 | xmax = -1.0E+20 |
---|
[1001] | 610 | DO i = 1, klon |
---|
[524] | 611 | xmin = MIN(frugs(i,nsrf),xmin) |
---|
| 612 | xmax = MAX(frugs(i,nsrf),xmax) |
---|
| 613 | ENDDO |
---|
| 614 | PRINT*,'rugosite du sol RUG**:', nsrf, xmin, xmax |
---|
| 615 | ENDDO |
---|
| 616 | ELSE |
---|
| 617 | PRINT*, 'phyetat0: Le champ <RUG> est present' |
---|
| 618 | PRINT*, ' J ignore donc les autres RUG**' |
---|
| 619 | xmin = 1.0E+20 |
---|
| 620 | xmax = -1.0E+20 |
---|
[1001] | 621 | DO i = 1, klon |
---|
[524] | 622 | xmin = MIN(frugs(i,1),xmin) |
---|
| 623 | xmax = MAX(frugs(i,1),xmax) |
---|
| 624 | ENDDO |
---|
| 625 | PRINT*,'rugosite <RUG>', xmin, xmax |
---|
| 626 | DO nsrf = 2, nbsrf |
---|
[1001] | 627 | DO i = 1, klon |
---|
[524] | 628 | frugs(i,nsrf) = frugs(i,1) |
---|
| 629 | ENDDO |
---|
| 630 | ENDDO |
---|
| 631 | ENDIF |
---|
| 632 | |
---|
| 633 | c |
---|
| 634 | c Lecture de l'age de la neige: |
---|
| 635 | c |
---|
[1001] | 636 | CALL get_field("AGESNO",agesno(:,1),found) |
---|
| 637 | IF (.NOT. found) THEN |
---|
[524] | 638 | PRINT*, 'phyetat0: Le champ <AGESNO> est absent' |
---|
| 639 | PRINT*, ' Mais je vais essayer de lire AGESNO**' |
---|
| 640 | DO nsrf = 1, nbsrf |
---|
| 641 | IF (nsrf.GT.99) THEN |
---|
| 642 | PRINT*, "Trop de sous-mailles" |
---|
| 643 | CALL abort |
---|
| 644 | ENDIF |
---|
| 645 | WRITE(str2,'(i2.2)') nsrf |
---|
[1001] | 646 | CALL get_field("AGESNO"//str2,agesno(:,nsrf),found) |
---|
| 647 | IF (.NOT. found) THEN |
---|
[524] | 648 | PRINT*, "phyetat0: Le champ <AGESNO"//str2//"> est absent" |
---|
| 649 | agesno = 50.0 |
---|
| 650 | ENDIF |
---|
| 651 | xmin = 1.0E+20 |
---|
| 652 | xmax = -1.0E+20 |
---|
[1001] | 653 | DO i = 1, klon |
---|
[524] | 654 | xmin = MIN(agesno(i,nsrf),xmin) |
---|
| 655 | xmax = MAX(agesno(i,nsrf),xmax) |
---|
| 656 | ENDDO |
---|
| 657 | PRINT*,'Age de la neige AGESNO**:', nsrf, xmin, xmax |
---|
| 658 | ENDDO |
---|
| 659 | ELSE |
---|
| 660 | PRINT*, 'phyetat0: Le champ <AGESNO> est present' |
---|
| 661 | PRINT*, ' J ignore donc les autres AGESNO**' |
---|
| 662 | xmin = 1.0E+20 |
---|
| 663 | xmax = -1.0E+20 |
---|
[1001] | 664 | DO i = 1, klon |
---|
[524] | 665 | xmin = MIN(agesno(i,1),xmin) |
---|
| 666 | xmax = MAX(agesno(i,1),xmax) |
---|
| 667 | ENDDO |
---|
| 668 | PRINT*,'Age de la neige <AGESNO>', xmin, xmax |
---|
| 669 | DO nsrf = 2, nbsrf |
---|
[1001] | 670 | DO i = 1, klon |
---|
[524] | 671 | agesno(i,nsrf) = agesno(i,1) |
---|
| 672 | ENDDO |
---|
| 673 | ENDDO |
---|
| 674 | ENDIF |
---|
| 675 | |
---|
| 676 | c |
---|
[1001] | 677 | CALL get_field("ZMEA", zmea) |
---|
[524] | 678 | xmin = 1.0E+20 |
---|
| 679 | xmax = -1.0E+20 |
---|
[1001] | 680 | DO i = 1, klon |
---|
| 681 | xmin = MIN(zmea(i),xmin) |
---|
| 682 | xmax = MAX(zmea(i),xmax) |
---|
[524] | 683 | ENDDO |
---|
| 684 | PRINT*,'OROGRAPHIE SOUS-MAILLE zmea:', xmin, xmax |
---|
| 685 | c |
---|
| 686 | c |
---|
[1001] | 687 | CALL get_field("ZSTD",zstd) |
---|
[524] | 688 | xmin = 1.0E+20 |
---|
| 689 | xmax = -1.0E+20 |
---|
[1001] | 690 | DO i = 1, klon |
---|
| 691 | xmin = MIN(zstd(i),xmin) |
---|
| 692 | xmax = MAX(zstd(i),xmax) |
---|
[524] | 693 | ENDDO |
---|
| 694 | PRINT*,'OROGRAPHIE SOUS-MAILLE zstd:', xmin, xmax |
---|
| 695 | c |
---|
| 696 | c |
---|
[1001] | 697 | CALL get_field("ZSIG",zsig) |
---|
[524] | 698 | xmin = 1.0E+20 |
---|
| 699 | xmax = -1.0E+20 |
---|
[1001] | 700 | DO i = 1, klon |
---|
| 701 | xmin = MIN(zsig(i),xmin) |
---|
| 702 | xmax = MAX(zsig(i),xmax) |
---|
[524] | 703 | ENDDO |
---|
| 704 | PRINT*,'OROGRAPHIE SOUS-MAILLE zsig:', xmin, xmax |
---|
| 705 | c |
---|
| 706 | c |
---|
[1001] | 707 | CALL get_field("ZGAM",zgam) |
---|
[524] | 708 | xmin = 1.0E+20 |
---|
| 709 | xmax = -1.0E+20 |
---|
[1001] | 710 | DO i = 1, klon |
---|
| 711 | xmin = MIN(zgam(i),xmin) |
---|
| 712 | xmax = MAX(zgam(i),xmax) |
---|
[524] | 713 | ENDDO |
---|
| 714 | PRINT*,'OROGRAPHIE SOUS-MAILLE zgam:', xmin, xmax |
---|
| 715 | c |
---|
| 716 | c |
---|
[1001] | 717 | CALL get_field("ZTHE",zthe) |
---|
[524] | 718 | xmin = 1.0E+20 |
---|
| 719 | xmax = -1.0E+20 |
---|
[1001] | 720 | DO i = 1, klon |
---|
| 721 | xmin = MIN(zthe(i),xmin) |
---|
| 722 | xmax = MAX(zthe(i),xmax) |
---|
[524] | 723 | ENDDO |
---|
| 724 | PRINT*,'OROGRAPHIE SOUS-MAILLE zthe:', xmin, xmax |
---|
| 725 | c |
---|
| 726 | c |
---|
[1001] | 727 | CALL get_field("ZPIC",zpic) |
---|
[524] | 728 | xmin = 1.0E+20 |
---|
| 729 | xmax = -1.0E+20 |
---|
[1001] | 730 | DO i = 1, klon |
---|
| 731 | xmin = MIN(zpic(i),xmin) |
---|
| 732 | xmax = MAX(zpic(i),xmax) |
---|
[524] | 733 | ENDDO |
---|
| 734 | PRINT*,'OROGRAPHIE SOUS-MAILLE zpic:', xmin, xmax |
---|
| 735 | c |
---|
[1001] | 736 | CALL get_field("ZVAL",zval) |
---|
[524] | 737 | xmin = 1.0E+20 |
---|
| 738 | xmax = -1.0E+20 |
---|
[1001] | 739 | DO i = 1, klon |
---|
| 740 | xmin = MIN(zval(i),xmin) |
---|
| 741 | xmax = MAX(zval(i),xmax) |
---|
[524] | 742 | ENDDO |
---|
| 743 | PRINT*,'OROGRAPHIE SOUS-MAILLE zval:', xmin, xmax |
---|
| 744 | c |
---|
| 745 | c |
---|
[1001] | 746 | CALL get_field("RUGSREL",rugoro) |
---|
[524] | 747 | xmin = 1.0E+20 |
---|
| 748 | xmax = -1.0E+20 |
---|
[1001] | 749 | DO i = 1, klon |
---|
| 750 | xmin = MIN(rugoro(i),xmin) |
---|
| 751 | xmax = MAX(rugoro(i),xmax) |
---|
[524] | 752 | ENDDO |
---|
| 753 | PRINT*,'Rugosite relief (ecart-type) rugsrel:', xmin, xmax |
---|
| 754 | c |
---|
| 755 | c |
---|
[1001] | 756 | |
---|
[524] | 757 | c |
---|
[1001] | 758 | ancien_ok = .TRUE. |
---|
| 759 | |
---|
| 760 | CALL get_field("TANCIEN",t_ancien,found) |
---|
| 761 | IF (.NOT. found) THEN |
---|
[524] | 762 | PRINT*, "phyetat0: Le champ <TANCIEN> est absent" |
---|
| 763 | PRINT*, "Depart legerement fausse. Mais je continue" |
---|
[1001] | 764 | ancien_ok = .FALSE. |
---|
[524] | 765 | ENDIF |
---|
[1001] | 766 | |
---|
| 767 | |
---|
| 768 | CALL get_field("QANCIEN",q_ancien,found) |
---|
| 769 | IF (.NOT. found) THEN |
---|
[524] | 770 | PRINT*, "phyetat0: Le champ <QANCIEN> est absent" |
---|
| 771 | PRINT*, "Depart legerement fausse. Mais je continue" |
---|
[1001] | 772 | ancien_ok = .FALSE. |
---|
[524] | 773 | ENDIF |
---|
[1001] | 774 | |
---|
[1054] | 775 | u_ancien = 0.0 !AXC: We don't have u_ancien and v_ancien in the start |
---|
| 776 | v_ancien = 0.0 !AXC: files, therefore they have to be initialized. |
---|
[524] | 777 | c |
---|
[1001] | 778 | |
---|
| 779 | clwcon=0. |
---|
| 780 | CALL get_field("CLWCON",clwcon(:,1),found) |
---|
| 781 | IF (.NOT. found) THEN |
---|
[524] | 782 | PRINT*, "phyetat0: Le champ CLWCON est absent" |
---|
| 783 | PRINT*, "Depart legerement fausse. Mais je continue" |
---|
| 784 | ENDIF |
---|
| 785 | xmin = 1.0E+20 |
---|
| 786 | xmax = -1.0E+20 |
---|
[1001] | 787 | xmin = MINval(clwcon) |
---|
| 788 | xmax = MAXval(clwcon) |
---|
[524] | 789 | PRINT*,'Eau liquide convective (ecart-type) clwcon:', xmin, xmax |
---|
| 790 | c |
---|
[1001] | 791 | rnebcon = 0. |
---|
| 792 | CALL get_field("RNEBCON",rnebcon(:,1),found) |
---|
| 793 | IF (.NOT. found) THEN |
---|
[524] | 794 | PRINT*, "phyetat0: Le champ RNEBCON est absent" |
---|
| 795 | PRINT*, "Depart legerement fausse. Mais je continue" |
---|
| 796 | ENDIF |
---|
| 797 | xmin = 1.0E+20 |
---|
| 798 | xmax = -1.0E+20 |
---|
[1001] | 799 | xmin = MINval(rnebcon) |
---|
| 800 | xmax = MAXval(rnebcon) |
---|
[524] | 801 | PRINT*,'Nebulosite convective (ecart-type) rnebcon:', xmin, xmax |
---|
| 802 | |
---|
| 803 | c |
---|
| 804 | c Lecture ratqs |
---|
| 805 | c |
---|
[1001] | 806 | ratqs=0. |
---|
| 807 | CALL get_field("RATQS",ratqs(:,1),found) |
---|
| 808 | IF (.NOT. found) THEN |
---|
[524] | 809 | PRINT*, "phyetat0: Le champ <RATQS> est absent" |
---|
| 810 | PRINT*, "Depart legerement fausse. Mais je continue" |
---|
| 811 | ENDIF |
---|
| 812 | xmin = 1.0E+20 |
---|
| 813 | xmax = -1.0E+20 |
---|
[1001] | 814 | xmin = MINval(ratqs) |
---|
| 815 | xmax = MAXval(ratqs) |
---|
[524] | 816 | PRINT*,'(ecart-type) ratqs:', xmin, xmax |
---|
| 817 | c |
---|
| 818 | c Lecture run_off_lic_0 |
---|
| 819 | c |
---|
[1001] | 820 | CALL get_field("RUNOFFLIC0",run_off_lic_0,found) |
---|
| 821 | IF (.NOT. found) THEN |
---|
[524] | 822 | PRINT*, "phyetat0: Le champ <RUNOFFLIC0> est absent" |
---|
| 823 | PRINT*, "Depart legerement fausse. Mais je continue" |
---|
| 824 | run_off_lic_0 = 0. |
---|
| 825 | ENDIF |
---|
| 826 | xmin = 1.0E+20 |
---|
| 827 | xmax = -1.0E+20 |
---|
| 828 | xmin = MINval(run_off_lic_0) |
---|
| 829 | xmax = MAXval(run_off_lic_0) |
---|
| 830 | PRINT*,'(ecart-type) run_off_lic_0:', xmin, xmax |
---|
[878] | 831 | |
---|
| 832 | |
---|
| 833 | c Lecture de l'energie cinetique turbulente |
---|
[524] | 834 | c |
---|
[878] | 835 | |
---|
| 836 | IF (iflag_pbl>1) then |
---|
[1001] | 837 | DO nsrf = 1, nbsrf |
---|
| 838 | IF (nsrf.GT.99) THEN |
---|
| 839 | PRINT*, "Trop de sous-mailles" |
---|
| 840 | CALL abort |
---|
| 841 | ENDIF |
---|
| 842 | WRITE(str2,'(i2.2)') nsrf |
---|
| 843 | CALL get_field("TKE"//str2,pbl_tke(:,1:klev,nsrf),found) |
---|
| 844 | IF (.NOT. found) THEN |
---|
| 845 | PRINT*, "phyetat0: <TKE"//str2//"> est absent" |
---|
| 846 | pbl_tke(:,:,nsrf)=1.e-8 |
---|
| 847 | ENDIF |
---|
| 848 | xmin = 1.0E+20 |
---|
| 849 | xmax = -1.0E+20 |
---|
| 850 | DO k = 1, klev |
---|
| 851 | DO i = 1, klon |
---|
| 852 | xmin = MIN(pbl_tke(i,k,nsrf),xmin) |
---|
| 853 | xmax = MAX(pbl_tke(i,k,nsrf),xmax) |
---|
| 854 | ENDDO |
---|
| 855 | ENDDO |
---|
| 856 | PRINT*,'Temperature du sol TKE**:', nsrf, xmin, xmax |
---|
| 857 | ENDDO |
---|
[878] | 858 | ENDIF |
---|
| 859 | c |
---|
[927] | 860 | c zmax0 |
---|
[1001] | 861 | CALL get_field("ZMAX0",zmax0,found) |
---|
| 862 | IF (.NOT. found) THEN |
---|
| 863 | PRINT*, "phyetat0: Le champ <ZMAX0> est absent" |
---|
| 864 | PRINT*, "Depart legerement fausse. Mais je continue" |
---|
| 865 | zmax0=40. |
---|
[927] | 866 | ENDIF |
---|
| 867 | xmin = 1.0E+20 |
---|
| 868 | xmax = -1.0E+20 |
---|
[1001] | 869 | xmin = MINval(zmax0) |
---|
| 870 | xmax = MAXval(zmax0) |
---|
[927] | 871 | PRINT*,'(ecart-type) zmax0:', xmin, xmax |
---|
| 872 | c |
---|
| 873 | c f0(ig)=1.e-5 |
---|
| 874 | c f0 |
---|
[1279] | 875 | CALL get_field("F0",f0,found) |
---|
[1001] | 876 | IF (.NOT. found) THEN |
---|
[927] | 877 | PRINT*, "phyetat0: Le champ <f0> est absent" |
---|
| 878 | PRINT*, "Depart legerement fausse. Mais je continue" |
---|
[1001] | 879 | f0=1.e-5 |
---|
[927] | 880 | ENDIF |
---|
| 881 | xmin = 1.0E+20 |
---|
| 882 | xmax = -1.0E+20 |
---|
[1001] | 883 | xmin = MINval(f0) |
---|
| 884 | xmax = MAXval(f0) |
---|
[927] | 885 | PRINT*,'(ecart-type) f0:', xmin, xmax |
---|
| 886 | c |
---|
[937] | 887 | c ema_work1 |
---|
| 888 | c |
---|
[1001] | 889 | CALL get_field("EMA_WORK1",ema_work1,found) |
---|
| 890 | IF (.NOT. found) THEN |
---|
| 891 | PRINT*, "phyetat0: Le champ <EMA_WORK1> est absent" |
---|
| 892 | PRINT*, "Depart legerement fausse. Mais je continue" |
---|
| 893 | ema_work1=0. |
---|
[937] | 894 | ELSE |
---|
[1001] | 895 | xmin = 1.0E+20 |
---|
| 896 | xmax = -1.0E+20 |
---|
| 897 | DO k = 1, klev |
---|
| 898 | DO i = 1, klon |
---|
| 899 | xmin = MIN(ema_work1(i,k),xmin) |
---|
| 900 | xmax = MAX(ema_work1(i,k),xmax) |
---|
| 901 | ENDDO |
---|
| 902 | ENDDO |
---|
| 903 | PRINT*,'ema_work1:', xmin, xmax |
---|
[937] | 904 | ENDIF |
---|
| 905 | c |
---|
| 906 | c ema_work2 |
---|
| 907 | c |
---|
[1001] | 908 | CALL get_field("EMA_WORK2",ema_work2,found) |
---|
| 909 | IF (.NOT. found) THEN |
---|
| 910 | PRINT*, "phyetat0: Le champ <EMA_WORK2> est absent" |
---|
| 911 | PRINT*, "Depart legerement fausse. Mais je continue" |
---|
| 912 | ema_work2=0. |
---|
[937] | 913 | ELSE |
---|
[1001] | 914 | xmin = 1.0E+20 |
---|
| 915 | xmax = -1.0E+20 |
---|
| 916 | DO k = 1, klev |
---|
| 917 | DO i = 1, klon |
---|
| 918 | xmin = MIN(ema_work2(i,k),xmin) |
---|
| 919 | xmax = MAX(ema_work2(i,k),xmax) |
---|
| 920 | ENDDO |
---|
| 921 | ENDDO |
---|
| 922 | PRINT*,'ema_work2:', xmin, xmax |
---|
[937] | 923 | ENDIF |
---|
| 924 | c |
---|
[973] | 925 | c wake_deltat |
---|
| 926 | c |
---|
[1001] | 927 | CALL get_field("WAKE_DELTAT",wake_deltat,found) |
---|
| 928 | IF (.NOT. found) THEN |
---|
| 929 | PRINT*, "phyetat0: Le champ <WAKE_DELTAT> est absent" |
---|
| 930 | PRINT*, "Depart legerement fausse. Mais je continue" |
---|
| 931 | wake_deltat=0. |
---|
[973] | 932 | ELSE |
---|
[1001] | 933 | xmin = 1.0E+20 |
---|
| 934 | xmax = -1.0E+20 |
---|
| 935 | DO k = 1, klev |
---|
| 936 | DO i = 1, klon |
---|
| 937 | xmin = MIN(wake_deltat(i,k),xmin) |
---|
| 938 | xmax = MAX(wake_deltat(i,k),xmax) |
---|
| 939 | ENDDO |
---|
| 940 | ENDDO |
---|
| 941 | PRINT*,'wake_deltat:', xmin, xmax |
---|
[973] | 942 | ENDIF |
---|
| 943 | c |
---|
| 944 | c wake_deltaq |
---|
[1001] | 945 | c |
---|
| 946 | CALL get_field("WAKE_DELTAQ",wake_deltaq,found) |
---|
| 947 | IF (.NOT. found) THEN |
---|
| 948 | PRINT*, "phyetat0: Le champ <WAKE_DELTAQ> est absent" |
---|
| 949 | PRINT*, "Depart legerement fausse. Mais je continue" |
---|
| 950 | wake_deltaq=0. |
---|
[973] | 951 | ELSE |
---|
[1001] | 952 | xmin = 1.0E+20 |
---|
| 953 | xmax = -1.0E+20 |
---|
| 954 | DO k = 1, klev |
---|
| 955 | DO i = 1, klon |
---|
| 956 | xmin = MIN(wake_deltaq(i,k),xmin) |
---|
| 957 | xmax = MAX(wake_deltaq(i,k),xmax) |
---|
| 958 | ENDDO |
---|
| 959 | ENDDO |
---|
| 960 | PRINT*,'wake_deltaq:', xmin, xmax |
---|
[973] | 961 | ENDIF |
---|
| 962 | c |
---|
| 963 | c wake_s |
---|
| 964 | c |
---|
[1001] | 965 | CALL get_field("WAKE_S",wake_s,found) |
---|
| 966 | IF (.NOT. found) THEN |
---|
| 967 | PRINT*, "phyetat0: Le champ <WAKE_S> est absent" |
---|
| 968 | PRINT*, "Depart legerement fausse. Mais je continue" |
---|
| 969 | wake_s=0. |
---|
[973] | 970 | ENDIF |
---|
| 971 | xmin = 1.0E+20 |
---|
| 972 | xmax = -1.0E+20 |
---|
[1001] | 973 | xmin = MINval(wake_s) |
---|
| 974 | xmax = MAXval(wake_s) |
---|
[973] | 975 | PRINT*,'(ecart-type) wake_s:', xmin, xmax |
---|
| 976 | c |
---|
| 977 | c wake_cstar |
---|
| 978 | c |
---|
[1001] | 979 | CALL get_field("WAKE_CSTAR",wake_cstar,found) |
---|
| 980 | IF (.NOT. found) THEN |
---|
[973] | 981 | PRINT*, "phyetat0: Le champ <WAKE_CSTAR> est absent" |
---|
| 982 | PRINT*, "Depart legerement fausse. Mais je continue" |
---|
[1001] | 983 | wake_cstar=0. |
---|
[973] | 984 | ENDIF |
---|
| 985 | xmin = 1.0E+20 |
---|
| 986 | xmax = -1.0E+20 |
---|
[1001] | 987 | xmin = MINval(wake_cstar) |
---|
| 988 | xmax = MAXval(wake_cstar) |
---|
[973] | 989 | PRINT*,'(ecart-type) wake_cstar:', xmin, xmax |
---|
| 990 | c |
---|
[1403] | 991 | c wake_pe |
---|
| 992 | c |
---|
| 993 | CALL get_field("WAKE_PE",wake_pe,found) |
---|
| 994 | IF (.NOT. found) THEN |
---|
| 995 | PRINT*, "phyetat0: Le champ <WAKE_PE> est absent" |
---|
| 996 | PRINT*, "Depart legerement fausse. Mais je continue" |
---|
| 997 | wake_pe=0. |
---|
| 998 | ENDIF |
---|
| 999 | xmin = 1.0E+20 |
---|
| 1000 | xmax = -1.0E+20 |
---|
| 1001 | xmin = MINval(wake_pe) |
---|
| 1002 | xmax = MAXval(wake_pe) |
---|
| 1003 | PRINT*,'(ecart-type) wake_pe:', xmin, xmax |
---|
| 1004 | c |
---|
[973] | 1005 | c wake_fip |
---|
| 1006 | c |
---|
[1001] | 1007 | CALL get_field("WAKE_FIP",wake_fip,found) |
---|
| 1008 | IF (.NOT. found) THEN |
---|
[973] | 1009 | PRINT*, "phyetat0: Le champ <WAKE_FIP> est absent" |
---|
| 1010 | PRINT*, "Depart legerement fausse. Mais je continue" |
---|
[1001] | 1011 | wake_fip=0. |
---|
[973] | 1012 | ENDIF |
---|
| 1013 | xmin = 1.0E+20 |
---|
| 1014 | xmax = -1.0E+20 |
---|
[1001] | 1015 | xmin = MINval(wake_fip) |
---|
| 1016 | xmax = MAXval(wake_fip) |
---|
[973] | 1017 | PRINT*,'(ecart-type) wake_fip:', xmin, xmax |
---|
| 1018 | c |
---|
[1403] | 1019 | c thermiques |
---|
| 1020 | c |
---|
| 1021 | |
---|
| 1022 | CALL get_field("FM_THERM",fm_therm,found) |
---|
| 1023 | IF (.NOT. found) THEN |
---|
| 1024 | PRINT*, "phyetat0: Le champ <fm_therm> est absent" |
---|
| 1025 | PRINT*, "Depart legerement fausse. Mais je continue" |
---|
| 1026 | fm_therm=0. |
---|
| 1027 | ENDIF |
---|
| 1028 | xmin = 1.0E+20 |
---|
| 1029 | xmax = -1.0E+20 |
---|
| 1030 | xmin = MINval(fm_therm) |
---|
| 1031 | xmax = MAXval(fm_therm) |
---|
| 1032 | PRINT*,'(ecart-type) fm_therm:', xmin, xmax |
---|
| 1033 | |
---|
| 1034 | CALL get_field("ENTR_THERM",entr_therm,found) |
---|
| 1035 | IF (.NOT. found) THEN |
---|
| 1036 | PRINT*, "phyetat0: Le champ <entr_therm> est absent" |
---|
| 1037 | PRINT*, "Depart legerement fausse. Mais je continue" |
---|
| 1038 | entr_therm=0. |
---|
| 1039 | ENDIF |
---|
| 1040 | xmin = 1.0E+20 |
---|
| 1041 | xmax = -1.0E+20 |
---|
| 1042 | xmin = MINval(entr_therm) |
---|
| 1043 | xmax = MAXval(entr_therm) |
---|
| 1044 | PRINT*,'(ecart-type) entr_therm:', xmin, xmax |
---|
| 1045 | |
---|
| 1046 | CALL get_field("DETR_THERM",detr_therm,found) |
---|
| 1047 | IF (.NOT. found) THEN |
---|
| 1048 | PRINT*, "phyetat0: Le champ <detr_therm> est absent" |
---|
| 1049 | PRINT*, "Depart legerement fausse. Mais je continue" |
---|
| 1050 | detr_therm=0. |
---|
| 1051 | ENDIF |
---|
| 1052 | xmin = 1.0E+20 |
---|
| 1053 | xmax = -1.0E+20 |
---|
| 1054 | xmin = MINval(detr_therm) |
---|
| 1055 | xmax = MAXval(detr_therm) |
---|
| 1056 | PRINT*,'(ecart-type) detr_therm:', xmin, xmax |
---|
| 1057 | |
---|
| 1058 | |
---|
| 1059 | |
---|
| 1060 | c |
---|
[1279] | 1061 | c Read and send field trs to traclmdz |
---|
| 1062 | c |
---|
| 1063 | IF (type_trac == 'lmdz') THEN |
---|
| 1064 | DO it=1,nbtr |
---|
| 1065 | iiq=niadv(it+2) |
---|
| 1066 | CALL get_field("trs_"//tname(iiq),trs(:,it),found) |
---|
| 1067 | IF (.NOT. found) THEN |
---|
| 1068 | PRINT*, |
---|
| 1069 | $ "phyetat0: Le champ <trs_"//tname(iiq)//"> est absent" |
---|
| 1070 | PRINT*, "Depart legerement fausse. Mais je continue" |
---|
| 1071 | trs(:,it) = 0. |
---|
| 1072 | ENDIF |
---|
| 1073 | xmin = 1.0E+20 |
---|
| 1074 | xmax = -1.0E+20 |
---|
| 1075 | xmin = MINval(trs(:,it)) |
---|
| 1076 | xmax = MAXval(trs(:,it)) |
---|
| 1077 | PRINT*,"(ecart-type) trs_"//tname(iiq)//" :", xmin, xmax |
---|
[766] | 1078 | |
---|
[1279] | 1079 | END DO |
---|
| 1080 | |
---|
| 1081 | CALL traclmdz_from_restart(trs) |
---|
| 1082 | END IF |
---|
| 1083 | |
---|
| 1084 | |
---|
[1001] | 1085 | c on ferme le fichier |
---|
| 1086 | CALL close_startphy |
---|
[879] | 1087 | |
---|
[1001] | 1088 | CALL init_iophy_new(rlat,rlon) |
---|
[766] | 1089 | |
---|
| 1090 | |
---|
[782] | 1091 | c |
---|
| 1092 | c Initialize module pbl_surface_mod |
---|
| 1093 | c |
---|
[1001] | 1094 | CALL pbl_surface_init(qsol, fder, snow, qsurf, |
---|
| 1095 | $ evap, frugs, agesno, tsoil) |
---|
[782] | 1096 | |
---|
[996] | 1097 | c Initialize module ocean_cpl_mod for the case of coupled ocean |
---|
| 1098 | IF ( type_ocean == 'couple' ) THEN |
---|
[967] | 1099 | CALL ocean_cpl_init(dtime, rlon, rlat) |
---|
[782] | 1100 | ENDIF |
---|
| 1101 | c |
---|
| 1102 | c Initilialize module fonte_neige_mod |
---|
| 1103 | c |
---|
[1001] | 1104 | CALL fonte_neige_init(run_off_lic_0) |
---|
[782] | 1105 | |
---|
[1279] | 1106 | |
---|
[524] | 1107 | RETURN |
---|
| 1108 | END |
---|