/[lmdze]/trunk/Sources/phylmd/phystokenc.f
ViewVC logotype

Diff of /trunk/Sources/phylmd/phystokenc.f

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

trunk/libf/phylmd/phystokenc.f90 revision 61 by guez, Fri Apr 20 14:58:43 2012 UTC trunk/Sources/phylmd/phystokenc.f revision 190 by guez, Thu Apr 14 15:15:56 2016 UTC
# Line 4  module phystokenc_m Line 4  module phystokenc_m
4    
5  contains  contains
6    
7    SUBROUTINE phystokenc(pdtphys, rlon, rlat, pt, pmfu, pmfd, pen_u, pde_u, &    SUBROUTINE phystokenc(pdtphys, pt, pmfu, pmfd, pen_u, pde_u, pen_d, pde_d, &
8         pen_d, pde_d, pfm_therm, pentr_therm, pcoefh, yu1, yv1, ftsol, pctsrf, &         pfm_therm, pentr_therm, pcoefh, yu1, yv1, ftsol, pctsrf, frac_impa, &
9         frac_impa, frac_nucl, pphis, paire, dtime, itap)         frac_nucl, pphis, paire, dtime, itap)
10    
11      ! From phylmd/phystokenc.F, version 1.2 2004/06/22 11:45:35      ! From phylmd/phystokenc.F, version 1.2 2004/06/22 11:45:35
12      ! Author: Frédéric Hourdin      ! Author: Fr\'ed\'eric Hourdin
13      ! Objet: moniteur général des tendances traceurs                              ! Objet : \'ecriture des variables pour transport offline
14    
15      USE histwrite_m, ONLY : histwrite      use gr_phy_write_m, only: gr_phy_write
16      USE histsync_m, ONLY : histsync      USE histwrite_m, ONLY: histwrite
17      USE dimens_m, ONLY : iim, jjm, nqmx      USE histsync_m, ONLY: histsync
18      USE indicesol, ONLY : nbsrf      USE dimens_m, ONLY: iim, jjm
19      USE dimphy, ONLY : klev, klon      USE indicesol, ONLY: nbsrf
20      USE tracstoke, ONLY : istphy      use initphysto_m, only: initphysto
21        USE dimphy, ONLY: klev, klon
22        USE tracstoke, ONLY: istphy
23    
24      ! Arguments:                                                                  REAL, INTENT (IN):: pdtphys ! pas d'integration pour la physique (seconde)
25        REAL, intent(in):: pt(klon, klev)
26    
27      !   EN ENTREE:                                                                ! convection:
28    
29      !   divers:                                                                  REAL, INTENT (IN):: pmfu(klon, klev) ! flux de masse dans le panache montant
30    
31      REAL, INTENT (IN) :: pdtphys ! pas d'integration pour la physique (seconde)      REAL, intent(in):: pmfd(klon, klev)
32      INTEGER, INTENT (IN) :: itap      ! flux de masse dans le panache descendant
33    
34      !   convection:                                                              REAL, intent(in):: pen_u(klon, klev) ! flux entraine dans le panache montant
35        REAL, intent(in):: pde_u(klon, klev) ! flux detraine dans le panache montant
36    
37      REAL pmfu(klon, klev) ! flux de masse dans le panache montant      REAL, intent(in):: pen_d(klon, klev)
38      REAL pmfd(klon, klev) ! flux de masse dans le panache descendant      ! flux entraine dans le panache descendant
     REAL pen_u(klon, klev) ! flux entraine dans le panache montant  
     REAL pde_u(klon, klev) ! flux detraine dans le panache montant  
     REAL pen_d(klon, klev) ! flux entraine dans le panache descendant  
     REAL pde_d(klon, klev) ! flux detraine dans le panache descendant  
     REAL, intent(in):: pt(klon, klev)  
39    
40      REAL, INTENT (IN) :: rlon(klon), rlat(klon)      REAL, intent(in):: pde_d(klon, klev)
41      REAL, INTENT (IN) :: dtime      ! flux detraine dans le panache descendant
42    
43      !   Les Thermiques      ! Les Thermiques
44      REAL pfm_therm(klon, klev+1)      REAL pfm_therm(klon, klev+1)
45      REAL pentr_therm(klon, klev)      REAL pentr_therm(klon, klev)
46    
47      !   Couche limite:                                                            ! Couche limite:
48    
     REAL yv1(klon)  
     REAL yu1(klon), paire(klon)  
     REAL, INTENT(IN):: pphis(klon)  
49      REAL pcoefh(klon, klev) ! coeff melange Couche limite      REAL pcoefh(klon, klev) ! coeff melange Couche limite
50        REAL yu1(klon)
51        REAL yv1(klon)
52    
53      ! Arguments necessaires pour les sources et puits de traceur                  ! Arguments necessaires pour les sources et puits de traceur
54    
55      REAL ftsol(klon, nbsrf) ! Temperature du sol (surf)(Kelvin)      REAL ftsol(klon, nbsrf) ! Temperature du sol (surf)(Kelvin)
56      REAL pctsrf(klon, nbsrf) ! Pourcentage de sol f(nature du sol)      REAL pctsrf(klon, nbsrf) ! Pourcentage de sol f(nature du sol)
57    
58      !   Lessivage:                                                                ! Lessivage:
59    
60      REAL frac_impa(klon, klev)      REAL frac_impa(klon, klev)
61      REAL frac_nucl(klon, klev)      REAL frac_nucl(klon, klev)
62    
63        REAL, INTENT(IN):: pphis(klon)
64        real paire(klon)
65        REAL, INTENT (IN):: dtime
66        INTEGER, INTENT (IN):: itap
67    
68      ! Variables local to the procedure:      ! Variables local to the procedure:
69    
70      real t(klon, klev)      real t(klon, klev)
71      INTEGER, SAVE:: physid      INTEGER, SAVE:: physid
     REAL zx_tmp_3d(iim, jjm+1, klev), zx_tmp_2d(iim, jjm+1)  
72    
73      !   Les Thermiques      ! Les Thermiques
74    
75      REAL fm_therm1(klon, klev)      REAL fm_therm1(klon, klev)
76      REAL entr_therm(klon, klev)      REAL entr_therm(klon, klev)
# Line 76  contains Line 78  contains
78    
79      INTEGER i, k      INTEGER i, k
80    
81      REAL mfu(klon, klev) ! flux de masse dans le panache montant      REAL, save:: mfu(klon, klev) ! flux de masse dans le panache montant
82      REAL mfd(klon, klev) ! flux de masse dans le panache descendant      REAL mfd(klon, klev) ! flux de masse dans le panache descendant
83      REAL en_u(klon, klev) ! flux entraine dans le panache montant      REAL en_u(klon, klev) ! flux entraine dans le panache montant
84      REAL de_u(klon, klev) ! flux detraine dans le panache montant      REAL de_u(klon, klev) ! flux detraine dans le panache montant
# Line 91  contains Line 93  contains
93    
94      REAL dtcum      REAL dtcum
95    
96      INTEGER iadvtr, irec      INTEGER:: iadvtr = 0, irec = 1
97      REAL zmin, zmax      REAL zmin, zmax
98      LOGICAL ok_sync      LOGICAL ok_sync
99    
100      SAVE t, mfu, mfd, en_u, de_u, en_d, de_d, coefh, dtcum      SAVE t, mfd, en_u, de_u, en_d, de_d, coefh, dtcum
101      SAVE fm_therm, entr_therm      SAVE fm_therm, entr_therm
     SAVE iadvtr, irec  
102      SAVE pyu1, pyv1, pftsol, ppsrf      SAVE pyu1, pyv1, pftsol, ppsrf
103    
     DATA iadvtr, irec/0, 1/  
   
104      !------------------------------------------------------      !------------------------------------------------------
105    
106      !   Couche limite:                                                            ! Couche limite:
107    
108      ok_sync = .TRUE.      ok_sync = .TRUE.
109    
110      IF (iadvtr==0) THEN      IF (iadvtr==0) CALL initphysto('phystoke', dtime, dtime*istphy, dtime*istphy, physid)
        CALL initphysto('phystoke', rlon, rlat, dtime, dtime*istphy, &  
             dtime*istphy, nqmx, physid)  
     END IF  
111    
112      i = itap      i = itap
113      CALL gr_fi_ecrit(1, klon, iim, jjm+1, pphis, zx_tmp_2d)      CALL histwrite(physid, 'phis', i, gr_phy_write(pphis))
     CALL histwrite(physid, 'phis', i, zx_tmp_2d)  
   
114      i = itap      i = itap
115      CALL gr_fi_ecrit(1, klon, iim, jjm+1, paire, zx_tmp_2d)      CALL histwrite(physid, 'aire', i, gr_phy_write(paire))
     CALL histwrite(physid, 'aire', i, zx_tmp_2d)  
   
116      iadvtr = iadvtr + 1      iadvtr = iadvtr + 1
117    
118      IF (mod(iadvtr, istphy)==1 .OR. istphy==1) THEN      IF (mod(iadvtr, istphy) == 1 .OR. istphy == 1) THEN
119         PRINT *, 'reinitialisation des champs cumules a iadvtr=', iadvtr         PRINT *, 'reinitialisation des champs cumules a iadvtr =', iadvtr
120         DO k = 1, klev         DO k = 1, klev
121            DO i = 1, klon            DO i = 1, klon
122               mfu(i, k) = 0.               mfu(i, k) = 0.
# Line 180  contains Line 172  contains
172    
173      dtcum = dtcum + pdtphys      dtcum = dtcum + pdtphys
174    
175      IF (mod(iadvtr, istphy)==0) THEN      IF (mod(iadvtr, istphy) == 0) THEN
176         !   normalisation par le temps cumule                                           ! normalisation par le temps cumule
177         DO k = 1, klev         DO k = 1, klev
178            DO i = 1, klon            DO i = 1, klon
179               mfu(i, k) = mfu(i, k)/dtcum               mfu(i, k) = mfu(i, k)/dtcum
# Line 214  contains Line 206  contains
206               ppsrf2(i) = ppsrf(i, 2)               ppsrf2(i) = ppsrf(i, 2)
207               ppsrf3(i) = ppsrf(i, 3)               ppsrf3(i) = ppsrf(i, 3)
208               ppsrf4(i) = ppsrf(i, 4)               ppsrf4(i) = ppsrf(i, 4)
   
209            END DO            END DO
210         END DO         END DO
211    
212         !   ecriture des champs                                                         ! ecriture des champs
213    
214         irec = irec + 1         irec = irec + 1
215    
216         !cccc                                                                           CALL histwrite(physid, 't', itap, gr_phy_write(t))
217         CALL gr_fi_ecrit(klev, klon, iim, jjm+1, t, zx_tmp_3d)         CALL histwrite(physid, 'mfu', itap, gr_phy_write(mfu))
218         CALL histwrite(physid, 't', itap, zx_tmp_3d)         CALL histwrite(physid, 'mfd', itap, gr_phy_write(mfd))
219           CALL histwrite(physid, 'en_u', itap, gr_phy_write(en_u))
220         CALL gr_fi_ecrit(klev, klon, iim, jjm+1, mfu, zx_tmp_3d)         CALL histwrite(physid, 'de_u', itap, gr_phy_write(de_u))
221         CALL histwrite(physid, 'mfu', itap, zx_tmp_3d)         CALL histwrite(physid, 'en_d', itap, gr_phy_write(en_d))
222         CALL gr_fi_ecrit(klev, klon, iim, jjm+1, mfd, zx_tmp_3d)         CALL histwrite(physid, 'de_d', itap, gr_phy_write(de_d))
223         CALL histwrite(physid, 'mfd', itap, zx_tmp_3d)         CALL histwrite(physid, 'coefh', itap, gr_phy_write(coefh))
        CALL gr_fi_ecrit(klev, klon, iim, jjm+1, en_u, zx_tmp_3d)  
        CALL histwrite(physid, 'en_u', itap, zx_tmp_3d)  
        CALL gr_fi_ecrit(klev, klon, iim, jjm+1, de_u, zx_tmp_3d)  
        CALL histwrite(physid, 'de_u', itap, zx_tmp_3d)  
        CALL gr_fi_ecrit(klev, klon, iim, jjm+1, en_d, zx_tmp_3d)  
        CALL histwrite(physid, 'en_d', itap, zx_tmp_3d)  
        CALL gr_fi_ecrit(klev, klon, iim, jjm+1, de_d, zx_tmp_3d)  
        CALL histwrite(physid, 'de_d', itap, zx_tmp_3d)  
        CALL gr_fi_ecrit(klev, klon, iim, jjm+1, coefh, zx_tmp_3d)  
        CALL histwrite(physid, 'coefh', itap, zx_tmp_3d)  
   
        ! ajou...                                                                
224         DO k = 1, klev         DO k = 1, klev
225            DO i = 1, klon            DO i = 1, klon
226               fm_therm1(i, k) = fm_therm(i, k)               fm_therm1(i, k) = fm_therm(i, k)
227            END DO            END DO
228         END DO         END DO
229    
230         CALL gr_fi_ecrit(klev, klon, iim, jjm+1, fm_therm1, zx_tmp_3d)         CALL histwrite(physid, 'fm_th', itap, gr_phy_write(fm_therm1))
231         CALL histwrite(physid, 'fm_th', itap, zx_tmp_3d)         CALL histwrite(physid, 'en_th', itap, gr_phy_write(entr_therm))
232           !ccc
233         CALL gr_fi_ecrit(klev, klon, iim, jjm+1, entr_therm, zx_tmp_3d)         CALL histwrite(physid, 'frac_impa', itap, gr_phy_write(frac_impa))
234         CALL histwrite(physid, 'en_th', itap, zx_tmp_3d)         CALL histwrite(physid, 'frac_nucl', itap, gr_phy_write(frac_nucl))
235         !ccc                                                                             CALL histwrite(physid, 'pyu1', itap, gr_phy_write(pyu1))
236         CALL gr_fi_ecrit(klev, klon, iim, jjm+1, frac_impa, zx_tmp_3d)         CALL histwrite(physid, 'pyv1', itap, gr_phy_write(pyv1))
237         CALL histwrite(physid, 'frac_impa', itap, zx_tmp_3d)         CALL histwrite(physid, 'ftsol1', itap, gr_phy_write(pftsol1))
238           CALL histwrite(physid, 'ftsol2', itap, gr_phy_write(pftsol2))
239         CALL gr_fi_ecrit(klev, klon, iim, jjm+1, frac_nucl, zx_tmp_3d)         CALL histwrite(physid, 'ftsol3', itap, gr_phy_write(pftsol3))
240         CALL histwrite(physid, 'frac_nucl', itap, zx_tmp_3d)         CALL histwrite(physid, 'ftsol4', itap, gr_phy_write(pftsol4))
241           CALL histwrite(physid, 'psrf1', itap, gr_phy_write(ppsrf1))
242         CALL gr_fi_ecrit(1, klon, iim, jjm+1, pyu1, zx_tmp_2d)         CALL histwrite(physid, 'psrf2', itap, gr_phy_write(ppsrf2))
243         CALL histwrite(physid, 'pyu1', itap, zx_tmp_2d)         CALL histwrite(physid, 'psrf3', itap, gr_phy_write(ppsrf3))
244           CALL histwrite(physid, 'psrf4', itap, gr_phy_write(ppsrf4))
        CALL gr_fi_ecrit(1, klon, iim, jjm+1, pyv1, zx_tmp_2d)  
        CALL histwrite(physid, 'pyv1', itap, zx_tmp_2d)  
   
        CALL gr_fi_ecrit(1, klon, iim, jjm+1, pftsol1, zx_tmp_2d)  
        CALL histwrite(physid, 'ftsol1', itap, zx_tmp_2d)  
        CALL gr_fi_ecrit(1, klon, iim, jjm+1, pftsol2, zx_tmp_2d)  
        CALL histwrite(physid, 'ftsol2', itap, zx_tmp_2d)  
        CALL gr_fi_ecrit(1, klon, iim, jjm+1, pftsol3, zx_tmp_2d)  
        CALL histwrite(physid, 'ftsol3', itap, zx_tmp_2d)  
        CALL gr_fi_ecrit(1, klon, iim, jjm+1, pftsol4, zx_tmp_2d)  
        CALL histwrite(physid, 'ftsol4', itap, zx_tmp_2d)  
   
        CALL gr_fi_ecrit(1, klon, iim, jjm+1, ppsrf1, zx_tmp_2d)  
        CALL histwrite(physid, 'psrf1', itap, zx_tmp_2d)  
        CALL gr_fi_ecrit(1, klon, iim, jjm+1, ppsrf2, zx_tmp_2d)  
        CALL histwrite(physid, 'psrf2', itap, zx_tmp_2d)  
        CALL gr_fi_ecrit(1, klon, iim, jjm+1, ppsrf3, zx_tmp_2d)  
        CALL histwrite(physid, 'psrf3', itap, zx_tmp_2d)  
        CALL gr_fi_ecrit(1, klon, iim, jjm+1, ppsrf4, zx_tmp_2d)  
        CALL histwrite(physid, 'psrf4', itap, zx_tmp_2d)  
   
245         IF (ok_sync) CALL histsync(physid)         IF (ok_sync) CALL histsync(physid)
        !     if (ok_sync) call histsync                                          
246    
247           ! Test sur la valeur des coefficients de lessivage
        !AA Test sur la valeur des coefficients de lessivage                      
248    
249         zmin = 1E33         zmin = 1E33
250         zmax = -1E33         zmax = -1E33
# Line 298  contains Line 254  contains
254               zmin = min(zmin, frac_nucl(i, k))               zmin = min(zmin, frac_nucl(i, k))
255            END DO            END DO
256         END DO         END DO
257         PRINT *, '------ coefs de lessivage (min et max) --------'         PRINT *, 'coefs de lessivage (min et max)'
258         PRINT *, 'facteur de nucleation ', zmin, zmax         PRINT *, 'facteur de nucleation ', zmin, zmax
259         zmin = 1E33         zmin = 1E33
260         zmax = -1E33         zmax = -1E33
# Line 309  contains Line 265  contains
265            END DO            END DO
266         END DO         END DO
267         PRINT *, 'facteur d impaction ', zmin, zmax         PRINT *, 'facteur d impaction ', zmin, zmax
   
268      END IF      END IF
269    
270    END SUBROUTINE phystokenc    END SUBROUTINE phystokenc

Legend:
Removed from v.61  
changed lines
  Added in v.190

  ViewVC Help
Powered by ViewVC 1.1.21