MV | R Documentation |
Evaluates Mualem van Genuchten model describing the soil moisture retention and hydraulic conductivity curve as a function of the suction head h (L) or the water content theta (L^3 L^-3)
MV(par, h = NULL, theta = NULL)
par |
vector of parameters of the (Mualem-)van Genuchten model: |
h |
vector of suction heads at which the model is to be evaluated. If NULL, |
theta |
vector of water content at which the model is to be evaluated. If NULL, |
The van Genuchten model is defined as:
Se = (theta - thr)/(ths - thr) = (alp * h^n)^(-m)
Provided that m=1-1/n, it can be coupled with the Mualem model as:
K = K0 * (Se)^L * (1-(1-Se^(1/m))^m)^2
A data frame with length(h)
rows with columns:
h |
provided as arguments or calculated as a function of |
theta |
provided as argument or calculated as a function of |
Se |
relative saturation |
K |
soil hydraulic conductivity (LT^(-1) |
The pedotransfer functions in this package use the following units:
Length: | centimeter |
Time: | day |
Mass: | gram |
M. Weynants
Van Genuchten, M. T. (1980). A closed-form equation for predicting the hydraulic conductivity of unsaturated soils. Soil Science Society of America Journal, 44, 89-98.
predict.ptf
mvg <- MV(par=c(0.02,0.45,0.02,3.5,1-1/3.5,150,0.5),h=10^(seq(0,5,by=0.1))) par(mfrow=c(2,1)) plot(theta ~ h, data = mvg, log = "x") plot(K ~ h, data = mvg, log = "xy")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.