Description Usage Arguments Value References Examples
View source: R/get_extended_budget.R
Get the flow rate across cell faces including potential stresses applied along boundaries at a given time. Only implemented for "classical" MODFLOW versions where the budget is recorded as FLOW RIGHT FACE, FLOW FRONT FACE and FLOW LOWER FACE arrays.
1 | get_extended_budget(cbcfile, ...)
|
cbcfile |
Cell by cell file produced by Modflow. |
... |
additional arguments passed to flopy$utils$postprocessing$get_extended_budget for information see references below |
return sub-list for with "Qx_ext", "Qy_ext", "Qz_ext" for each budget output timestep. Flow rates across cell faces. Qx_ext is a array of size (nlay, nrow, ncol + 1). Qy_ext is a array of size (nlay, nrow + 1, ncol). The sign is such that the y axis is considered to increase in the north direction. Qz_ext is a ndarray of size (nlay + 1, nrow, ncol). The sign is such that the z axis is considered to increase in the upward direction.
https://flopy.readthedocs.io/en/latest/source/flopy.utils.postprocessing.html#flopy.utils.postprocessing.get_extended_budget
1 2 3 4 5 | ## Not run:
flopy <- import_flopy()
reticulate::py_help(object = flopy$utils$postprocessing$get_extended_budget)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.