Replies: 2 comments 2 replies
-
Hey @porterma, have you seen this notebook? It should give you the syntax you want. https://github.com/modflowpy/flopy/blob/develop/examples/Notebooks/flopy3_mf6_obs_ts_tas.ipynb Information is also here: https://flopy.readthedocs.io/en/3.3.5/_notebooks/tutorial02_mf6_data.html |
Beta Was this translation helpful? Give feedback.
-
I thought I looked through that example, but apparently not close enough. Thanks for pointing me in the right direction. So it appears the observations argument is looking for a dictionary to create the observation input file. In my case where I already created the observation input file, is there a way to have flopy just point to it? I feel like in the past I was able to just point to an observation input file when creating a package in flopy. Thanks! |
Beta Was this translation helpful? Give feedback.
-
I am seeing some odd behavior when I try to set up observations in the uzf package using flopy 3.3.5.
Here is my code for the uzf package:
When I run
sim.write_simulation()
the mf.uzf package is created with the following options:Note that the OBS6 FILEIN is mf.uzf.obs not mf_uzf.obs as specified in the code.
Additionally, flopy creates a mf.uzf.obs file that looks like this:
The expected behavior for the code block above is to produce a mf.uzf file with the following options:
So that the modflow simulation reads my previously made mf_uzf.obs file that looks like this:
I tried tracking the issue down in mfgwfuzf.py, but didn't make much progress.
Thoughts?
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions