Skip to main content

Intoducing FlowStudio

If you work with open-channel hydraulics, weirs, gradually varied flow, or seepage under structures, you have probably bounced between spreadsheets, textbook charts, and half-finished notebooks. FlowStudio is a small web app built to keep that work in one place: structured worksheets, clear outputs, and a project tree so you can find yesterday’s calculation.

Try the app: https://flow.syncster.dev

What FlowStudio is

FlowStudio is a browser-based engineering workbook for hydraulic and civil topics. Each worksheet has a dedicated form: you enter geometry, discharge, slopes, coefficients, and so on; the app computes results and can show charts and schematics where it helps (for example, depth profiles, rating curves, section views, or Khosla uplift diagrams). Your inputs and outputs are saved as structured data so you can reopen a sheet and continue without redoing the setup.

Organize work in projects and folders

Worksheets live inside projects. You can add folders to group related sheets—say, one folder per site, course module, or design option—instead of one long flat list. When you use the hosted backend, that structure syncs with your account so the same layout is there on your next session.

What you can run today

Worksheet types include, among others:

  • Open channel: rectangular, trapezoidal, circular, and irregular (natural) sections—Manning-style uniform flow, with section previews and rating curves where applicable.
  • Gradually varied flow (GVF): profile computation with a depth-profile chart.
  • Sluice gate in a channel context.
  • Weirs: rectangular sharp-crested and Cipolletti, with rating and section visuals.
  • Khosla seepage: piecewise head distribution, composite sections, and uplift-style plots tied to the classic method.
  • Tyrolean (bottom-rack) intake: a simplified diversion check with rack geometry, porosity, and optional collecting-channel sizing notes.
Example: the gradually varied flow worksheet—profile computation, tabulated outputs, and a depth profile chart in one view (FlowStudio).

The exact list evolves with the product; the app and API enforce allowed worksheet types so everything stays consistent end to end.

Sign-in without storing passwords in the app

Accounts use Firebase (for example, Google sign-in). The backend verifies identity and issues short-lived JWT access tokens; the app does not implement its own password database. That keeps authentication familiar while separating “who you are” from the worksheet math.

A word on responsibility

FlowStudio is built as an educational and design-aid tool. Many modules embed textbook-style simplifications (Khosla fits, weir coefficients, Tyrolean analogies, and so on). Always cross-check against your governing codes, site data, and—where it matters—physical model tests or detailed analysis before anything goes to construction or legal sign-off.

Why I’m sharing it

I wanted a workspace that feels like serious scratch paper: fast to use, honest about assumptions, and organized enough for real project work. If that resonates—whether you teach hydraulics, size rural intakes, or sanity-check a student problem set—FlowStudio might save you a few round trips between PDFs and cells. You can open it any time 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...