DISV equivalent for fp.mf6.utils.get_structured_faceflows #1714
Unanswered
byronamerson
asked this question in
Q&A
Replies: 1 comment 4 replies
-
Hi @byronamerson, it's true that you can use the ia and ja arrays from the binary grid file to help process the flows for a DISV model. The following excerpt is from the MODFLOW 6 input and output guide. It shows some pseudocode for looping through the flows for individual cells. Hopefully this will give you a possible path forward. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi All,
I'd like to calculate flow across a subset of the cell faces in my model using the FLOW-JA-FACE variable in the cbc file. My model consists of a DISV grid so the
get_structured_faceflows
method will not work.Is there an alternative?
For instance, I can pull the FLOW-JA-FACE values:
And pull the values for the last stress period:
What is the structure of this data?
Is it flow from the flow the bottom, front, and right for each cell? So, for each stress period, total number of flow values = 3 * number of cells?
How can I extract the values for a particular cellid?
It seems there may be a path forward with
MfGrdFile
method:Just not quite sure how to put it together.
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions