FLO-2DSoftware / qgis-flo-2d-plugin

A plugin for pre-processing/post-processing FLO-2D models
6 stars 7 forks source link

Tailings IC #1400

Open rpachaly opened 1 month ago

rpachaly commented 1 month ago

Smart code to remove the clear water/tailings reservoir

rpachaly commented 1 month ago

Change Initial water elevation to Water elevation

rpachaly commented 1 month ago

@FLO-2DKaren check this out

https://github.com/user-attachments/assets/b3f755b8-5613-4ae8-b98f-ba13aaba6082

I'm sorry for the bad audio, I was using the wrong mic.

rpachaly commented 1 month ago

On: https://github.com/FLO-2DSoftware/qgis-flo-2d-plugin/pull/1403

FLO-2DKaren commented 1 month ago

That seems good to me. I think it will be effective.

FLO-2DKaren commented 1 week ago

@rpachaly

The R lines are going to need some tweaking. I've found recently that sometimes you do need a clear water reservoir even if you are modeling a tailings breach because you are setting up a downstream reservoir.

FLO-2DKaren commented 1 week ago

I also think there could be a time when you'd use two different reservoirs. One clear and one with tailings.

rpachaly commented 1 week ago

You can do this on the two-phase. Just don't set the tailings and it works

FLO-2DNoemi commented 1 week ago

Let me make sure I understand correctly, you should set up the R lines as follow:

R 5232 1734.02 0.250 Tailings R 5232 0.00 0.250 Clear water

On Fri, Sep 6, 2024 at 9:33 AM Robson Pachaly @.***> wrote:

You can do this on the two-phase. Just don't set the tailings and it works

— Reply to this email directly, view it on GitHub https://github.com/FLO-2DSoftware/qgis-flo-2d-plugin/issues/1400#issuecomment-2334065515, or unsubscribe https://github.com/notifications/unsubscribe-auth/AE32O3V5MUOBQJ25SJITBKLZVGVJ7AVCNFSM6AAAAABLCVIWKSVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGMZUGA3DKNJRGU . You are receiving this because you are subscribed to this thread.Message ID: @.***>

FLO-2DNoemi commented 1 week ago

I made a mistake, I think it should be as follows:

RESCHAR = ‘R’ IRESGRID(II) RESERVOIREL(II) TAILINGSELEV(II) RESERVOIRN(II)

R 5232 1734.02 1744.02 0.250 Tailings R 5232 1734.02 0.00 0.250 Clear water

I will review the FLOPRO code to double check this is ok, and understand how the TAILINGSELEV(II)= 0 is taken into account in the two phase flow.

On Fri, Sep 6, 2024 at 9:36 AM Noemi Gonzalez @.***> wrote:

Let me make sure I understand correctly, you should set up the R lines as follow:

R 5232 1734.02 0.250 Tailings R 5232 0.00 0.250 Clear water

On Fri, Sep 6, 2024 at 9:33 AM Robson Pachaly @.***> wrote:

You can do this on the two-phase. Just don't set the tailings and it works

— Reply to this email directly, view it on GitHub https://github.com/FLO-2DSoftware/qgis-flo-2d-plugin/issues/1400#issuecomment-2334065515, or unsubscribe https://github.com/notifications/unsubscribe-auth/AE32O3V5MUOBQJ25SJITBKLZVGVJ7AVCNFSM6AAAAABLCVIWKSVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGMZUGA3DKNJRGU . You are receiving this because you are subscribed to this thread.Message ID: @.***>

FLO-2DKaren commented 1 week ago

Clear water is like this R 5232 1734.02 0.250

rpachaly commented 1 week ago

To create a water reservoir and a tailings reservoir using the two-phase:

Water -> R 20990 955.00 0.00 0.25
Tailings -> R 25835 0.00 936.00 0.25

Did a quick test here. The top reservoir is only water and the bottom reservoir is only tailings.

image

FLO-2DKaren commented 1 week ago

OK I see what you mean. I wasn't testing it with two phase. I was testing it with mudflow only.

rpachaly commented 1 week ago

I could not make it to work with only mudflow.

rpachaly commented 1 week ago

From my previous testing.

  1. ONLY INFLOW.DAT

MUD and ISED = 0 Runs fine R 26006 936.00 0.25

MUD = 1 and ISED = 0 Runs fine and prints out CVFPMAX.OUT R 26006 936.00 0.25

MUD = 0 and ISED = 1 Runs fine and prints out SEDFP.OUT R 26006 936.00 0.25

MUD = 2 and ISED =0 Runs clear water and two-phase together R 20656 980.00 0.00 0.25
R 26006 937.00 936.00 0.25

  1. ONLY TAILINGS.DAT

MUD = 1 and ISED = 0 Runs (XCONX must be set to zero) but does not show any results

MUD = 0 and ISED = 1 Runs but does not show any results

  1. ONLY TAILINGS_CV.DAT

MUD = 1 and ISED = 0 Runs fine but XCONC must be set to zero

MUD = 0 and ISED = 1 Does not run -> ERROR: FOR DRY STACK TAILINGS DAM FAILURE. THE SWITCH "MUD" HAS TO BE 1 (ONE) IN CONT.DAT. 2-PHASE FLOW IS NOT AVAILABLE FOR DRY TAILINGS WITH NO WATER SURFACE. ONLY MUDFLOW IS SIMULATED

  1. ONLY TAILINGS_STACK_DEPTH.DAT

MUD = 2 and ISED = 0 Runs fine

  1. COMBINATION OF INFLOW AND TAILINGS files

I could not run any combination of INFLOW and TAILINGS files, is this correct?