ptfkit.clapp1978¶
import ptfkit.clapp1978;
Exported namespace: ptfkit::clapp1978
Clapp and Hornberger (1978) representative soil hydraulic parameters by texture.
Source¶
Clapp, R. B., & Hornberger, G. M. (1978). Empirical equations for some soil hydraulic properties. Water Resources Research.
Scope¶
Territory: United States
Dataset: Desorption data reported by Holtan et al. (1968) for soils collected at 34 United States localities; 1,446 soils remained from an initial set of more than 1,800 after the exclusions described by the paper.
UsdaTextureClass¶
enum class UsdaTextureClass {
Sand,
LoamySand,
SandyLoam,
SiltLoam,
Loam,
SandyClayLoam,
SiltyClayLoam,
ClayLoam,
SandyClay,
SiltyClay,
Clay,
};
| Member | Canonical value | Description |
|---|---|---|
Sand | sand | USDA sand soil textural class. |
LoamySand | loamy sand | USDA loamy sand soil textural class. |
SandyLoam | sandy loam | USDA sandy loam soil textural class. |
SiltLoam | silt loam | USDA silt loam soil textural class. |
Loam | loam | USDA loam soil textural class. |
SandyClayLoam | sandy clay loam | USDA sandy clay loam soil textural class. |
SiltyClayLoam | silty clay loam | USDA silty clay loam soil textural class. |
ClayLoam | clay loam | USDA clay loam soil textural class. |
SandyClay | sandy clay | USDA sandy clay soil textural class. |
SiltyClay | silty clay | USDA silty clay soil textural class. |
Clay | clay | USDA clay soil textural class. |
Clapp1978Parameters¶
struct Clapp1978Parameters {
double b;
double saturation_suction;
double wetting_front_suction;
double saturated_water_content;
double saturated_hydraulic_conductivity;
double sorptivity;
};
| Field | Description |
|---|---|
b | Mean exponent of the moisture-characteristic power curve. (1) |
saturation_suction | Representative saturation suction, calculated as the antilog of the mean logarithm of fitted saturation-suction values. (cm) |
wetting_front_suction | Representative Green-Ampt wetting-front suction. (cm) |
saturated_water_content | Mean saturated volumetric water content, taken as total porosity. (1) |
saturated_hydraulic_conductivity | Mean saturated hydraulic conductivity reported by Li et al. (1976). (cm/min) |
sorptivity | Representative sorptivity for the paper's single initial moisture deficit corresponding to 500-cm initial suction. (cm/min^(1/2)) |
Functions¶
calc_ptf_clapp1978¶
Return representative soil hydraulic parameters for a USDA texture class.
[[nodiscard]]
inline Clapp1978Parameters calc_ptf_clapp1978(UsdaTextureClass soil_texture)
Parameters¶
| Name | Description |
|---|---|
soil_texture | USDA soil textural class used to select a row of Table 2. |
Returns¶
A Clapp1978Parameters value.
Note
The representative wetting-front suctions use an inflection wetness of 0.92 to model gradual air entry near saturation.
Note
The sorptivity values use the average saturated hydraulic conductivities reported by Li et al. (1976) and one initial moisture deficit at 500-cm suction.
Warning
The paper states that these unverified average values should not be used blindly because saturation suction varies substantially within texture classes.
Warning
Sorptivity values must be treated cautiously because the conductivity averages may not represent the same average soils as the other parameters.