I am interested in creating a MF-USG model in flopy with a quadtree grid. I have created the disu using gridgen, but now I am stuck on how to assign properties and boundaries to the model, as the all examples of unstructured grids I can find are for MF6.
This is where I am at...
m = flopy.modflow.Modflow(model_name = model_name,version = "mfusg",structured=False,model_ws=model_ws)
m.dis = g.get_disu(m,nper = 1,perlen=1000,nstp = 100,tsmult=1.2,steady = False)
Can anyone point me to an example of building a MF-USG model with properties and BCs?