Analytical calculation of groundwater flow in a single aquifer under circular shaped polders.
Based on the publication "Berekening van de stationaire grondwaterstroming van hogere naar lagere (ronde) gebieden". C.H. van Immerzeel, Internationale Agrarische Hogeschool Larenstein Velp (1990).
You can install the released version of menyanthes from with:
install_github("KeesVanImmerzeel/rondo")
Then load the package with:
library("rondo")
rd_init()
: Initialise a list (y) with parameters used for the calculations of the groundwater heads and fluxes.rd_phi()
: Calculate the head at radius x.rd_q()
: Calculate the lateral discharge at radius x.rd_seep()
: Calculate the seepage intensity at radius x.av_seep()
: Calculate the average seepage intensity between radius r1 and r2.To get help on the functions in this package type a question mark before the function name, like ?rd_init
kD <- c(1000, 1000, 1000)
c <- c(1000, 2000, 3000)
r <- c(1000, 2000)
h <- c(10, 9, 8)
y <- rd_init(kD, c, r, h)
x <- seq(0, 3000, by = 100)
plot(x, rd_phi(x,y))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.