Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions flopy/mf6/utils/postprocessing.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import numpy as np
from .binarygrid_util import MfGrdFile
from flopy.mf6.utils.binarygrid_util import MfGrdFile
Comment thread
askar-INTERA marked this conversation as resolved.


def get_structured_faceflows(
Expand Down Expand Up @@ -60,7 +60,7 @@ def get_structured_faceflows(
shape = (grb.nlay, grb.nrow, grb.ncol)
frf = np.zeros(shape, dtype=float).flatten()
fff = np.zeros(shape, dtype=float).flatten()
flf = np.zeros(shape, dtype=float)
flf = np.zeros(shape, dtype=float).flatten()
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you add a test to show that this is necessary?

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

test.zip

Please run the two small testing programs, called 1)test_w_modfified_version.py and 2)test_w_nonmodfified_version.py, to see the difference in the output, thanks.


# fill flow terms
vmult = [-1.0, -1.0, -1.0]
Expand Down