Maximum Flow Rate Calculator for Directed Network Analysis

Model graph throughput using reliable path augmentation. Inspect capacities, saturated edges, and minimum cuts instantly. Export structured summaries, review examples, and visualize final distributions.

Calculator Inputs

Use comma-separated edges. Each line should be from,to,capacity.

Example format: S,A,16. Node labels are case-sensitive.

Example Data Table

This example is a classic directed network. Its maximum flow equals 23.

From To Capacity
SA16
SC13
AC10
CA4
AB12
BC9
CD14
DB7
BT20
DT4

Formula Used

This page solves a directed maximum flow problem. It uses residual capacities and repeated path augmentation.

Max Flow = Σ f(source, v)
Capacity Constraint: 0 ≤ f(u, v) ≤ c(u, v)
Flow Conservation: For every internal node x, Σ f(u, x) = Σ f(x, v)
Cut Capacity: C(S, T) = Σ c(u, v), where u ∈ S and v ∈ T
Algorithm note: This calculator applies Edmonds–Karp logic. It repeatedly finds the shortest augmenting path in the residual network, pushes the bottleneck value, updates reverse capacity, and stops when no valid path remains.

How to Use This Calculator

  1. Enter a source node label, such as S.
  2. Enter a sink node label, such as T.
  3. Paste one directed edge per line.
  4. Use the format from,to,capacity for every edge.
  5. Choose a decimal setting and optional unit label.
  6. Click Calculate Maximum Flow.
  7. Review the result, edge flows, minimum cut, and chart.
  8. Use CSV or PDF export for reporting and review.

FAQs

1. What does maximum flow mean here?

It is the largest amount of throughput that can move from the source node to the sink node without violating any directed edge capacity.

2. Why is this useful in software development?

Maximum flow helps model routing, task distribution, data pipelines, API throttling, bandwidth planning, dependency chains, and capacity allocation inside graph-based systems.

3. What is an augmenting path?

An augmenting path is a valid source-to-sink route in the residual graph that still has available capacity. Each path increases the total flow.

4. What does the minimum cut show?

The minimum cut identifies the separating edges that limit total throughput. Its total capacity equals the final maximum flow when the algorithm finishes correctly.

5. Can I use decimal capacities?

Yes. This calculator accepts positive decimal capacities, which helps when you model weighted throughput, rates, fractions, or normalized capacities.

6. Do node names need to be numbers?

No. You can use short labels like S, T, API1, QueueA, or Worker3. The labels are case-sensitive.

7. Why are some edges saturated?

A saturated edge has flow equal to capacity. These edges often signal bottlenecks because they cannot carry any additional throughput in the final solution.

8. Why does the chart sometimes look sparse?

The chart only emphasizes final carried flow. Edges with zero final flow do not appear in the Sankey view, because they do not contribute to the completed solution.

Related Calculators

total flow calculatorsiphon flow rate calculatorq flow calculatoro2 flow calculatorflow rate lpm calculatorhplc flow rate calculatorgpm flow calculatordp flow meter calculatorapi water calculatorconvert rpm to g calculator

Important Note: All the Calculators listed in this site are for educational purpose only and we do not guarentee the accuracy of results. Please do consult with other sources as well.