Create a rmt_list object
rmt_create_list(df, kper)
df | a data.frame like object with at least columns |
---|---|
kper | integer value(s) specifying during which stress-periods this list is active |
a rmt_list
object
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