Skip to content

Commit a4d4591

Browse files
committed
debugging MODFLOW failure again in notebooks/part1_flopy/10a_prt_particle_tracking-demo.ipynb
1 parent a1f1bee commit a4d4591

2 files changed

Lines changed: 13 additions & 1 deletion

File tree

.github/workflows/test.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ jobs:
5454
path: ~/.local/bin
5555
github_token: ${{ secrets.GITHUB_TOKEN }}
5656
repo: modflow6
57+
cache: false
5758
- name: Modflow version
5859
shell: bash -l {0}
5960
run: mf6 --version

notebooks/part1_flopy/10a_prt_particle_tracking-demo.ipynb

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,6 +639,7 @@
639639
" perioddata={0: [\"FIRST\"]},\n",
640640
" exit_solve_tolerance=1e-5,\n",
641641
" extend_tracking=True,\n",
642+
" coordinate_check_method=None,\n",
642643
" #istopzone=istopzone\n",
643644
")"
644645
]
@@ -735,7 +736,17 @@
735736
"metadata": {},
736737
"outputs": [],
737738
"source": [
738-
"prt_sim.run_simulation()"
739+
"results = prt_sim.run_simulation(report=True)"
740+
]
741+
},
742+
{
743+
"cell_type": "code",
744+
"execution_count": null,
745+
"metadata": {},
746+
"outputs": [],
747+
"source": [
748+
"if not results[0]:\n",
749+
" raise ValueError(f\"{os.getcwd()}\\n{results[0]}\\n\\n{'\\n'.join(results[1])}\")\n"
739750
]
740751
},
741752
{

0 commit comments

Comments
 (0)