Convection
Convection is the atmospheric process of rising motion because of positively buoyant air parcels compared to its surroundings. In hydrostatic models like the primitive equation model in SpeedyWeather.jl convection has to be parameterized as the vertical velocity is not a prognostic variable that depends on vertical stability but rather diagnosed to satisfy horizontal divergence. Convection can be shallow and non-precipitating denoting that buoyant air masses can rise but do not reach saturation until they reach a level of zero buoyancy. But convection can also be deep denoting that saturation has been reached during ascent whereby the latent heat release from condensation provides additional energy for further ascent. Deep convection is therefore usually also precipitating as the condensed humidity forms cloud droplets that eventually fall down as convective precipitation. See also Large-scale condensation in comparison.
Convection implementations
Currently implemented are
using SpeedyWeather
subtypes(SpeedyWeather.AbstractConvection)3-element Vector{Any}:
BettsMillerConvection
BettsMillerDryConvection
ConvectiveHeatingwhich are described in the following.
Simplified Betts-Miller convection
We follow the simplification of the Betts-Miller convection scheme [^Betts1986][^BettsMiller1986] as studied by Frierson, 2007 [^Frierson2007]. The central idea of this scheme is to represent the effect of convection as an adjustment towards a (pseudo-) moist adiabat reference profile and its associated humidity profile. Meaning that conceptually for every vertical column in the atmosphere we
Diagnose the vertical temperature and humidity profile of the environment relative to the adiabat up to the level of zero buoyancy.
Decide whether convection should take place and whether it is deep (precipitating) or shallow (non-precipitating).
Relax temperature and humidity towards (corrected) profiles from 1.
Reference profiles
The dry adiabat is
The temperature
with gravity
The (absolute) temperature a lifted parcel has during ascent (following its pseudoadiabat, dry and/ or moist, until reaching the level of zero buoyancy) is then taken as the reference temperature profile
An illustration of adiabat reference line is below
First-guess relaxation
With the Reference profiles
with the second parameter of the parameterization, the time scale
Note that above the level of zero buoyancy no relaxation takes place
Convective criteria
We now distinguish three cases
Deep convection when
andShallow convection when
andNo convection for
.
Note that to evaluate these cases it is not necessary to divide by
This is illustrated in the following
Deep convection
Following Frierson, 2007 [^Frierson2007] in order to conserve enthalpy we correct the reference profile for temperature
Shallow convection
In the following we describe the "qref" scheme from Frierson, 2007 which corrects reference profiles for both temperature and humidity to guarantee that
This scheme is non-precipitating (
Inserting from above yields
The integral becomes
So this scheme is indeed non-precipitating, i.e.
Corrected relaxation
After the reference profiles have been corrected in Deep convection and Shallow convection we actually calculate tendencies from
with
Convective precipitation
The convective precipitation
In the shallow convection case
Dry convection
In the primitive equation model with humidity the Betts-Miller convection scheme as described above is defined. Without humidity, a dry version reduces to the Shallow convection case. The two different shallow convection schemes in Frierson 2007[^Frierson2007], the "shallower" shallow convection scheme and the "qref" (as implemented here in Shallow convection) in that case also reduce to the same formulation. The dry Betts-Miller convection scheme is the default in the primitive equation model without humidity.
References
[^Betts1986]: Betts, A. K., 1986: A new convective adjustment scheme. Part I: Observational and theoretical basis. Quart. J. Roy. Meteor. Soc.,112, 677-691. DOI: 10.1002/qj.49711247307
[^BettsMiller1986]: Betts, A. K. and M. J. Miller, 1986: A new convective adjustment scheme. Part II: Single column tests using GATE wave, BOMEX, ATEX and Arctic air-mass data sets. Quart. J. Roy. Meteor. Soc.,112, 693-709. DOI: 10.1002/qj.49711247308
[^Frierson2007]: Frierson, D. M. W., 2007: The Dynamics of Idealized Convection Schemes and Their Effect on the Zonally Averaged Tropical Circulation. J. Atmos. Sci., 64, 1959-1976. DOI:10.1175/JAS3935.1