ModelDB is moving. Check out our new site at https://modeldb.science. The corresponding page is https://modeldb.science/50207.

Kinetic NMDA receptor model (Kampa et al 2004)

 Download zip file 
Help downloading and running models
Accession:50207
This kinetic NMDA receptor model is based on voltage-clamp recordings of NMDA receptor-mediated currents in nucleated patches of rat neocortical layer 5 pyramidal neurons (Kampa et al 2004 J Physiol), this model was fit with AxoGraph directly to experimental recordings in order to obtain the optimal values for the parameters. The demo shows the behaviour of a kinetic NMDA receptor model reproducing the data in figure 2. The NMDA receptor model uses realistic rates of magnesium block and its effects on channel desensitisation. Presynaptic transmitter release is necessary for glutamate binding to the receptor. This model was written by Bjoern Kampa, Canberra, 2004.
Reference:
1 . Kampa BM, Clements J, Jonas P, Stuart GJ (2004) Kinetics of Mg2+ unblock of NMDA receptors: implications for spike-timing dependent synaptic plasticity. J Physiol 556:337-45 [PubMed]
Model Information (Click on a link to find other models with that property)
Model Type: Synapse;
Brain Region(s)/Organism:
Cell Type(s): Neocortex L5/6 pyramidal GLU cell;
Channel(s):
Gap Junctions:
Receptor(s): NMDA; Glutamate;
Gene(s):
Transmitter(s): Glutamate;
Simulation Environment: NEURON;
Model Concept(s): Ion Channel Kinetics; Synaptic Plasticity; Long-term Synaptic Plasticity;
Implementer(s): Kampa, Bjorn M [Bjoern.Kampa at anu.edu.au];
Search NeuronDB for information about:  Neocortex L5/6 pyramidal GLU cell; NMDA; Glutamate; Glutamate;
TITLE transmitter release

COMMENT
-----------------------------------------------------------------------------

 
   References:

   Destexhe, A., Mainen, Z.F. and Sejnowski, T.J. Synthesis of models for
   excitable membranes, synaptic transmission and neuromodulation using a 
   common kinetic formalism, Journal of Computational Neuroscience 1: 
   195-230, 1994.

   Destexhe, A., Mainen, Z.F. and Sejnowski, T.J.  Kinetic models of 
   synaptic transmission.  In: Methods in Neuronal Modeling (2nd edition; 
   edited by Koch, C. and Segev, I.), MIT press, Cambridge, 1996.

  Written by Bjoern Kampa, 2004

-----------------------------------------------------------------------------
ENDCOMMENT


INDEPENDENT {t FROM 0 TO 1 WITH 1 (ms)}

NEURON {
	SUFFIX rel
	RANGE T, del, dur, amp
}

UNITS {
	(mM) = (milli/liter)
}

PARAMETER {
	del (ms)
	dur (ms)	<0,1e9>
	amp (mM)
}

ASSIGNED { T (mM)
}


INITIAL {
	T = 0
}

BREAKPOINT {
	at_time(del)
	at_time(del+dur)

	if (t < del + dur && t > del) {
		T = amp
	}else{
		T = 0
	}
}



Loading data, please wait...