soilwater4 {soilphysics} | R Documentation |
Soil Water Retention, based on Power Models
Description
Function to calculate the soil water content based on the following formulas:
\theta = \exp(a + b*Bd) \psi^c
(Silva et al., 1994)
\theta = a \psi^c
(Ross et al., 1991)
where \theta
is the soil water content.
Usage
soilwater4(psi, Bd, a, b, c, model = c("Silva", "Ross"))
Arguments
psi |
a numeric vector containing values of water potential (Psi). |
Bd |
a numeric vector containing values of dry bulk density. |
a |
a model-fitting parameter. See details. |
b |
a model-fitting parameter. See details. |
c |
a model-fitting parameter. See details. |
model |
a character; the model to be used for calculating the soil water content. It must be one of the
two: |
Details
The parameters "a" and "c" have the same meaning in both models, but be aware that the parameter "a" of the model employed by Silva et al. (1994) is parameter "a" of the Ross et al. (1991) in a log10 scale.
Value
The the soil water content.
Author(s)
Anderson Rodrigo da Silva <anderson.agro@hotmail.com>
References
Ross et al. (1991). Equation for extending water-retention curves to dryness. Soil Science Society of America Journal, 55:923-927.
Silva et al. (1994). Characterization of the least limiting water range of soils. Soil Science Society of America Journal, 58:1775-1781.
See Also
fitsoilwater4
, soilwater
, soilwater2
, soilwater3
Examples
# End (not run)