Unstructured grids with pinch outs (i.e. different number of cells per layer) don't seem plottable...
Heads are in array shape [1,1,nnodes] and no longer in layer format.
Am I asking too much to detect the upper most wet cell in each "pillar" and plot the water table? This code plots blank.
head = gwf.output.head().get_data()
mm = flopy.plot.PlotMapView(model=gwf)
mm.plot_array(head, edgecolor="0.5")
mm.plot_grid()
plt.show()

Unstructured grids with pinch outs (i.e. different number of cells per layer) don't seem plottable...
Heads are in array shape [1,1,nnodes] and no longer in layer format.
Am I asking too much to detect the upper most wet cell in each "pillar" and plot the water table? This code plots blank.
head = gwf.output.head().get_data()
mm = flopy.plot.PlotMapView(model=gwf)
mm.plot_array(head, edgecolor="0.5")
mm.plot_grid()
plt.show()