source: trunk/LMDZ.GENERIC/libf/phystd/callsedim.F @ 1974

Last change on this file since 1974 was 1764, checked in by jvatant, 7 years ago

Fixed unitialized radius and qext in initracer

-> These arrays were printed and even tested in callsedim without being initialized !
-> Please stop handling uninitialized values !!!

Also updated README for modif from r1725

JVO

File size: 5.5 KB
Line 
1      SUBROUTINE callsedim(ngrid,nlay, ptimestep,
2     &                pplev,zlev, pt, pdt,
3     &                pq, pdqfi, pdqsed,pdqs_sed,nq)
4
5      use radinc_h, only : naerkind
6      use radii_mod, only: h2o_reffrad
7      use aerosol_mod, only : iaero_h2o
8      USE tracer_h, only : igcm_co2_ice,igcm_h2o_ice,radius,rho_q
9      use comcstfi_mod, only: g
10      use callkeys_mod, only : water
11
12      IMPLICIT NONE
13
14!==================================================================
15!     
16!     Purpose
17!     -------
18!     Calculates sedimentation of aerosols depending on their
19!     density and radius.
20!     
21!     Authors
22!     -------
23!     F. Forget (1999)
24!     Tracer generalisation by E. Millour (2009)
25!     
26!==================================================================
27
28c-----------------------------------------------------------------------
29c   declarations:
30c   -------------
31
32c   arguments:
33c   ----------
34
35      integer,intent(in):: ngrid ! number of horizontal grid points
36      integer,intent(in):: nlay  ! number of atmospheric layers
37      real,intent(in):: ptimestep  ! physics time step (s)
38      real,intent(in):: pplev(ngrid,nlay+1) ! pressure at inter-layers (Pa)
39      real,intent(in):: pt(ngrid,nlay)      ! temperature at mid-layer (K)
40      real,intent(in):: pdt(ngrid,nlay) ! tendency on temperature
41      real,intent(in):: zlev(ngrid,nlay+1)  ! altitude at layer boundaries
42      integer,intent(in) :: nq ! number of tracers
43      real,intent(in) :: pq(ngrid,nlay,nq)  ! tracers (kg/kg)
44      real,intent(in) :: pdqfi(ngrid,nlay,nq)  ! tendency on tracers before
45                                               ! sedimentation (kg/kg.s-1)
46     
47      real,intent(out) :: pdqsed(ngrid,nlay,nq) ! tendency due to sedimentation (kg/kg.s-1)
48      real,intent(out) :: pdqs_sed(ngrid,nq)    ! flux at surface (kg.m-2.s-1)
49     
50c   local:
51c   ------
52
53      INTEGER l,ig, iq
54
55      ! for particles with varying radii:
56      real reffrad(ngrid,nlay,naerkind) ! particle radius (m)
57      real nueffrad(ngrid,nlay,naerkind) ! aerosol effective radius variance
58
59      real zqi(ngrid,nlay,nq) ! to locally store tracers
60      real zt(ngrid,nlay) ! to locally store temperature (K)
61      real masse (ngrid,nlay) ! Layer mass (kg.m-2)
62      real epaisseur (ngrid,nlay) ! Layer thickness (m)
63      real wq(ngrid,nlay+1) ! displaced tracer mass (kg.m-2)
64c      real dens(ngrid,nlay) ! Mean density of the ice part. accounting for dust core
65
66
67      LOGICAL,SAVE :: firstcall=.true.
68!$OMP THREADPRIVATE(firstcall)
69
70c    ** un petit test de coherence
71c       --------------------------
72
73      IF (firstcall) THEN
74        firstcall=.false.
75        ! add some tests on presence of required tracers/aerosols:
76        if (water) then
77          if (igcm_h2o_ice.eq.0) then
78            write(*,*) "callsedim error: water=.true.",
79     &                 " but igcm_h2o_ice=0"
80          stop
81          endif
82          if (iaero_h2o.eq.0) then
83            write(*,*) "callsedim error: water=.true.",
84     &                 " but iaero_ho2=0"
85          stop
86          endif
87        endif
88      ENDIF ! of IF (firstcall)
89     
90!=======================================================================
91!     Preliminary calculation of the layer characteristics
92!     (mass (kg.m-2), thickness (m), etc.
93
94      do  l=1,nlay
95        do ig=1, ngrid
96          masse(ig,l)=(pplev(ig,l) - pplev(ig,l+1)) /g
97          epaisseur(ig,l)= zlev(ig,l+1) - zlev(ig,l)
98          zt(ig,l)=pt(ig,l)+pdt(ig,l)*ptimestep
99        end do
100      end do
101
102!======================================================================
103! Calculate the transport due to sedimentation for each tracer
104! [This has been rearranged by L. Kerber to allow the sedimentation
105!  of general tracers.]
106 
107      do iq=1,nq
108       if((radius(iq).gt.1.e-9).and.(iq.ne.igcm_co2_ice)) then ! JVO 08/2017 : be careful radius was tested uninitialized (fixed) ...
109       
110!         (no sedim for gases, and co2_ice sedim is done in condense_co2)     
111
112! store locally updated tracers
113
114          do l=1,nlay
115            do ig=1, ngrid
116              zqi(ig,l,iq)=pq(ig,l,iq)+pdqfi(ig,l,iq)*ptimestep
117            enddo
118          enddo ! of do l=1,nlay
119       
120!======================================================================
121! Sedimentation
122!======================================================================
123! Water         
124          if (water.and.(iq.eq.igcm_h2o_ice)) then
125            ! compute radii for h2o_ice
126             call h2o_reffrad(ngrid,nlay,zqi(1,1,igcm_h2o_ice),zt,
127     &                reffrad(1,1,iaero_h2o),nueffrad(1,1,iaero_h2o))
128            ! call sedimentation for h2o_ice
129             call newsedim(ngrid,nlay,ngrid*nlay,ptimestep,
130     &            pplev,masse,epaisseur,zt,reffrad(1,1,iaero_h2o),
131     &            rho_q(iq),zqi(1,1,igcm_h2o_ice),wq)
132
133! General Case
134          else
135             call newsedim(ngrid,nlay,1,ptimestep,
136     &            pplev,masse,epaisseur,zt,radius(iq),rho_q(iq),
137     &            zqi(1,1,iq),wq)
138          endif
139
140!=======================================================================
141!     Calculate the tendencies
142!======================================================================
143
144          do ig=1,ngrid
145!     Ehouarn: with new way of tracking tracers by name, this is simply
146            pdqs_sed(ig,iq) = wq(ig,1)/ptimestep
147          end do
148
149          DO l = 1, nlay
150            DO ig=1,ngrid
151              pdqsed(ig,l,iq)=(zqi(ig,l,iq)-
152     &        (pq(ig,l,iq) + pdqfi(ig,l,iq)*ptimestep))/ptimestep
153            ENDDO
154          ENDDO
155       endif ! of no gases no co2_ice
156      enddo ! of do iq=1,nq
157      return
158      end
Note: See TracBrowser for help on using the repository browser.