Skip to content

Commit

Permalink
docs(notebooks): fix cell center for Simple MODFLOW 6 Model (#2013)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwtoews authored Nov 22, 2023
1 parent 6e3c791 commit d0546ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .docs/Notebooks/mf6_simple_model_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
# must be entered as a tuple as the first entry.
# Remember that these must be zero-based indices!
chd_rec = []
chd_rec.append(((0, int(N / 4), int(N / 4)), h2))
chd_rec.append(((0, int(N / 2), int(N / 2)), h2))
for layer in range(0, Nlay):
for row_col in range(0, N):
chd_rec.append(((layer, row_col, 0), h1))
Expand Down

0 comments on commit d0546ce

Please sign in to comment.