--- trunk/Sources/phylmd/phyetat0.f 2016/05/09 19:56:28 191 +++ trunk/phylmd/phyetat0.f 2018/09/27 16:29:06 310 @@ -4,17 +4,18 @@ IMPLICIT none - REAL, save:: rlat(klon), rlon(klon) + REAL, save, protected:: rlat(klon), rlon(klon) ! latitude and longitude of a point of the scalar grid identified ! by a simple index, in degrees - integer, save:: itau_phy + integer, save, protected:: itau_phy + REAL, save, protected:: zmasq(KLON) ! fraction of land private klon contains - SUBROUTINE phyetat0(pctsrf, tsol, tsoil, qsurf, qsol, snow, albe, evap, & + SUBROUTINE phyetat0(pctsrf, ftsol, ftsoil, qsurf, qsol, snow, albe, & rain_fall, snow_fall, solsw, sollw, fder, radsol, frugs, agesno, zmea, & zstd, zsig, zgam, zthe, zpic, zval, t_ancien, q_ancien, ancien_ok, & rnebcon, ratqs, clwcon, run_off_lic_0, sig1, w01, ncid_startphy) @@ -25,7 +26,7 @@ ! Objet : lecture de l'état initial pour la physique USE conf_gcm_m, ONLY: raz_date - use dimphy, only: zmasq, klev + use dimphy, only: klev USE dimsoil, ONLY : nsoilmx USE indicesol, ONLY : epsfra, is_lic, is_oce, is_sic, is_ter, nbsrf use netcdf, only: nf90_global, nf90_inq_varid, NF90_NOERR, NF90_NOWRITE @@ -33,13 +34,15 @@ nf95_inquire_variable, NF95_OPEN REAL, intent(out):: pctsrf(klon, nbsrf) - REAL, intent(out):: tsol(klon, nbsrf) - REAL, intent(out):: tsoil(klon, nsoilmx, nbsrf) + REAL, intent(out):: ftsol(klon, nbsrf) + REAL, intent(out):: ftsoil(klon, nsoilmx, nbsrf) REAL, intent(out):: qsurf(klon, nbsrf) - REAL, intent(out):: qsol(:) ! (klon) + + REAL, intent(out):: qsol(:) + ! (klon) column-density of water in soil, in kg m-2 + REAL, intent(out):: snow(klon, nbsrf) REAL, intent(out):: albe(klon, nbsrf) - REAL, intent(out):: evap(klon, nbsrf) REAL, intent(out):: rain_fall(klon) REAL, intent(out):: snow_fall(klon) real, intent(out):: solsw(klon) @@ -103,60 +106,23 @@ ! initialisation des sous-surfaces - pctsrf = 0. - - ! fraction de terre - - ierr = NF90_INQ_VARID(ncid_startphy, "FTER", varid) - IF (ierr == NF90_NOERR) THEN - call nf95_get_var(ncid_startphy, varid, pctsrf(:, is_ter)) - else - PRINT *, 'phyetat0: Le champ est absent' - ENDIF - - ! fraction de glace de terre - - ierr = NF90_INQ_VARID(ncid_startphy, "FLIC", varid) - IF (ierr == NF90_NOERR) THEN - call nf95_get_var(ncid_startphy, varid, pctsrf(:, is_lic)) - else - PRINT *, 'phyetat0: Le champ est absent' - ENDIF - - ! fraction d'ocean - - ierr = NF90_INQ_VARID(ncid_startphy, "FOCE", varid) - IF (ierr == NF90_NOERR) THEN - call nf95_get_var(ncid_startphy, varid, pctsrf(:, is_oce)) - else - PRINT *, 'phyetat0: Le champ est absent' - ENDIF - - ! fraction glace de mer - - ierr = NF90_INQ_VARID(ncid_startphy, "FSIC", varid) - IF (ierr == NF90_NOERR) THEN - call nf95_get_var(ncid_startphy, varid, pctsrf(:, is_sic)) - else - PRINT *, 'phyetat0: Le champ est absent' - ENDIF + call NF95_INQ_VARID(ncid_startphy, "pctsrf", varid) + call nf95_get_var(ncid_startphy, varid, pctsrf) ! Verification de l'adequation entre le masque et les sous-surfaces fractint = pctsrf(:, is_ter) + pctsrf(:, is_lic) DO i = 1 , klon IF ( abs(fractint(i) - zmasq(i) ) > EPSFRA ) THEN - WRITE(*, *) 'phyetat0: attention fraction terre pas ', & - 'coherente ', i, zmasq(i), pctsrf(i, is_ter) & - , pctsrf(i, is_lic) + print *, 'phyetat0: attention fraction terre pas ', & + 'coherente ', i, zmasq(i), pctsrf(i, is_ter), pctsrf(i, is_lic) ENDIF END DO fractint = pctsrf(:, is_oce) + pctsrf(:, is_sic) DO i = 1 , klon IF ( abs( fractint(i) - (1. - zmasq(i))) > EPSFRA ) THEN - WRITE(*, *) 'phyetat0 attention fraction ocean pas ', & - 'coherente ', i, zmasq(i) , pctsrf(i, is_oce) & - , pctsrf(i, is_sic) + print *, 'phyetat0 attention fraction ocean pas ', & + 'coherente ', i, zmasq(i) , pctsrf(i, is_oce), pctsrf(i, is_sic) ENDIF END DO @@ -164,25 +130,23 @@ call NF95_INQ_VARID(ncid_startphy, "TS", varid) call nf95_inquire_variable(ncid_startphy, varid, ndims = ndims) if (ndims == 2) then - call NF95_GET_VAR(ncid_startphy, varid, tsol) + call NF95_GET_VAR(ncid_startphy, varid, ftsol) else print *, "Found only one surface type for soil temperature." - call nf95_get_var(ncid_startphy, varid, tsol(:, 1)) - tsol(:, 2:nbsrf) = spread(tsol(:, 1), dim = 2, ncopies = nbsrf - 1) + call nf95_get_var(ncid_startphy, varid, ftsol(:, 1)) + ftsol(:, 2:nbsrf) = spread(ftsol(:, 1), dim = 2, ncopies = nbsrf - 1) end if ! Lecture des temperatures du sol profond: call NF95_INQ_VARID(ncid_startphy, 'Tsoil', varid) - call NF95_GET_VAR(ncid_startphy, varid, tsoil) + call NF95_GET_VAR(ncid_startphy, varid, ftsoil) ! Lecture de l'humidite de l'air juste au dessus du sol: call NF95_INQ_VARID(ncid_startphy, "QS", varid) call nf95_get_var(ncid_startphy, varid, qsurf) - ! Eau dans le sol (pour le modele de sol "bucket") - ierr = NF90_INQ_VARID(ncid_startphy, "QSOL", varid) IF (ierr == NF90_NOERR) THEN call nf95_get_var(ncid_startphy, varid, qsol) @@ -202,11 +166,6 @@ call NF95_INQ_VARID(ncid_startphy, "ALBE", varid) call nf95_get_var(ncid_startphy, varid, albe) - ! Lecture de evaporation: - - call NF95_INQ_VARID(ncid_startphy, "EVAP", varid) - call nf95_get_var(ncid_startphy, varid, evap) - ! Lecture precipitation liquide: call NF95_INQ_VARID(ncid_startphy, "rain_f", varid) @@ -357,4 +316,30 @@ END SUBROUTINE phyetat0 + !********************************************************************* + + subroutine phyetat0_new + + use nr_util, only: rad_to_deg + + use dimensions, only: iim, jjm + use dynetat0_m, only: rlatu, rlonv + use grid_change, only: dyn_phy + USE start_init_orog_m, only: mask + + !------------------------------------------------------------------------- + + rlat(1) = 90. + rlat(2:klon-1) = pack(spread(rlatu(2:jjm), 1, iim), .true.) * rad_to_deg + rlat(klon) = - 90. + + rlon(1) = 0. + rlon(2:klon-1) = pack(spread(rlonv(:iim), 2, jjm - 1), .true.) * rad_to_deg + rlon(klon) = 0. + + zmasq = pack(mask, dyn_phy) + itau_phy = 0 + + end subroutine phyetat0_new + end module phyetat0_m