/[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 310 by guez, Thu Sep 27 16:29:06 2018 UTC trunk/phylmd/phyetat0.f90 revision 328 by guez, Thu Jun 13 14:40:06 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    
# Line 33  contains Line 33  contains
33      use netcdf95, only: nf95_get_att, nf95_get_var, nf95_inq_varid, &      use netcdf95, only: nf95_get_att, nf95_get_var, nf95_inq_varid, &
34           nf95_inquire_variable, NF95_OPEN           nf95_inquire_variable, NF95_OPEN
35    
36      REAL, intent(out):: pctsrf(klon, nbsrf)      REAL, intent(out):: pctsrf(:, :) ! (klon, nbsrf)
37      REAL, intent(out):: ftsol(klon, nbsrf)      REAL, intent(out):: ftsol(klon, nbsrf)
38      REAL, intent(out):: ftsoil(klon, nsoilmx, nbsrf)      REAL, intent(out):: ftsoil(klon, nsoilmx, nbsrf)
39      REAL, intent(out):: qsurf(klon, nbsrf)      REAL, intent(out):: qsurf(klon, nbsrf)
# Line 70  contains Line 70  contains
70      integer, intent(out):: ncid_startphy      integer, intent(out):: ncid_startphy
71    
72      ! Local:      ! Local:
     REAL fractint(klon)  
73      INTEGER varid, ndims      INTEGER varid, ndims
74      INTEGER ierr, i      INTEGER ierr, i
75    
# Line 100  contains Line 99  contains
99      ! Lecture du masque terre mer      ! Lecture du masque terre mer
100    
101      call NF95_INQ_VARID(ncid_startphy, "masque", varid)      call NF95_INQ_VARID(ncid_startphy, "masque", varid)
102      call nf95_get_var(ncid_startphy, varid, zmasq)      call nf95_get_var(ncid_startphy, varid, masque)
103    
104      ! Lecture des fractions pour chaque sous-surface      ! Lecture des fractions pour chaque sous-surface
105    
# Line 111  contains Line 110  contains
110    
111      ! Verification de l'adequation entre le masque et les sous-surfaces      ! Verification de l'adequation entre le masque et les sous-surfaces
112    
     fractint = pctsrf(:, is_ter) + pctsrf(:, is_lic)  
113      DO i = 1 , klon      DO i = 1 , klon
114         IF ( abs(fractint(i) - zmasq(i) ) > EPSFRA ) THEN         IF (abs(pctsrf(i, is_ter) + pctsrf(i, is_lic) - masque(i)) > EPSFRA) THEN
115            print *, 'phyetat0: attention fraction terre pas ', &            print *, &
116                 'coherente ', i, zmasq(i), pctsrf(i, is_ter), pctsrf(i, is_lic)                 'phyetat0: pctsrf does not agree with masque for continents', &
117                   i, masque(i), pctsrf(i, is_ter), pctsrf(i, is_lic)
118         ENDIF         ENDIF
119      END DO      END DO
120      fractint = pctsrf(:, is_oce) + pctsrf(:, is_sic)  
121      DO i = 1 , klon      DO i = 1 , klon
122         IF ( abs( fractint(i) - (1. - zmasq(i))) > EPSFRA ) THEN         IF (abs(pctsrf(i, is_oce) + pctsrf(i, is_sic) - (1. - masque(i))) &
123            print *, 'phyetat0 attention fraction ocean pas ', &              > EPSFRA) THEN
124                 'coherente ', i, zmasq(i) , pctsrf(i, is_oce), pctsrf(i, is_sic)            print *, 'phyetat0: pctsrf does not agree with masque for ocean ', &
125                   'and sea-ice', i, masque(i) , pctsrf(i, is_oce), &
126                   pctsrf(i, is_sic)
127         ENDIF         ENDIF
128      END DO      END DO
129    
# Line 337  contains Line 338  contains
338      rlon(2:klon-1) = pack(spread(rlonv(:iim), 2, jjm - 1), .true.) * rad_to_deg      rlon(2:klon-1) = pack(spread(rlonv(:iim), 2, jjm - 1), .true.) * rad_to_deg
339      rlon(klon) = 0.      rlon(klon) = 0.
340    
341      zmasq = pack(mask, dyn_phy)      masque = pack(mask, dyn_phy)
342      itau_phy = 0      itau_phy = 0
343    
344    end subroutine phyetat0_new    end subroutine phyetat0_new

Legend:
Removed from v.310  
changed lines
  Added in v.328

  ViewVC Help
Powered by ViewVC 1.1.21