Hodgkin-Huxley model of persistent activity in prefrontal cortex neurons (Winograd et al. 2008)

 Download zip file   Auto-launch 
Help downloading and running models
Accession:113997
The paper demonstrate a form of graded persistent activity activated by hyperpolarization. This phenomenon is modeled based on a slow calcium regulation of Ih, similar to that introduced earlier for thalamic neurons (see Destexhe et al., J Neurophysiol. 1996). The only difference is that the calcium signal is here provided by the high-threshold calcium current (instead of the low-threshold calcium current in thalamic neurons).
Reference:
1 . Winograd M, Destexhe A, Sanchez-Vives MV (2008) Hyperpolarization-activated graded persistent activity in the prefrontal cortex. Proc Natl Acad Sci U S A 105:7298-303 [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; Channel/Receptor;
Brain Region(s)/Organism: Prefrontal cortex (PFC);
Cell Type(s):
Channel(s): I Na,t; I L high threshold; I K; I M; I h;
Gap Junctions:
Receptor(s):
Gene(s):
Transmitter(s):
Simulation Environment: NEURON;
Model Concept(s): Activity Patterns; Ion Channel Kinetics;
Implementer(s): Destexhe, Alain [Destexhe at iaf.cnrs-gif.fr];
Search NeuronDB for information about:  I Na,t; I L high threshold; I K; I M; I h;
/
HAGPA
README.html
APCounter2.mod *
Cadynamics.mod *
HH2.mod *
ICaL.mod *
Ih.mod *
IKM.mod *
ipulse3.mod *
pasi.mod *
demo_HPGA_non-saturating.hoc
demo_HPGA_non-saturating_noIh.hoc
demo_HPGA_saturating.hoc
init.hoc
mosinit.hoc *
screenshot.jpg
                            
TITLE high-threshold calcium (L-) current from hippocampal pyramidal cells

COMMENT Equations from
   McCormick DA, Huguenard JR (1992) A model of the electrophysiological
   properties of thalamocortical relay neurons. J Neurophys 68(4):
   1384-1400.
	See also
   Kay AR, Wong RK (1987) Calcium current activation kinetics in isolated    
   pyramidal neurones of the Ca1 region of the mature guinea-pig 
   hippocampus. J Physiol 392: 603-616.

>< Temperature adjusts time constants measured at 23.5 degC.
>< Written by Arthur Houweling for MyFirstNEURON.
ENDCOMMENT

NEURON {
	SUFFIX iL
	USEION ca READ cai,cao WRITE ica
        RANGE pca, minf, mtau, ica
}

UNITS {
	(mA) = (milliamp)
	(mV) = (millivolt)
	(mM) = (milli/liter)
}

PARAMETER {
	v		(mV)
	celsius		(degC)
	cai		(mM)
	cao		(mM)
	pca= 2.76e-4	(cm/s)		
}

STATE { m }

ASSIGNED {
	ica	(mA/cm2)
	mtau	(ms)
	minf 
	tadj
}

BREAKPOINT { 
	SOLVE states METHOD cnexp
	ica= pca* m^2* nrn_ghk( v, cai, cao, 2)
}

DERIVATIVE states {
       rates()

       m'= (minf- m)/ mtau 
}
  
INITIAL {
	tadj= 3^ ((celsius- 23.5)/ 10)
	rates()
	m= minf
} 

PROCEDURE rates() { LOCAL a,b UNITSOFF
	a= 1.6/ (1+ exp(-0.072* (v- 5)))
	b= 0.02* vtrap(-(v- 1.31), 5.36)

	mtau= 1/ (a+ b)/ tadj
	minf= 1/ (1+ exp((v+ 10)/ -10))
}

FUNCTION vtrap( x, c) { 
	:check for zero in denominator of rate equations
        if (fabs(x/ c)< 1e-6) { vtrap= c+ x/ 2 }
        else { vtrap=  x/ (1- exp(-x/ c)) }
}