ANNarchy 4.8.2
  • ANNarchy
  • Installation
  • Tutorial
  • Manual
  • Notebooks
  • Reference

  • Reference
  • Core components
    • Population
    • Projection
    • Neuron
    • Synapse
    • Monitor
    • PopulationView
    • Dendrite
    • Network
  • Configuration
    • setup
    • compile
    • clear
    • reset
    • set_seed
    • get_population
    • get_projection
    • populations
    • projections
    • monitors
  • Simulation
    • simulate
    • simulate_until
    • step
    • parallel_run
    • enable_learning
    • disable_learning
    • get_time
    • set_time
    • get_current_step
    • set_current_step
    • dt
  • Neuron models
    • LeakyIntegrator
    • Izhikevich
    • IF_curr_exp
    • IF_cond_exp
    • IF_curr_alpha
    • IF_cond_alpha
    • HH_cond_exp
    • EIF_cond_alpha_isfa_ista
    • EIF_cond_exp_isfa_ista
  • Synapse models
    • STP
    • STDP
    • Hebb
    • Oja
    • IBCM
  • Inputs
    • InputArray
    • TimedArray
    • PoissonPopulation
    • TimedPoissonPopulation
    • SpikeSourceArray
    • HomogeneousCorrelatedSpikeTrains
    • CurrentInjection
    • DecodingProjection
    • ImagePopulation
    • VideoPopulation
  • IO
    • save
    • load
    • save_parameters
    • load_parameters
  • Utilities
    • report
  • Random Distributions
    • Uniform
    • DiscreteUniform
    • Normal
    • LogNormal
    • Exponential
    • Gamma
    • Binomial
  • Functions and Constants
    • add_function
    • functions
    • Constant
    • get_constant
  • Plotting
    • raster_plot
    • histogram
    • inter_spike_interval
    • coefficient_of_variation
    • population_rate
    • smoothed_rate
  • Callbacks
    • every
    • callbacks_enabled
    • disable_callbacks
    • enable_callbacks
    • clear_all_callbacks
  • Convolution
    • Convolution
    • Pooling
    • Transpose
    • Copy
  • BOLD monitoring
    • BoldMonitor
    • BoldModel
    • balloon_RN
    • balloon_RL
    • balloon_CN
    • balloon_CL
    • balloon_maith2021
    • balloon_two_inputs
  • Tensorboard logging
    • Logger
  • ANN-to-SNN conversion
    • ANNtoSNNConverter

On this page

  • IF_curr_exp
    • Parameters

IF_curr_exp

models.Neurons.IF_curr_exp(
    self,
    v_rest=-65.0,
    cm=1.0,
    tau_m=20.0,
    tau_refrac=0.0,
    tau_syn_E=5.0,
    tau_syn_I=5.0,
    v_thresh=-50.0,
    v_reset=-65.0,
    i_offset=0.0,
)

Leaky integrate-and-fire model with fixed threshold and decaying-exponential post-synaptic current.

(Separate synaptic currents for excitatory and inhibitory synapses).

Parameters:

  • v_rest = -65.0 : Resting membrane potential (mV)
  • cm = 1.0 : Capacity of the membrane (nF)
  • tau_m = 20.0 : Membrane time constant (ms)
  • tau_refrac = 0.0 : Duration of refractory period (ms)
  • tau_syn_E = 5.0 : Decay time of excitatory synaptic current (ms)
  • tau_syn_I = 5.0 : Decay time of inhibitory synaptic current (ms)
  • i_offset = 0.0 : Offset current (nA)
  • v_reset = -65.0 : Reset potential after a spike (mV)
  • v_thresh = -50.0 : Spike threshold (mV)

Variables:

  • v : membrane potential in mV (init=-65.0):

    cm * dv/dt = cm/tau_m*(v_rest -v) + g_exc - g_inh + i_offset

  • g_exc : excitatory current (init = 0.0):

    tau_syn_E * dg_exc/dt = - g_exc

  • g_inh : inhibitory current (init = 0.0):

    tau_syn_I * dg_inh/dt = - g_inh

Spike emission:

v > v_thresh

Reset:

v = v_reset

The ODEs are solved using the exponential Euler method.

Equivalent code:


IF_curr_exp = Neuron(
    parameters = """
        v_rest = -65.0
        cm  = 1.0
        tau_m  = 20.0
        tau_syn_E = 5.0
        tau_syn_I = 5.0
        v_thresh = -50.0
        v_reset = -65.0
        i_offset = 0.0
    """, 
    equations = """
        cm * dv/dt = cm/tau_m*(v_rest -v)   + g_exc - g_inh + i_offset : exponential, init=-65.0
        tau_syn_E * dg_exc/dt = - g_exc : exponential
        tau_syn_I * dg_inh/dt = - g_inh : exponential
    """,
    spike = "v > v_thresh",
    reset = "v = v_reset",
    refractory = 0.0
)

Parameters

Name Type Description Default
v_rest float Resting membrane potential (mV) -65.0
cm float Capacity of the membrane (nF) 1.0
tau_m float Membrane time constant (ms) 20.0
tau_refrac float Duration of refractory period (ms) 0.0
tau_syn_E float Decay time of excitatory synaptic current (ms) 5.0
tau_syn_I float Decay time of inhibitory synaptic current (ms) 5.0
i_offset float Offset current (nA) 0.0
v_reset float Reset potential after a spike (mV) -65.0
v_thresh float Spike threshold (mV) -50.0
Izhikevich
IF_cond_exp
 

Copyright Julien Vitay, Helge Ülo Dinkelbach, Fred Hamker