NEURON provides a great environment to design and simulate spatially-extended neuron models with multiple compartments. However, it only implements linear spatial discretization, where morphological sections are approximated by cylindrical compartments and connected in a cable-like topological organization. That is not suited for the representation of radially-symmetric models.
Due to this fixed morphological representation mode, a precise geometrical conversion scheme must be defined in order to enable the simulation of radially-symmetric models with NEURON. Particularly, such a conversion scheme must ensure that the axial and membrane currents are correct.
Consider two radially symmetric membrane sections: a central, circular membrane patch (compartment
The membrane surface areas of both compartments are given by:
$A_{m ,C} = \pi \cdot a^2$ $A_{m ,P} = \pi \cdot (b^2 - a^2)$
Hence, given the membrane currents densities in each compartment, respectively
$I_{m, C} = i_{m, C} \cdot A_{m, C} = i_{m, C} \cdot \pi \cdot a^2$ $I_{m, P} = i_{m, P} \cdot A_{m, P} = i_{m, P} \cdot \pi \cdot (b^2 - a^2)$
The "intracellular surface area" of a given radial cross-section at a radius r from the center is given by:
Moreover, given an intracellular radial resistivity
Hence, the total intracellular current flowing through a radial cross-section of radius
From which we can isolate the local potential variation as:
Integrating that variation between two radii
where
Now, to compute the radial intracellular current between the two compartments of our model, we can assume an intracellular resistor that spans between the middle radial coordinates of compartments
Finally, we can expres the intracellular current spreading radially between compartments
The simplest way to represent two connected compartments in NEURON is through a standard cable model containing two cylindrical sections of diameters
The membrane surface areas of both cylinders are given by:
$A_{m, 1} = \pi \cdot d_1 \cdot L_1$ $A_{m, 2} = \pi \cdot d_2 \cdot L_2$
Hence, given the membrane currents densities in each compartment, respectively
$I_{m, 1} = i_{m, 1} \cdot A_{m, 1} = i_{m, 1} \cdot \pi \cdot d_1 \cdot L_1$ $I_{m, 2} = i_{m, 2} \cdot A_{m, 2} = i_{m, 2} \cdot \pi \cdot d_2 \cdot L_2$
Given a resistivity
To compute the longitudinal intracellular current between the two compartments of our model, we can assume that RC nodes are located at the mid-point of each section along the longitudinal axis. Hence we have:
In order to accurately represent the radially-symmetric model in NEURON, the geometries of the two cylindrical cable compartments must defined such that, for identical values of transmembrane potentials (
$I_{m, C} = I_{m, 1}$ $I_{m, P} = I_{m, 2}$ $I_r = I_{ax}$
that is:
$\pi \cdot a^2 \cdot i_{m,C} = \pi \cdot d_1 \cdot L_1 \cdot i_{m, 1}$ $\pi \cdot (b^2 - a^2) \cdot i_{m, P} = \pi \cdot d_2 \cdot L_2 \cdot i_{m, 2}$ $\frac{V_P - V_C}{\frac{\rho}{2\pi \cdot h} \cdot \ln(\frac{a + b}{a})} = \frac{V_2 - V_1}{\frac{2 \rho}{\pi}\big(\frac{L_1}{d_1^2} + \frac{L_2}{d_2^2}\big)}$
given
After simplification, we obtain the following system of equivalences between the 3 parameters of the radially-symmetric model (
$a^2 = d_1 \cdot L_1$ $b^2 - a^2 = d_2 \cdot L_2$ $\ln(\frac{a + b}{a}) = 4 \cdot h \big(\frac{L_1}{d_1^2} + \frac{L_2}{d_2^2}\big)$
In order to solve the system, we must equalize the number of unknowns with the number of equations. Therefore, we impose identical diameters to the two compartments of the cable model (
$a^2 = d \cdot L_1$ $b^2 - a^2 = d \cdot L_2$ $\ln(\frac{a + b}{a}) = \frac{4 \cdot h}{d^2}(L_1 + L_2)$
After algebraic resolution, we obtain:
$d = \sqrt[3]{\frac{4 \cdot h \cdot b^2}{\ln(\frac{a + b}{a})}}$ $L_1 = \frac{a^2}{d}$ $L_2 = \frac{b^2 - a^2}{d}$