diff --git a/docs/examples/00_model_from_scratch.ipynb b/docs/examples/00_model_from_scratch.ipynb index 81842350..0107e9d5 100644 --- a/docs/examples/00_model_from_scratch.ipynb +++ b/docs/examples/00_model_from_scratch.ipynb @@ -125,7 +125,9 @@ "ims = nlmod.sim.ims(sim, complexity=\"SIMPLE\")\n", "gwf = nlmod.gwf.gwf(ds, sim)\n", "dis = nlmod.gwf.dis(ds, gwf)\n", - "npf = nlmod.gwf.npf(ds, gwf)\n", + "npf = nlmod.gwf.npf(\n", + " ds, gwf, save_flows=True, save_specific_discharge=True, save_saturation=True\n", + ")\n", "ic = nlmod.gwf.ic(ds, gwf, starting_head=1.0)\n", "oc = nlmod.gwf.oc(ds, gwf, save_head=True)" ]