--- trunk/Sources/phylmd/phyetat0.f 2015/11/25 20:14:19 174 +++ trunk/phylmd/phyetat0.f 2018/09/27 14:58:10 309 @@ -4,62 +4,64 @@ 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, protected:: itau_phy + REAL, save, protected:: zmasq(KLON) ! fraction of land + private klon contains - SUBROUTINE phyetat0(pctsrf, tsol, tsoil, tslab, seaice, qsurf, qsol, & - snow, albe, evap, 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) + 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) ! From phylmd/phyetat0.F, version 1.4 2005/06/03 10:03:07 ! Author: Z.X. Li (LMD/CNRS) ! Date: 1993/08/18 ! Objet : lecture de l'état initial pour la physique - use dimphy, only: zmasq, klev + USE conf_gcm_m, ONLY: raz_date + 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 - use netcdf95, only: nf95_close, nf95_get_att, nf95_get_var, & - nf95_inq_varid, nf95_inquire_variable, NF95_OPEN - USE temps, ONLY : itau_phy - - REAL pctsrf(klon, nbsrf) - REAL tsol(klon, nbsrf) - REAL tsoil(klon, nsoilmx, nbsrf) - REAL tslab(klon), seaice(klon) - REAL qsurf(klon, nbsrf) - REAL, intent(out):: qsol(:) ! (klon) - REAL snow(klon, nbsrf) - REAL albe(klon, nbsrf) - REAL evap(klon, nbsrf) + use netcdf, only: nf90_global, nf90_inq_varid, NF90_NOERR, NF90_NOWRITE + use netcdf95, only: nf95_get_att, nf95_get_var, nf95_inq_varid, & + nf95_inquire_variable, NF95_OPEN + + REAL, intent(out):: pctsrf(klon, 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) 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):: rain_fall(klon) - REAL snow_fall(klon) - real solsw(klon) + REAL, intent(out):: snow_fall(klon) + real, intent(out):: solsw(klon) REAL, intent(out):: sollw(klon) - real fder(klon) - REAL radsol(klon) - REAL frugs(klon, nbsrf) - REAL agesno(klon, nbsrf) + real, intent(out):: fder(klon) + REAL, intent(out):: radsol(klon) + REAL, intent(out):: frugs(klon, nbsrf) + REAL, intent(out):: agesno(klon, nbsrf) REAL, intent(out):: zmea(klon) REAL, intent(out):: zstd(klon) REAL, intent(out):: zsig(klon) - REAL zgam(klon) - REAL zthe(klon) - REAL zpic(klon) - REAL zval(klon) - REAL t_ancien(klon, klev), q_ancien(klon, klev) + REAL, intent(out):: zgam(klon) + REAL, intent(out):: zthe(klon) + REAL, intent(out):: zpic(klon) + REAL, intent(out):: zval(klon) + REAL, intent(out):: t_ancien(klon, klev), q_ancien(klon, klev) LOGICAL, intent(out):: ancien_ok - real rnebcon(klon, klev), ratqs(klon, klev), clwcon(klon, klev) - REAL run_off_lic_0(klon) + real, intent(out):: rnebcon(klon, klev), ratqs(klon, klev) + REAL, intent(out):: clwcon(klon, klev), run_off_lic_0(klon) real, intent(out):: sig1(klon, klev) ! section adiabatic updraft real, intent(out):: w01(klon, klev) @@ -79,7 +81,11 @@ ! Fichier contenant l'état initial : call NF95_OPEN("startphy.nc", NF90_NOWRITE, ncid_startphy) - call nf95_get_att(ncid_startphy, nf90_global, "itau_phy", itau_phy) + IF (raz_date) then + itau_phy = 0 + else + call nf95_get_att(ncid_startphy, nf90_global, "itau_phy", itau_phy) + end IF ! Lecture des latitudes (coordonnees): @@ -143,17 +149,15 @@ 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 @@ -161,30 +165,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) - - !IM "slab" ocean - ! Lecture de tslab (pour slab ocean seulement): - tslab = 0. - seaice = 0. + 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) @@ -204,11 +201,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) @@ -359,4 +351,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