Look-Up Table Synapse (LUTsyn) models for AMPA and NMDA (Pham et al., 2021)

 Download zip file 
Help downloading and running models
Accession:267103
Fast input-output synapse model of glutamatergic receptors AMPA and NMDA that can capture nonlinear interactions via look-up table abstraction. Speeds are comparable to 'linear' exponential synapses. Download LUT files at: https://senselab.med.yale.edu/modeldb/data/267103/LUTs.zip
Reference:
1 . Pham DJ, Yu GJ, Bouteiller JC, Berger TW (2021) Bridging Hierarchies in Multi-Scale Models of Neural Systems: Look-Up Tables Enable Computationally Efficient Simulations of Non-linear Synaptic Dynamics Front. Comput. Neurosci. [PubMed]
Model Information (Click on a link to find other models with that property)
Model Type: Channel/Receptor; Synapse;
Brain Region(s)/Organism: Dentate gyrus;
Cell Type(s):
Channel(s):
Gap Junctions:
Receptor(s): AMPA; NMDA;
Gene(s):
Transmitter(s): Glutamate;
Simulation Environment: NEURON;
Model Concept(s): Multiscale;
Implementer(s):
Search NeuronDB for information about:  AMPA; NMDA; Glutamate;
proc init() { local dtsav, temp
	finitialize(v_init)
	t = -1e10
	dtsav = dt
	dt = 1e8
	// if cvode is on, turn it off to do a large fixed step
	tmp = cvode.active()
	if (temp!=0) { cvode.active(0) }
	while (t<-1e9) {
		fadvance()
	}
	dt = dtsav
	t = 0
	if (cvode.active()) {
		cvode.re_init()
	}	else {
		fcurrent()
	}
	frecord_init()
}

Loading data, please wait...