get_recharge_divide_potential: Recharge divide potential function

Description Usage Arguments Details Value Examples

View source: R/anem_recharge.R

Description

Recharge divide potential function

Usage

1

Arguments

loc

Location for evaluating Vector location as c(x,y) or data.frame containing x, y columns

Aquifer

Aquifer containing containing aquifer_type,h0 and recharge (see Details)

Details

Recharge parameters must contain x0, y0, x_term, and y_term. For confined aquifers, the last two are:

For unconfined aquifers, these parameters are:

Value

Returns hydraulic head (confined aquifers) or discharge potential (unconfined aquifers) at the location(s).

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
## Not run: 
## Flow - confined aquifer
recharge_params <- list(recharge_type="D",recharge_vector=c(0,0,1,sqrt(3)),
  flow_main=1,flow_opp=2,x0=0,y0=0)
aquifer <- define_aquifer("confined",1,h0=0,z0=1,recharge=recharge_params)
get_recharge_divide_potential(c(1/2,sqrt(3)/2), aquifer)
get_recharge_divide_potential(c(-1/2,-sqrt(3)/2), aquifer)

loc <- expand.grid(x=-2:2,y=-2:2)
loc$h <- get_recharge_divide_potential(loc, aquifer)
library(ggplot2)
ggplot(loc) + geom_raster(aes(x,y,fill=h)) + scale_fill_gradient2()

recharge_params <- list(recharge_type="D",recharge_vector=c(-1,-5,0,0),
  flow_main=1,flow_opp=1,x0=0,y0=0)
aquifer <- define_aquifer("confined",1,h0=0,z0=10,recharge=recharge_params)

loc <- data.frame(x=c(0,0),y=c(5,6))
get_recharge_divide_potential(loc, aquifer)
loc <- expand.grid(x=-10:10,y=-10:10)
loc$h <- get_recharge_divide_potential(loc, aquifer)
ggplot(loc) + geom_raster(aes(x,y,fill=h)) + scale_fill_gradient2()

recharge_params <- list(recharge_type="D",recharge_vector=c(0,0,1,1),
  flow_main=1,flow_opp=1,x0=0,y0=0)
aquifer <- define_aquifer("confined",1e-1,h0=0,z0=10,recharge=recharge_params)
loc <- c(10,10)
get_recharge_divide_potential(c(-5,5), aquifer)
loc <- expand.grid(x=-10:10,y=-10:10)
loc$h <- get_recharge_divide_potential(loc, aquifer)
ggplot(loc) + geom_raster(aes(x,y,fill=h)) + scale_fill_gradient2(midpoint=0)

recharge_params <- list(recharge_type="D",recharge_vector=c(0,0,1,0),
  flow_main=1,flow_opp=1,x0=0,y0=0)
aquifer <- define_aquifer("unconfined",1e-3,h0=1e3,recharge=recharge_params)
loc <- c(0,2)
get_recharge_divide_potential(c(2,0), aquifer)
loc <- expand.grid(x=-10:10,y=-10:10)
loc$h2 <- get_recharge_divide_potential(loc, aquifer)
loc <- loc %>% dplyr::mutate(h=sqrt(h2))
ggplot(loc) + geom_raster(aes(x,y,fill=h)) + scale_fill_gradient2(midpoint=aquifer$h0)

## End(Not run)

gopalpenny/anem documentation built on Dec. 20, 2020, 5:27 a.m.