ptfkit.li2007¶
import ptfkit.li2007;
Exported namespace: ptfkit::li2007
Li et al. (2007), Fengqiu County, North China Plain, China.
Source¶
Li, Y., Chen, D., White, R. E., Zhu, A., & Zhang, J. (2007). Estimating soil hydraulic properties of Fengqiu County soils in the North China Plain using pedo-transfer functions. Geoderma, 138(3-4), 261-271.
DOI: 10.1016/j.geoderma.2006.11.018
Scope¶
Territory: Fengqiu County soils in the North China Plain, China
Dataset: 63 soil water retention curves and 36 saturated soil hydraulic conductivity samples from seven soil profiles.
Li2007PTFResult¶
struct Li2007PTFResult {
double theta_s;
double a_vg;
double n_vg;
double k_sat;
};
| Field | Description |
|---|---|
theta_s | Saturated water content. (cm^3/cm^3) |
a_vg | Van Genuchten alpha parameter, inversely related to air-entry suction. (cm^-1) |
n_vg | Van Genuchten n parameter that characterizes pore-size distribution. (dimensionless) |
k_sat | Saturated hydraulic conductivity. (m/s) |
Functions¶
calc_ptf_li2007¶
Estimate van Genuchten parameters and saturated hydraulic conductivity for Fengqiu County soils.
[[nodiscard]]
inline Li2007PTFResult calc_ptf_li2007(double sand, double silt, double clay, double bulk_density, double soil_organic_matter)
Parameters¶
| Name | Description |
|---|---|
sand | Sand content, 0.02-2 mm. (%) |
silt | Silt content, 0.02-0.002 mm. (%) |
clay | Clay content, <0.002 mm. (%) |
bulk_density | Bulk density. (g/cm^3) |
soil_organic_matter | Soil organic matter. (%) |
Returns¶
A Li2007PTFResult value.
Warning
The formulas use natural logarithms of selected inputs.