Afferent arteriole autoregulation

This model extends the original autoregulatory model presented by Feldberg et al., adding an explicit glomerulus and calculating model SNGFR in addition to afferent flow.

The source code is available under the BSD 3-Clause license.

Overview

The original model comprised only an afferent arteriole (AA) and an efferent arteriole (EA), with the hydrostatic pressure defined at the start of the AA (the inflow pressure) and the end of the EA (the venous return pressure). The glomerulus was treated only as a single spatial point, at the junction of the AA and EA segments. This meant that once the resistance of each AA segments was known, the pressure drop along the entire model could be directly obtained (the EA was assumed to have a constant resistance).

We added an explicit glomerular capillary bed (GC), of unit length and constant resistance, whose membrane is permeable to water and solutes. There is a pressure gradient across the membrane which drives filtration. The single-nephron glomerular filtration rate (SNGFR) is the rate at which plasma is filtered from the GC into Bowman's capsule.

The flow rate in the GC decreases as a function of distance from the AA, in response to this filtration. This change in flow rate affects the pressure drop along the GC, and the filtration pressure gradient.

Accordingly, once the resistance of each AA segment is known we need to solve for the hydrostatic pressure at the start of the GC, such that the pressure drop across the system equals the difference between the inflow and venous return pressures. Once this pressure is known, we can then calculate the flow rate and pressure everywhere in the model.

Equations

In the updated model, there is an explicit pressure profile along the glomerular capillary bed and glomerular filtration is accounted for. The initial hydrostatic pressure PG(0)P_G(0), blood flow BG(0)B_G(0), and plasma flow QG(0)Q_G(0) depend upon the afferent blood flow BAAB_{AA} and resistance RAAR_{AA} and the plasma hematocrit HctH_{ct}:

PG(0)=PArtBAA×RAABG(0)=BAAQG(0)=BG(0)×(1Hct)\begin{align} P_G(0) &= P_{Art} - B_{AA} \times R_{AA} \cr B_G(0) &= B_{AA} \cr Q_G(0) &= B_G(0) \times (1 - H_{ct}) \cr \end{align}

From these glomerular inflows we can calculate the SNGFR and efferent blood flow BG(1)B_G(1), given the glomerular resistance RGR_G, filtration coefficient KfK_f, and oncotic pressure Π(x)\Pi(x):

PG(1)=01BG(x)×RG,dxQG(1)=01Kf×(PG(x)Π(x)PBC),dxBG(x)=BG(0)(QG(0)QG(x))SNGFR=QG(0)QG(1)\begin{align} P_G(1) &= \int_0^1 - B_{G}(x) \times R_G,dx \cr Q_G(1) &= \int_0^1 - K_f \times (P_G(x) - \Pi(x) - P_{BC}),dx \cr B_G(x) &= B_G(0) - (Q_G(0) - Q_G(x)) \cr \text{SNGFR} &= Q_G(0) - Q_G(1) \end{align}

Oncotic pressure is defined as a cubic function of plasma protein concentration Cp(x)C_p(x):

Π(x)=2.1Cp(x)+0.16[Cp(x)]2+0.009[Cp(x)]3Cp(x)=Cp(0)×QG(0)QG(x)Cp(0)=5.5 (plasma protein concentration, g/dL)\begin{align} \Pi(x) &= 2.1 \cdot C_p(x) + 0.16 \cdot \left[ C_p(x) \right]^2 + 0.009 \cdot \left[ C_p(x) \right]^3 \cr C_p(x) &= C_p(0) \times \frac{Q_G(0)}{Q_G(x)} \cr C_p(0) &= 5.5 \text{ (plasma protein concentration, g/dL)} \end{align}

Solver

In order to obtain a solution to these equations, we need to find the value of PG(0)P_G(0) for which conservation of energy is preserved:

0=PG(1)PVBG(1)×REA\begin{align} 0 &= P_G(1) - P_V - B_G(1) \times R_{EA} \end{align}

That is, for the correct value of PG(0)P_G(0) the pressure drop across the EA as determined by the pressure profile (PG(1)PV)(P_G(1) - P_V) will equal the pressure drop across the EA as determined by the efferent blood flow rate (BG(1)×REA)(B_G(1) \times R_{EA}).

Given the net afferent resistance RAAR_{AA}, a solution for PG(0)P_G(0) is obtained using a bisection method. This determines the hydrostatic pressure and flow rate at every spatial location in the model. The muscle activation of each AA segment can then be updated and a new value for the inner radius of each AA segment is obtained. The net afferent resistance is updated accordingly, and PG(0)P_G(0) can again be solved.

This iterative process begins with the normalised inner radius of each segment set to 1, and is repeated until the relative change in inner radius is less than 10810^{-8}.

Figures

The following figures demonstrate that this implementation can reproduce the results presented in the original manuscript.


Figure 1: The relationship between stress σ\sigma and strain ε\varepsilon, for varying levels of muscle activation Ψ\Psi. Solid lines show net stress σe+σa\sigma_e + \sigma_a and dashed lines show active stress σa\sigma_a.

Figure 2: The relationship between transmural pressure PP and normalised inner radius rPr_P, for varying levels of muscle activation Ψ\Psi.

Figure 3: The relationship between transmural pressure PP and normalised inner radius rPr_P, for three myogenic responses ΨMYO(P)\Psi_{MYO}(P) with different slopes.