/[lmdze]/trunk/Sources/phylmd/CV30_routines/cv30_undilute2.f
ViewVC logotype

Diff of /trunk/Sources/phylmd/CV30_routines/cv30_undilute2.f

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

revision 192 by guez, Thu May 12 13:00:07 2016 UTC revision 198 by guez, Tue May 31 16:17:35 2016 UTC
# Line 4  module cv30_undilute2_m Line 4  module cv30_undilute2_m
4    
5  contains  contains
6    
7    SUBROUTINE cv30_undilute2(ncum, icb, icbs, nk, tnk, qnk, gznk, t, qs, gz, &    SUBROUTINE cv30_undilute2(icb, icbs, tnk, qnk, gznk, t, qs, gz, p, h, tv, &
8         p, h, tv, lv, pbase, buoybase, plcl, inb, tp, tvp, clw, hp, ep, sigp, &         lv, pbase, buoybase, plcl, inb, tp, tvp, clw, hp, ep, buoy)
        buoy)  
9    
10      ! Undilute (adiabatic) updraft, second part. Purpose: find the      ! Undilute (adiabatic) updraft, second part. Purpose: find the
11      ! rest of the lifted parcel temperatures; compute the      ! rest of the lifted parcel temperatures; compute the
# Line 16  contains Line 15  contains
15      ! Vertical profile of buoyancy computed here (use of buoybase).      ! Vertical profile of buoyancy computed here (use of buoybase).
16    
17      use conema3_m, only: epmax      use conema3_m, only: epmax
18      use cv30_param_m, only: dtovsh, minorig, nl, pbcrit, ptcrit, spfac      use cv30_param_m, only: minorig, nl
19      use cv_thermo_m, only: cl, clmcpv, cpd, cpv, eps, lv0, rrv      use cv_thermo_m, only: cl, clmcpv, cpd, cpv, eps, rrv
20      USE dimphy, ONLY: klon, klev      USE dimphy, ONLY: klon, klev
21        use SUPHEC_M, only: rlvtt
22    
23      integer, intent(in):: ncum      integer, intent(in):: icb(:), icbs(:) ! (ncum)
   
     integer, intent(in):: icb(klon), icbs(klon)  
24      ! icbs is the first level above LCL (may differ from icb)      ! icbs is the first level above LCL (may differ from icb)
25    
26      integer, intent(in):: nk(klon)      real, intent(in):: tnk(:), qnk(:), gznk(:) ! (klon)
     real, intent(in):: tnk(klon), qnk(klon), gznk(klon)  
27      real, intent(in):: t(klon, klev), qs(klon, klev), gz(klon, klev)      real, intent(in):: t(klon, klev), qs(klon, klev), gz(klon, klev)
28      real, intent(in):: p(klon, klev), h(klon, klev)      real, intent(in):: p(klon, klev), h(klon, klev)
29      real, intent(in):: tv(klon, klev), lv(klon, klev)      real, intent(in):: tv(klon, klev), lv(klon, klev)
30      real, intent(in):: pbase(klon), buoybase(klon), plcl(klon)      real, intent(in):: pbase(:), buoybase(:), plcl(:) ! (ncum)
31    
32      ! outputs:      ! outputs:
33      integer, intent(out):: inb(:) ! (ncum)      integer, intent(out):: inb(:) ! (ncum)
# Line 39  contains Line 36  contains
36    
37      real tp(klon, klev), tvp(klon, klev), clw(klon, klev)      real tp(klon, klev), tvp(klon, klev), clw(klon, klev)
38      ! condensed water not removed from tvp      ! condensed water not removed from tvp
39      real hp(klon, klev), ep(klon, klev), sigp(klon, klev)      real hp(klon, klev), ep(klon, klev)
40      real buoy(klon, klev)      real buoy(klon, klev)
41    
42      ! Local:      ! Local:
43    
44        integer ncum
45    
46        real, parameter:: pbcrit = 150.
47        ! critical cloud depth (mbar) beneath which the precipitation
48        ! efficiency is assumed to be zero
49    
50        real, parameter:: ptcrit = 500.
51        ! cloud depth (mbar) above which the precipitation efficiency is
52        ! assumed to be unity
53    
54        real, parameter:: dtovsh = - 0.2 ! dT for overshoot
55    
56      integer i, k      integer i, k
57      real tg, qg, ahg, alv, s, tc, es, denom      real tg, qg, ahg, alv, s, tc, es, denom
58      real pden      real pden
# Line 50  contains Line 60  contains
60    
61      !---------------------------------------------------------------------      !---------------------------------------------------------------------
62    
63        ncum = size(icb)
64    
65      ! SOME INITIALIZATIONS      ! SOME INITIALIZATIONS
66    
67      do k = 1, nl      do k = 1, nl
68         do i = 1, ncum         do i = 1, ncum
69            ep(i, k) = 0.0            ep(i, k) = 0.
           sigp(i, k) = spfac  
70         end do         end do
71      end do      end do
72    
# Line 68  contains Line 79  contains
79    
80      do i = 1, ncum      do i = 1, ncum
81         ah0(i) = (cpd * (1. - qnk(i)) + cl * qnk(i)) * tnk(i) &         ah0(i) = (cpd * (1. - qnk(i)) + cl * qnk(i)) * tnk(i) &
82              + qnk(i) * (lv0 - clmcpv * (tnk(i) - 273.15)) + gznk(i)              + qnk(i) * (rlvtt - clmcpv * (tnk(i) - 273.15)) + gznk(i)
83      end do      end do
84    
85      ! Find lifted parcel quantities above cloud base      ! Find lifted parcel quantities above cloud base
# Line 78  contains Line 89  contains
89            if (k >= (icbs(i) + 1)) then            if (k >= (icbs(i) + 1)) then
90               tg = t(i, k)               tg = t(i, k)
91               qg = qs(i, k)               qg = qs(i, k)
92               alv = lv0 - clmcpv * (t(i, k) - 273.15)               alv = rlvtt - clmcpv * (t(i, k) - 273.15)
93    
94               ! First iteration.               ! First iteration.
95    
# Line 91  contains Line 102  contains
102    
103               tc = tg - 273.15               tc = tg - 273.15
104               denom = 243.5 + tc               denom = 243.5 + tc
105               denom = MAX(denom, 1.0)               denom = MAX(denom, 1.)
106    
107               es = 6.112 * exp(17.67 * tc / denom)               es = 6.112 * exp(17.67 * tc / denom)
108    
# Line 104  contains Line 115  contains
115    
116               tc = tg - 273.15               tc = tg - 273.15
117               denom = 243.5 + tc               denom = 243.5 + tc
118               denom = MAX(denom, 1.0)               denom = MAX(denom, 1.)
119    
120               es = 6.112 * exp(17.67 * tc / denom)               es = 6.112 * exp(17.67 * tc / denom)
121    
122               qg = eps * es / (p(i, k) - es * (1. - eps))               qg = eps * es / (p(i, k) - es * (1. - eps))
123    
124               alv = lv0 - clmcpv * (t(i, k) - 273.15)               alv = rlvtt - clmcpv * (t(i, k) - 273.15)
125    
126               ! no approximation:               ! no approximation:
127               tp(i, k) = (ah0(i) - gz(i, k) - alv * qg) &               tp(i, k) = (ah0(i) - gz(i, k) - alv * qg) &
128                    / (cpd + (cl - cpd) * qnk(i))                    / (cpd + (cl - cpd) * qnk(i))
129    
130               clw(i, k) = qnk(i) - qg               clw(i, k) = qnk(i) - qg
131               clw(i, k) = max(0.0, clw(i, k))               clw(i, k) = max(0., clw(i, k))
132               ! qg utilise au lieu du vrai mixing ratio rg:               ! qg utilise au lieu du vrai mixing ratio rg:
133               tvp(i, k) = tp(i, k) * (1. + qg / eps - qnk(i)) ! whole thing               tvp(i, k) = tp(i, k) * (1. + qg / eps - qnk(i)) ! whole thing
134            endif            endif
135         end do         end do
136      end do      end do
137    
138      ! SET THE PRECIPITATION EFFICIENCIES AND THE FRACTION OF      ! SET THE PRECIPITATION EFFICIENCIES
139      ! PRECIPITATION FALLING OUTSIDE OF CLOUD      ! It MAY BE a FUNCTION OF TP(I), P(I) AND CLW(I)
     ! THESE MAY BE FUNCTIONS OF TP(I), P(I) AND CLW(I)  
140      do k = 1, nl      do k = 1, nl
141         do i = 1, ncum         do i = 1, ncum
142            pden = ptcrit - pbcrit            pden = ptcrit - pbcrit
143            ep(i, k) = (plcl(i) - p(i, k) - pbcrit) / pden * epmax            ep(i, k) = (plcl(i) - p(i, k) - pbcrit) / pden * epmax
144            ep(i, k) = max(ep(i, k), 0.0)            ep(i, k) = max(ep(i, k), 0.)
145            ep(i, k) = min(ep(i, k), epmax)            ep(i, k) = min(ep(i, k), epmax)
           sigp(i, k) = spfac  
146         end do         end do
147      end do      end do
148    
# Line 188  contains Line 197  contains
197    
198      do k = minorig + 1, nl      do k = minorig + 1, nl
199         do i = 1, ncum         do i = 1, ncum
200            if (k >= icb(i) .and. k <= inb(i)) hp(i, k) = h(i, nk(i)) &            if (k >= icb(i) .and. k <= inb(i)) hp(i, k) = h(i, minorig) &
201                 + (lv(i, k) + (cpd - cpv) * t(i, k)) * ep(i, k) * clw(i, k)                 + (lv(i, k) + (cpd - cpv) * t(i, k)) * ep(i, k) * clw(i, k)
202         end do         end do
203      end do      end do

Legend:
Removed from v.192  
changed lines
  Added in v.198

  ViewVC Help
Powered by ViewVC 1.1.21