mirror of
https://git.gfz-potsdam.de/naaice/poet.git
synced 2025-12-16 04:48:23 +01:00
11 lines
221 B
R
11 lines
221 B
R
iterations <- 5000
|
|
|
|
dt <- 2000
|
|
|
|
list(
|
|
timesteps = rep(dt, iterations),
|
|
store_result = TRUE,
|
|
out_save = c(seq(1, 10), seq(10, 100, by= 10), seq(200, iterations, by=100))
|
|
## out_save = seq_len(iterations)
|
|
)
|