Skip to content

Commit

Permalink
fix(mflistfile): parse immobile components from mt3d listfile (#644)
Browse files Browse the repository at this point in the history
* happened upon etvr not evtr in evt package

* supporting mtlist parsing with immobile domain

* test for immobile catch

* clean up test list file
  • Loading branch information
briochh authored and langevin-usgs committed Sep 15, 2019
1 parent c7bb2c2 commit 2434d2d
Show file tree
Hide file tree
Showing 3 changed files with 1,677 additions and 1 deletion.
4 changes: 4 additions & 0 deletions autotest/t055_test_mt3d_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ def test_mtlist():
mt = flopy.utils.MtListBudget(os.path.join(mt_dir, "mcomp.list"))
df_gw, df_sw = mt.parse(forgive=False, start_datetime="1-1-1970")

mt_dir = os.path.join("..", "examples", "data", "mt3d_test")
mt = flopy.utils.MtListBudget(os.path.join(mt_dir, "mt3d_imm_sor.list"))
df_gw, df_sw = mt.parse(forgive=False, start_datetime="1-1-1970")

with warnings.catch_warnings(record=True) as w:
warnings.simplefilter("always")

Expand Down
Loading

0 comments on commit 2434d2d

Please sign in to comment.