Processing math: 100%

Pages

Thursday, 11 July 2013

Hodgkin Huxley model (part 1)

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=VinVout
 
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(VVNa)gKn4(VVK)gl(VVl)+Iext
dmdt=αm(v)(1m)βm(v)m
dndt=αn(v)(1n)βn(v)n
dhdt=αh(v)(1h)βh(v)h


Alpha and beta are also functions of V which are determined by:
αn=0.01(10V)exp(1V10)1
βn=0.125exp(V80)
αm=0.1(25V)exp(2.5V10)1
βm=4exp(V18)
αh=0.07exp(V20)
βh=1exp(3V10)+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.


 

1 comment:

  1. This comment has been removed by a blog administrator.

    ReplyDelete