Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
wpbonelli committed Jan 18, 2025
1 parent c3a5be7 commit 4eace5d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion autotest/test_prt_exg.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,12 @@ def build_mf6_sim(idx, test):
(FlopyReadmeCase.nlay, FlopyReadmeCase.nrow, FlopyReadmeCase.ncol)
)
if "idm" in name:
# add an inactive cell to
# tracking model idomain
idomain[-1, -1, -1] = 0
if "idmn" in name:
# TODO alter flow model's idomain
# add a (different) inactive
# cell to flow model idomain
gwf_idomain = idomain.copy()
gwf_idomain[-1, -1, -1] = 1
gwf_idomain[0, 0, 0] = 0
Expand Down

0 comments on commit 4eace5d

Please sign in to comment.