Description Usage Arguments Value Examples
View source: R/mw_conc_streamlines.R
Calculate concentrations on streamlines at specified times.
1 2 3 4 5 6 7 8 9 | mw_conc_streamlines(
conc_strm_lns,
times = c(0, 1 * 365, 5 * 365, 10 * 365, 25 * 365),
processes = c("retardation"),
alpha = 0.3,
rho = 3,
labda = 1e-04,
retard = 1
)
|
conc_strm_lns |
Table (tibble) with output of function |
times |
Times at which to calculate concentrations (days) (numeric) |
processes |
Processes to include in concentration calculations. (character). Options are: "dispersion", "retardation", "decay" |
alpha |
Dispersivity (m) (numeric). |
rho |
Fraction between the time of arrival of the front and the average time of arrival (-) (numeric) |
labda |
Decay rate in exponential formula (day-1) (numeric) |
retard |
Retardation (-) (numeric) |
tibble with the following variables (columns):
SL_NR: Streamline number (integer)
TIME: Time, days (numeric)
CONC: Concentration (numeric)
1 2 3 | conc_strm_lns <- mw_example_base_streamline_conc_table()
x <- mw_conc_streamlines(conc_strm_lns, times=c(1*365,5*365,10*365,25*365), processes=c("dispersion","decay", "retardation"), alpha=0.3, rho=3, labda=0.0001, retard=1)
head(x)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.