izhikevich_neuron

izhikevich - Izhikevich neuron model

Description

Implementation of the simple spiking neuron model introduced by Izhikevich [1]. The dynamics are given by:

\[\begin{split}dV_{m}/dt &= 0.04 V_{m}^2 + 5 V_{m} + 140 - U_{m} + I\\ dU_{m}/dt &= a (b V_{m} - U_{m})\end{split}\]
\[\begin{split}&\text{if}\;\; V_{m} \geq V_{th}:\\ &\;\;\;\; V_{m} \text{ is set to } c\\ &\;\;\;\; U_{m} \text{ is incremented by } d\\ & \, \\ &V_{m} \text{ jumps on each spike arrival by the weight of the spike}\end{split}\]

Incoming spikes cause an instantaneous jump in the membrane potential proportional to the strength of the synapse.

As published in [1], the numerics differs from the standard forward Euler technique in two ways:

  1. the new value of \(U_{m}\) is calculated based on the new value of \(V_{m}\), rather than the previous value

  2. the variable \(V_{m}\) is updated using a time step half the size of that used to update variable \(U_{m}\).

This model will instead be simulated using the numerical solver that is recommended by ODE-toolbox during code generation.

References

Parameters

Name

Physical unit

Default value

Description

a

real

0.02

describes time scale of recovery variable

b

real

0.2

sensitivity of recovery variable

c

mV

-65mV

after-spike reset value of V_m

d

real

8.0

after-spike reset value of U_m

V_m_init

mV

-65mV

initial membrane potential

V_min

mV

-inf * mV

Absolute lower value for the membrane potential.

V_th

mV

30mV

Threshold potential

I_e

pA

0pA

constant external input current

State variables

Name

Physical unit

Default value

Description

V_m

mV

V_m_init

Membrane potential

U_m

real

b * V_m_init

Membrane potential recovery variable

Equations

\[\frac{ dV_{m} } { dt }= \frac 1 { \mathrm{ms} } \left( { (\frac{ 0.04 \cdot V_{m} \cdot V_{m} } { \mathrm{mV} } + 5.0 \cdot V_{m} + (140 - U_{m}) \cdot \mathrm{mV} + ((I_{e} + I_{stim}) \cdot \mathrm{GOhm})) } \right)\]
\[\frac{ dU_{m} } { dt }= \frac{ a \cdot (b \cdot V_{m} - U_{m} \cdot \mathrm{mV}) } { (\mathrm{mV} \cdot \mathrm{ms}) }\]

Source code

The model source code can be found in the NESTML models repository here: izhikevich_neuron.

Synaptic response

izhikevich_neuron postsynaptic response

Response to pulse current injection

izhikevich_neuron current pulse response

f-I curve

izhikevich_neuron f-I curve