Skip to main content

Trapezoidal Channel Analysis with FlowStudio

This walkthrough shows how to find normal depth in a trapezoidal open channel when you know discharge, geometry, Manning’s n, and bed slope—using FlowStudio’s trapezoidal open-channel worksheet (uniform flow, SI units).

Open FlowStudio → https://flow.syncster.dev

What you are solving

In uniform flow, depth and velocity stay constant along a long prismatic reach. Manning’s equation links discharge to geometry and resistance. For a trapezoid with bottom width b and side slope z (horizontal to vertical, H:V), flow area and wetted perimeter depend on water depth y. If Q, b, z, n, and S are given, there is a unique normal depth y that satisfies Manning for that discharge (within physical limits).

FlowStudio uses the standard relations: area A = y(b + zy), wetted perimeter P = b + 2y√(1 + z²), hydraulic radius R = A/P, then V = (1/n)R2/3S1/2 and Q = VA. It also reports top width, hydraulic depth, and Froude number so you can judge subcritical vs supercritical flow.

Step 1 — Create the worksheet

Sign in if prompted, then create or open a project. Add a new worksheet and choose the type for trapezoidal open channel (Manning, uniform flow). Open the sheet so you see the form, the unknown selector, and the chart areas for section and rating curve.


Step 2 — Choose “Water depth” as the unknown

Select Water depth (discharge known). The form will expect you to enter discharge Q and will compute depth y after you press Calculate. The depth field is not the primary input in this mode.

Step 3 — Enter channel data

Type your SI values (meters, m³/s, dimensionless n and z, slope S as m/m). For a reproducible demo you might use, for example: b = 3 m, z = 2 (2H:1V sides), n = 0.025, S = 0.0004, Q = 8 m³/s—adjust to match your own case.

Use a realistic Manning n for your lining (concrete, earth, vegetation, etc.). Side slope z is the horizontal run per one unit of vertical (0 for a rectangle).

Step 4 — Calculate and read the table

Click Calculate. FlowStudio solves for y by bracketing Manning’s Q(y) against your target discharge and fills the results table: depth, velocity, area, wetted perimeter, hydraulic radius, top width, hydraulic depth, Froude number, and discharge check.


Step 5 — Use the cross section and rating curve

The section graphic shows the trapezoid with the computed water surface. The rating curve plots depth vs discharge for your fixed b, z, n, and S; your (Q, y) point should lie on that curve—useful for sanity checks and for seeing how sensitive depth is to discharge.

Reading Fr and common pitfalls

  • Froude number Fr < 1 → subcritical; Fr > 1 → supercritical (for this hydraulic depth definition).
  • If discharge is too large for the chosen geometry and slope, the solver may not find a depth—reduce Q, steepen S, widen b, or smooth the channel (n).
  • Manning uniform flow assumes a long, straight, steady reach; transitions, bends, and backwater need other methods (e.g. gradually varied flow elsewhere in FlowStudio).

Wrap-up

You’ve walked through normal depth in a trapezoidal channel with known Q, using the same closure as FlowStudio’s worksheet. Repeat with your project’s b, z, n, S, and design discharges, and keep comparing to codes and field data.

Run the sheet live at https://flow.syncster.dev.

Comments

Popular posts from this blog

Cursor AI Review: Is the AI Code Editor Worth It?

I've been using Cursor as my main code editor for a while now, and enough people have asked whether it's worth switching to that a proper review felt overdue. Short version: for me, yes — but with caveats. What is Cursor? Cursor is an AI-first code editor built as a fork of VS Code. That means every extension, theme, and keybinding you already use in VS Code works here, but with AI woven directly into the editing experience instead of bolted on as a plugin. It's made by Anysphere and can run models from OpenAI and Anthropic under the hood. What I like Tab completion is uncanny. Cursor predicts your next edit — not just the rest of the line, but the next change across the file. Once you get used to hitting Tab, going back to a plain editor feels slow. The Composer / Agent mode. You describe a change in plain language and it edits multiple files at once, showing you a diff to accept or reject. For refactors and boilerplate, this saves real time. It unde...

MacBook Pro M5 vs M5 Pro: Which One Should You Actually Buy?

Apple's latest 14-inch MacBook Pro comes in two very different flavors: the base M5 and the step-up M5 Pro . On paper they look similar — same gorgeous Liquid Retina XDR display, same design — but under the hood the gap is bigger than the names suggest. Here's a clear, no-hype breakdown, with concrete use cases so you can match the chip to your work. Quick spec comparison Spec M5 M5 Pro CPU 10-core (4 performance + 6 efficiency) Up to 18-core (6 performance + 12 efficiency) GPU 10-core Up to 20-core Neural Engine 16-core 16-core Memory bandwidth 153 GB/s 307 GB/s (roughly double) Unified memory 16 / 24 / 32 GB 24 / 48 / 64 GB Max storage Up to 4 TB SSD Up to 8 TB SSD Battery (video playback) Up to 24 hours Up to 22 hours Media engines Single encode/ProRes engine More encode/ProRes engines (higher configs) What actually changes between them More cores — the M5 Pro nearly doubles CPU cores and adds GPU cores, so sustained, multi-threaded work finishe...

How I used Google Sheets and Apps Script

Google Sheet is one of the most powerful spreadsheet application that exists online, rivaling with Microsoft's Excel. One of the main strengths is its strong support for collaboration with other users, much easier and popular than collaboration tools with Microsoft Office. Aside from plain spreadsheet, it also supports extensions such as macro. If you are familiar with macros on other office tools, they work almost the same. However, the most extension I use and tinker with is the Apps Scipt . Apps Script Extension One of the challenges I faced recently is how do I track or monitor reports in our department if they are submitted on time or worst, forgotten due to lack of better monitoring tools. So I thought if there can be simple applications that can be deployed or use by a more general user to allow reminding periodically what reports are approaching due dates or those that are past dues. Then I looked for a way, instead of creating a full blown app from scratc...