neat.NeuronSimTree.add_double_exp_nmda_synapse¶
- NeuronSimTree.add_double_exp_nmda_synapse(loc, tau1, tau2, tau1_nmda, tau2_nmda, e_r=0.0, nmda_ratio=1.7)[source]¶
Adds a double-exponential conductance-based synapse with an AMPA and an NMDA component
- Parameters:
loc (dict, tuple or neat.MorphLoc) – The location of the current.
tau1 (float) – Rise time of the AMPA conductance window (ms)
tau2 (float) – Decay time of the AMPA conductance window (ms)
tau1_nmda (float) – Rise time of the NMDA conductance window (ms)
tau2_nmda (float) – Decay time of the NMDA conductance window (ms)
e_r (float (optional, default
0.mV)) – Reversal potential of the synapse (mV)nmda_ratio (float (optional, default 1.7)) – The ratio of the NMDA over AMPA component. Means that the maximum of the NMDA conductance window is
nmda_ratiotimes the maximum of the AMPA conductance window.