Kir2p3_RI2021_SC#
- class braincell.channel.Kir2p3_RI2021_SC(size, g_max=Quantity(0.9, 'mS / cm^2'), temp=Quantity(303.15, 'K'), name=None)#
Kir2.3 inward-rectifier current of the stellate cell model.
Hyperpolarization-activated inward-rectifier potassium current imported from the cerebellar stellate cell model of Rizza et al. (2021) [2]. A single first-order
dgate of power 1 drives an ohmic current, with the gate written in alpha/beta form:\[\begin{split}\begin{aligned} \alpha_d &= 0.13289 \, \exp(-(V + 83.94) / 24.3902) \\ \beta_d &= 0.16994 \, \exp((V + 83.94) / 35.714) \end{aligned}\end{split}\]where \(V\) is in millivolts and the rates are per millisecond. The template forms \(d_\infty = \alpha_d / (\alpha_d + \beta_d)\) and \(\tau_d = 1 / (\alpha_d + \beta_d)\) from these; half activation falls near -87.5 mV, and \(d_\infty\) rises towards 1 as the membrane hyperpolarizes. This class applies no voltage shift, and the reversal potential comes from the potassium ion object rather than from the class.
- Parameters:
size (
int|Sequence[int] |integer|Sequence[integer]) – Channel state shape.g_max (
Array|ndarray|bool|number|bool|int|float|complex|Quantity|Callable) – Maximal conductance density. Defaults to0.9 mS/cm2, which is exactly the source mechanism’sgkbar = 0.0009 mho/cm2.temp (
Array|ndarray|bool|number|bool|int|float|complex|Quantity) – Absolute temperature driving the gate’s q10 factor, default 30 degrees Celsius. This matches thecelsius = 30 (degC)written in the source mechanism’sPARAMETERblock.
See also
Kir2p3_MA2020_GrCGranule-cell port of the same mechanism.
Kir2p3_MA2024_PCPurkinje-cell port of the same mechanism.
Kir2p3_MA2025_BCBasket-cell port of the same mechanism.
KM_RI2021_SCM-type current of the same stellate model, sharing the same origin paper.
Notes
Ported from
SC/channel/Kir2p3_RI21_SC.mod. That file and the granule, Purkinje and basket ports are byte-identical apart from theirSUFFIXline and, in the Purkinje port only, the mechanism-localcelsiusdefault. The four BrainCell classes are likewise identical, so the rate constants above are shared verbatim withKir2p3_MA2020_GrC,Kir2p3_MA2024_PCandKir2p3_MA2025_BC. What differs is only the deposit each was imported from, and therefore the model paper cited below.The rectification lives in the gate, not in the current. The current expression is the plain ohmic
g_max * d * (E_K - V)supplied byOhmicHH; there is no Mg2+ or polyamine block term anywhere in the mechanism. The inward-rectifier behaviour comes entirely from \(d_\infty\) increasing as the membrane hyperpolarizes.Where the q10 factor is applied. The gate declares
q10 = 3.0at a reference of 20 degrees Celsius, soHH.compute_derivative()scales the whole \(\alpha_d (1 - d) - \beta_d d\) term by \(\phi = 3^{(T - 20)/10}\), which is exactly 3 at the default 30 degrees Celsius. The.modfile instead multipliesQ10intoalp_dandbet_d. The two forms are algebraically identical, but it meansf_d_alpha()andf_d_beta()return the q10-free rates rather than the mechanism’salpha_d/beta_d.Provenance, and what the header does not establish. The
.modCOMMENTcarries a reference string that is the published title of D’Angelo et al. (2001) truncated mid-subtitle, plus the porting note “Suffix from Ubc_Kir to Kir2_3”. Neither is treated as a citation here. The kinetics originate in the cerebellar granule cell model of D’Angelo et al. (2001) [1]; the stellate-cell paper [2] names the model this parameterisation was imported from, not the origin of the equations.Conductance default.
0.9 mS/cm2is the deposit’s tuned value, carried across from the.modfile. It is not a value printed in either cited paper.Import deviations. The original mechanism’s NMODL
TABLEover[-100, 100] mV, coveringd_infandtau_d, is not reproduced: both expressions are evaluated per call. NEURON used the boundary value outside that window, so any BrainCell-versus-NEURON divergence below -100 mV or above 100 mV is expected rather than a port error. The integration method was also changed fromderivimplicittocnexp; with one independent gate ODE that substitution is exact.References