Hi,
Is there a quick command to plot the inactive cells of a MODFLOW-USG unstructured grid in a plan view figure?
I was looking at this notebook but seems that the plot_inactive() method used for MF-6 does not work with USG unstructured grids.
I am doing this, after I create my UnstructuredGrid Object (ug)
mview = flopy.plot.PlotMapView(modelgrid = ug)
mview.plot_grid(color='k', lw=0.5)
mview.plot_inactive()
It tells me :
AssertionError: Ibound/Idomain array must be provided
I've tried to get the basic package from the model with bas = model.get_package('bas') but it gives me a NoneType object.
I am a bit lost.
Javier.