shypFun.01210 {spsh} | R Documentation |
van Genuchten-Mualem bimodal Soil Hydraulic Propterty Model
Description
bimodal van Genuchten-Mualem functions (Durner model) for the retention and hydraulic conductivity curves (Durner 1994).
Usage
shypFun.01210(p, h)
Arguments
p |
vector of the 9 van Genuchten-Mualem model parameters, order is sensitve and has to be given as:
| ||||||||||||||||||
h |
pressure heads [cm] for which the corresponding retention and conductivity values are calculated. |
Details
The function solves analytically the spec. water capacity function and integral to the capillary bundle model.
Value
returns a list
with calculations at specified h
:
theta |
calculated volumetric moisture content |
Se |
calculated saturation |
cap |
specific water capacity function |
psd |
pore size distribution |
Kh |
Hydraulic conductivity values |
Author(s)
Tobias KD Weber , tobias.weber@uni-hohenheim.de
References
Durner W (1994). “Hydraulic conductivity estimation for soils with heterogeneous pore structure.” Water Resources Research, 30(2), 211–223. ISSN 0043-1397.
Examples
p <- c("thr" = 0.1, "ths" = 0.4, alf1 = 0.5, "n1" = 3,
"w1" = .6, "alf2" = 0.01, "n2" = 1.6,
"Ks" = 100, "tau" = .5)
h <- 10^seq(-2, 6.8, length = 197)
shyp.L <- shypFun.01210(p, h)