Activity dependent regulation of pacemaker channels by cAMP (Wang et al 2002)

 Download zip file   Auto-launch 
Help downloading and running models
Accession:19176
Demonstration of the physiological consequences of the cyclic allosteric gating scheme for Ih mediated by HCN2 in thalamocortical relay cells.
Reference:
1 . Wang J, Chen S, Nolan MF, Siegelbaum SA (2002) Activity-dependent regulation of HCN pacemaker channels by cyclic AMP: signaling through dynamic allosteric coupling. Neuron 36:451-61 [PubMed]
Citations  Citation Browser
Model Information (Click on a link to find other models with that property)
Model Type: Neuron or other electrically excitable cell;
Brain Region(s)/Organism:
Cell Type(s): Thalamus geniculate nucleus/lateral principal GLU cell;
Channel(s): I K,leak; I h;
Gap Junctions:
Receptor(s):
Gene(s): HCN2;
Transmitter(s):
Simulation Environment: NEURON;
Model Concept(s): Activity Patterns; Ion Channel Kinetics;
Implementer(s): Nolan, Matt [mfnolan at fido.cpmc.columbia.edu]; Chen, Shan [sc448 at columbia.edu];
Search NeuronDB for information about:  Thalamus geniculate nucleus/lateral principal GLU cell; I K,leak; I h;
COMMENT
-----------------------------------------------------------------------------

  Leak potassium current
  ----------------------

  This mechanism was written to be used as a potassium channel that is
  open or closed by neuromodulators.  

  WARNING: this current is NOT inserted as a standard current, but as a 
  point process (same way as a synapse or current injection).

  Procedure for insertion:

	objectvar kl
	kl = new kleak()

	access <compartment_name>
	kl.loc(0.5)

	kl.gmax = ...



  A. Destexhe , The Salk Institute, Feb 1994.

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

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

NEURON {
	POINT_PROCESS kleak
	RANGE gmax
	GLOBAL Erev
	NONSPECIFIC_CURRENT i
}
UNITS {
	(nA) = (nanoamp)
	(mV) = (millivolt)
	(umho) = (micromho)
}

PARAMETER {
	gmax	= 0.004	(umho)		: maximum conductance (microSiemens)
	Erev	= -100	(mV)		: reversal potential (potassium)
}


ASSIGNED {
	v		(mV)		: postsynaptic voltage
	i 		(nA)		: current = g*(v - Erev)
}

INITIAL {
}

BREAKPOINT {
	i = gmax * (v - Erev)
}