The given code is a computational representation of a simplified biological neuron model focused on simulating the dynamics of membrane potential (Vm
) under the influence of Ih current using a ZAP (impedance amplitude profile) input. This model aims to capture the biophysical behavior of a neuron, particularly the role of the hyperpolarization-activated cation current known as Ih
. Below are the key biological aspects reflected in the code:
Membrane Properties:
The neuron is modeled as a spherical cell with specific membrane properties. The membrane is characterized by parameters such as its specific capacitance (Cm
) and leak conductance (gL
). These represent the cell's ability to store and conduct charge, essential features for neuronal excitability.
Membrane Potential (Vm
):
Reflects the difference in electric potential across the neuronal membrane, which changes in response to ionic currents.
Ih
CurrentIh Conductance (gh_max
) and Reversal Potential (Eh
):
The code models the Ih
current, which is a mixed sodium-potassium current activated by hyperpolarization. It is defined by its maximal conductance (gh_max
) and reversal potential (Eh
), representing the voltage at which the flow of ions through the Ih
channels stops.
Activation Dynamics:
The Ih
current is regulated by voltage-dependent gating variables (Xf
for fast, Xs
for slow), which determine the fraction of open ion channels. These gating variables evolve according to specific time constants (Taf
, Tas
, Tdf
, Tds
) that differ for activation and deactivation phases.
Steady State and Fractional Contribution:
The model incorporates a voltage-dependent steady-state activation curve using parameters like A
, Vh
, and k
, and calculates the fraction of fast and slow component contributions to Ih
with parameters (Vh1
, Vh2
, k1
, k2
, B
).
EL
):Izap
):Ih
, the leak current, and applied currents.This model, while simplified, captures the essential dynamics of neuronal excitability, focusing specifically on the role of Ih
currents. These currents are known for their involvement in rhythmic activity in neuronal circuits, contributing to oscillatory behavior and influencing the timing of neuronal firing such as in pacemaker activities. The simulation of Ih
provides insights into how neurons respond to hyperpolarizing inputs and adapt their activity to varying temporal patterns.
Overall, the code offers a biological perspective on how ion channel dynamics and membrane properties combine to shape the electrical behavior of neurons.