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

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

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

revision 17 by guez, Tue Aug 5 13:31:32 2008 UTC revision 51 by guez, Tue Sep 20 09:14:34 2011 UTC
# Line 1  Line 1 
1  module phytrac_m  module phytrac_m
2    
   ! This module is clean: no C preprocessor directive, no include line.  
   
3    IMPLICIT none    IMPLICIT none
4    
5    private    private
# Line 10  module phytrac_m Line 8  module phytrac_m
8  contains  contains
9    
10    SUBROUTINE phytrac(rnpb, itap, lmt_pas, julien, gmtime, firstcal, lafin, &    SUBROUTINE phytrac(rnpb, itap, lmt_pas, julien, gmtime, firstcal, lafin, &
11         nqmax, pdtphys, u, v, t_seri, paprs, pplay, pmfu, pmfd, pen_u, &         nq_phys, pdtphys, u, t_seri, paprs, pplay, pmfu, pmfd, pen_u, pde_u, &
12         pde_u, pen_d, pde_d, coefh, fm_therm, entr_therm, yu1, yv1, ftsol, &         pen_d, pde_d, coefh, fm_therm, entr_therm, yu1, yv1, ftsol, pctsrf, &
13         pctsrf, frac_impa, frac_nucl, presnivs, pphis, &         frac_impa, frac_nucl, pphis, albsol, rh, cldfra, rneb, diafra, cldliq, &
14         pphi, albsol, rh, cldfra, rneb, diafra, cldliq, itop_con, &         pmflxr, pmflxs, prfl, psfl, da, phi, mp, upwd, dnwd, tr_seri, zmasse)
        ibas_con, pmflxr, pmflxs, prfl, psfl, da, phi, mp, upwd, dnwd, &  
        tr_seri, zmasse)  
15    
16      ! From phylmd/phytrac.F, version 1.15 2006/02/21 08:08:30      ! From phylmd/phytrac.F, version 1.15 2006/02/21 08:08:30 (SVN revision 679)
17    
18      ! Authors : Frédéric Hourdin, Abderrahmane Idelkadi, Marie-Alice      ! Authors: Frédéric Hourdin, Abderrahmane Idelkadi, Marie-Alice
19      ! Foujols, Olivia      ! Foujols, Olivia
20      ! Objet : moniteur général des tendances des traceurs      ! Objet : moniteur général des tendances des traceurs
21    
22      ! Remarques :      ! L'appel de "phytrac" se fait avec "nqmx-2" donc nous avons bien
     ! 1/ L'appel de "phytrac" se fait avec "nq-2" donc nous avons bien  
23      ! les vrais traceurs (en nombre "nbtr", sans la vapeur d'eau ni l'eau      ! les vrais traceurs (en nombre "nbtr", sans la vapeur d'eau ni l'eau
24      ! liquide) dans "phytrac".      ! liquide) dans "phytrac".
25      ! 2/ Le choix du radon et du plomb se fait juste avec un "data"  
26      ! (peu propre).      ! Modifications pour les traceurs :
27      ! Pourrait-on avoir une variable qui indiquerait le type de traceur ?      ! - uniformisation des parametrisations ds phytrac
28        ! - stockage des moyennes des champs necessaires en mode traceur off-line
29    
30      use dimens_m, only: llm      use dimens_m, only: llm
31      use indicesol, only: nbsrf      use indicesol, only: nbsrf
# Line 37  contains Line 33  contains
33      use clesphys, only: ecrit_tra      use clesphys, only: ecrit_tra
34      use clesphys2, only: iflag_con      use clesphys2, only: iflag_con
35      use abort_gcm_m, only: abort_gcm      use abort_gcm_m, only: abort_gcm
36      use YOMCST, only: rg      use SUPHEC_M, only: rg
37      use ctherm, only: iflag_thermals      use ctherm, only: iflag_thermals
38      use regr_pr_comb_coefoz_m, only: regr_pr_comb_coefoz      use regr_pr_comb_coefoz_m, only: regr_pr_comb_coefoz
39      use phyetat0_m, only: rlat      use phyetat0_m, only: rlat
40      use o3_chem_m, only: o3_chem      use o3_chem_m, only: o3_chem
41      use ini_hist, only: ini_histrac      use ini_histrac_m, only: ini_histrac
42      use radiornpb_m, only: radiornpb      use radiornpb_m, only: radiornpb
43      use minmaxqfi_m, only: minmaxqfi      use minmaxqfi_m, only: minmaxqfi
44      use numer_rec, only: assert      use nr_util, only: assert
45      use press_coefoz_m, only: press_coefoz      use press_coefoz_m, only: press_coefoz
46    
     ! Arguments:  
   
     !   EN ENTREE:  
   
     !   divers:  
   
47      logical, intent(in):: rnpb      logical, intent(in):: rnpb
48    
49      integer, intent(in):: nqmax      integer, intent(in):: nq_phys
50      ! (nombre de traceurs auxquels on applique la physique)      ! (nombre de traceurs auxquels on applique la physique)
51    
52      integer, intent(in):: itap  ! number of calls to "physiq"      integer, intent(in):: itap  ! number of calls to "physiq"
53      integer, intent(in):: lmt_pas ! number of time steps of "physics" per day      integer, intent(in):: lmt_pas ! number of time steps of "physics" per day
54      integer, intent(in):: julien !jour julien, 1 <= julien <= 360      integer, intent(in):: julien !jour julien, 1 <= julien <= 360
     integer itop_con(klon)  
     integer ibas_con(klon)  
55      real, intent(in):: gmtime ! heure de la journée en fraction de jour      real, intent(in):: gmtime ! heure de la journée en fraction de jour
56      real, intent(in):: pdtphys  ! pas d'integration pour la physique (s)      real, intent(in):: pdtphys  ! pas d'integration pour la physique (s)
57      real, intent(in):: t_seri(klon, llm) ! temperature, in K      real, intent(in):: t_seri(klon, llm) ! temperature, in K
58    
59      real, intent(inout):: tr_seri(klon, llm, nbtr)      real, intent(inout):: tr_seri(:, :, :) ! (klon, llm, nbtr)
60      ! (mass fractions of tracers, excluding water, at mid-layers)      ! (mass fractions of tracers, excluding water, at mid-layers)
61    
62      real u(klon, llm)      real, intent(in):: u(klon, llm)
     real v(klon, llm)  
63      real rh(klon, llm)     ! humidite relative      real rh(klon, llm)     ! humidite relative
64      real cldliq(klon, llm) ! eau liquide nuageuse      real cldliq(klon, llm) ! eau liquide nuageuse
65      real cldfra(klon, llm) ! fraction nuageuse (tous les nuages)      real cldfra(klon, llm) ! fraction nuageuse (tous les nuages)
# Line 89  contains Line 76  contains
76      real, intent(in):: pplay(klon, llm)      real, intent(in):: pplay(klon, llm)
77      ! (pression pour le mileu de chaque couche, en Pa)      ! (pression pour le mileu de chaque couche, en Pa)
78    
79      real pphi(klon, llm) ! geopotentiel      real, intent(in):: pphis(klon)
     real pphis(klon)  
     REAL, intent(in):: presnivs(llm)  
80      logical, intent(in):: firstcal ! first call to "calfis"      logical, intent(in):: firstcal ! first call to "calfis"
81      logical, intent(in):: lafin ! fin de la physique      logical, intent(in):: lafin ! fin de la physique
82    
# Line 211  contains Line 196  contains
196    
197      !--------------------------------------      !--------------------------------------
198    
199      call assert(shape(zmasse) == (/klon, llm/), "phytrac")      call assert(shape(zmasse) == (/klon, llm/), "phytrac zmasse")
200        call assert(shape(tr_seri) == (/klon, llm, nbtr/), "phytrac tr_seri")
201    
202      if (firstcal) then      if (firstcal) then
203         print *, 'phytrac: pdtphys = ', pdtphys         print *, 'phytrac: pdtphys = ', pdtphys
204         PRINT *, 'Fréquence de sortie des traceurs : ecrit_tra = ', ecrit_tra         PRINT *, 'Fréquence de sortie des traceurs : ecrit_tra = ', ecrit_tra
205         if (nbtr < nqmax) call abort_gcm('phytrac', 'See above', 1)         if (nbtr < nq_phys) call abort_gcm('phytrac', 'nbtr < nq_phys', 1)
206         inirnpb=rnpb         inirnpb=rnpb
207    
208         ! Initialisation des sorties :         ! Initialisation des sorties :
209         call ini_histrac(nid_tra, pdtphys, presnivs, nqmax, lessivage)         call ini_histrac(nid_tra, pdtphys, nq_phys, lessivage)
210    
211         ! Initialisation de certaines variables pour le radon et le plomb         ! Initialisation de certaines variables pour le radon et le plomb
212         ! Initialisation du traceur dans le sol (couche limite radonique)         ! Initialisation du traceur dans le sol (couche limite radonique)
# Line 239  contains Line 225  contains
225    
226         ! Initialisation de la nature des traceurs         ! Initialisation de la nature des traceurs
227    
228         DO it = 1, nqmax         DO it = 1, nq_phys
229            aerosol(it) = .FALSE.  ! Tous les traceurs sont des gaz par defaut            aerosol(it) = .FALSE.  ! Tous les traceurs sont des gaz par defaut
230            radio(it) = .FALSE. ! par défaut pas de passage par "radiornpb"            radio(it) = .FALSE. ! par défaut pas de passage par "radiornpb"
231            clsol(it) = .FALSE.  ! Par defaut couche limite avec flux prescrit            clsol(it) = .FALSE.  ! Par defaut couche limite avec flux prescrit
232         ENDDO         ENDDO
233    
234         if (nqmax >= 3) then         if (nq_phys >= 3) then
235            call press_coefoz ! read input pressure levels for ozone coefficients            call press_coefoz ! read input pressure levels for ozone coefficients
236         end if         end if
237      ENDIF      ENDIF
# Line 267  contains Line 253  contains
253      ! Calcul de l'effet de la convection      ! Calcul de l'effet de la convection
254    
255      if (convection) then      if (convection) then
256         DO it=1, nqmax         DO it=1, nq_phys
257            if (iflag_con.eq.2) then            if (iflag_con.eq.2) then
258               ! tiedke               ! tiedke
259               CALL nflxtr(pdtphys, pmfu, pmfd, pen_u, pde_u, pen_d, pde_d, &               CALL nflxtr(pdtphys, pmfu, pmfd, pen_u, pde_u, pen_d, pde_d, &
# Line 291  contains Line 277  contains
277    
278      ! Calcul de l'effet des thermiques      ! Calcul de l'effet des thermiques
279    
280      do it=1, nqmax      do it=1, nq_phys
281         do k=1, llm         do k=1, llm
282            do i=1, klon            do i=1, klon
283               d_tr_th(i, k, it)=0.               d_tr_th(i, k, it)=0.
# Line 303  contains Line 289  contains
289    
290      if (iflag_thermals > 0) then      if (iflag_thermals > 0) then
291         nsplit=10         nsplit=10
292         DO it=1, nqmax         DO it=1, nq_phys
293            do isplit=1, nsplit            do isplit=1, nsplit
294               ! Thermiques               ! Thermiques
295               call dqthermcell(klon, llm, pdtphys/nsplit &               call dqthermcell(klon, llm, pdtphys/nsplit &
# Line 332  contains Line 318  contains
318         ENDDO         ENDDO
319    
320         ! MAF modif pour tenir compte du cas rnpb + traceur         ! MAF modif pour tenir compte du cas rnpb + traceur
321         DO it=1, nqmax         DO it=1, nq_phys
322            if (clsol(it)) then            if (clsol(it)) then
323               ! couche limite avec quantite dans le sol calculee               ! couche limite avec quantite dans le sol calculee
324               CALL cltracrn(it, pdtphys, yu1, yv1, &               CALL cltracrn(it, pdtphys, yu1, yv1, &
# Line 380  contains Line 366  contains
366      ! si radio=true mais pour l'instant radiornpb propre au cas rnpb      ! si radio=true mais pour l'instant radiornpb propre au cas rnpb
367      if (rnpb) then      if (rnpb) then
368         d_tr_dec(:, :, :) = radiornpb(tr_seri, pdtphys, tautr)         d_tr_dec(:, :, :) = radiornpb(tr_seri, pdtphys, tautr)
369         DO it=1, nqmax         DO it=1, nq_phys
370            if (radio(it)) then            if (radio(it)) then
371               tr_seri(:, :, it) = tr_seri(:, :, it) + d_tr_dec(:, :, it)               tr_seri(:, :, it) = tr_seri(:, :, it) + d_tr_dec(:, :, it)
372               WRITE(unit=itn, fmt='(i1)') it               WRITE(unit=itn, fmt='(i1)') it
# Line 389  contains Line 375  contains
375         ENDDO         ENDDO
376      endif ! rnpb decroissance  radioactive      endif ! rnpb decroissance  radioactive
377    
378      if (nqmax >= 3) then      if (nq_phys >= 3) then
379         ! Ozone as a tracer:         ! Ozone as a tracer:
380         if (mod(itap - 1, lmt_pas) == 0) then         if (mod(itap - 1, lmt_pas) == 0) then
381            ! Once per day, update the coefficients for ozone chemistry:            ! Once per day, update the coefficients for ozone chemistry:
# Line 407  contains Line 393  contains
393    
394         ! tendance des aerosols nuclees et impactes         ! tendance des aerosols nuclees et impactes
395    
396         DO it = 1, nqmax         DO it = 1, nq_phys
397            IF (aerosol(it)) THEN            IF (aerosol(it)) THEN
398               DO k = 1, llm               DO k = 1, llm
399                  DO i = 1, klon                  DO i = 1, klon
# Line 423  contains Line 409  contains
409         ! Mises a jour des traceurs + calcul des flux de lessivage         ! Mises a jour des traceurs + calcul des flux de lessivage
410         ! Mise a jour due a l'impaction et a la nucleation         ! Mise a jour due a l'impaction et a la nucleation
411    
412         DO it = 1, nqmax         DO it = 1, nq_phys
413            IF (aerosol(it)) THEN            IF (aerosol(it)) THEN
414               DO k = 1, llm               DO k = 1, llm
415                  DO i = 1, klon                  DO i = 1, klon
# Line 436  contains Line 422  contains
422    
423         ! Flux lessivage total         ! Flux lessivage total
424    
425         DO it = 1, nqmax         DO it = 1, nq_phys
426            DO k = 1, llm            DO k = 1, llm
427               DO i = 1, klon               DO i = 1, klon
428                  flestottr(i, k, it) = flestottr(i, k, it) - &                  flestottr(i, k, it) = flestottr(i, k, it) - &
# Line 450  contains Line 436  contains
436      ENDIF      ENDIF
437    
438      !   Ecriture des sorties      !   Ecriture des sorties
439      call write_histrac(lessivage, nqmax, itap, nid_tra)      call write_histrac(lessivage, nq_phys, itap, nid_tra)
440    
441      if (lafin) then      if (lafin) then
442         print *, "C'est la fin de la physique."         print *, "C'est la fin de la physique."
# Line 464  contains Line 450  contains
450    
451    contains    contains
452    
453      subroutine write_histrac(lessivage, nqmax, itap, nid_tra)      subroutine write_histrac(lessivage, nq_phys, itap, nid_tra)
454    
455        ! From phylmd/write_histrac.h, version 1.9 2006/02/21 08:08:30        ! From phylmd/write_histrac.h, version 1.9 2006/02/21 08:08:30
456    
457        use dimens_m, only: iim, jjm, llm        use dimens_m, only: iim, jjm, llm
458        use ioipsl, only: histwrite, histsync        use histcom, only: histsync
459          use histwrite_m, only: histwrite
460        use temps, only: itau_phy        use temps, only: itau_phy
461        use advtrac_m, only: tnom        use iniadvtrac_m, only: tnom
462        use comgeomphy, only: airephy        use comgeomphy, only: airephy
463        use dimphy, only: klon        use dimphy, only: klon
464          use grid_change, only: gr_phy_write_2d
465          use gr_phy_write_3d_m, only: gr_phy_write_3d
466    
467        logical, intent(in):: lessivage        logical, intent(in):: lessivage
468    
469        integer, intent(in):: nqmax        integer, intent(in):: nq_phys
470        ! (nombre de traceurs auxquels on applique la physique)        ! (nombre de traceurs auxquels on applique la physique)
471    
472        integer, intent(in):: itap  ! number of calls to "physiq"        integer, intent(in):: itap  ! number of calls to "physiq"
# Line 486  contains Line 475  contains
475        ! Variables local to the procedure:        ! Variables local to the procedure:
476        integer it        integer it
477        integer itau_w   ! pas de temps ecriture        integer itau_w   ! pas de temps ecriture
       REAL zx_tmp_2d(iim, jjm+1), zx_tmp_3d(iim, jjm+1, llm)  
478        logical, parameter:: ok_sync = .true.        logical, parameter:: ok_sync = .true.
479    
480        !-----------------------------------------------------        !-----------------------------------------------------
481    
482        itau_w = itau_phy + itap        itau_w = itau_phy + itap
483    
484        CALL gr_fi_ecrit(1, klon, iim, jjm+1, pphis, zx_tmp_2d)        CALL histwrite(nid_tra, "phis", itau_w, gr_phy_write_2d(pphis))
485        CALL histwrite(nid_tra, "phis", itau_w, zx_tmp_2d)        CALL histwrite(nid_tra, "aire", itau_w, gr_phy_write_2d(airephy))
486          CALL histwrite(nid_tra, "zmasse", itau_w, gr_phy_write_3d(zmasse))
487        CALL gr_fi_ecrit(1, klon, iim, jjm+1, airephy, zx_tmp_2d)        
488        CALL histwrite(nid_tra, "aire", itau_w, zx_tmp_2d)        DO it=1, nq_phys
489             CALL histwrite(nid_tra, tnom(it+2), itau_w, &
490        CALL gr_fi_ecrit(llm, klon, iim, jjm+1, zmasse, zx_tmp_3d)                      gr_phy_write_3d(tr_seri(:, :, it)))
       CALL histwrite(nid_tra, "zmasse", itau_w, zx_tmp_3d)  
   
       DO it=1, nqmax  
          CALL gr_fi_ecrit(llm, klon, iim, jjm+1, tr_seri(1, 1, it), zx_tmp_3d)  
          CALL histwrite(nid_tra, tnom(it+2), itau_w, zx_tmp_3d)  
491           if (lessivage) THEN           if (lessivage) THEN
492              CALL gr_fi_ecrit(llm, klon, iim, jjm+1, flestottr(1, 1, it), &              CALL histwrite(nid_tra, "fl"//tnom(it+2), itau_w, &
493                   zx_tmp_3d)                   gr_phy_write_3d(flestottr(:, :, it)))
             CALL histwrite(nid_tra, "fl"//tnom(it+2), itau_w, zx_tmp_3d)  
494           endif           endif
495             CALL histwrite(nid_tra, "d_tr_th_"//tnom(it+2), itau_w, &
496           CALL gr_fi_ecrit(llm, klon, iim, jjm+1, d_tr_th(1, 1, it), zx_tmp_3d)                gr_phy_write_3d(d_tr_th(:, :, it)))
497           CALL histwrite(nid_tra, "d_tr_th_"//tnom(it+2), itau_w, zx_tmp_3d)           CALL histwrite(nid_tra, "d_tr_cv_"//tnom(it+2), itau_w, &
498           CALL gr_fi_ecrit(llm, klon, iim, jjm+1, d_tr_cv(1, 1, it), zx_tmp_3d)                gr_phy_write_3d(d_tr_cv(:, :, it)))
499           CALL histwrite(nid_tra, "d_tr_cv_"//tnom(it+2), itau_w, zx_tmp_3d)           CALL histwrite(nid_tra, "d_tr_cl_"//tnom(it+2), itau_w, &
500           CALL gr_fi_ecrit(llm, klon, iim, jjm+1, d_tr_cl(1, 1, it), zx_tmp_3d)                gr_phy_write_3d(d_tr_cl(:, :, it)))
          CALL histwrite(nid_tra, "d_tr_cl_"//tnom(it+2), itau_w, zx_tmp_3d)  
501        ENDDO        ENDDO
502    
503        CALL gr_fi_ecrit(llm, klon, iim, jjm+1, pplay, zx_tmp_3d)        CALL histwrite(nid_tra, "pplay", itau_w, gr_phy_write_3d(pplay))
504        CALL histwrite(nid_tra, "pplay", itau_w, zx_tmp_3d)        CALL histwrite(nid_tra, "T", itau_w, gr_phy_write_3d(t_seri))
   
       CALL gr_fi_ecrit(llm, klon, iim, jjm+1, t_seri, zx_tmp_3d)  
       CALL histwrite(nid_tra, "t", itau_w, zx_tmp_3d)  
505    
506        if (ok_sync) then        if (ok_sync) then
507           call histsync(nid_tra)           call histsync(nid_tra)

Legend:
Removed from v.17  
changed lines
  Added in v.51

  ViewVC Help
Powered by ViewVC 1.1.21