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

Diff of /trunk/phylmd/phytrac.f

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

trunk/libf/phylmd/phytrac.f90 revision 3 by guez, Wed Feb 27 13:16:39 2008 UTC trunk/phylmd/phytrac.f90 revision 78 by guez, Wed Feb 5 17:51:07 2014 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 9  module phytrac_m Line 7  module phytrac_m
7    
8  contains  contains
9    
10    SUBROUTINE phytrac(rnpb, nstep, julien, gmtime, debutphy, lafin, nqmax, &    SUBROUTINE phytrac(rnpb, itap, lmt_pas, julien, gmtime, firstcal, lafin, &
11         pdtphys, u, v, t_seri, paprs, pplay, pmfu, pmfd, pen_u, &         nq_phys, pdtphys, u, t_seri, paprs, pplay, pmfu, pmfd, pde_u, pen_d, &
12         pde_u, pen_d, pde_d, coefh, fm_therm, entr_therm, yu1, yv1, ftsol, &         coefh, fm_therm, entr_therm, yu1, yv1, ftsol, pctsrf, frac_impa, &
13         pctsrf, frac_impa, frac_nucl, presnivs, pphis, &         frac_nucl, pphis, albsol, rh, cldfra, rneb, diafra, cldliq, pmflxr, &
14         pphi, albsol, sh, rh, cldfra, rneb, diafra, cldliq, itop_con, &         pmflxs, prfl, psfl, da, phi, mp, upwd, dnwd, tr_seri, zmasse)
        ibas_con, pmflxr, pmflxs, prfl, psfl, da, phi, mp, upwd, dnwd, tr_seri)  
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    
21      ! Objet : moniteur général des tendances des traceurs      ! Objet : moniteur général des tendances des traceurs
22    
23      ! Remarques :      ! L'appel de "phytrac" se fait avec "nqmx - 2" donc nous avons
24      ! 1/ L'appel de "phytrac" se fait avec "nq-2" donc nous avons bien      ! bien les vrais traceurs (en nombre "nbtr", sans la vapeur d'eau
25      ! les vrais traceurs (en nombre "nbtr", sans la vapeur d'eau ni l'eau      ! ni l'eau liquide) dans "phytrac".
26      ! liquide) dans "phytrac".  
27      ! 2/ Le choix du radon et du plomb se fait juste avec un "data"      ! Modifications pour les traceurs :
28      ! (peu propre).      ! - uniformisation des parametrisations dans phytrac
29      ! Pourrait-on avoir une variable qui indiquerait le type de traceur ?      ! - stockage des moyennes des champs nécessaires en mode traceur off-line
30    
     use dimens_m, only: iim, jjm, llm  
     use indicesol, only: nbsrf  
     use dimphy, only: klon, nbtr  
     use clesphys, only: ecrit_tra, iflag_con  
31      use abort_gcm_m, only: abort_gcm      use abort_gcm_m, only: abort_gcm
32      use YOMCST, only: rg      use clesphys, only: ecrit_tra
33        use clesphys2, only: iflag_con
34        use cltracrn_m, only: cltracrn
35      use ctherm, only: iflag_thermals      use ctherm, only: iflag_thermals
36      use read_coefoz_m, only: read_coefoz      use dimens_m, only: llm
37      use phyetat0_m, only: rlat      use dimphy, only: klon, nbtr
38        use indicesol, only: nbsrf
39        use ini_histrac_m, only: ini_histrac
40        use minmaxqfi_m, only: minmaxqfi
41        use nflxtr_m, only: nflxtr
42        use nr_util, only: assert
43      use o3_chem_m, only: o3_chem      use o3_chem_m, only: o3_chem
44        use phyetat0_m, only: rlat
45      ! Arguments:      use press_coefoz_m, only: press_coefoz
46        use radiornpb_m, only: radiornpb
47      !   EN ENTREE:      use regr_pr_comb_coefoz_m, only: regr_pr_comb_coefoz
48        use SUPHEC_M, only: rg
     !   divers:  
49    
50      logical, intent(in):: rnpb      logical, intent(in):: rnpb
51        integer, intent(in):: itap ! number of calls to "physiq"
52      integer, intent(in):: nqmax      integer, intent(in):: lmt_pas ! number of time steps of "physics" per day
     ! (nombre de traceurs auxquels on applique la physique)  
   
     integer, intent(in):: nstep  ! appel physique  
53      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)  
54      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
55      real pdtphys  ! pas d'integration pour la physique (s)      logical, intent(in):: firstcal ! first call to "calfis"
56      real, intent(in):: t_seri(klon, llm) ! temperature, in K      logical, intent(in):: lafin ! fin de la physique
   
     real tr_seri(klon, llm, nbtr)  
     ! (mass fractions of tracers, excluding water, at mid-layers)  
   
     real u(klon, llm)  
     real v(klon, llm)  
     real sh(klon, llm)     ! humidite specifique  
     real rh(klon, llm)     ! humidite relative  
     real cldliq(klon, llm) ! eau liquide nuageuse  
     real cldfra(klon, llm) ! fraction nuageuse (tous les nuages)  
57    
58      real diafra(klon, llm)      integer, intent(in):: nq_phys
59      ! (fraction nuageuse (convection ou stratus artificiels))      ! (nombre de traceurs auxquels on applique la physique)
60    
61      real rneb(klon, llm)   ! fraction nuageuse (grande echelle)      real, intent(in):: pdtphys ! pas d'integration pour la physique (s)
62      real albsol(klon)  ! albedo surface      real, intent(in):: u(klon, llm)
63        real, intent(in):: t_seri(klon, llm) ! temperature, in K
64    
65      real, intent(in):: paprs(klon, llm+1)      real, intent(in):: paprs(klon, llm+1)
66      ! (pression pour chaque inter-couche, en Pa)      ! (pression pour chaque inter-couche, en Pa)
67    
68      real pplay(klon, llm)  ! pression pour le mileu de chaque couche (en Pa)      real, intent(in):: pplay(klon, llm)
69      real pphi(klon, llm) ! geopotentiel      ! (pression pour le mileu de chaque couche, en Pa)
     real pphis(klon)  
     REAL, intent(in):: presnivs(llm)  
     logical, intent(in):: debutphy ! le flag de l'initialisation de la physique  
     logical, intent(in):: lafin ! fin de la physique  
70    
71      integer nsplit      ! convection:
     REAL pmflxr(klon, llm+1), pmflxs(klon, llm+1)   !--lessivage convection  
     REAL prfl(klon, llm+1),   psfl(klon, llm+1)     !--lessivage large-scale  
72    
73      !   convection:      REAL, intent(in):: pmfu(klon, llm) ! flux de masse dans le panache montant
74    
75      REAL pmfu(klon, llm)  ! flux de masse dans le panache montant      REAL, intent(in):: pmfd(klon, llm)
76      REAL pmfd(klon, llm)  ! flux de masse dans le panache descendant      ! flux de masse dans le panache descendant
     REAL pen_u(klon, llm) ! flux entraine dans le panache montant  
77    
78      !   thermiques:      REAL pde_u(klon, llm) ! flux detraine dans le panache montant
79        REAL pen_d(klon, llm) ! flux entraine dans le panache descendant
80        REAL coefh(klon, llm) ! coeff melange couche limite
81    
82        ! thermiques:
83      real fm_therm(klon, llm+1), entr_therm(klon, llm)      real fm_therm(klon, llm+1), entr_therm(klon, llm)
84    
85      REAL pde_u(klon, llm) ! flux detraine dans le panache montant      ! Couche limite:
86      REAL pen_d(klon, llm) ! flux entraine dans le panache descendant      REAL yu1(klon) ! vents au premier niveau
87      REAL pde_d(klon, llm) ! flux detraine dans le panache descendant      REAL yv1(klon) ! vents au premier niveau
     ! KE  
     real da(klon, llm), phi(klon, llm, llm), mp(klon, llm)  
     REAL upwd(klon, llm)      ! saturated updraft mass flux  
     REAL dnwd(klon, llm)      ! saturated downdraft mass flux  
88    
89      !   Couche limite:      ! Arguments nécessaires pour les sources et puits de traceur :
90        real ftsol(klon, nbsrf) ! Temperature du sol (surf)(Kelvin)
91        real pctsrf(klon, nbsrf) ! Pourcentage de sol f(nature du sol)
92    
93      REAL coefh(klon, llm) ! coeff melange CL      ! Lessivage pour le on-line
94      REAL yu1(klon)        ! vents au premier niveau      REAL frac_impa(klon, llm) ! fraction d'aerosols impactes
95      REAL yv1(klon)        ! vents au premier niveau      REAL frac_nucl(klon, llm) ! fraction d'aerosols nuclees
96    
97        real, intent(in):: pphis(klon)
98        real albsol(klon) ! albedo surface
99        real rh(klon, llm) ! humidite relative
100        real cldfra(klon, llm) ! fraction nuageuse (tous les nuages)
101        real rneb(klon, llm) ! fraction nuageuse (grande echelle)
102    
103      !   Lessivage:      real diafra(klon, llm)
104        ! (fraction nuageuse (convection ou stratus artificiels))
105    
106      ! pour le ON-LINE      real cldliq(klon, llm) ! eau liquide nuageuse
107        REAL pmflxr(klon, llm+1), pmflxs(klon, llm+1) !--lessivage convection
108        REAL prfl(klon, llm+1), psfl(klon, llm+1) !--lessivage large-scale
109    
110      REAL frac_impa(klon, llm)  ! fraction d'aerosols impactes      ! Kerry Emanuel
111      REAL frac_nucl(klon, llm)  ! fraction d'aerosols nuclees      real da(klon, llm), phi(klon, llm, llm), mp(klon, llm)
112        REAL, intent(in):: upwd(klon, llm) ! saturated updraft mass flux
113        REAL, intent(in):: dnwd(klon, llm) ! saturated downdraft mass flux
114    
115      ! Arguments necessaires pour les sources et puits de traceur:      real, intent(inout):: tr_seri(:, :, :) ! (klon, llm, nbtr)
116        ! (mass fractions of tracers, excluding water, at mid-layers)
117    
118      real ftsol(klon, nbsrf)  ! Temperature du sol (surf)(Kelvin)      real, intent(in):: zmasse(:, :) ! (klon, llm)
119      real pctsrf(klon, nbsrf) ! Pourcentage de sol f(nature du sol)      ! (column-density of mass of air in a cell, in kg m-2)
120    
121      real pftsol1(klon), pftsol2(klon), pftsol3(klon), pftsol4(klon)      ! Variables local to the procedure:
122      real ppsrf1(klon), ppsrf2(klon), ppsrf3(klon), ppsrf4(klon)  
123        integer nsplit
124    
125      !  VARIABLES LOCALES TRACEURS      ! TRACEURS
126    
127      ! Sources et puits des traceurs:      ! Sources et puits des traceurs:
128    
129      ! Pour l'instant seuls les cas du rn et du pb ont ete envisages.      ! Pour l'instant seuls les cas du rn et du pb ont ete envisages.
130    
131      REAL source(klon)       ! a voir lorsque le flux est prescrit      REAL source(klon) ! a voir lorsque le flux est prescrit
132      !      !
133      ! Pour la source de radon et son reservoir de sol      ! Pour la source de radon et son reservoir de sol
134    
135      REAL, save:: trs(klon, nbtr)    ! Concentration de radon dans le sol      REAL, save:: trs(klon, nbtr) ! Concentration de radon dans le sol
136    
137      REAL masktr(klon, nbtr) ! Masque reservoir de sol traceur      REAL masktr(klon, nbtr) ! Masque reservoir de sol traceur
138      !                            Masque de l'echange avec la surface      ! Masque de l'echange avec la surface
139      !                           (1 = reservoir) ou (possible => 1 )      ! (1 = reservoir) ou (possible => 1)
140      SAVE masktr      SAVE masktr
141      REAL fshtr(klon, nbtr)  ! Flux surfacique dans le reservoir de sol      REAL fshtr(klon, nbtr) ! Flux surfacique dans le reservoir de sol
142      SAVE fshtr      SAVE fshtr
143      REAL hsoltr(nbtr)      ! Epaisseur equivalente du reservoir de sol      REAL hsoltr(nbtr) ! Epaisseur equivalente du reservoir de sol
144      SAVE hsoltr      SAVE hsoltr
145      REAL tautr(nbtr)       ! Constante de decroissance radioactive      REAL tautr(nbtr) ! Constante de decroissance radioactive
146      SAVE tautr      SAVE tautr
147      REAL vdeptr(nbtr)      ! Vitesse de depot sec dans la couche Brownienne      REAL vdeptr(nbtr) ! Vitesse de depot sec dans la couche Brownienne
148      SAVE vdeptr      SAVE vdeptr
149      REAL scavtr(nbtr)      ! Coefficient de lessivage      REAL scavtr(nbtr) ! Coefficient de lessivage
150      SAVE scavtr      SAVE scavtr
151    
152      CHARACTER itn      CHARACTER itn
# Line 161  contains Line 154  contains
154    
155      ! nature du traceur      ! nature du traceur
156    
157      logical aerosol(nbtr)  ! Nature du traceur      logical aerosol(nbtr) ! Nature du traceur
158      !                            ! aerosol(it) = true  => aerosol      ! ! aerosol(it) = true => aerosol
159      !                            ! aerosol(it) = false => gaz      ! ! aerosol(it) = false => gaz
160      logical clsol(nbtr)    ! couche limite sol calculée      logical clsol(nbtr) ! couche limite sol calculée
161      logical radio(nbtr)    ! décroisssance radioactive      logical radio(nbtr) ! décroisssance radioactive
162      save aerosol, clsol, radio      save aerosol, clsol, radio
163    
164      ! convection tiedtke      ! convection tiedtke
# Line 177  contains Line 170  contains
170      ! Variables locales pour effectuer les appels en serie      ! Variables locales pour effectuer les appels en serie
171    
172      REAL d_tr(klon, llm), d_trs(klon) ! tendances de traceurs      REAL d_tr(klon, llm), d_trs(klon) ! tendances de traceurs
173      REAL d_tr_cl(klon, llm, nbtr) ! tendance de traceurs  couche limite      REAL d_tr_cl(klon, llm, nbtr) ! tendance de traceurs couche limite
174      REAL d_tr_cv(klon, llm, nbtr) ! tendance de traceurs  conv pour chq traceur      REAL d_tr_cv(klon, llm, nbtr) ! tendance de traceurs conv pour chq traceur
175      REAL d_tr_th(klon, llm, nbtr) ! la tendance des thermiques      REAL d_tr_th(klon, llm, nbtr) ! la tendance des thermiques
176      REAL d_tr_dec(klon, llm, 2) ! la tendance de la decroissance      REAL d_tr_dec(klon, llm, 2) ! la tendance de la decroissance
177      !                                   ! radioactive du rn - > pb      ! ! radioactive du rn - > pb
178      REAL d_tr_lessi_impa(klon, llm, nbtr) ! la tendance du lessivage      REAL d_tr_lessi_impa(klon, llm, nbtr) ! la tendance du lessivage
179      !                                          ! par impaction      ! ! par impaction
180      REAL d_tr_lessi_nucl(klon, llm, nbtr) ! la tendance du lessivage      REAL d_tr_lessi_nucl(klon, llm, nbtr) ! la tendance du lessivage
181      !                                          ! par nucleation      ! ! par nucleation
182      REAL flestottr(klon, llm, nbtr) ! flux de lessivage      REAL flestottr(klon, llm, nbtr) ! flux de lessivage
183      !                                    ! dans chaque couche      ! ! dans chaque couche
   
     real zmasse(klon, llm)  
     ! (column-density of mass of air in a layer, in kg m-2)  
184    
185      real ztra_th(klon, llm)      real ztra_th(klon, llm)
   
     character(len=20) modname  
     character(len=80) abort_message  
186      integer isplit      integer isplit
187    
188      ! Controls:      ! Controls:
# Line 206  contains Line 193  contains
193    
194      !--------------------------------------      !--------------------------------------
195    
196      modname='phytrac'      call assert(shape(zmasse) == (/klon, llm/), "phytrac zmasse")
197        call assert(shape(tr_seri) == (/klon, llm, nbtr/), "phytrac tr_seri")
198    
199      if (debutphy) then      if (firstcal) then
200         print *, 'phytrac: pdtphys = ', pdtphys         print *, 'phytrac: pdtphys = ', pdtphys
201         PRINT *, 'Fréquence de sortie des traceurs : ecrit_tra = ', ecrit_tra         PRINT *, 'Fréquence de sortie des traceurs : ecrit_tra = ', ecrit_tra
202         if (nbtr < nqmax) then         if (nbtr < nq_phys) call abort_gcm('phytrac', 'nbtr < nq_phys', 1)
           abort_message='See above'  
           call abort_gcm(modname, abort_message, 1)  
        endif  
203         inirnpb=rnpb         inirnpb=rnpb
204    
205         ! Initialisation des sorties :         ! Initialisation des sorties :
206         call ini_histrac(nid_tra, pdtphys, presnivs, nqmax, lessivage)         call ini_histrac(nid_tra, pdtphys, nq_phys, lessivage)
207    
208         ! Initialisation de certaines variables pour le radon et le plomb         ! Initialisation de certaines variables pour le radon et le plomb
209         ! Initialisation du traceur dans le sol (couche limite radonique)         ! Initialisation du traceur dans le sol (couche limite radonique)
# Line 237  contains Line 222  contains
222    
223         ! Initialisation de la nature des traceurs         ! Initialisation de la nature des traceurs
224    
225         DO it = 1, nqmax         DO it = 1, nq_phys
226            aerosol(it) = .FALSE.  ! Tous les traceurs sont des gaz par defaut            aerosol(it) = .FALSE. ! Tous les traceurs sont des gaz par defaut
227            radio(it) = .FALSE. ! par défaut pas de passage par "radiornpb"            radio(it) = .FALSE. ! par défaut pas de passage par "radiornpb"
228            clsol(it) = .FALSE.  ! Par defaut couche limite avec flux prescrit            clsol(it) = .FALSE. ! Par defaut couche limite avec flux prescrit
229         ENDDO         ENDDO
230    
231         ! Get the parameters for ozone chemistry:         if (nq_phys >= 3) then
232         call read_coefoz            call press_coefoz ! read input pressure levels for ozone coefficients
233           end if
234      ENDIF      ENDIF
235    
     ! Initialisation du traceur dans le sol (couche limite radonique)  
236      if (inirnpb) THEN      if (inirnpb) THEN
237           ! Initialisation du traceur dans le sol (couche limite radonique)
238         radio(1)= .true.         radio(1)= .true.
239         radio(2)= .true.         radio(2)= .true.
240         clsol(1)= .true.         clsol(1)= .true.
241         clsol(2)= .true.         clsol(2)= .true.
242         aerosol(2) = .TRUE. ! le Pb est un aerosol         aerosol(2) = .TRUE. ! le Pb est un aerosol
   
243         call initrrnpb(ftsol, pctsrf, masktr, fshtr, hsoltr, tautr, vdeptr, &         call initrrnpb(ftsol, pctsrf, masktr, fshtr, hsoltr, tautr, vdeptr, &
244              scavtr)              scavtr)
245         inirnpb=.false.         inirnpb=.false.
246      endif      endif
247    
     do i=1, klon  
        pftsol1(i) = ftsol(i, 1)  
        pftsol2(i) = ftsol(i, 2)  
        pftsol3(i) = ftsol(i, 3)  
        pftsol4(i) = ftsol(i, 4)  
   
        ppsrf1(i) = pctsrf(i, 1)  
        ppsrf2(i) = pctsrf(i, 2)  
        ppsrf3(i) = pctsrf(i, 3)  
        ppsrf4(i) = pctsrf(i, 4)  
   
     enddo  
   
     ! Calcul de l'effet de la convection  
   
248      if (convection) then      if (convection) then
249         DO it=1, nqmax         ! Calcul de l'effet de la convection
250            if (iflag_con.eq.2) then         DO it=1, nq_phys
251               ! tiedke            if (iflag_con == 2) then
252               CALL nflxtr(pdtphys, pmfu, pmfd, pen_u, pde_u, pen_d, pde_d, &               ! Tiedke
253                    pplay, paprs, tr_seri(1, 1, it), d_tr_cv(1, 1, it))               CALL nflxtr(pdtphys, pmfu, pmfd, pde_u, pen_d, paprs, &
254            else if (iflag_con.eq.3) then                    tr_seri(:, :, it), d_tr_cv(:, :, it))
255               ! KE            else if (iflag_con == 3) then
256               call cvltr(pdtphys, da, phi, mp, paprs, pplay, &               ! Emanuel
257                    tr_seri(1, 1, it), upwd, dnwd, d_tr_cv(1, 1, it))               call cvltr(pdtphys, da, phi, mp, paprs, tr_seri(1, 1, it), upwd, &
258                      dnwd, d_tr_cv(1, 1, it))
259            endif            endif
260    
261            DO k = 1, llm            DO k = 1, llm
# Line 294  contains Line 264  contains
264               ENDDO               ENDDO
265            ENDDO            ENDDO
266            WRITE(unit=itn, fmt='(i1)') it            WRITE(unit=itn, fmt='(i1)') it
267            CALL minmaxqfi(tr_seri(:, :, it), 0., 1.e33, &            CALL minmaxqfi(tr_seri(:, :, it), 0., 1e33, &
268                 'convection, tracer index = ' // itn)                 'convection, tracer index = ' // itn)
269         ENDDO         ENDDO
270      endif      endif
271    
     forall (k=1: llm) zmasse(:, k) = (paprs(:, k)-paprs(:, k+1)) / rg  
   
272      ! Calcul de l'effet des thermiques      ! Calcul de l'effet des thermiques
273    
274      do it=1, nqmax      do it=1, nq_phys
275         do k=1, llm         do k=1, llm
276            do i=1, klon            do i=1, klon
277               d_tr_th(i, k, it)=0.               d_tr_th(i, k, it)=0.
278               tr_seri(i, k, it)=max(tr_seri(i, k, it), 0.)               tr_seri(i, k, it)=max(tr_seri(i, k, it), 0.)
279               tr_seri(i, k, it)=min(tr_seri(i, k, it), 1.e10)               tr_seri(i, k, it)=min(tr_seri(i, k, it), 1e10)
280            enddo            enddo
281         enddo         enddo
282      enddo      enddo
283    
284      if (iflag_thermals > 0) then      if (iflag_thermals > 0) then
285         nsplit=10         nsplit=10
286         DO it=1, nqmax         DO it=1, nq_phys
287            do isplit=1, nsplit            do isplit=1, nsplit
288               ! Thermiques               ! Thermiques
289               call dqthermcell(klon, llm, pdtphys/nsplit &               call dqthermcell(klon, llm, pdtphys/nsplit &
# Line 333  contains Line 301  contains
301         ENDDO         ENDDO
302      endif      endif
303    
304      !   Calcul de l'effet de la couche limite      ! Calcul de l'effet de la couche limite
305    
306      if (couchelimite) then      if (couchelimite) then
307    
# Line 344  contains Line 312  contains
312         ENDDO         ENDDO
313    
314         ! MAF modif pour tenir compte du cas rnpb + traceur         ! MAF modif pour tenir compte du cas rnpb + traceur
315         DO it=1, nqmax         DO it=1, nq_phys
316            if (clsol(it)) then            if (clsol(it)) then
317               ! couche limite avec quantite dans le sol calculee               ! couche limite avec quantite dans le sol calculee
318               CALL cltracrn(it, pdtphys, yu1, yv1, &               CALL cltracrn(it, pdtphys, yu1, yv1, &
319                    coefh, t_seri, ftsol, pctsrf, &                    coefh, t_seri, ftsol, pctsrf, &
320                    tr_seri(1, 1, it), trs(1, it), &                    tr_seri(:, :, it), trs(1, it), &
321                    paprs, pplay, delp, &                    paprs, pplay, delp, &
322                    masktr(1, it), fshtr(1, it), hsoltr(it), &                    masktr(1, it), fshtr(1, it), hsoltr(it), &
323                    tautr(it), vdeptr(it), &                    tautr(it), vdeptr(it), &
# Line 386  contains Line 354  contains
354    
355      endif ! couche limite      endif ! couche limite
356    
357      !   Calcul de l'effet du puits radioactif      ! Calcul de l'effet du puits radioactif
358    
359      ! MAF il faudrait faire une modification pour passer dans radiornpb      ! MAF il faudrait faire une modification pour passer dans radiornpb
360      ! si radio=true mais pour l'instant radiornpb propre au cas rnpb      ! si radio=true mais pour l'instant radiornpb propre au cas rnpb
361      if (rnpb) then      if (rnpb) then
362         d_tr_dec(:, :, :) = radiornpb(tr_seri, pdtphys, tautr)         d_tr_dec(:, :, :) = radiornpb(tr_seri, pdtphys, tautr)
363         DO it=1, nqmax         DO it=1, nq_phys
364            if (radio(it)) then            if (radio(it)) then
365               tr_seri(:, :, it) = tr_seri(:, :, it) + d_tr_dec(:, :, it)               tr_seri(:, :, it) = tr_seri(:, :, it) + d_tr_dec(:, :, it)
366               WRITE(unit=itn, fmt='(i1)') it               WRITE(unit=itn, fmt='(i1)') it
367               CALL minmaxqfi(tr_seri(:, :, it), 0., 1.e33, 'puits rn it='//itn)               CALL minmaxqfi(tr_seri(:, :, it), 0., 1e33, 'puits rn it='//itn)
368            endif            endif
369         ENDDO         ENDDO
370      endif ! rnpb decroissance  radioactive      endif
371    
372      ! Ozone as a tracer:      if (nq_phys >= 3) then
373      call o3_chem(julien, gmtime, t_seri, zmasse, pdtphys, tr_seri(:, :, 3))         ! Ozone as a tracer:
374           if (mod(itap - 1, lmt_pas) == 0) then
375              ! Once per day, update the coefficients for ozone chemistry:
376              call regr_pr_comb_coefoz(julien)
377           end if
378           call o3_chem(julien, gmtime, t_seri, zmasse, pdtphys, tr_seri(:, :, 3))
379        end if
380    
381      ! Calcul de l'effet de la precipitation      ! Calcul de l'effet de la precipitation
382    
# Line 413  contains Line 387  contains
387    
388         ! tendance des aerosols nuclees et impactes         ! tendance des aerosols nuclees et impactes
389    
390         DO it = 1, nqmax         DO it = 1, nq_phys
391            IF (aerosol(it)) THEN            IF (aerosol(it)) THEN
392               DO k = 1, llm               DO k = 1, llm
393                  DO i = 1, klon                  DO i = 1, klon
394                     d_tr_lessi_nucl(i, k, it) = d_tr_lessi_nucl(i, k, it) + &                     d_tr_lessi_nucl(i, k, it) = d_tr_lessi_nucl(i, k, it) + &
395                          ( 1 - frac_nucl(i, k) )*tr_seri(i, k, it)                          (1 - frac_nucl(i, k))*tr_seri(i, k, it)
396                     d_tr_lessi_impa(i, k, it) = d_tr_lessi_impa(i, k, it) + &                     d_tr_lessi_impa(i, k, it) = d_tr_lessi_impa(i, k, it) + &
397                          ( 1 - frac_impa(i, k) )*tr_seri(i, k, it)                          (1 - frac_impa(i, k))*tr_seri(i, k, it)
398                  ENDDO                  ENDDO
399               ENDDO               ENDDO
400            ENDIF            ENDIF
# Line 429  contains Line 403  contains
403         ! Mises a jour des traceurs + calcul des flux de lessivage         ! Mises a jour des traceurs + calcul des flux de lessivage
404         ! Mise a jour due a l'impaction et a la nucleation         ! Mise a jour due a l'impaction et a la nucleation
405    
406         DO it = 1, nqmax         DO it = 1, nq_phys
407            IF (aerosol(it)) THEN            IF (aerosol(it)) THEN
408               DO k = 1, llm               DO k = 1, llm
409                  DO i = 1, klon                  DO i = 1, klon
410                     tr_seri(i, k, it)=tr_seri(i, k, it) &                     tr_seri(i, k, it) = tr_seri(i, k, it) * frac_impa(i, k) &
411                          *frac_impa(i, k)*frac_nucl(i, k)                          * frac_nucl(i, k)
412                  ENDDO                  ENDDO
413               ENDDO               ENDDO
414            ENDIF            ENDIF
# Line 442  contains Line 416  contains
416    
417         ! Flux lessivage total         ! Flux lessivage total
418    
419         DO it = 1, nqmax         DO it = 1, nq_phys
420            DO k = 1, llm            DO k = 1, llm
421               DO i = 1, klon               DO i = 1, klon
422                  flestottr(i, k, it) = flestottr(i, k, it) - &                  flestottr(i, k, it) = flestottr(i, k, it) &
423                       ( d_tr_lessi_nucl(i, k, it)   + &                       - (d_tr_lessi_nucl(i, k, it) + d_tr_lessi_impa(i, k, it)) &
424                       d_tr_lessi_impa(i, k, it) ) * &                       * (paprs(i, k)-paprs(i, k+1)) / (RG * pdtphys)
                      ( paprs(i, k)-paprs(i, k+1) ) /  &  
                      (RG * pdtphys)  
425               ENDDO               ENDDO
426            ENDDO            ENDDO
427         ENDDO         ENDDO
428      ENDIF      ENDIF
429    
430      !   Ecriture des sorties      ! Ecriture des sorties
431      call write_histrac(lessivage, nqmax, nstep, nid_tra)      call write_histrac(lessivage, nq_phys, itap, nid_tra)
432    
433      if (lafin) then      if (lafin) then
434         print *, "C'est la fin de la physique."         print *, "C'est la fin de la physique."
435         open (unit=99, file='restarttrac',  form='formatted')         open(unit=99, file='restarttrac', form='formatted')
436         do i=1, klon         do i=1, klon
437            write(unit=99, fmt=*) trs(i, 1)            write(unit=99, fmt=*) trs(i, 1)
438         enddo         enddo
439         PRINT *, 'Ecriture du fichier restarttrac'         PRINT *, 'Ecriture du fichier restarttrac'
440         close(99)         close(unit=99)
441      endif      endif
442    
443    contains    contains
444    
445      subroutine write_histrac(lessivage, nqmax, nstep, nid_tra)      subroutine write_histrac(lessivage, nq_phys, itap, nid_tra)
446    
447        ! 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
448    
449        use dimens_m, only: iim, jjm, llm        use dimens_m, only: iim, jjm, llm
450        use ioipsl, only: histwrite, histsync        use histsync_m, only: histsync
451          use histwrite_m, only: histwrite
452        use temps, only: itau_phy        use temps, only: itau_phy
453        use advtrac_m, only: tnom        use iniadvtrac_m, only: tnom
454        use comgeomphy, only: airephy        use comgeomphy, only: airephy
455        use dimphy, only: klon        use dimphy, only: klon
456          use grid_change, only: gr_phy_write_2d
457          use gr_phy_write_3d_m, only: gr_phy_write_3d
458    
459        logical, intent(in):: lessivage        logical, intent(in):: lessivage
460    
461        integer, intent(in):: nqmax        integer, intent(in):: nq_phys
462        ! (nombre de traceurs auxquels on applique la physique)        ! (nombre de traceurs auxquels on applique la physique)
463    
464        integer, intent(in):: nstep  ! appel physique        integer, intent(in):: itap ! number of calls to "physiq"
465        integer, intent(in):: nid_tra        integer, intent(in):: nid_tra
466    
467        ! Variables local to the procedure:        ! Variables local to the procedure:
       INTEGER ndex2d(iim*(jjm+1)), ndex3d(iim*(jjm+1)*llm)  
468        integer it        integer it
469        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)  
470        logical, parameter:: ok_sync = .true.        logical, parameter:: ok_sync = .true.
471    
472        !-----------------------------------------------------        !-----------------------------------------------------
473    
474        ndex2d = 0        itau_w = itau_phy + itap
475        ndex3d = 0  
476        itau_w = itau_phy + nstep        CALL histwrite(nid_tra, "phis", itau_w, gr_phy_write_2d(pphis))
477          CALL histwrite(nid_tra, "aire", itau_w, gr_phy_write_2d(airephy))
478        CALL gr_fi_ecrit(1, klon, iim, jjm+1, pphis, zx_tmp_2d)        CALL histwrite(nid_tra, "zmasse", itau_w, gr_phy_write_3d(zmasse))
479        CALL histwrite(nid_tra, "phis", itau_w, zx_tmp_2d, iim*(jjm+1), ndex2d)  
480          DO it=1, nq_phys
481        CALL gr_fi_ecrit(1, klon, iim, jjm+1, airephy, zx_tmp_2d)                 CALL histwrite(nid_tra, tnom(it+2), itau_w, &
482        CALL histwrite(nid_tra, "aire", itau_w, zx_tmp_2d, iim*(jjm+1), ndex2d)                gr_phy_write_3d(tr_seri(:, :, it)))
   
       CALL gr_fi_ecrit(llm, klon, iim, jjm+1, zmasse, zx_tmp_3d)        
       CALL histwrite(nid_tra, "zmasse", itau_w, zx_tmp_3d, iim*(jjm+1)*llm, &  
            ndex3d)  
   
       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, &  
               iim*(jjm+1)*llm, ndex3d)  
483           if (lessivage) THEN           if (lessivage) THEN
484              CALL gr_fi_ecrit(llm, klon, iim, jjm+1, flestottr(1, 1, it), &              CALL histwrite(nid_tra, "fl"//tnom(it+2), itau_w, &
485                   zx_tmp_3d)                   gr_phy_write_3d(flestottr(:, :, it)))
             CALL histwrite(nid_tra, "fl"//tnom(it+2), itau_w, zx_tmp_3d, &  
                  iim*(jjm+1)*llm, ndex3d)  
486           endif           endif
487             CALL histwrite(nid_tra, "d_tr_th_"//tnom(it+2), itau_w, &
488           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)))
489           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, &
490                iim*(jjm+1)*llm, ndex3d)                gr_phy_write_3d(d_tr_cv(:, :, it)))
491           CALL gr_fi_ecrit(llm, klon, iim, jjm+1, d_tr_cv(1, 1, it), zx_tmp_3d)           CALL histwrite(nid_tra, "d_tr_cl_"//tnom(it+2), itau_w, &
492           CALL histwrite(nid_tra, "d_tr_cv_"//tnom(it+2), itau_w, zx_tmp_3d, &                gr_phy_write_3d(d_tr_cl(:, :, it)))
               iim*(jjm+1)*llm, ndex3d)  
          CALL gr_fi_ecrit(llm, klon, iim, jjm+1, d_tr_cl(1, 1, it), zx_tmp_3d)  
          CALL histwrite(nid_tra, "d_tr_cl_"//tnom(it+2), itau_w, zx_tmp_3d, &  
               iim*(jjm+1)*llm, ndex3d)  
493        ENDDO        ENDDO
494    
495        CALL gr_fi_ecrit(1, klon, iim, jjm+1, yu1, zx_tmp_2d)        CALL histwrite(nid_tra, "pplay", itau_w, gr_phy_write_3d(pplay))
496        CALL histwrite(nid_tra, "pyu1", itau_w, zx_tmp_2d, &        CALL histwrite(nid_tra, "T", itau_w, gr_phy_write_3d(t_seri))
            iim*(jjm+1), ndex2d)  
   
       CALL gr_fi_ecrit(1, klon, iim, jjm+1, yv1, zx_tmp_2d)  
       CALL histwrite(nid_tra, "pyv1", itau_w, zx_tmp_2d, &  
            iim*(jjm+1), ndex2d)  
   
       CALL gr_fi_ecrit(1, klon, iim, jjm+1, pftsol1, zx_tmp_2d)  
       CALL histwrite(nid_tra, "ftsol1", itau_w, zx_tmp_2d, &  
            iim*(jjm+1), ndex2d)  
   
       CALL gr_fi_ecrit(1, klon, iim, jjm+1, pftsol2, zx_tmp_2d)  
       CALL histwrite(nid_tra, "ftsol2", itau_w, zx_tmp_2d, &  
            iim*(jjm+1), ndex2d)  
   
       CALL gr_fi_ecrit(1, klon, iim, jjm+1, pftsol3, zx_tmp_2d)  
       CALL histwrite(nid_tra, "ftsol3", itau_w, zx_tmp_2d, &  
            iim*(jjm+1), ndex2d)  
   
       CALL gr_fi_ecrit(1, klon, iim, jjm+1, pftsol4, zx_tmp_2d)  
       CALL histwrite(nid_tra, "ftsol4", itau_w, zx_tmp_2d, &  
            iim*(jjm+1), ndex2d)  
   
       CALL gr_fi_ecrit(1, klon, iim, jjm+1, ppsrf1, zx_tmp_2d)  
       CALL histwrite(nid_tra, "psrf1", itau_w, zx_tmp_2d, &  
            iim*(jjm+1), ndex2d)  
   
       CALL gr_fi_ecrit(1, klon, iim, jjm+1, ppsrf2, zx_tmp_2d)  
       CALL histwrite(nid_tra, "psrf2", itau_w, zx_tmp_2d, &  
            iim*(jjm+1), ndex2d)  
   
       CALL gr_fi_ecrit(1, klon, iim, jjm+1, ppsrf3, zx_tmp_2d)  
       CALL histwrite(nid_tra, "psrf3", itau_w, zx_tmp_2d, &  
            iim*(jjm+1), ndex2d)  
   
       CALL gr_fi_ecrit(1, klon, iim, jjm+1, ppsrf4, zx_tmp_2d)  
       CALL histwrite(nid_tra, "psrf4", itau_w, zx_tmp_2d, &  
            iim*(jjm+1), ndex2d)  
       CALL gr_fi_ecrit(llm, klon, iim, jjm+1, pplay, zx_tmp_3d)  
       CALL histwrite(nid_tra, "pplay", itau_w, zx_tmp_3d, &  
            iim*(jjm+1)*llm, ndex3d)  
   
       CALL gr_fi_ecrit(llm, klon, iim, jjm+1, t_seri, zx_tmp_3d)  
       CALL histwrite(nid_tra, "t", itau_w, zx_tmp_3d, &  
            iim*(jjm+1)*llm, ndex3d)  
       CALL gr_fi_ecrit(llm, klon, iim, jjm+1, pmfu, zx_tmp_3d)  
       CALL histwrite(nid_tra, "mfu", itau_w, zx_tmp_3d, &  
            iim*(jjm+1)*llm, ndex3d)  
       CALL gr_fi_ecrit(llm, klon, iim, jjm+1, pmfd, zx_tmp_3d)  
       CALL histwrite(nid_tra, "mfd", itau_w, zx_tmp_3d, &  
            iim*(jjm+1)*llm, ndex3d)  
       CALL gr_fi_ecrit(llm, klon, iim, jjm+1, pen_u, zx_tmp_3d)  
       CALL histwrite(nid_tra, "en_u", itau_w, zx_tmp_3d, &  
            iim*(jjm+1)*llm, ndex3d)  
       CALL gr_fi_ecrit(llm, klon, iim, jjm+1, pen_d, zx_tmp_3d)  
       CALL histwrite(nid_tra, "en_d", itau_w, zx_tmp_3d, &  
            iim*(jjm+1)*llm, ndex3d)  
       CALL gr_fi_ecrit(llm, klon, iim, jjm+1, pde_d, zx_tmp_3d)  
       CALL histwrite(nid_tra, "de_d", itau_w, zx_tmp_3d, &  
            iim*(jjm+1)*llm, ndex3d)  
       CALL gr_fi_ecrit(llm, klon, iim, jjm+1, pde_u, zx_tmp_3d)  
       CALL histwrite(nid_tra, "de_u", itau_w, zx_tmp_3d, &  
            iim*(jjm+1)*llm, ndex3d)  
       CALL gr_fi_ecrit(llm, klon, iim, jjm+1, coefh, zx_tmp_3d)  
       CALL histwrite(nid_tra, "coefh", itau_w, zx_tmp_3d, &  
            iim*(jjm+1)*llm, ndex3d)  
   
       ! abder  
497    
498        if (ok_sync) then        if (ok_sync) then
499           call histsync(nid_tra)           call histsync(nid_tra)
# Line 612  contains Line 503  contains
503    
504    END SUBROUTINE phytrac    END SUBROUTINE phytrac
505    
   !*************************************************  
   
   subroutine ini_histrac(nid_tra, pdtphys, presnivs, nqmax, lessivage)  
   
     ! From phylmd/ini_histrac.h, version 1.10 2006/02/21 08:08:30  
   
     use dimens_m, only: iim, jjm, llm  
     use ioipsl, only: ymds2ju, histbeg_totreg, histvert, histdef, histend  
     use temps, only: annee_ref, day_ref, itau_phy  
     use advtrac_m, only: niadv, tnom, ttext  
     use dimphy, only: klon  
     use clesphys, only: ecrit_tra  
     use grid_change, only: gr_phy_write  
     use phyetat0_m, only: rlon, rlat  
   
     INTEGER, intent(out):: nid_tra  
     real, intent(in):: pdtphys  ! pas d'integration pour la physique (s)  
     REAL, intent(in):: presnivs(:)  
   
     integer, intent(in):: nqmax  
     ! (nombre de traceurs auxquels on applique la physique)  
   
     logical, intent(in):: lessivage  
   
     ! Variables local to the procedure:  
   
     REAL zjulian  
     REAL zx_lat(iim, jjm+1)  
     INTEGER nhori, nvert  
     REAL zsto, zout  
     integer it, iq, iiq  
   
     !---------------------------------------------------------  
   
     CALL ymds2ju(annee_ref, month=1, day=day_ref, sec=0.0, julian=zjulian)  
     zx_lat(:, :) = gr_phy_write(rlat)  
     CALL histbeg_totreg("histrac", iim, rlon(2:iim+1), jjm+1, zx_lat(1, :), &  
          1, iim, 1, jjm+1, itau_phy, zjulian, pdtphys, nhori, nid_tra)  
     CALL histvert(nid_tra, "presnivs", "Vertical levels", "mb", llm, &  
          presnivs, nvert)  
   
     zsto = pdtphys  
     zout = pdtphys * REAL(ecrit_tra)  
   
     CALL histdef(nid_tra, "phis", "Surface geop. height", "-", &  
          iim, jjm+1, nhori, 1, 1, 1, -99, 32, &  
          "once",  zsto, zout)  
     CALL histdef(nid_tra, "aire", "Grid area", "-", &  
          iim, jjm+1, nhori, 1, 1, 1, -99, 32, &  
          "once",  zsto, zout)  
     CALL histdef(nid_tra, "zmasse", "column density of air in cell", &  
          "kg m-2", iim, jjm + 1, nhori, llm, 1, llm, nvert, 32, "ave(X)", &  
          zsto, zout)  
   
     DO it=1, nqmax  
        ! champ 2D  
        iq=it+2  
        iiq=niadv(iq)  
        CALL histdef(nid_tra, tnom(iq), ttext(iiq), "U/kga", iim, jjm+1, &  
             nhori, llm, 1, llm, nvert, 32, "ave(X)", zsto, zout)  
        if (lessivage) THEN  
           CALL histdef(nid_tra, "fl"//tnom(iq), "Flux "//ttext(iiq), &  
                "U/m2/s", iim, jjm+1, nhori, llm, 1, llm, nvert, 32, &  
                "ave(X)", zsto, zout)  
        endif  
   
        !---Ajout Olivia  
        CALL histdef(nid_tra, "d_tr_th_"//tnom(iq), &  
             "tendance thermique"// ttext(iiq), "?", &  
             iim, jjm+1, nhori, llm, 1, llm, nvert, 32, &  
             "ave(X)", zsto, zout)  
        CALL histdef(nid_tra, "d_tr_cv_"//tnom(iq), &  
             "tendance convection"// ttext(iiq), "?", &  
             iim, jjm+1, nhori, llm, 1, llm, nvert, 32, &  
             "ave(X)", zsto, zout)  
        CALL histdef(nid_tra, "d_tr_cl_"//tnom(iq), &  
             "tendance couche limite"// ttext(iiq), "?", &  
             iim, jjm+1, nhori, llm, 1, llm, nvert, 32, &  
             "ave(X)", zsto, zout)  
        !---fin Olivia      
   
     ENDDO  
   
     CALL histdef(nid_tra, "pyu1", "Vent niv 1", "-", &  
          iim, jjm+1, nhori, 1, 1, 1, -99, 32, &  
          "inst(X)", zout, zout)  
   
     CALL histdef(nid_tra, "pyv1", "Vent niv 1", "-", &  
          iim, jjm+1, nhori, 1, 1, 1, -99, 32, &  
          "inst(X)",  zout, zout)  
     CALL histdef(nid_tra, "psrf1", "nature sol", "-", &  
          iim, jjm+1, nhori, 1, 1, 1, -99, 32, &  
          "inst(X)",  zout, zout)  
     CALL histdef(nid_tra, "psrf2", "nature sol", "-", &  
          iim, jjm+1, nhori, 1, 1, 1, -99, 32, &  
          "inst(X)",  zout, zout)  
     CALL histdef(nid_tra, "psrf3", "nature sol", "-", &  
          iim, jjm+1, nhori, 1, 1, 1, -99, 32, &  
          "inst(X)",  zout, zout)  
     CALL histdef(nid_tra, "psrf4", "nature sol", "-", &  
          iim, jjm+1, nhori, 1, 1, 1, -99, 32, &  
          "inst(X)",  zout, zout)  
     CALL histdef(nid_tra, "ftsol1", "temper sol", "-", &  
          iim, jjm+1, nhori, 1, 1, 1, -99, 32, &  
          "inst(X)",  zout, zout)  
     CALL histdef(nid_tra, "ftsol2", "temper sol", "-", &  
          iim, jjm+1, nhori, 1, 1, 1, -99, 32, &  
          "inst(X)",  zout, zout)  
     CALL histdef(nid_tra, "ftsol3", "temper sol", "-", &  
          iim, jjm+1, nhori, 1, 1, 1, -99, 32, &  
          "inst(X)",  zout, zout)  
     CALL histdef(nid_tra, "ftsol4", "temper sol", "-", &  
          iim, jjm+1, nhori, 1, 1, 1, -99, 32, &  
          "inst(X)",  zout, zout)  
     CALL histdef(nid_tra, "pplay", "flux u mont", "-", &  
          iim, jjm+1, nhori, llm, 1, llm, nvert, 32, &  
          "inst(X)", zout, zout)  
     CALL histdef(nid_tra, "t", "flux u mont", "-", &  
          iim, jjm+1, nhori, llm, 1, llm, nvert, 32, &  
          "inst(X)", zout, zout)  
     CALL histdef(nid_tra, "mfu", "flux u mont", "-", &  
          iim, jjm+1, nhori, llm, 1, llm, nvert, 32, &  
          "ave(X)", zsto, zout)  
     CALL histdef(nid_tra, "mfd", "flux u decen", "-", &  
          iim, jjm+1, nhori, llm, 1, llm, nvert, 32, &  
          "ave(X)", zsto, zout)  
     CALL histdef(nid_tra, "en_u", "flux u mont", "-", &  
          iim, jjm+1, nhori, llm, 1, llm, nvert, 32, &  
          "ave(X)", zsto, zout)  
     CALL histdef(nid_tra, "en_d", "flux u mont", "-", &  
          iim, jjm+1, nhori, llm, 1, llm, nvert, 32, &  
          "ave(X)", zsto, zout)  
     CALL histdef(nid_tra, "de_d", "flux u mont", "-", &  
          iim, jjm+1, nhori, llm, 1, llm, nvert, 32, &  
          "ave(X)", zsto, zout)  
     CALL histdef(nid_tra, "de_u", "flux u decen", "-", &  
          iim, jjm+1, nhori, llm, 1, llm, nvert, 32, &  
          "ave(X)", zsto, zout)  
     CALL histdef(nid_tra, "coefh", "turbulent coef", "-", &  
          iim, jjm+1, nhori, llm, 1, llm, nvert, 32, &  
          "ave(X)", zsto, zout)  
   
     CALL histend(nid_tra)  
   
   end subroutine ini_histrac  
   
   !*************************************************  
   
   function radiornpb(tr_seri, pdtphys, tautr)  
   
     ! From phylmd/radiornpb.F, v 1.2 2005/05/25 13:10:09  
   
     ! Auteurs: AA + CG (LGGE/CNRS) Date 24-06-94  
     ! Objet: Decroissance radioactive d'un traceur dans l'atmosphere  
     !G 24 06 94 : Pour un traceur, le radon  
     !G 16 12 94 : Plus un 2eme traceur, le 210Pb. Le radon decroit en plomb.  
   
     ! Le pas de temps "pdtphys" est supposé beaucoup plus petit que la  
     ! constante de temps de décroissance.  
   
     use dimens_m, only: llm  
     use dimphy, only: klon, nbtr  
     use nrutil, only: assert  
   
     IMPLICIT none  
   
     REAL, intent(in):: tr_seri(:, :, :), pdtphys, tautr(:)  
     real radiornpb(klon, llm, 2)  
   
     ! Variable local to the procedure:  
     INTEGER it  
   
     !-----------------------------------------------  
   
     call assert(shape(tr_seri) == (/klon, llm, nbtr/), "radiornpb tr_seri")  
     call assert(size(tautr) == nbtr, "radiornpb tautr")  
   
     DO it = 1, 2  
        IF (tautr(it) > 0.) THEN  
           radiornpb(:, :, it) = - tr_seri(:, :, it) * pdtphys / tautr(it)  
        ELSE  
           radiornpb(:, :, it) = 0.  
        END IF  
     END DO  
   
     !G161294 : Cas particulier radon 1 => plomb 2  
     radiornpb(:, :, 2) = radiornpb(:, :, 2) - radiornpb(:, :, 1)  
   
   END function radiornpb  
   
   !*************************************************  
   
   SUBROUTINE minmaxqfi(zq, qmin, qmax, comment)  
   
     ! From phylmd/minmaxqfi.F, version 1.1.1.1 2004/05/19 12:53:09  
   
     use dimens_m, only: llm  
     use dimphy, only: klon  
     use nrutil, only: assert  
   
     IMPLICIT none  
   
     real, intent(in):: zq(:, :), qmin, qmax  
     CHARACTER(len=*), intent(in):: comment  
   
     ! Variables local to the procedure:  
   
     INTEGER jadrs(klon), jbad, k, i  
   
     !---------------------------------  
   
     call assert(shape(zq) == (/klon, llm/), "minmaxqfi")  
   
     DO k = 1, llm  
        jbad = 0  
        DO i = 1, klon  
           IF (zq(i, k) > qmax .OR. zq(i, k) < qmin) THEN  
              jbad = jbad + 1  
              jadrs(jbad) = i  
           ENDIF  
        ENDDO  
        IF (jbad > 0) THEN  
           PRINT *, comment  
           DO i = 1, jbad  
              PRINT *, "zq(", jadrs(i), ", ", k, ") = ", zq(jadrs(i), k)  
           ENDDO  
        ENDIF  
     ENDDO  
   
   end SUBROUTINE minmaxqfi  
   
506  end module phytrac_m  end module phytrac_m

Legend:
Removed from v.3  
changed lines
  Added in v.78

  ViewVC Help
Powered by ViewVC 1.1.21