model_ws = os.path.join("model_data")
output_folder = os.path.join('output')
ml = flopy.modflow.Modflow.load(model.nam, model_ws=model_ws, check=False)
# This creates the RIV folder and exports the River BCs to a .vtu file
river_elev_output = os.path.join(output_folder, 'RIV')
ml.riv.export(river_elev_output, fmt='vtk')
# This creates the folder HFB but does not export anything
hfb_output = os.path.join(output_folder, 'HFB')
ml.hfb6.export(hfb_output, fmt='vtk')
Hi,
I wondered if anyone could tell me if the
hfb6.exportfunction is working correctly? I can use.exporton a number of the packages without issue (e.g. DIS/BAS/RIV/UPW/GHB). It is listed as an available function of hfb6 but I can't get it to export anything. E.g.:Thanks!
Matt