Inteprete the node flooding report

hi guys

I am a new user of SWMM 5

i am using it for my thesis on urban flooding. Can you help me explain these terms:

- ponded depth : is this the depth of surface water from the rim elevation. in my model, if a node is flooded, then this number equals to the max depth ?!?
- max surcharge : is this the max depth of water as the water reaching to the rim ?
- runoff depth: is this the surface flood depth ? from my understanding epa SWMM is 1d model and therefore cannot explicitly simulate the surface flood depth .

Is there a way to estimate the flood depth ?

Tks

You need to be a member of SWMM 5 or SWMM or EPASWMM and SWMM5 in ICM_SWMM to add comments!

Join SWMM 5 or SWMM or EPASWMM and SWMM5 in ICM_SWMM

Email me when people reply –

Replies

  • Runoff Depths for different Subcatchments should be different if the data for the Subs is different


    Note:   InfoSWMM  or SWMM 5 Basic Runoff and Other Wet Weather Processes

    run1.png
    Figure 1:  Possible Sources of Input flow and Output Losses or Outflow

    run2.png
    Figure 2:  Variables and Pathways on a Subcatchment Surface

    run3.png
    Figure 3:  Subcatchment Pathways for Rainfall in SWMM 5


  • Subject:   3 Types of Manholes in SWMM 5 and InfoSWMM


    There are three types of interior manholes in SWMM 5 and InfoSWMM as regards water surface elevations above the Node Rim Elevation:


    1st Excess Water leaves the Node as flooded water if the water surface elevation equals the Rim Elevation (Figure 1 and Gravity Mains),

    2nd Excess Water is  stored in the manhole as pressurized depth if the Node Surcharge Depth is used (Figure 2 and Force Mains)

    3rd Excess Water is stored above the Node Rim Elevation (Surface Ponding and Figure 3)

      

    Figure 1.  The default node in SWMM 5 and InfoSWMM has just the Manhole Invert Elevation, the program calculated elevation of the highest connected link and the Node Maximum Depth or Rim Elevation.  If the Water Surface Elevation exceeds the Rim Elevation then any excess flow is lost as flooded flow.


      3293137784?profile=RESIZE_1024x1024

    Figure 2.  A force main or pressure in SWMM 5 and InfoSWMM has the Manhole Invert Elevation, the program calculated elevation of the highest connected link, the Node Maximum Depth or Rim Elevation and the Node Surcharge Depth.  If the Water Surface Elevation exceeds the Surcharge Elevation then any excess flow is lost as flooded flow but this allows more the links to have more pressure and hence more flow.

      3284343911?profile=RESIZE_1024x1024

    Figure 3.  The flooded Node option in SWMM 5 and InfoSWMM has just the Manhole Invert Elevation, the program calculated elevation of the highest connected link, the Node Maximum Depth or Rim Elevation and Node Ponding.  If the Water Surface Elevation exceeds the Rim Elevation then any excess flow is NOT lost but stored in the ponded area.  The depth of the ponded area is a function of the ponding area and the excess inflow.  If the water surface elevation goes below the Rim Elevation then the ponded volume flows back into the network.

     3293139291?profile=RESIZE_1024x1024




    • tks bob

      I still have some concerns:

      If a ponded allowed node is flooded, then the excess water will be stored in a ponded area. Therefore is the runoff depth on the respective catchment can be "understood" as a suface flood depth ? I need this information to develop a flood hazard map.

      thank you

      • The node and catchment depths are separate items.  The Runoff Depth is over the catchment and the node depth is based on the hydraulics of the network.  Runoff goes into the hydraulics network and then either gets routed or comes back out as a flooded node

         



        SWMM 5 Flooding Volumes for Ponding and Without Ponding

        flood1.png
        No Ponded Area for a Flooded Node

        flood2.png
        Ponded Area for a Flooded Node

  • - ponded depth : is this the depth of surface water from the rim elevation. in my model, if a node is flooded, then this number equals to the max depth ?!?  The ponded depth is the depth in the ponded area, so it plus the maximum depth of the node equals the maximum depth during the simulation.
    - max surcharge : is this the max depth of water as the water reaching to the rim ?  The depth above the pipe crown going into or out of the node
    - runoff depth: is this the surface flood depth ? from my understanding epa SWMM is 1d model and therefore cannot explicitly simulate the surface flood depth .  It is a 1D model but the runoff depth is the depth over the catchment and is the depth you get from the rainfall minus the infiltration, evaporation and runoff.  It is not a 2D Mesh but a three box model of the Catchment - impervious, impervious without depression storage and pervious area

    • How does the surcharge depth work in SWMM 5?

      The surcharge depth from the node attribute table is added to the maximum full depth in the routine dynwave.c as an upper bound check for the new iteration depth of yNew.

          // --- determine max. non-flooded depth
          yMax = Node[i].fullDepth;
          if ( canPond == FALSE ) yMax += Node[i].surDepth;

      3293138739?profile=original

      If the new depth yNew is greater then yMax then the program will calculate either the amount of flooding from the node or the ponded depth and volume.  If the node cannot pond (canPond is False) then the amount of overflow is the excess flow in the node and the new depth yNew is set to yMax.
      3293139760?profile=original

          if ( canPond == FALSE )
          {  Node[i].overflow = (Node[i].oldVolume + dV - Node[i].fullVolume) / dt;
              Node[i].newVolume = Node[i].fullVolume;
              yNew = yMax;    }
          else    {
              Node[i].newVolume = Node[i].fullVolume + (yNew-yMax)*Node[i].pondedArea;
              Node[i].overflow = (Node[i].newVolume - Node[i].fullVolume) / dt;    }
              if ( Node[i].overflow < FUDGE ) Node[i].overflow = 0.0;
          return yNew;
      3293138055?profile=original
      As an example, if the node floods then the depth will go above the manhole rim elevation as the following image shows.


      3293138055?profile=original


      3293141195?profile=original
      If the ponded area of the node is zero then any excess flow is lost as overflow and the depth only stays at the rim elevation.


      Reblog this post [with Zemanta]
This reply was deleted.