From 65e8adaeea55a14a3d61c125801741c5b9ceb699 Mon Sep 17 00:00:00 2001 From: Eric Morway Date: Thu, 20 Feb 2020 12:22:59 -0800 Subject: [PATCH] fix(flopy3_MT3DMS_examples.ipynb): wrong indices were indexed (#815) 4th plot of p10 was showing concentration @ 750 days for layer 4, not concentration @ 1,000 days for layer 3 as labels indicated --- examples/Notebooks/flopy3_MT3DMS_examples.ipynb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/Notebooks/flopy3_MT3DMS_examples.ipynb b/examples/Notebooks/flopy3_MT3DMS_examples.ipynb index 37dbc4a1bb..58e977d039 100644 --- a/examples/Notebooks/flopy3_MT3DMS_examples.ipynb +++ b/examples/Notebooks/flopy3_MT3DMS_examples.ipynb @@ -2077,8 +2077,8 @@ " plt.plot(sr.xcenter[j], sr.ycenter[i], 'ks')\n", "\n", "ax = fig.add_subplot(2, 2, 4, aspect='equal')\n", - "c = conctvd[1, 3]\n", - "chmoc = conchmoc[1, 3]\n", + "c = conctvd[2, 2]\n", + "chmoc = conchmoc[2, 2]\n", "mm = flopy.plot.PlotMapView(model=mf)\n", "mm.plot_grid(color='.5', alpha=0.2)\n", "cs = mm.contour_array(c, levels=np.arange(20, 200, 20))\n", @@ -2219,7 +2219,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.5.3" + "version": "3.7.3" } }, "nbformat": 4,