/[lmdze]/trunk/phylmd/phyetat0.f90
ViewVC logotype

Diff of /trunk/phylmd/phyetat0.f90

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/phylmd/phyetat0.f revision 304 by guez, Thu Sep 6 15:51:09 2018 UTC trunk/phylmd/phyetat0.f90 revision 344 by guez, Tue Nov 12 15:18:14 2019 UTC
# Line 9  module phyetat0_m Line 9  module phyetat0_m
9    ! by a simple index, in degrees    ! by a simple index, in degrees
10    
11    integer, save, protected:: itau_phy    integer, save, protected:: itau_phy
12    REAL, save, protected:: zmasq(KLON) ! fraction of land    REAL, save, protected:: masque(KLON) ! fraction of land
13    
14    private klon    private klon
15    
16  contains  contains
17    
18    SUBROUTINE phyetat0(pctsrf, ftsol, ftsoil, qsurf, qsol, snow, albe, &    SUBROUTINE phyetat0(pctsrf, ftsol, ftsoil, qsurf, qsol, fsnow, albe, &
19         rain_fall, snow_fall, solsw, sollw, fder, radsol, frugs, agesno, zmea, &         rain_fall, snow_fall, solsw, sollw, fder, radsol, frugs, agesno, zmea, &
20         zstd, zsig, zgam, zthe, zpic, zval, t_ancien, q_ancien, ancien_ok, &         zstd, zsig, zgam, zthe, zpic, zval, t_ancien, q_ancien, ancien_ok, &
21         rnebcon, ratqs, clwcon, run_off_lic_0, sig1, w01, ncid_startphy)         rnebcon, ratqs, clwcon, run_off_lic_0, sig1, w01, ncid_startphy)
# Line 27  contains Line 27  contains
27    
28      USE conf_gcm_m, ONLY: raz_date      USE conf_gcm_m, ONLY: raz_date
29      use dimphy, only: klev      use dimphy, only: klev
     USE dimsoil, ONLY : nsoilmx  
30      USE indicesol, ONLY : epsfra, is_lic, is_oce, is_sic, is_ter, nbsrf      USE indicesol, ONLY : epsfra, is_lic, is_oce, is_sic, is_ter, nbsrf
31      use netcdf, only: nf90_global, nf90_inq_varid, NF90_NOERR, NF90_NOWRITE      use netcdf, only: nf90_global, nf90_inq_varid, NF90_NOERR, NF90_NOWRITE
32      use netcdf95, only: nf95_get_att, nf95_get_var, nf95_inq_varid, &      use netcdf95, only: nf95_get_att, nf95_get_var, nf95_inq_varid, &
33           nf95_inquire_variable, NF95_OPEN           nf95_inquire_variable, NF95_OPEN
34    
35      REAL, intent(out):: pctsrf(klon, nbsrf)      REAL, intent(out):: pctsrf(:, :) ! (klon, nbsrf)
36      REAL, intent(out):: ftsol(klon, nbsrf)      REAL, intent(out):: ftsol(klon, nbsrf)
37      REAL, intent(out):: ftsoil(klon, nsoilmx, nbsrf)      REAL, intent(out):: ftsoil(:, :, :) ! (klon, nsoilmx, nbsrf)
38      REAL, intent(out):: qsurf(klon, nbsrf)      REAL, intent(out):: qsurf(klon, nbsrf)
39    
40      REAL, intent(out):: qsol(:)      REAL, intent(out):: qsol(:)
41      ! (klon) column-density of water in soil, in kg m-2      ! (klon) column-density of water in soil, in kg m-2
42    
43      REAL, intent(out):: snow(klon, nbsrf)      REAL, intent(out):: fsnow(klon, nbsrf)
44      REAL, intent(out):: albe(klon, nbsrf)      REAL, intent(out):: albe(klon, nbsrf)
45      REAL, intent(out):: rain_fall(klon)      REAL, intent(out):: rain_fall(klon)
46      REAL, intent(out):: snow_fall(klon)      REAL, intent(out):: snow_fall(klon)
# Line 70  contains Line 69  contains
69      integer, intent(out):: ncid_startphy      integer, intent(out):: ncid_startphy
70    
71      ! Local:      ! Local:
     REAL fractint(klon)  
72      INTEGER varid, ndims      INTEGER varid, ndims
73      INTEGER ierr, i      INTEGER ierr, i
74    
# Line 100  contains Line 98  contains
98      ! Lecture du masque terre mer      ! Lecture du masque terre mer
99    
100      call NF95_INQ_VARID(ncid_startphy, "masque", varid)      call NF95_INQ_VARID(ncid_startphy, "masque", varid)
101      call nf95_get_var(ncid_startphy, varid, zmasq)      call nf95_get_var(ncid_startphy, varid, masque)
102    
103      ! Lecture des fractions pour chaque sous-surface      ! Lecture des fractions pour chaque sous-surface
104    
105      ! initialisation des sous-surfaces      ! initialisation des sous-surfaces
106    
107      pctsrf = 0.      call NF95_INQ_VARID(ncid_startphy, "pctsrf", varid)
108        call nf95_get_var(ncid_startphy, varid, pctsrf)
     ! 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 <FTER> 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 <FLIC> 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 <FOCE> 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 <FSIC> est absent'  
     ENDIF  
109    
110      ! Verification de l'adequation entre le masque et les sous-surfaces      ! Verification de l'adequation entre le masque et les sous-surfaces
111    
     fractint = pctsrf(:, is_ter) + pctsrf(:, is_lic)  
112      DO i = 1 , klon      DO i = 1 , klon
113         IF ( abs(fractint(i) - zmasq(i) ) > EPSFRA ) THEN         IF (abs(pctsrf(i, is_ter) + pctsrf(i, is_lic) - masque(i)) > EPSFRA) THEN
114            print *, 'phyetat0: attention fraction terre pas ', &            print *, &
115                 'coherente ', i, zmasq(i), pctsrf(i, is_ter), pctsrf(i, is_lic)                 'phyetat0: pctsrf does not agree with masque for continents', &
116                   i, masque(i), pctsrf(i, is_ter), pctsrf(i, is_lic)
117         ENDIF         ENDIF
118      END DO      END DO
119      fractint = pctsrf(:, is_oce) + pctsrf(:, is_sic)  
120      DO i = 1 , klon      DO i = 1 , klon
121         IF ( abs( fractint(i) - (1. - zmasq(i))) > EPSFRA ) THEN         IF (abs(pctsrf(i, is_oce) + pctsrf(i, is_sic) - (1. - masque(i))) &
122            print *, 'phyetat0 attention fraction ocean pas ', &              > EPSFRA) THEN
123                 'coherente ', i, zmasq(i) , pctsrf(i, is_oce), pctsrf(i, is_sic)            print *, 'phyetat0: pctsrf does not agree with masque for ocean ', &
124                   'and sea-ice', i, masque(i) , pctsrf(i, is_oce), &
125                   pctsrf(i, is_sic)
126         ENDIF         ENDIF
127      END DO      END DO
128    
# Line 194  contains Line 159  contains
159      ! Lecture de neige au sol:      ! Lecture de neige au sol:
160    
161      call NF95_INQ_VARID(ncid_startphy, "SNOW", varid)      call NF95_INQ_VARID(ncid_startphy, "SNOW", varid)
162      call nf95_get_var(ncid_startphy, varid, snow)      call nf95_get_var(ncid_startphy, varid, fsnow)
163    
164      ! Lecture de albedo au sol:      ! Lecture de albedo au sol:
165    
# Line 355  contains Line 320  contains
320    
321    subroutine phyetat0_new    subroutine phyetat0_new
322    
323      use nr_util, only: pi      use nr_util, only: rad_to_deg
324    
325      use dimensions, only: iim, jjm      use dimensions, only: iim, jjm
326      use dynetat0_m, only: rlatu, rlonv      use dynetat0_m, only: rlatu, rlonv
# Line 365  contains Line 330  contains
330      !-------------------------------------------------------------------------      !-------------------------------------------------------------------------
331            
332      rlat(1) = 90.      rlat(1) = 90.
333      rlat(2:klon-1) = pack(spread(rlatu(2:jjm), 1, iim), .true.) * 180. / pi      rlat(2:klon-1) = pack(spread(rlatu(2:jjm), 1, iim), .true.) * rad_to_deg
     ! (with conversion to degrees)  
334      rlat(klon) = - 90.      rlat(klon) = - 90.
335    
336      rlon(1) = 0.      rlon(1) = 0.
337      rlon(2:klon-1) = pack(spread(rlonv(:iim), 2, jjm - 1), .true.) * 180. / pi      rlon(2:klon-1) = pack(spread(rlonv(:iim), 2, jjm - 1), .true.) * rad_to_deg
     ! (with conversion to degrees)  
338      rlon(klon) = 0.      rlon(klon) = 0.
339    
340      zmasq = pack(mask, dyn_phy)      masque = pack(mask, dyn_phy)
341      itau_phy = 0      itau_phy = 0
342    
343    end subroutine phyetat0_new    end subroutine phyetat0_new

Legend:
Removed from v.304  
changed lines
  Added in v.344

  ViewVC Help
Powered by ViewVC 1.1.21