How to use Flow-Ja-Face file to draw the flow direction figure #2262
Answered
by
mwtoews
Sakura223Leslie
asked this question in
Q&A
-
The latest version of flow- ja- face dose not have the flow right/left face. How we can use flow-ja-face file to draw the flow direction figure? Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
mwtoews
Jul 10, 2024
Replies: 1 comment
-
Take a look at mf6_cbc = gwf.output.budget()
mf6_flowja = mf6_cbc.get_data(text="FLOW-JA-FACE")[0]
mf6_frf, mf6_fff, mf6_flf = get_structured_faceflows(
mf6_flowja,
grb_file=mf6_ws / "freyberg.dis.grb",
) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
wpbonelli
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Take a look at
flopy.mf6.utils.postprocessing.get_structured_faceflows()
to get the face flows for the flow right face, flow front face, and flow lower face from the MODFLOW 6 flowja flows. You can see examples how to use it with test_postprocessing.py, e.g.: