iaf_psc_exp – Leaky integrate-and-fire neuron model with exponential-shaped input currents¶
Description¶
iaf_psc_exp
a leaky integrate-and-fire model with
a hard threshold (if \(\delta=0\), see below)
a fixed refractory period,
no adaptation mechanisms,
exponential-shaped synaptic input currents according to [1].
Membrane potential evolution, spike emission, and refractoriness¶
The membrane potential evolves according to
where the synaptic input current \(I_{\text{syn}}(t)\) is discussed below and \(I_\text{e}\) is a constant input current set as a model parameter.
A spike is emitted at time step \(t^*=t_{k+1}\) if
Subsequently,
that is, the membrane potential is clamped to \(V_{\text{reset}}\) during the refractory period.
Note
Spiking in this model can be either deterministic (\(\delta=0\)) or stochastic (\(\delta > 0\)). In the stochastic case, this model implements a type of spike response model with escape noise. Spiking is given by an inhomogeneous Poisson process with rate
Synaptic input¶
The synaptic input current has an excitatory and an inhibitory component
where
where \(j\) indexes either excitatory (\(\text{X} = \text{ex}\)) or inhibitory (\(\text{X} = \text{in}\)) presynaptic neurons, \(k\) indexes the spike times of neuron \(j\), and \(d_j\) is the delay from neuron \(j\).
The individual post-synaptic currents (PSCs) are given by
where \(w\) is a weight (excitatory if \(w > 0\) or inhibitory if \(w < 0\)), and \(\Theta(x)\) is the Heaviside step function. The time dependent components of the PSCs are normalized to unit maximum, so that,
As a consequence, the total charge \(q\) transferred by a single PSC depends on the synaptic time constant according to
Note
If tau_m
is very close to tau_syn_ex
or tau_syn_in
, the model
will numerically behave as if tau_m
is equal to tau_syn_ex
or
tau_syn_in
, respectively, to avoid numerical instabilities.
NEST uses exact integration [2], [3] to integrate subthreshold membrane dynamics with maximum precision.
For implementation details see the IAF Integration Singularity notebook.
iaf_psc_exp
can handle current input in two ways:
Current input through
receptor_type
0 is handled as a stepwise constant current input as in other iaf models, that is, this current directly enters the membrane potential equation.In contrast, current input through
receptor_type
1 is filtered through an exponential kernel with the time constant of the excitatory synapse,tau_syn_ex
.For an example application, see [4].
Warning: this current input is added to the state variable
i_syn_ex_
. If this variable is being recorded, its numerical value will thus not correspond to the excitatory synaptic input current, but to the sum of excitatory synaptic input current and the contribution from receptor type 1 currents.
For conversion between postsynaptic potentials (PSPs) and PSCs,
please refer to the postsynaptic_potential_to_current
function in
PyNEST Microcircuit: Helper Functions.
Parameters¶
The following parameters can be set in the status dictionary.
Parameter |
Default |
Math equivalent |
Description |
---|---|---|---|
|
-70 mV |
\(E_\text{L}\) |
Resting membrane potential |
|
250 pF |
\(C_{\text{m}}\) |
Capacity of the membrane |
|
10 ms |
\(\tau_{\text{m}}\) |
Membrane time constant |
|
2 ms |
\(t_{\text{ref}}\) |
Duration of refractory period |
|
-55 mV |
\(V_{\text{th}}\) |
Spike threshold |
|
-70 mV |
\(V_{\text{reset}}\) |
Reset potential of the membrane |
|
2 ms |
\(\tau_{\text{syn, ex}}\) |
Rise time of the excitatory synaptic alpha function |
|
2 ms |
\(\tau_{\text{syn, in}}\) |
Rise time of the inhibitory synaptic alpha function |
|
0 pA |
\(I_\text{e}\) |
Constant input current |
|
0 mV |
\(\delta\) |
Parameter scaling stochastic spiking |
|
0.01 1/s |
\(\rho\) |
Baseline stochastic spiking |
The following state variables evolve during simulation and are available either as neuron properties or as recordables.
State variable |
Initial value |
Math equivalent |
Description |
---|---|---|---|
|
-70 mV |
\(V_{\text{m}}\) |
Membrane potential |
|
0 pA |
\(I_{\text{syn, ex}}\) |
Excitatory synaptic input current |
|
0 pA |
\(I_{\text{syn, in}}\) |
Inhibitory synaptic input current |
References¶
Sends¶
SpikeEvent
Receives¶
SpikeEvent, CurrentEvent, DataLoggingRequest
See also¶
iaf_cond_exp, iaf_psc_exp_ps