A liquid physics puzzle, in the browser game sense, is a fixed-grid routing challenge where particles travel through opened channels using a small set of explicit movement rules rather than calibrated fluid dynamics. Water Flow Puzzle is a five-level example of that format: each board is 7 cells wide by 7 cells tall, the source sits on the top row, the container waits on the bottom row, and you may open at most five soil cells to build a channel from one to the other. When you press Release Water, the game evaluates the entire path synchronously using a strict priority of straight down, then down-left, then down-right, and renders six particle dots along every channel the route actually visits. The container reports 6/6 only when the final drop enters the cell directly above its opening; a path that reaches any other column on the last channel row leaks through the bottom and scores zero. Because every rule, particle count, and score value is product-authored and identical on every device, the result is a deterministic routing puzzle with a water theme, not a fluid simulation. This article walks through the mechanics, the step-by-step route to a clean solve, and how the scoring path reaches exactly 1,000 points across all five levels on the Water Flow Puzzle boards.

What a Liquid Physics Puzzle Actually Models
The phrase "liquid physics puzzle" suggests motion built from gravity, surface tension, viscosity, and pipe diameter. Water Flow Puzzle models none of those. The board is a 49-cell, row-major grid. Cells are typed as source, container, soil, rock, or open channel, and the rules operate only on those labels. Water does not pool, spread, or react to neighboring open cells. Each step looks at the current cell and tests three fixed candidates in strict order: straight down, then down-left, then down-right. The first candidate that is an open channel becomes the next cell. If none of the three is open before the final row, the flow stops as blocked. This priority list is the entire physics engine. It is short on purpose, which is why the same five-cell layout always produces the same path after Restart and why every level has a single correct layout under the rule set.
Reading the 7 by 7 Board Layout
Every level in Water Flow Puzzle shares the same skeleton. A source occupies the top row, a container sits on the bottom row, and the interior is mostly rock with eight highlighted soil cells you can toggle. Rocks, source, and container are visually distinct and cannot be changed. The eight soil cells form the puzzle: pick five of them and the rules above decide whether the resulting channel set captures water. The container opening is always a single column, not the full bottom row. That detail is what makes a path to "almost the right column" still a leak. Studying the relative position of the source, the container, and the eight soil cells before opening anything is the cheapest way to avoid wasting your five-cell budget on a layout that lands one column off.
| Element | Product-defined value |
|---|---|
| Board geometry | 7 cells wide by 7 cells tall (49 cells, row-major) |
| Levels per run | 5 |
| Diggable soil cells per level | 8 |
| Maximum channels you may open | 5 (a sixth toggle is rejected) |
| Particles released per level | 6 |
| Capture condition | Vertical drop into the column directly above the container |
| Points per cleared level | Exactly 200 |
| Total points for a full run | Exactly 1,000 |
Solve a Liquid Physics Puzzle Level
- Locate the source on the top row and the container on the bottom row. The container's column is the only column that can capture water on the last channel row.
- Identify the eight highlighted soil cells. Mentally mark which five combinations could plausibly reach the container's column through the down, down-left, down-right priority.
- Open soil cells one at a time with click, tap, or Enter/Space on a focused button. Opening a sixth cell is rejected without altering the board, so stop at five.
- Trace the path on paper or in your head using the strict priority: from each cell, check straight down first, then down-left, then down-right, taking the first open channel you find.
- Verify that the last channel your route visits sits directly above the container opening. If it lands in any other column, the path leaks through the bottom and scores zero.
- Press Release Water. The game runs the simulation synchronously and renders six particle dots along every channel the rules actually visited.
- Confirm the container reports 6/6. If it shows blocked or leaked, use the on-screen message to distinguish an incomplete route from a wrong final column, then edit and try again.
- On a 6/6 result, accept the 200-point award, inspect the flow for as long as you like, then choose Next Level. The next board loads only after you advance.
Why the Movement Rule Matters
The down, down-left, down-right priority is the one fact you cannot infer by looking at a completed path. A channel that "looks" reachable from the upper-left of the source is sometimes skipped entirely because the cell directly below the current one was already open, forcing the route down that column instead. This is also why a single misplaced dig can swing the path across the whole board: opening one cell changes which down candidate is taken at the previous step, which changes every step that follows. Treat each open cell as a steering choice, not as decoration, and re-trace from the source after every edit.
Blocked Versus Leaked Outcomes
A failed Release does not always mean the same thing. A blocked path means the rules could not find any of the three candidates in priority order before the last channel row, so the flow stopped mid-board and the container reports zero. A leaked path means the route did reach the final channel row but landed in a column other than the one directly above the container, so the water exited through the bottom and the container again reports zero. The game distinguishes the two with separate messages so you know whether to add or redirect a channel (blocked) or shift the route to land on the container's column (leaked). Both outcomes capture zero particles, both cost you your first-failure slot, and a second distinct failed layout deadlocks the run until you Restart.
| Outcome | What it means | Container score | How to recover |
|---|---|---|---|
| Captured (6/6) | Route reached the column directly above the container and dropped vertically into the opening | 200 points | Advance to the next level |
| Blocked | No open candidate in down, down-left, or down-right order before the last channel row | 0 points | Add or redirect a channel so a priority candidate is reachable |
| Leaked | Route reached the last channel row in a column other than the one above the container | 0 points | Shift the route so the final channel sits in the container's column |
Scoring the 1,000-Point Run
Scoring in Water Flow Puzzle is exact and product-defined. Each level awards exactly 200 points when the container reports 6/6, and that is the only score a level can give. There is no partial credit for capturing fewer than six particles, no bonus for unused soil cells, and no multiplier for speed because there is no timer. Five clean levels therefore sum to exactly 1,000 points, which is the figure the Finish Game screen records on the fifth success. The shared game shell may also store the best completed score locally when browser storage is available, which simply skips past the previous best on later visits; refusing the storage permission only removes that convenience and does not affect the in-run score. Channel layouts, flow paths, failures, and scores are not uploaded, and no account, paid service, network calculation, package dependency, sensor, or file access is needed.
Keyboard, Touch, and Mouse Controls
Every soil cell is a real button at least 44 by 44 CSS pixels, so a single tap, click, or focused Enter/Space toggles the channel without pinching or zooming. Keyboard players Tab through the eight soil buttons, press Enter or Space on each one to toggle, then Tab to Release Water and press it. The 7-column board fits within a 320-pixel width, so it sits cleanly inside a 390-pixel phone viewport. Arrows and activation keys on other controls keep their standard behavior because the keyboard handler relies on native focused buttons rather than a page-wide listener.
What This Puzzle Is Not
The water imagery can mislead readers who arrive expecting Archimedes, Pascal, or pipe hydraulics. The board is not calibrated to real liquid volume, pressure, viscosity, surface tension, pipe diameter, terrain permeability, gravity, drainage, flood behavior, plumbing capacity, or elapsed time, and it must not be used to predict, design, or assess any real hydraulic system. The word "water" is a visual theme for a cellular routing puzzle, the particle count of six is a level rule, and the priority list is the entire physics. Treating the puzzle as a transparent routing game is the fastest way to plan your five cells and reach a clean 1,000-point run on every device.
Restart, Failure Slots, and Run State
Restart recreates the exact initial level-one state, which is useful when a second distinct failed layout has deadlocked the run. Failed attempts use normalized layout signatures based on the sorted set of open channel cell indices, so digging the same cells in a different order does not create a new failure. Releasing an identical failed layout again preserves one recorded failure; releasing a second different failed layout deadlocks the run and requires Restart. Editing after the first failure keeps that failure history but clears the old path display, and a successful layout clears failure history before the next fixed level begins. Success remains visible until the player chooses Next Level, which gives time to inspect the actual flow path, the six particle markers, the 6/6 container result, and the 200-point award before the board changes.