View source: R/aquifer_utilities.R
aquifer | R Documentation |
Function to create an aquifer object
aquifer(name, solution, type, xlim, ylim, nx, ny, hydraulic.pars)
name |
Name of the aquifer |
solution |
Analytical solution to be used |
type |
Type of aquifer to be defined. Currently the supported types include:
|
xlim |
Numeric vector with limits of the aquifer in the x direction |
ylim |
Numeric vector with limits of the aquifer in the y direction |
nx |
Integer with the number of nodes in the x direction |
ny |
Integer with the number of nodes in the y direction |
hydraulic.pars |
A numeric vector with the hydraulic parameters of the aquifer |
This function returns an aquifer object
Oscar Garcia-Cabrejo, khaors@gmail.com
Other aquifer functions: add.well<-
,
calculate_drawdown
,
print.aquifer
,
summary.aquifer
aq <- aquifer(name = "Fm.Macondo", solution = "theis", type = "infinite",
xlim = c(0, 10e3), ylim = c(0,10e3),
nx = 100, ny = 100,
hydraulic.pars = c(1.5e-4, 2e-5))
print(aq)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.