Select to view content in your preferred language

Calculate flow accumulation from trace utility network

1024
4
Jump to solution
11-13-2024 02:38 PM
Labels (1)
Letíciad_Agosto_Miguel_Fonseca
Esri Contributor

Hi everyone!

I have a customer who needs to calculate the flow accumulation from each service connection along the sewer line up to a selected manhole. For example, when I click on the selected manhole, the system should summarize all upstream flow from connected service points at that location.
Is there a way to calculate this using utility network tools?

Thanks!

Letciad_Agosto_Miguel_Fonseca_1-1731536907439.png

 

 

 

Tags (2)
0 Kudos
2 Solutions

Accepted Solutions
RobertKrisher
Esri Regular Contributor

You can use a function to calculate a value using the attributes of the features upstream of the manhole. If you need something more advanced than that you would need to write something to perform the calculation, using the features returned by the trace.

View solution in original post

RobertKrisher
Esri Regular Contributor

If I was trying to estimate the feasibility of connecting a new service, my preferred approach would be integrating my UN with a hydraulic model. For basic feasibility like this I would calculate the number of customers per pressure zone, which you can do by adding a summary function to the subnetwork definition for your pressure zones. You can see an example of this in action in this tutorial:https://learn.arcgis.com/en/projects/get-started-with-arcgis-utility-network-for-water/

You can only support so many customers in a pressure zone before you degrade the water pressure, so you'd want to rely on the number of customers in the pressure zone. Looking at the upstream/downstream doesn't work in a looped pressurized system. You could try and do something with an isolation trace, but it'd be a lot of work to build something scalable to do that, and it would be more reliable to look at the pressure zone anyways.

View solution in original post

4 Replies
RobertKrisher
Esri Regular Contributor

You can use a function to calculate a value using the attributes of the features upstream of the manhole. If you need something more advanced than that you would need to write something to perform the calculation, using the features returned by the trace.

Letíciad_Agosto_Miguel_Fonseca
Esri Contributor

Hi @RobertKrisher ,

Thank you for your answer!

We are developing a similar solution to what you suggested. We created a network attribute to leverage the default trace function, enabling us to summarize the entire service connection flow within the trace:

Letciad_Agosto_Miguel_Fonseca_0-1731587107800.png

At this stage, we aim to summarize the flow by using the asset ID to identify the specific distribution path for each water line, helping us determine if connecting a new customer to the water line is feasible. Can we achieve this with the default tool, or do we need the summary statistics tool?

Thanks in advance!

0 Kudos
RobertKrisher
Esri Regular Contributor

If I was trying to estimate the feasibility of connecting a new service, my preferred approach would be integrating my UN with a hydraulic model. For basic feasibility like this I would calculate the number of customers per pressure zone, which you can do by adding a summary function to the subnetwork definition for your pressure zones. You can see an example of this in action in this tutorial:https://learn.arcgis.com/en/projects/get-started-with-arcgis-utility-network-for-water/

You can only support so many customers in a pressure zone before you degrade the water pressure, so you'd want to rely on the number of customers in the pressure zone. Looking at the upstream/downstream doesn't work in a looped pressurized system. You could try and do something with an isolation trace, but it'd be a lot of work to build something scalable to do that, and it would be more reliable to look at the pressure zone anyways.

Letíciad_Agosto_Miguel_Fonseca
Esri Contributor

Thanks a lot @RobertKrisher !

I will take a look at this tutorial!

0 Kudos