Skip to content

Commit

Permalink
fix(flopy3_MT3DMS_examples.ipynb): wrong indices were indexed (#815)
Browse files Browse the repository at this point in the history
4th plot of p10 was showing concentration @ 750 days for layer 4, not concentration @ 1,000 days for layer 3 as labels indicated
  • Loading branch information
emorway-usgs committed Feb 20, 2020
1 parent 3618278 commit 65e8ada
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/Notebooks/flopy3_MT3DMS_examples.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -2219,7 +2219,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.5.3"
"version": "3.7.3"
}
},
"nbformat": 4,
Expand Down

0 comments on commit 65e8ada

Please sign in to comment.