Update grid_def and porosity variables in Initialization.md

Max Lübke 2024-03-28 12:15:04 +01:00
parent 8630e04043
commit 23d93f91cc

@ -29,10 +29,10 @@ Grid <- list(
#OR
pqc_db_string = character(), # Phreeqc database file as string
#---#
grid_def = matrix(), # Definition of the grid, containing IDs according to the Phreeqc input script
grid_size = numeric(), # Size of the grid in meters
constant_cells = numeric(), # IDs of cells with constant concentration
porosity = numeric(nrow * ncol) | numeric(1), # Porosity of the grid
grid_def = matrix(), # Definition of the grid, containing IDs according to the Phreeqc input script
grid_size = numeric(), # Size of the grid in meters
constant_cells = numeric(), # IDs of cells with constant concentration (PLACEHOLDER)
porosity = numeric(nrow * ncol) | numeric(1), # Porosity of the grid (PLACEHOLDER)
)
```
@ -66,7 +66,7 @@ Diffusion <- list(
# or by defining a single value, which acts as a homogeneous diffusion coefficient for all species and cells
alpha_x = numeric(1),
# ----
alpha_y = alpha_x # See documentation for alphax
alpha_y = alpha_x # See annotations for alphax
)
```