Skip to content

Commit

Permalink
Set defaults for aquifers
Browse files Browse the repository at this point in the history
Think this should be correct based on example models
  • Loading branch information
moyner committed Sep 19, 2024
1 parent 5ac9d4b commit c9c0232
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions src/InputParser/keywords/grid.jl
Original file line number Diff line number Diff line change
Expand Up @@ -381,12 +381,12 @@ end
function parse_keyword!(data, outer_data, units, cfg, f, ::Val{:AQUCON})
def_and_u = [
(1, :id), # Aquifer no
(-1, :id), # I start
(-1, :id), # I stop
(-1, :id), # J start
(-1, :id), # J stop
(-1, :id), # K start
(-1, :id), # K stop
(1, :id), # I start
(1, :id), # I stop
(1, :id), # J start
(1, :id), # J stop
(1, :id), # K start
(1, :id), # K stop
("Defaulted", :id), # Face orientation, I+, I-, ...
(1.0, :id), # Trans multiplier
(0, :id), # Type of trans calculator to use
Expand Down
12 changes: 6 additions & 6 deletions src/InputParser/keywords/solution.jl
Original file line number Diff line number Diff line change
Expand Up @@ -264,12 +264,12 @@ end
function parse_keyword!(data, outer_data, units, cfg, f, ::Val{:AQUANCON})
def_and_u = [
(1, :id), # Aquifer no
(-1, :id), # I start
(-1, :id), # I stop
(-1, :id), # J start
(-1, :id), # J stop
(-1, :id), # K start
(-1, :id), # K stop
(1, :id), # I start
(1, :id), # I stop
(1, :id), # J start
(1, :id), # J stop
(1, :id), # K start
(1, :id), # K stop
("Defaulted", :id), # Where does it connect?
(NaN, :area), # surface area to aquifer
(1.0, :id), # Magic multiplier to flow rate
Expand Down

0 comments on commit c9c0232

Please sign in to comment.