DEV Community

Cover image for Open Channel Flow: Sizing Channels with Manning's Equation
NovaSolver
NovaSolver

Posted on • Originally published at novasolver.jp

Open Channel Flow: Sizing Channels with Manning's Equation

Stand beside a concrete drainage canal during a storm and the question that matters is simple: will it carry the water, or will it overtop? The water has a free surface open to the atmosphere, it is pulled along by gravity rather than pushed by a pump, and how much of it the channel can carry depends on three things you can measure with a tape and a level. That relationship has had a working answer since the nineteenth century, and it is still the equation civil engineers reach for first.

This article explains open channel flow and Manning's equation, shows how the geometry terms are built, works a full numerical example for a concrete channel, and lists the mistakes that lead to undersized or oversized channels.

Why this calculation matters

Open channel flow is everywhere in civil and environmental engineering: storm drains, irrigation canals, river reaches, sewer mains running partly full, roadside ditches, and spillways. Unlike flow in a pressurized pipe, the driving force is the channel's slope under gravity, and the flow adjusts its own depth to match the discharge. That makes the sizing problem subtle — change the depth and you change the area, the wetted perimeter, and the velocity all at once.

Getting the size right has direct consequences. A channel sized too small overtops and floods during heavy rain. A channel sized too large costs more to build and excavate than it needs to, and may run so shallow and slow that it silts up. Manning's equation is the standard tool for landing between those failures. It is used to find the discharge a channel can carry, the depth that a known discharge will reach, or the slope needed to move a target flow — all from the same relationship.

The core method

Manning's equation gives the steady, uniform flow rate Q in an open channel:

Q = (1/n) * A * R^(2/3) * S^(1/2)
Enter fullscreen mode Exit fullscreen mode

Each term has a clear physical meaning:

  • n is Manning's roughness coefficient. It captures how much the channel surface resists the flow. Smooth concrete has a low n (around 0.013 to 0.015); earth and gravel channels are rougher (0.022 to 0.035); a weedy natural stream is rougher still.
  • A is the cross-sectional area of the flowing water.
  • R is the hydraulic radius, defined as the flow area divided by the wetted perimeter, R = A / P. The wetted perimeter P is the length of channel boundary actually in contact with the water — the bed and the submerged sides, but not the free surface.
  • S is the channel slope, the drop in elevation per unit length along the channel, a dimensionless number.

The hydraulic radius is the term that does the conceptual work. It expresses how efficiently a cross-section moves water: a large area sharing a short wetted perimeter has a high R and flows well, because less of the water is dragging against a wall. This is why a wide, shallow channel and a narrow, deep one of the same area do not carry the same flow.

Once Q is known, the mean velocity follows immediately from continuity:

V = Q / A
Enter fullscreen mode Exit fullscreen mode

One caution about Manning's equation: as written, it is dimensional. The form above, with the leading coefficient equal to 1, is the SI version, valid when A is in m^2, R is in m, and Q comes out in m^3/s. The US customary form carries a coefficient of 1.49. Always confirm which unit system the constant belongs to.

A worked example

Take a rectangular concrete channel 3 m wide, running 1 m deep, on a slope of S = 0.001. The roughness coefficient for the concrete surface is n = 0.015.

Step 1 — find the flow area. For a rectangular section, area is width times depth:

A = 3 * 1 = 3 m^2
Enter fullscreen mode Exit fullscreen mode

Step 2 — find the wetted perimeter. The water touches the bed (width 3 m) and both side walls (each 1 m deep). The free surface at the top is not counted:

P = 3 + 2 * 1 = 5 m
Enter fullscreen mode Exit fullscreen mode

Step 3 — find the hydraulic radius.

R = A / P = 3 / 5 = 0.6 m
Enter fullscreen mode Exit fullscreen mode

Step 4 — assemble Manning's equation. Substitute n, A, R, and S:

Q = (1/0.015) * 3 * 0.6^(2/3) * 0.001^(1/2)
Enter fullscreen mode Exit fullscreen mode

Evaluate the pieces. The roughness term 1/0.015 = 66.7. The hydraulic radius term 0.6^(2/3) = 0.711. The slope term 0.001^(1/2) = 0.0316. Then:

Q = 66.7 * 3 * 0.711 * 0.0316 = 4.5 m^3/s
Enter fullscreen mode Exit fullscreen mode

The channel carries about 4.5 m^3/s. The mean velocity is Q divided by A, roughly 1.5 m/s — a sensible value for a lined concrete channel, fast enough to resist silting but not so fast as to scour. If a design storm delivered more than 4.5 m^3/s, the engineer would need a steeper slope, a wider section, a smoother lining, or a greater allowed depth.

Common mistakes

Including the free surface in the wetted perimeter. Only the boundary in contact with the water counts — bed and submerged sides. The open top surface is never part of P. Adding it inflates the perimeter and underestimates the flow.

Confusing hydraulic radius with the geometric radius. R = A / P is not the radius of a pipe or a half-circle. For the example channel it is 0.6 m, not 1.5 m. The name is misleading; treat it strictly as area divided by wetted perimeter.

Using the wrong unit constant. The leading coefficient is 1 in SI units and 1.49 in US customary units. Pairing the SI coefficient with feet, or the customary coefficient with metres, throws the discharge off by a large factor.

Picking a roughness coefficient carelessly. Manning's n varies more than people expect — a clean concrete channel and a vegetated earth channel can differ by a factor of two or more, and n changes with maintenance and season. The discharge is directly proportional to 1/n, so a sloppy n choice propagates straight into the answer.

Applying Manning's equation outside its assumptions. The equation describes steady, uniform, fully turbulent flow. It does not capture rapidly varied flow such as a hydraulic jump, backwater curves behind an obstruction, or unsteady flood waves. For those, Manning's equation is a starting point, not the final word.

Try the interactive NovaSolver calculator

Working one cross-section by hand is instructive; comparing shapes and depths quickly is where a tool helps. The Open Channel Flow — Manning's Equation calculator on NovaSolver lets you choose a rectangular, trapezoidal, circular, or triangular channel and adjust the geometry, flow depth, roughness coefficient, and slope, then returns the velocity, flow rate, hydraulic radius, cross-sectional area, Froude number, and flow regime, with live Q-versus-depth curves and a cross-section view.

Related calculators

You can browse the rest in the fluid dynamics tools hub.

Closing note

Manning's equation is a small calculation that decides whether a channel does its job. It ties together three things an engineer can measure — roughness, geometry through the hydraulic radius, and slope — and returns a discharge you can defend. Count the wetted perimeter correctly, keep the unit constant consistent with your length units, choose the roughness coefficient with care, and remember the equation assumes steady uniform flow. With those four habits, sizing a channel becomes a clear, repeatable calculation rather than a guess.

Top comments (0)