4.4. Potential EvapotranspirationΒΆ
Potential evapotranspiration represents the atmospheric demand for water vapour
in the absence of supply limitation. ADELM evaluates it separately for five
pathways: soil surface evaporation (potential_surface_evaporation), ground
snow sublimation (potential_snow_sublimation), wet-canopy evaporation
(potential_canopy_evaporation), canopy sublimation
(potential_canopy_sublimation), and transpiration (potential_transpiration).
The hydrology module then constrains each flux by available water storage.
Coupling to other components
Shortwave Radiation and Longwave Radiation provide
soil_net_swrad_Wm2,canopy_net_swrad_Wm2,soil_net_lwrad_Wm2, andcanopy_net_lwrad_Wm2.Atmospheric Thermodynamics provides
air_density,air_molar_density,latent_heat_of_vaporization,psychrometric_constant, andsaturation_vapour_pressure_slope.Soil Surface State provides
soil_surface_conductanceandsoil_to_air_vapour_pressure_gradient.Aerodynamic Exchange provides
soil_aerodynamic_conductance,above_canopy_aerodynamic_conductance,leaf_boundary_layer_conductance, andcanopy_aerodynamic_conductance.Stomatal Conductance provides
canopy_stomatal_conductance.Snow Hydrology uses
potential_snow_sublimation.Canopy Hydrology uses
potential_canopy_evaporationandpotential_canopy_sublimation.Soil Hydrology uses
potential_transpiration.
1. Potential surface evaporation and sublimationΒΆ
See also
model.processes.evapotranspiration.calculate_potential_surface_evaporation()
model.processes.evapotranspiration.calculate_potential_snow_sublimation()
Potential surface evaporation potential_surface_evaporation follows the Penman-Monteith form:
The soil net radiation \(R^{\mathrm{n}}_{\mathrm{g}}\)
(soil_net_radiation_Wm2) is
Symbol |
ADELM variables |
|---|---|
\(R^{\mathrm{n}}_{\mathrm{lw},\mathrm{g}}\) |
|
\(R^{\mathrm{n}}_{\mathrm{sw},\mathrm{g}}\) |
|
\(s\) |
|
\(\rho_{\mathrm{a}}\) |
|
\(c_p\) |
|
\(\Delta e_{\mathrm{soil}}\) |
|
\(r_{\mathrm{a,soil}}\) |
|
\(r_{\mathrm{ss}}\) |
|
\(\lambda_{\mathrm{v}}\) |
|
\(\gamma\) |
|
Potential ground snow sublimation potential_snow_sublimation uses a separate
Penman-Monteith formulation for an ice surface, with ice-phase thermodynamic
quantities replacing the liquid-water equivalents:
where \(s_{\mathrm{ice}}\) is the slope of the saturation vapour pressure curve
over ice, \(\Delta e_{\mathrm{ice}} = \max(e_{\mathrm{sat,ice}}(T_{\mathrm{a}}) - e_{\mathrm{a}},\,0)\)
is the ice-surface vapour pressure deficit, \(\gamma_{\mathrm{s}} = \gamma\,\lambda_{\mathrm{v}}/\lambda_{\mathrm{s}}\)
is the psychrometric constant for the sublimation pathway, and
\(\lambda_{\mathrm{s}}\) is latent_heat_of_sublimation.
2. Potential wet-canopy evaporation and sublimationΒΆ
See also
model.processes.evapotranspiration.calculate_potential_canopy_liquid_evaporation()
model.processes.evapotranspiration.calculate_potential_canopy_sublimation()
Potential wet-canopy evaporation demand
potential_canopy_liquid_evaporation is
where \(r_{\mathrm{a}} = 1/g_{\mathrm{a,above}}\) is the above-canopy aerodynamic resistance and \(r_{\mathrm{b}} = 1/g_{\mathrm{b}}\) is the leaf boundary layer resistance. In ADELM, the aerodynamic numerator uses the above-canopy path, and the denominator includes the extra leaf boundary layer resistance.
The canopy net radiation \(R^{\mathrm{n}}_{\mathrm{v}}\)
(canopy_net_radiation_Wm2) is
Symbol |
ADELM variables |
|---|---|
\(R^{\mathrm{n}}_{\mathrm{lw},\mathrm{v}}\) |
|
\(R^{\mathrm{n}}_{\mathrm{sw},\mathrm{v}}\) |
|
\(\rho_{\mathrm{a}}\) |
|
\(c_p\) |
|
\(\mathrm{VPD}\) |
|
\(g_{\mathrm{a,above}}\) |
|
\(g_{\mathrm{b}}\) |
|
Potential canopy sublimation potential_canopy_sublimation is then
where \(\lambda_{\mathrm{s}}\) is latent_heat_of_sublimation. Because
\(\lambda_{\mathrm{s}} > \lambda_{\mathrm{v}}\), the sublimation demand is smaller than the
corresponding wet-canopy evaporation demand.
3. Potential transpirationΒΆ
See also
model.processes.evapotranspiration.calculate_potential_transpiration()
Potential transpiration potential_canopy_transpiration follows the Penman-Monteith form with explicit
stomatal resistance:
Canopy stomatal conductance \(g_{\mathrm{s,can}}\)
(canopy_stomatal_conductance) is converted from millimolar
conductance by
where \(g_{\mathrm{mmol}} = 10^3 \times\)
air_molar_density.
The corresponding stomatal resistance is \(r_{\mathrm{c}} = 1 / g_{\mathrm{s,can}}\), while \(r_{\mathrm{a}} = 1 / g_{\mathrm{a,above}}\) and \(r_{\mathrm{b}} = 1 / g_{\mathrm{b}}\) are the same above-canopy and leaf boundary layer resistances used in the wet-canopy calculation.