I want to load an existing mf2005 model into flopy to be able to export the model reuslts in .vtk. The model was created using model muse.
import flopy
ml = flopy.modflow.Modflow.load("C:/Users/Kristina/Desktop/kwb/Modflow/versions/WW-SPA_3_v5.nam")
I get this error message:
Traceback (most recent call last):
File "C:\Users\Kristina\PycharmProjects\flopy-tutorial\venv\load-model.py", line 3, in ww_spa = flopy.modflow.Modflow.load("C:/Users/Kristina/Desktop/kwb/Modflow/versions/WW-SPA_3_v5.nam")
File "C:\Users\Kristina\anaconda3\envs\flopy-tutorial\lib\site-packages\flopy\modflow\mf.py", line 916, in load item.package.load(
File "C:\Users\Kristina\anaconda3\envs\flopy-tutorial\lib\site-packages\flopy\modflow\mfgmg.py", line 395, in load relax = float(t[0])
IndexError: list index out of range
Can anyone help me with this? I am new to python and have trouble interpeting the message. Thanks Kris
Any