Description Usage Arguments Value Examples
View source: R/mw_conc_filters.R
Calculate concentrations (mixed) of selected filters at times as specified in table created with mw_conc_streamlines
1 | mw_conc_filters(fltr_nrs, well_fltrs, sl_fltr_table, conc_streamlines)
|
fltr_nrs |
Well filter numbers (numeric vector). |
well_fltrs |
Data frame with wells as read from *.ipf file by the function mw_read_well_filters() |
sl_fltr_table |
Dataframe as created with the function |
conc_streamlines |
Table (tibble) as created with the function |
Dataframe with the following variables (columns):
Q: Extraction (m3/day; negative is extraction; positive is infiltration) (numeric)
TIME: Time, days (numeric)
CONC: Concentration (numeric)
1 2 3 4 5 6 7 | fname <- system.file("extdata","well_filters.ipf",package="mipwelcona")
well_fltrs <- mw_read_well_filters(fname)
sl_fltr_table <- mw_example_sl_fltr_table()
conc_streamlines <- mw_example_conc_streamlines()
sl_fltr_table <- mw_example_sl_fltr_table()
conc <- mw_conc_filters( fltr_nrs=c(1,2), well_fltrs, sl_fltr_table, conc_streamlines )
head(conc)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.