Fluid Mechanics
Difficulty: Level 3 (from-scratch derivations, code-from-memory, explain-out-loud) Time limit: 45 minutes Total marks: 60
Instructions: Show every step. Derivations must start from stated first principles. Where a numeric answer is requested, carry units. Use unless told otherwise.
Question 1 — Hydrostatics + Buoyancy from scratch (10 marks)
(a) Starting from a force balance on an infinitesimal fluid element, derive the hydrostatic pressure relation and integrate it to . (5)
(b) Using only the pressure difference across a fully submerged cube of side with its top face at depth , derive Archimedes' principle (buoyant force ). (5)
Question 2 — Bernoulli from along a streamline (12 marks)
(a) Apply Newton's second law to a fluid element of length and cross-section along a streamline, and derive Bernoulli's equation . State the assumptions used at each point they enter. (8)
(b) List the four core assumptions of Bernoulli's equation and, for each, name one physical situation that violates it. (4)
Question 3 — Venturi meter application (10 marks)
Water () flows through a horizontal Venturi meter. Inlet diameter , throat diameter . A mercury () manometer reads a height difference .
(a) Derive the discharge formula from continuity + Bernoulli. (4)
(b) Compute from the manometer reading, then compute the volumetric flow rate (ideal, ). (6)
Question 4 — Poiseuille flow derivation (10 marks)
For steady laminar flow of a Newtonian fluid in a horizontal circular pipe of radius :
(a) By balancing pressure force against viscous shear on a coaxial cylinder of radius , derive the velocity profile . (6)
(b) Integrate to show the volume flow rate is (Hagen–Poiseuille). (4)
Question 5 — Reynolds number & dimensional analysis (10 marks)
(a) Using the Buckingham theorem, show that the drag force on a sphere of diameter moving at speed in a fluid of density , viscosity depends on the variables through two dimensionless groups. Identify them. (6)
(b) A model car (scale 1:5) is tested. For dynamic (Reynolds) similarity in the same fluid, what test speed is required if the full car runs at ? (4)
Question 6 — Explain out loud / conceptual (8 marks)
(a) Explain Prandtl's boundary-layer concept and why flow separation requires an adverse pressure gradient. (4)
(b) State the Kutta–Joukowski theorem and explain physically why a spinning cylinder in a uniform stream experiences lift (Magnus effect). (4)
Answer keyMark scheme & solutions
Question 1 (10)
(a) Consider a small element, area , thickness , in a fluid at rest. Vertical force balance: pressure up on bottom, down on top, weight down. (2) (z upward). (2) Integrating from surface () down a depth (so ): . (1)
(b) Cube side , top face at depth . Pressure on top: ; on bottom: . (2) Side forces cancel by symmetry. Net upward force: (2) This equals weight of displaced fluid → Archimedes' principle. (1)
Question 2 (12)
(a) Element mass . Newton's 2nd law along streamline : (2) Weight component along is (assumption: gravity only body force). (1) Steady flow: (assumption: steady, so local ). (1) Divide by : (1) (1) Integrate along streamline (inviscid → no friction term): (2)
(b) (1 each): (4)
- Steady — violated by pulsating/unsteady flow (e.g. water hammer).
- Inviscid — violated near walls / boundary layers (viscous drag).
- Incompressible — violated by high-Mach gas flow.
- Along a streamline (irrotational needed to cross streamlines) — violated across a rotational shear flow / vortex.
Question 3 (10)
(a) Continuity: . (1) Bernoulli (horizontal): . (1) (1) . (1)
(b) Manometer: . (2)
Areas: . . (1) (2) (1)
Question 4 (10)
(a) Coaxial cylinder radius , length . Pressure force drives, viscous shear resists. (2) (2) Integrate: ; no-slip . (2)
(b) (2) (2)
Question 5 (10)
(a) Variables: → . Fundamental dims → . theorem: dimensionless groups. (2) Choosing repeating variables : (3) Thus . (1)
(b) Same fluid ( same). Reynolds similarity: : (4)
Question 6 (8)
(a) Prandtl: at high , viscous effects are confined to a thin boundary layer near the surface; outside it flow is effectively inviscid. (2) Separation: within the boundary layer momentum is already reduced by friction. An adverse pressure gradient () decelerates fluid further; near the wall the low-momentum fluid is brought to rest and reverses, forming the separation point where . Without adverse gradient the near-wall fluid keeps enough momentum to stay attached. (2)
(b) Kutta–Joukowski: lift per unit span , with the circulation. (2) A spinning cylinder drags fluid around it (viscosity), creating circulation . Superposed on the free stream, velocity is higher on one side and lower on the other; by Bernoulli the higher-speed side has lower pressure → net transverse force (Magnus effect). (2)
[
{"claim":"Venturi Delta p = 24721.2 Pa","code":"dp=(13600-1000)*9.81*0.20; result = abs(dp-24721.2)<1e-1"},
{"claim":"Venturi throat velocity approx 7.262 m/s","code":"dp=(13600-1000)*9.81*0.20; ratio=(0.5**2)**2; v2=sqrt(2*dp/1000/(1-ratio)); result = abs(v2-7.262)<1e-2"},
{"claim":"Venturi Q approx 0.01426 m^3/s","code":"import sympy as sp; dp=(13600-1000)*9.81*0.20; ratio=(0.5**2)**2; v2=sqrt(2*dp/1000/(1-ratio)); A2=sp.pi/4*0.05**2; Q=float(A2*v2); result = abs(Q-0.01426)<1e-4"},
{"claim":"Poiseuille integral gives pi R^4 dp/(8 mu L)","code":"import sympy as sp; r,R,dp,mu,L=sp.symbols('r R dp mu L',positive=True); u=dp/(4*mu*L)*(R**2-r**2); Q=sp.integrate(u*2*sp.pi*r,(r,0,R)); result = sp.simplify(Q-sp.pi*R**4*dp/(8*mu*L))==0"},
{"claim":"Model test speed 150 m/s for same-fluid Re similarity","code":"Vm=30*5; result = Vm==150"}
]