Before starting to program our neuron model, let us talk about the H-H (hodgkin Huxley) model of neuron.
Electrical signals are propagated from nerve cell to nerve cell (neuron) via electro-chemical mechanisms. Hodgkin and Huxley experimented on squids and discovered how the signals are produced within the neuron. H.-H. model was published in Jour. of Physiology (1952). Hodgkin and Huxley were awarded 1963 Nobel Prize.
The neuron axon membrane has a potential difference,
V=Vin−Vout
V=Vin−Vout
When the axon is excited, V spikes because sodium Na+ and potassium K+ ions flow through the membrane. An equivalent electrical model proposed by Hodgkin and Huxley is as follows:
This circuit is governed by the differential equations:
CdVdt=−gNam3h(V−VNa)−gKn4(V−VK)−gl(V−Vl)+Iext
Alpha and beta are also functions of V which are determined by:
αn=0.01(10−V)exp(1−V10)−1
At t=∞ dndt=0, therefore we can calculate:n∞=αn(−V)αn(−V)+βn(−V)
m∞ and h∞ have similar formulas.
Now, based on these equations we will make our program. So let's get down to some real coding :D. We will make a neuron spiking model first and then write a program to analyse the phase space of the parameters by plotting some graphs (Beware its a 4D phase space).
Please follow my second article of the series where I'll discuss the programs.
This circuit is governed by the differential equations:
CdVdt=−gNam3h(V−VNa)−gKn4(V−VK)−gl(V−Vl)+Iext
dmdt=αm(v)(1−m)−βm(v)m
dndt=αn(v)(1−n)−βn(v)n
dhdt=αh(v)(1−h)−βh(v)h
Alpha and beta are also functions of V which are determined by:
αn=0.01(10−V)exp(1−V10)−1
βn=0.125exp−(V80)
αm=0.1(25−V)exp(2.5−V10)−1
βm=4exp−(V18)
αh=0.07exp−(V20)
βh=1exp(3−V10)+1
At t=∞ dndt=0, therefore we can calculate:n∞=αn(−V)αn(−V)+βn(−V)
m∞ and h∞ have similar formulas.
Now, based on these equations we will make our program. So let's get down to some real coding :D. We will make a neuron spiking model first and then write a program to analyse the phase space of the parameters by plotting some graphs (Beware its a 4D phase space).
Please follow my second article of the series where I'll discuss the programs.
This comment has been removed by a blog administrator.
ReplyDelete