-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reservoir volume calculator #1585
Labels
Comments
For this one it would be nice to see how flopro calculates this. |
FLO-2D calculates the reservoir volume by multiplying the FP depth at each
reservoir cell times the available FP surface area, see computation below:
VINT=VINT+*FPD(JTDUMMY)*APF(JTDUMMY)*
Noemi
…On Mon, Dec 16, 2024 at 7:05 AM Robson Pachaly ***@***.***> wrote:
For this one it would be nice to see how flopro calculates this.
—
Reply to this email directly, view it on GitHub
<#1585 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AE32O3T4OLIZD2IEGZIXCED2F262JAVCNFSM6AAAAABQ4MI67SVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDKNBVGQ2TCMRUGM>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
What about the grid element that contains a levee? |
Oh yeah, it stops the count at the levee cutoff if the levee contains the flow. That's actually pretty complex code I bet. |
FLO-2D calculates the reservoir volume by multiplying the FP depth at each
reservoir cell times the available FP surface area, see computation:
VINT=VINT+*FPD(JTDUMMY)*APF(JTDUMMY)*
If the element includes a levee, the calculation remains the same when the
grid is wet, as the levee width is not considered as a loss of surface in
the grid. If the grid is dry, no volume is added to the calculation.
Whether the cell is wet or dry depends on the levee’s location and its side
connection to the reservoir.
For the tailings dam, the surface water and the water bound in the tailing
is calculated separately. If you don't have depth, the mudflow elevation
can be subtracted from the water surface elevation or the ground elevation
FPE from the surface water elevation to compute the depth.
VINT = VINT + (FPD(i) + FPD_MUD(i))*APF for the combined fluid and mud
depths in the tailings reservoir with surface water.
…On Mon, Dec 16, 2024 at 2:43 PM Robson Pachaly ***@***.***> wrote:
What about the grid element that contains a levee?
—
Reply to this email directly, view it on GitHub
<#1585 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AE32O3QWRUUEL3GSBEFHKML2F4UNBAVCNFSM6AAAAABQ4MI67SVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDKNBWGU2DMNJTGI>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Calculate. Res volume with the plug-in instead of summary.out
Wish list item. It can be moved down the road.
The text was updated successfully, but these errors were encountered: