SSomuto | R Documentation |
This is a four- parameter function to determine water retention hydraulic parameters contained in a bimodal pore-size distribution developed by Omuto. The parameters are for the first and second compartments
SSomuto(input, Ths1, alp1, Ths2, alp2)
input |
Suction potential/head as contained in the x-column of the xy water retention table or data |
Ths1 |
This is saturated moisture content in the first compartment of a bimodal pore-size distribution water retention characteristics |
alp1 |
This is the inverse of air-entry potential in the first compartment of a bimodal pore-size distribution water retention characteristics |
Ths2 |
This is saturated moisture content in the second compartment of a bimodal pore-size distribution water retention characteristics |
alp2 |
This is the inverse of air-entry potential in the second compartment of a bimodal pore-size distribution water retention characteristics |
Omuto model is a self-starting biexponential model for nonlinear curve fitting model to water retention data. If warnings are given during the estimation process, try to increase the iteration limit using control function. Sometimes the warnings can be suppressed using (warn=-1)/ignored since they do not terminate the process
A list of objects returned by standard R regression functions such as nls and lm
This function can also be used to fit water retention characteristics for a grouped dataset as well as with mixed-effects modelling
Christian Thine Omuto
Omuto CT. 2009. Biexponential model for water retention characteristics. Geoderma 149:235-242
SSvgm
, SSgard
data(isric)
isric1 <- isric[1:32,]
library(nlme)
omuto <- nlsList(y ~ SSomuto(x,ths1,alp1,ths2,alp2) | Sample, isric1)
omuto.nlme <- nlme(omuto)## for fitting mixed-effects models
summary(omuto.nlme)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.