[633] | 1 | subroutine growthrate(temp,pmid,psat,rcrystal,res) |
---|
[38] | 2 | |
---|
| 3 | IMPLICIT NONE |
---|
| 4 | |
---|
| 5 | c======================================================================= |
---|
| 6 | c |
---|
| 7 | c Determination of the water ice crystal growth rate |
---|
| 8 | c |
---|
[358] | 9 | c Authors: F. Montmessin |
---|
| 10 | c Adapted for the LMD/GCM by J.-B. Madeleine (October 2011) |
---|
[626] | 11 | c Use of resistances in the analytical function |
---|
| 12 | c instead of growth rate - T. Navarro (2012) |
---|
[358] | 13 | c |
---|
[38] | 14 | c======================================================================= |
---|
| 15 | |
---|
| 16 | c----------------------------------------------------------------------- |
---|
| 17 | c declarations: |
---|
| 18 | c ------------- |
---|
| 19 | |
---|
[358] | 20 | #include "dimensions.h" |
---|
| 21 | #include "dimphys.h" |
---|
| 22 | #include "comcstfi.h" |
---|
| 23 | #include "tracer.h" |
---|
| 24 | #include "microphys.h" |
---|
| 25 | |
---|
[38] | 26 | c |
---|
| 27 | c arguments: |
---|
| 28 | c ---------- |
---|
| 29 | |
---|
[626] | 30 | c Input |
---|
[358] | 31 | REAL temp ! temperature in the middle of the layer (K) |
---|
| 32 | REAL pmid ! pressure in the middle of the layer (K) |
---|
[633] | 33 | REAL psat ! water vapor saturation pressure (Pa) |
---|
[358] | 34 | REAL rcrystal ! crystal radius before condensation (m) |
---|
[38] | 35 | |
---|
[626] | 36 | c Output |
---|
[633] | 37 | REAL res ! growth resistance (res=Rk+Rd) |
---|
[626] | 38 | |
---|
| 39 | |
---|
[38] | 40 | c local: |
---|
| 41 | c ------ |
---|
| 42 | |
---|
[633] | 43 | REAL k,Lv |
---|
| 44 | REAL knudsen ! Knudsen number (gas mean free path/particle radius) |
---|
| 45 | REAL afactor,Dv,lambda ! Intermediate computations for growth rate |
---|
| 46 | REAL Rk,Rd |
---|
[626] | 47 | |
---|
| 48 | |
---|
[38] | 49 | |
---|
| 50 | c----------------------------------------------------------------------- |
---|
| 51 | c Ice particle growth rate by diffusion/impegement of water molecules |
---|
| 52 | c r.dr/dt = (S-Seq) / (Seq*Rk+Rd) |
---|
| 53 | c with r the crystal radius, Rk and Rd the resistances due to |
---|
| 54 | c latent heat release and to vapor diffusion respectively |
---|
| 55 | c----------------------------------------------------------------------- |
---|
| 56 | |
---|
| 57 | c - Equilibrium saturation accounting for KeLvin Effect |
---|
[358] | 58 | c seq=exp(2*sigh2o*mh2o/(rho_ice*rgp*t*r)) |
---|
| 59 | c (already computed in improvedcloud.F) |
---|
[38] | 60 | |
---|
| 61 | c - Thermal conductibility of CO2 |
---|
[358] | 62 | k = (0.17913 * temp - 13.9789) * 4.184e-4 |
---|
[38] | 63 | c - Latent heat of h2o (J.kg-1) |
---|
[530] | 64 | Lv = (2834.3 |
---|
| 65 | & - 0.28 * (temp-To) |
---|
| 66 | & - 0.004 * (temp-To) * (temp-To) ) * 1.e+3 |
---|
[38] | 67 | |
---|
| 68 | c - Constant to compute gas mean free path |
---|
| 69 | c l= (T/P)*a, with a = ( 0.707*8.31/(4*pi*molrad**2 * avogadro)) |
---|
[530] | 70 | afactor = 0.707*rgp/(4 * pi * molco2 * molco2 * nav) |
---|
[38] | 71 | |
---|
| 72 | c - Compute Dv, water vapor diffusion coefficient |
---|
| 73 | c accounting for both kinetic and continuum regime of diffusion, |
---|
| 74 | c the nature of which depending on the Knudsen number. |
---|
| 75 | |
---|
[358] | 76 | Dv = 1./3. * sqrt( 8*kbz*temp/(pi*mh2o/nav) )* kbz * temp / |
---|
[530] | 77 | & ( pi * pmid * (molco2+molh2o)*(molco2+molh2o) |
---|
| 78 | & * sqrt(1.+mh2o/mco2) ) |
---|
[626] | 79 | |
---|
[358] | 80 | knudsen = temp / pmid * afactor / rcrystal |
---|
[38] | 81 | lambda = (1.333+0.71/knudsen) / (1.+1./knudsen) |
---|
[626] | 82 | |
---|
| 83 | c Dv is not corrected. Instead, we use below coefficients coeff1, coeff2 |
---|
| 84 | c Dv = Dv / (1. + lambda * knudsen) |
---|
[38] | 85 | |
---|
| 86 | c - Compute Rk |
---|
[633] | 87 | Rk = Lv*Lv* rho_ice * mh2o / (k*rgp*temp*temp) |
---|
[38] | 88 | c - Compute Rd |
---|
[358] | 89 | Rd = rgp * temp *rho_ice / (Dv*psat*mh2o) |
---|
[626] | 90 | |
---|
| 91 | |
---|
[633] | 92 | res = Rk + Rd*(1. + lambda * knudsen) |
---|
[626] | 93 | |
---|
[633] | 94 | !coeff1 = real(Rk + Rd*(1. + lambda * knudsen)) |
---|
| 95 | !coeff2 = real(Rk + Rd*(1. - lambda * knudsen)) |
---|
| 96 | |
---|
[626] | 97 | c Below are growth rate used for other schemes |
---|
[358] | 98 | c - Compute growth=rdr/dt, then r(t+1)= sqrt(r(t)**2.+2.*growth*dt) |
---|
[626] | 99 | c growth = 1. / (seq*Rk+Rd) |
---|
| 100 | c growth = (ph2o/psat-seq) / (seq*Rk+Rd) |
---|
[358] | 101 | c rf = sqrt( max( r**2.+2.*growth*timestep , 0. ) ) |
---|
[38] | 102 | c dr = rf-r |
---|
| 103 | |
---|
| 104 | RETURN |
---|
| 105 | END |
---|
| 106 | |
---|