flopy
flopy copied to clipboard
A Python package to create, run, and post-process MODFLOW-based models.
When the `delr` and `delc` of the original structured grid are not whole numbers, the resulting DISV grid produced by gridgen can cause convergence issues when trying to run the...
Currently the `external_path` argument to `Modflow` is assumed to be [relative to the model workspace](https://github.com/modflowpy/flopy/blob/1757470fe0dd28ed6c68c95950de877bd0b4a94b/flopy/modflow/mf.py#L159). Absolute paths are not currently supported: https://github.com/modflowpy/flopy/blob/5d0f5857d5ca5d5a92ad9207e0d8340acc214afa/autotest/test_modflow.py#L633 https://github.com/modflowpy/flopy/blob/5d0f5857d5ca5d5a92ad9207e0d8340acc214afa/autotest/test_modflow.py#L696 Are external paths understood to be relative...
I occasionally see fortran errors when running the test suite. These have occurred locally and in CI. ~~I am pretty sure Windows-only.~~ **Update**: seen on both Windows and Mac. Will...
Mac CI runners sometimes see worker crashes, e.g. `worker 'gw2' crashed...`. Seems to trace back to matplotlib's `gca()` and `gcf()`. The culprit is usually `test_binarygrid_util.py::test_mfgrddisv_modelgrid`, I'm not yet sure why....
This may be purposely designed. But I expect to see 8 vertices rather than 4 when I call this function. Is there a good reason for this? Is there another...
The `flopy3_modpath7_create_simulation.ipynb` notebook is slow, taking 10-15 minutes on CI. The bottleneck seems to be in `PathlineFile.get_destination_pathline_data()`. Calculating pathline data for the backwards case with river cell locations is slowest....
Currently `ModflowSfr2.assign_layers()` writes to `sfr_botm_conflicts.chk` in the current working directory rather than in the model workspace: https://github.com/modflowpy/flopy/blob/1757470fe0dd28ed6c68c95950de877bd0b4a94b/flopy/modflow/mfsfr2.py#L1133 The `check()` method on the same class writes to the model workspace by...
Hi y'all, I am using MODFLOW-USG (version 1.10) and it is currently not fully compatible with FloPy. Are there plans to support newer MODFLOW-USG versions in the future? I can...
Fix a bug in mt3dms * mt3d-usgs text options being written despite specifying mt3dms Fix a number of bugs in mp6: * allow modpath creation without modflow model * removing...
Hello, Following the discussion about investigating a plugin architecture for modflowapi packages I've done a little bit of research into how python plugins work and created a simple example to...