aquifer: aquifer

Description Usage Arguments Value Author(s) See Also Examples

View source: R/aquifer_utilities.R

Description

Function to create an aquifer object

Usage

1
aquifer(name, solution, type, xlim, ylim, nx, ny, hydraulic.pars)

Arguments

name

Name of the aquifer

solution

Analytical solution to be used

type

Type of aquifer to be defined. Currently the supported types include:

  • Infinite

  • semi-infinite: with no-flow or constant head boundaries

  • strip: with no-flow or constant head boundaries or a combination of both

  • wedge

  • U-shaped

  • rectangular

  • circular

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

Value

This function returns an aquifer object

Author(s)

Oscar Garcia-Cabrejo, khaors@gmail.com

See Also

Other aquifer functions: add.well<-, calculate_drawdown, print.aquifer, summary.aquifer

Examples

1
2
3
4
5
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) 

khaors/pumpingtest documentation built on Nov. 15, 2019, 8:10 p.m.