
Last chance! 50% off unlimited learning
Sale ends in
Function to calculate the soil water content based on the
van Genuchten's (1980) formula:
soilwater(x, theta_R, theta_S, alpha, n, m = 1 - 1/n,
saturation.index = FALSE)
the matric potential.
the residual water content.
the water content at saturation.
a scale parameter of the van Genuchten's formula.
a shape parameter in van Genuchten's formula.
a shape parameter in van Genuchten's Formula. Default is
logical; if FALSE (default) the outcome is the soil water content, otherwise the saturation index is returned.
The the soil water content or the saturation index (a value between 0 and 1).
Genuchten, M. T. van. (1980). A closed form equation for predicting the hydraulic conductivity of unsaturated soils. Soil Science Society of America Journal, 44:892-898.
Mualem, Y. (1976). A new model for predicting the hydraulic conductivity of unsaturated porous media. Water Resources Research, 12:513-522.
# NOT RUN {
# example 1
soilwater(x = 0.1, theta_R = 0.06, theta_S = 0.25, alpha = 21, n = 2.08)
curve(soilwater(x, theta_R = 0.06, theta_S = 0.25, alpha = 21, n = 2.08))
# example 2 (punctual predictions)
p <- seq(0, 1, length.out = 10)
m <- soilwater(x = p, theta_R = 0.06, theta_S = 0.25,
alpha = 21, n = 2.08)
points(m ~ p, type = "b", col = "red")
# End (not run)
# }
Run the code above in your browser using DataLab