Reference
PML.PMLV2
— FunctionPMLV2 (Penman–Monteith–Leuning Version 2) Evapotranspiration model
Arguments
Prcp
: mm/dTavg
: degCRs
: W m-2Rn
: W m-2VPD
: W m-2U2
: m/sLAI
: m2 m-2Pa
: kPaCa
: ppm, default380
Ω
: clamping index, default is1.0
Examples
References
- Gan Rong, 2018, Ecohydrology
- Zhang Yongqiang, 2019, RSE
- Kong Dongdong, 2019, ISPRS
PMLV2(Prcp, Tavg, Rs, Rn, VPD, U2, LAI, Pa, Ca; par=param0, frame=3)
Notes
一个站点的计算。注意,不同植被类型,参数不同。
Arguments
frame
: in 8-days
Arguments
kw
: named keyword argumentsr
:interm_PML
PML.cal_Ei_Dijk2021
— Functioncal_Ei_Dijk2021(Prcp::T, LAI::T, par::Param_PMLV2) where {T<:Real}
References
- van Dijk, A.I.J.M, 2001, Eq2.
PML.photosynthesis
— Functionphotosynthesis(Tavg::T, Rs::T, VPD::T, LAI::T, Ca=380.0; par)
Example
# GPP, Gc_w = photosynthesis(Tavg, Rs, VPD, LAI, Ca; par)
PML.aerodynamic_conductance
— Functionaerodynamic_conductance(U2, hc)
Arguments
U2
: wind speed at 2mhc
: canopy height
Return
Ga
: aerodynamic conductance in m/s
PML.ModelCalib
— FunctionModelCalib(df::AbstractDataFrame, par0::AbstractETParam;
IGBPcode=nothing, maxn=2500, of_gof=:NSE, kw...)
PML.Param_PMLV2
— Typestruct Param_PMLV2{FT<:AbstractFloat} <: AbstractETParam{FT}
Fields
α::Real
: initial slope of the light response curve to assimilation rate, (i.e., quantum efficiency;μmol CO2 [μmol PAR]⁻¹
)` Default: 0.06η::Real
: initial slope of the CO2 response curve to assimilation rate, (i.e., carboxylation efficiency;μmol m⁻² s⁻¹ [μmol m⁻² s⁻¹]⁻¹
) Default: 0.04g1::Real
: stomatal conductance coefficient Default: 10.0Am_25::Real
: carbon saturated rate of photosynthesis at 25 °C,μmol m⁻² s⁻¹
Default: 50.0VPDmin::Real
: parameter to constraingc
, kPa Default: 0.9VPDmax::Real
: parameter to constraingc
, kPa Default: 4.0D0::Real
: 水汽压参数 Default: 0.7kQ::Real
: extinction coefficients for visible radiation Default: 0.45kA::Real
: extinction coefficients for available energy Default: 0.7S_sls::Real
: Specific leaf storage, van Dijk, A.I.J.M, 2001, Eq2 Default: 0.1fER0::Real
: Canopy cover fraction related parameter Default: 0.1hc::Real
: canopy height,[m]
Default: 1.0d_pc::Real
: photoperiod constraint Default: 2.0_hc::Vector{FT} where FT<:Real
: Default: [1.0, 1.0, 1.0]_η::Vector{FT} where FT<:Real
: Default: [0.04, 0.04, 0.04]_α::Vector{FT} where FT<:Real
: Default: [0.06, 0.06, 0.06]_g1::Vector{FT} where FT<:Real
: Default: [10.0, 10.0, 10.0]_Am_25::Vector{FT} where FT<:Real
: Default: [50.0, 50.0, 50.0]