Fundamental Principles of Fluid Mechanics and Navier-Stokes Equations
From the Applications of navier stokes equations in civil and water engineering curriculum
Fundamental Principles of Fluid Mechanics and Navier-Stokes Equations
TL;DR
You'll learn what the Navier-Stokes equations actually say physically: mass can't appear from nowhere, and force equals mass times acceleration applied to a moving fluid. You'll see where each term comes from and what it means for water flowing through a pipe, over a spillway, or around a bridge pier. By the end you'll be able to simplify the full equations for real civil engineering problems.
1. The Mental Model
A fluid is just a huge number of particles that push on each other and get pushed by gravity and pressure. Navier-Stokes is Newton's second law, F = ma, written for a chunk of moving fluid instead of a solid block. Continuity is simpler still: whatever flows in must flow out, unless something's being squeezed or stretched. The whole subject is bookkeeping for mass and momentum as fluid moves.
2. The Core Material
2.1 Continuity: Mass Can't Vanish

Photo by Steve A Johnson on Pexels
Picture a small box fixed in space with fluid flowing through it. Mass conservation says: the rate mass builds up inside the box equals the rate mass flows in minus the rate mass flows out. Written formally, for a fluid with density ρ and velocity vector u = (u, v, w):
$$\frac{\partial \rho}{\partial t} + \nabla \cdot (\rho \mathbf{u}) = 0$$
For water in almost every civil engineering problem, density is constant — water barely compresses under normal pressures. That kills the first term and simplifies the divergence term, leaving:
$$\nabla \cdot \mathbf{u} = \frac{\partial u}{\partial x} + \frac{\partial v}{\partial y} + \frac{\partial w}{\partial z} = 0$$
This is the incompressible continuity equation. Read it as: the flow squeezing in from one direction must be squeezing out equally from the others. If water speeds up in a narrowing pipe, this equation is why — the cross-sectional velocity has to increase to keep the volume flow rate constant. That's literally the continuity equation you already used in Bernoulli/pipe flow problems (A₁v₁ = A₂v₂) — it's the same law, just integrated over a cross-section instead of written pointwise.
2.2 Navier-Stokes: Newton's Law for a Fluid Parcel

Photo by abdo alshreef on Pexels
Now follow a specific parcel of fluid instead of a fixed box. Newton's second law says the parcel's mass times its acceleration equals the sum of forces on it. The tricky part in fluids is that acceleration isn't just ∂u/∂t — a parcel can also speed up because it's moving into a region of different velocity (think of water accelerating as it enters a nozzle, even in steady flow). This gives the material derivative:
$$\frac{D\mathbf{u}}{Dt} = \frac{\partial \mathbf{u}}{\partial t} + (\mathbf{u} \cdot \nabla)\mathbf{u}$$
The first term is local acceleration (does velocity change with time at a fixed point?). The second is convective acceration (does velocity change as you move to a new point?). Both are real acceleration; both need force to produce them.
The forces on a fluid parcel are: pressure pushing on its surfaces, viscous friction from neighbouring fluid, and gravity. Put it together and you get the incompressible Navier-Stokes equation:
$$\rho\left(\frac{\partial \mathbf{u}}{\partial t} + (\mathbf{u}\cdot\nabla)\mathbf{u}\right) = -\nabla p + \mu \nabla^2 \mathbf{u} + \rho \mathbf{g}$$
Term by term:
- ρ(∂u/∂t) — inertia from unsteadiness (mass × local acceleration)
- ρ(u·∇)u — inertia from convection (mass × convective acceleration)
- −∇p — net pressure force per unit volume; fluid pushed from high to low pressure
- μ∇²u — viscous force per unit volume; friction smooths out velocity differences between adjacent layers
- ρg — gravity, usually just −ρg in the vertical direction
μ is the dynamic viscosity — how "sticky" the fluid is. Water has low viscosity (μ ≈ 0.001 Pa·s) compared to, say, honey, which is why viscous effects in open channel and pipe flow often matter only near walls, in a thin boundary layer, while the bulk of the flow behaves almost inviscidly.
2.3 The Reynolds Number: When Does Each Term Actually Matter?

Photo by Roman Friptuleac on Pexels
You rarely solve the full Navier-Stokes equations by hand — they're nonlinear PDEs with no general closed-form solution. Instead, civil engineers ask: which terms dominate for this flow? The Reynolds number tells you:
$$Re = \frac{\rho U L}{\mu} = \frac{\text{inertial forces}}{\text{viscous forces}}$$
where U is a characteristic velocity and L a characteristic length (pipe diameter, channel depth, pier width).
- Low Re (thick pipes with slow, viscous fluid, or very small scales): viscous term dominates, inertial terms become negligible → Stokes flow, linear and solvable.
- High Re (river flow, most pipe flow, flow past bridge piers): inertial terms dominate almost everywhere except thin boundary layers near solid boundaries, where viscosity still controls the wall friction. This is why you can often use inviscid Bernoulli/Euler equations away from boundaries, but still need friction factors (from viscosity) to size pumps and predict head loss.
This is the single most useful skill in this topic: knowing which terms in Navier-Stokes you're allowed to throw away for a given engineering problem.
flowchart TD
A["Full Navier-Stokes Equation"] --> B{"What's Re?"}
B -->|"Re << 1 (slow, viscous, small scale)"| C["Drop inertial terms"]
C --> D["Stokes flow — linear, solvable by hand"]
B -->|"Re >> 1 (rivers, pipes, piers)"| E["Viscous term negligible in bulk flow"]
E --> F["Euler / Bernoulli equation away from walls"]
E --> G["Boundary layer near walls: viscosity still controls friction"]
G --> H["Empirical friction factors / head loss formulas"]
2.4 Steady, Uniform, and 1D Simplifications

Photo by Pixabay on Pexels
Real civil engineering rarely needs the full 3D unsteady equation. Three common simplifications:
- Steady flow: ∂/∂t = 0. Flow pattern doesn't change with time (a river at constant discharge).
- Uniform flow: velocity doesn't change along the flow direction, so convective acceleration is zero too. This is the assumption behind Manning's equation for open channels.
- 1D flow: you only track velocity along the pipe/channel axis, replacing the full vector equation with a scalar balance. This is exactly how you derive the energy equation (Bernoulli with losses) used in pipe network design.
Each simplification is really just deciding which terms in the general Navier-Stokes equation you're allowed to set to zero for your specific problem.
3. Worked Example
Problem: Water flows steadily through a horizontal pipe that narrows from diameter D₁ = 0.3 m to D₂ = 0.15 m. The velocity at section 1 is 1.0 m/s. Verify continuity gives the exit velocity, then check whether we can neglect viscous terms in the core flow using the Reynolds number, given water density ρ = 1000 kg/m³ and viscosity μ = 1.0 × 10⁻³ Pa·s.
Step 1 — Continuity. Cross-sectional areas:
$$A_1 = \frac{\pi}{4}(0.3)^2 = 0.0707\ \text{m}^2, \quad A_2 = \frac{\pi}{4}(0.15)^2 = 0.0177\ \text{m}^2$$
Incompressible continuity in 1D form (integrate ∇·u = 0 over the pipe cross-section):
$$A_1 v_1 = A_2 v_2 \implies v_2 = \frac{A_1 v_1}{A_2} = \frac{0.0707 \times 1.0}{0.0177} = 4.0\ \text{m/s}$$
The velocity quadruples because the diameter halved — area scales with diameter squared, so halving diameter quarters the area, and by continuity the velocity must quadruple to pass the same volume flow rate (Q = 0.0707 m³/s throughout, check: 0.0177 × 4.0 = 0.0707 ✓).
Step 2 — Where did that acceleration come from? This is the (u·∇)u term in Navier-Stokes in action. Even though the flow is steady (∂u/∂t = 0), the fluid parcel still accelerates from 1.0 m/s to 4.0 m/s as it moves through the contraction, purely because velocity varies with position. That acceleration is caused by a pressure drop through the contraction — exactly the −∇p term balancing ρ(u·∇)u. This is the physical content of Bernoulli's equation, which is Navier-Stokes with viscosity neglected, integrated along a streamline.
Step 3 — Reynolds number check. Use the narrow section as the critical case (highest velocity, most demanding on the inviscid assumption):
$$Re = \frac{\rho v_2 D_2}{\mu} = \frac{1000 \times 4.0 \times 0.15}{1.0\times10^{-3}} = 600{,}000$$
This is far above the turbulent threshold (~4000 for pipe flow) and enormously above 1, so inertial forces utterly dominate viscous forces in the bulk flow. Physically: you can use Bernoulli's equation (dropping the μ∇²u term) to predict the pressure drop through the contraction, but you still need a friction factor (from a Moody chart, which encodes the near-wall viscous physics) to compute head loss along the straight sections of pipe. This is exactly the split shown in the flowchart above — inviscid core, viscous boundary layer near the pipe wall.
4. Key Takeaways
4.1 Most Important Concepts
- Continuity is mass conservation, nothing more — ∇·u = 0 for incompressible flow means volume flow rate in = volume flow rate out through any cross-section.
- Navier-Stokes is F = ma applied to fluid parcels — every term is either mass times acceleration or a force per unit volume.
- The material derivative captures two kinds of acceleration — local (time-varying) and convective (moving into a region of different velocity) — both need force to happen.
- The Reynolds number tells you which terms to drop — it's the ratio of inertial to viscous forces, and it dictates whether you use Stokes flow, Bernoulli, or full turbulent modelling.
- Viscosity acts mainly near boundaries at high Re — the "inviscid core, viscous boundary layer" picture explains why Bernoulli works away from walls but friction losses still matter.
- Steady ≠ zero acceleration — a fluid parcel can accelerate in steady flow via the convective term, as seen in pipe contractions.
- **Simplified equations (Bernoulli,
Frequently asked about Fundamental Principles of Fluid Mechanics and Navier-Stokes Equations
More from Applications of navier stokes equations in civil and water engineering
Get the full Applications of navier stokes equations in civil and water engineering curriculum
Clone the complete plan to your dashboard for unlimited AI-generated notes, practice quizzes, and a personalised revision schedule.
Create Free Account