Update runtime and test scripts

This commit is contained in:
Max Luebke 2024-04-03 10:43:14 +00:00
parent 7aea66387a
commit 41b811f048
3 changed files with 5 additions and 3 deletions

View File

@ -60,6 +60,7 @@ END
## A BaCl2 solution (nr 4) is "injected" from the left boundary: ## A BaCl2 solution (nr 4) is "injected" from the left boundary:
SOLUTION 4 SOLUTION 4
units mol/kgw
pH 7 pH 7
water 1 water 1
temp 25 temp 25

View File

@ -1,4 +1,4 @@
list( list(
timesteps = c(1), timesteps = rep(50, 100),
store_result = TRUE store_result = TRUE
) )

View File

@ -11,7 +11,7 @@ grid_setup <- list(
diffusion_setup <- list( diffusion_setup <- list(
boundaries = list( boundaries = list(
"E" = list( "W" = list(
"type" = rep("constant", nrow(grid_def)), "type" = rep("constant", nrow(grid_def)),
"sol_id" = rep(4, nrow(grid_def)), "sol_id" = rep(4, nrow(grid_def)),
"cell" = seq_len(nrow(grid_def)) "cell" = seq_len(nrow(grid_def))
@ -27,5 +27,6 @@ diffusion_setup <- list(
# Define a setup list for simulation configuration # Define a setup list for simulation configuration
setup <- list( setup <- list(
Grid = grid_setup, # Parameters related to the grid structure Grid = grid_setup, # Parameters related to the grid structure
Diffusion = diffusion_setup # Parameters related to the diffusion process Diffusion = diffusion_setup, # Parameters related to the diffusion process
Chemistry = list()
) )