Skip to content

Commit c1d37aa

Browse files
committed
(hotfix) reran stream capture to remove >1.0 depletion results. Issue #149
1 parent eb87494 commit c1d37aa

2 files changed

Lines changed: 6225 additions & 6218 deletions

File tree

notebooks/part1_flopy/07-stream_capture_voronoi.ipynb

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -662,8 +662,15 @@
662662
" cax.set_aspect('equal')\n",
663663
" cax.set_title(f'Gage{gage_num+1} layer {lay_num}')\n",
664664
" plt.colorbar(cb, ax=cax)\n",
665+
" for mnax_idx in [484,487,488]:\n",
666+
" max_x = cells.loc[cells.icell2d == max_idx, 'xc'].values[0]\n",
667+
" max_y = cells.loc[cells.icell2d == max_idx, 'yc'].values[0]\n",
668+
" # Mark the max depletion cell with a red 'X'\n",
669+
" cax.scatter(max_x, max_y, color='red', marker='o', s=100, label='Max Depletion')\n",
670+
"\n",
665671
" cax.axis('off')\n",
666-
" ax_num += 1"
672+
" ax_num += 1\n",
673+
" "
667674
]
668675
},
669676
{
@@ -699,7 +706,7 @@
699706
"name": "python",
700707
"nbconvert_exporter": "python",
701708
"pygments_lexer": "ipython3",
702-
"version": "3.11.7"
709+
"version": "3.11.12"
703710
}
704711
},
705712
"nbformat": 4,

0 commit comments

Comments
 (0)