Create a rmt_list object

rmt_create_list(df, kper)

Arguments

df

a data.frame like object with at least columns i, j, k, itype and one or more css columns specifying the concentrations

kper

integer value(s) specifying during which stress-periods this list is active

Value

a rmt_list object

Examples

df <- data.frame(i = 5, j = 4:5, k = 3, css1 = 6.45, css2 = 47, itype = 2) rmt_create_list(df, kper = c(1, 3))
#> RMODFLOW list with 2 features and 3 variables #> Active during stress periods: 1 3 #> i j k css1 css2 itype #> 1 5 4 3 6.45 47 2 #> 2 5 5 3 6.45 47 2