Respiratory System
Mastery Examination (Level 5)
Time limit: 75 minutes Total marks: 60 Instructions: Answer ALL questions. Show all reasoning, calculations, and derivations. Where computation is required, state the model and assumptions explicitly. Use for mathematical expressions.
Question 1 — Mechanics, Pressure, and Gas Flow (24 marks)
A physiologist models a single breath. During quiet inhalation the diaphragm and external intercostals contract; treat the thoracic cavity as a sealed cylinder of gas at body temperature (constant ).
(a) Explain the causal chain linking (i) contraction of the diaphragm and external intercostals, (ii) thoracic volume change, (iii) intrapleural/intra-alveolar pressure change, and (iv) bulk air flow. Reference Boyle's Law explicitly. (5)
(b) At the start of inhalation the alveolar gas volume is at intra-alveolar pressure (equal to atmospheric, no flow). The thorax then expands so that, before any air enters, the alveolar volume would momentarily become . Assuming isothermal behaviour, compute the transient intra-alveolar pressure and hence the pressure gradient driving inflow. (4)
(c) Air flows down this gradient. Model airflow as laminar Poiseuille flow through the trachea (radius , length , air viscosity ). Using the from part (b), compute the volumetric flow rate in L/s, and comment on whether this exceeds a resting tidal requirement of about delivered over a inhalation. (5)
(d) A patient's airway narrows so that effective radius falls by 20%. Assuming the same driving , determine the percentage change in , and explain physiologically why bronchoconstriction is so dangerous relative to the small radius change. (4)
(e) Trace the full pathway of an oxygen molecule from external nostril to the site of gas exchange, naming at least seven structures in correct order, and state at which structure gas exchange with blood occurs. (6)
Question 2 — Oxygen Transport and the Bohr Effect (24 marks)
Oxygen binding to haemoglobin (Hb) is cooperative and can be modelled by the Hill equation: where is fractional saturation, is the partial pressure of (in kPa), is the at half-saturation, and is the Hill coefficient.
(a) Explain, in molecular terms, why for haemoglobin but for myoglobin, and what the sigmoidal shape means physiologically for loading in lungs vs unloading in tissues. (5)
(b) Take and (arterial/normal conditions).
- (i) Compute at the alveolar . (2)
- (ii) Compute at a resting tissue . (2)
- (iii) Hence compute the fraction of bound released to resting tissue during one pass. (2)
(c) The Bohr effect: actively respiring muscle produces and lowers pH. Model this as a rightward shift of to (same ). Recompute at tissue , and hence the new fraction of released (still loading at 13.3 kPa where you may reuse (b)(i) with the shifted curve — recompute it). Quantify the extra oxygen delivered due to the Bohr shift, and explain the biochemical cause of the shift. (7)
(d) Write a short, self-contained Python function hill(P, n, p50) returning , then describe (in words or pseudocode) how you would use it to numerically locate from a dataset of pairs where is unknown. State one validity check you would apply to confirm your fitted and are physiologically sensible. (6)
Question 3 — Comparative Respiratory Surfaces & Regulation (12 marks)
(a) Fish gills use countercurrent exchange while human alveoli use a concurrent/pool arrangement with air. Explain, using the concept of a maintained diffusion gradient (Fick's law ), why countercurrent flow can extract up to ~80% of dissolved whereas a concurrent system is limited to ~50%. (5)
(b) Insects use tracheae delivering air directly to tissues. State two consequences this has for (i) body size limits and (ii) the role of the circulatory system in gas transport. (3)
(c) Describe how a rise in blood during exercise is detected and how it increases ventilation rate, naming the chemoreceptors, the sensed variable, and the effector muscles. (4)
Answer keyMark scheme & solutions
Question 1
(a) (5 marks)
- Diaphragm contracts → flattens/moves down; external intercostals contract → ribs move up and out (1).
- Thoracic (and hence lung) volume increases (1).
- By Boyle's Law ( at constant ), increased volume → decreased pressure; intrapleural pressure becomes more negative and intra-alveolar pressure drops below atmospheric (2).
- Air flows down the pressure gradient from high (atmosphere) to low (alveoli) = bulk inflow (1).
(b) (4 marks) Isothermal → (1). (2) (1)
(c) (5 marks) (1). Numerator (1). Denominator (1). — but converting: (1). This vastly exceeds the required ; the idealised Poiseuille value is enormous because real breathing uses a far smaller , turbulent/branched flow, and the airway resistance of the whole tree, not a single wide tube. Conclusion: the gradient is more than adequate; airway resistance and elastic recoil dominate, not gradient scarcity (1).
(d) (4 marks) . New radius , so (2). Percentage change (a ~59% drop) (1). A mere 20% narrowing cuts flow by ~59% because of the fourth-power dependence; bronchoconstriction therefore causes disproportionately severe reductions in airflow, explaining acute distress in asthma (1).
(e) (6 marks) Any correct ordered pathway with ≥7 structures (½ each up to 6): Nostril/nasal cavity → pharynx → larynx → trachea → primary bronchus → bronchioles → terminal/respiratory bronchioles → alveoli. Gas exchange occurs at the alveoli (alveolar–capillary membrane) (must be stated for full marks).
Question 2
(a) (5 marks)
- Hb has four subunits; binding of to one subunit induces a conformational change (T→R state) raising affinity of the others = positive cooperativity → (2).
- Myoglobin has a single binding site, no cooperativity possible → , hyperbolic curve (1).
- Sigmoidal shape means Hb is near-saturated at high lung (efficient loading) yet steeply unloads over the physiological tissue range (efficient delivery where falls) (2).
(b) (i) : , . (2). (ii) : (2). (iii) Fraction released (2).
(c) (7 marks) Shifted . Loading at 13.3: (1). Unloading at 5.3: (2). Released with Bohr shift (1). Extra delivered vs part (b): , i.e. ~16 percentage points more oxygen unloaded (1). Cause: metabolic + ; the (and binding to Hb) stabilises the T (low-affinity) state, raising and shifting the curve right — Hb releases more precisely where metabolism is highest (2).
(d) (6 marks)
def hill(P, n, p50):
return P**n / (p50**n + P**n)(2 for correct function.)
Fitting method (3): given data pairs, define residual ; minimise over using nonlinear least squares (e.g. scipy.optimize.curve_fit). Alternatively linearise via the Hill plot: ; slope , and i.e. where .
Validity check (1): confirm fitted and kPa for normal Hb (physiologically plausible), and that residuals are small/unbiased.
Question 3
(a) (5 marks)
- Fick: flux depends on maintained concentration difference across the surface (1).
- Countercurrent: water and blood flow in opposite directions, so blood always meets water of higher than itself along the entire length → a gradient is sustained the whole way, allowing uptake toward the incoming-water concentration (~80%) (2).
- Concurrent/pool: both approach a common equilibrium; once blood and water equalise (~halfway value), the gradient vanishes and no further uptake occurs, capping extraction near ~50% (2).
(b) (3 marks) (i) Diffusion through tracheae is slow over long distances, so oxygen supply limits maximum body size in insects (1.5). (ii) Gas transport is decoupled from blood; the circulatory (haemolymph) system plays little/no role in transport, carrying nutrients not oxygen (1.5).
(c) (4 marks)
- Rising blood lowers pH; detected by central chemoreceptors (medulla) sensing CSF / and peripheral chemoreceptors (carotid & aortic bodies) (2).
- Sensed variable is primarily / (not directly ) (1).
- The respiratory centre increases firing to effector muscles — diaphragm and intercostals — raising rate and depth of breathing (1).
[
{"claim":"P2 from Boyle's law is 95.34 kPa (approx)","code":"P2=101.3*2.40/2.55; result = abs(P2-95.34)<0.05"},
{"claim":"Flow reduced to 0.8**4 = 0.4096 i.e ~59% drop","code":"ratio=0.8**4; result = abs(ratio-0.4096)<1e-4 and abs((ratio-1)*100+59.04)<0.1"},
{"claim":"Normal release fraction b(iii) approx 0.242","code":"import sympy as sp\nY1=sp.Rational(133,10)**sp.Float(2.8)/(sp.Float(35,1)**0); \nfa=lambda P,p50:(P**2.8)/(p50**2.8+P**2.8)\nrel=fa(13.3,3.5)-fa(5.3,3.5); result = abs(float(rel)-0.242)<0.01"},
{"claim":"Bohr-shifted release fraction approx 0.403 and extra ~0.16","code":"fa=lambda P,p50:(P**2.8)/(p50**2.8+P**2.8)\nnormal=fa(13.3,3.5)-fa(5.3,3.5)\nbohr=fa(13.3,5.0)-fa(5.3,5.0)\nresult = abs(bohr-0.403)<0.01 and abs((bohr-normal)-0.161)<0.01"}
]