Network recruitment to coherent oscillations in a hippocampal model (Stacey et al. 2011)

 Download zip file   Auto-launch 
Help downloading and running models
Accession:135903
"... Here we demonstrate, via a detailed computational model, a mechanism whereby physiological noise and coupling initiate oscillations and then recruit neighboring tissue, in a manner well described by a combination of Stochastic Resonance and Coherence Resonance. We develop a novel statistical method to quantify recruitment using several measures of network synchrony. This measurement demonstrates that oscillations spread via preexisting network connections such as interneuronal connections, recurrent synapses, and gap junctions, provided that neighboring cells also receive sufficient inputs in the form of random synaptic noise. ..."
Reference:
1 . Stacey WC, Krieger A, Litt B (2011) Network recruitment to coherent oscillations in a hippocampal computer model. J Neurophysiol 105:1464-81 [PubMed]
Citations  Citation Browser
Model Information (Click on a link to find other models with that property)
Model Type: Realistic Network;
Brain Region(s)/Organism: Hippocampus;
Cell Type(s): Hippocampus CA1 pyramidal GLU cell; Hippocampus CA3 pyramidal GLU cell; Hippocampus CA1 interneuron oriens alveus GABA cell; Hippocampus CA1 basket cell;
Channel(s): I Na,t; I A; I K; I h;
Gap Junctions: Gap junctions;
Receptor(s): GabaA; AMPA; NMDA;
Gene(s):
Transmitter(s):
Simulation Environment: NEURON;
Model Concept(s): Oscillations;
Implementer(s): Lazarewicz, Maciej [mlazarew at gmu.edu]; Stacey, William [wstacey at med.umich.edu];
Search NeuronDB for information about:  Hippocampus CA1 pyramidal GLU cell; Hippocampus CA3 pyramidal GLU cell; Hippocampus CA1 interneuron oriens alveus GABA cell; GabaA; AMPA; NMDA; I Na,t; I A; I K; I h;
/
Recruitnet
mod
CA1ih.mod *
CA1ika.mod *
CA1ikdr.mod *
CA1ina.mod *
caolmw.mod *
capr.mod *
Edrive.mod *
Exp2SynAMPA.mod *
Exp2SynAMPApre.mod *
Exp2SynNMDA.mod *
Exp2SynNMDAperm.mod *
Exp2SynNMDApre.mod *
fvpre.mod *
gap.mod *
halfgap.mod *
icaolmw.mod *
icapr.mod *
iholmkop.mod *
iholmw.mod *
ihpyrkop.mod *
kahppr.mod *
kaolmkop.mod *
kapyrkop.mod *
kcaolmw.mod *
kcpr.mod *
kdrbwb.mod *
kdrca1.mod *
kdrolmkop.mod *
kdrpr.mod *
kdrpyrkop.mod *
na3n.mod *
nafbwb.mod *
nafolmkop.mod *
nafpr.mod *
nafpyrkop.mod *
par_ggap.mod *
aux_fun.inc *
                            
TITLE IKDR CA1

UNITS {
        (mA) = (milliamp)
        (mV) = (millivolt)
}
 
NEURON {
	SUFFIX kdrcurrent
	NONSPECIFIC_CURRENT ik
	RANGE g, e
}
 
PARAMETER {
        v		(mV)
        celsius		(degC)
        g= 0.010		(mho/cm2)
        e= -90		(mV)
}
 
STATE {
	n 
}
 
ASSIGNED {
	ik		(mA/cm2) 
 	ninf
	ntau    (ms)
}
 
BREAKPOINT {
        SOLVE states METHOD cnexp
        ik=g*n*(v-e)      
}
 
DERIVATIVE states { 
       rates(v)
       n'= (ninf- n)/ ntau
}

INITIAL { 
	rates(v)
	n= ninf
}


PROCEDURE rates(v (mV)) {
LOCAL  a, b
UNITSOFF
a = exp(-0.11*(v-13))
b = exp(-0.08*(v-13)) 	
	ntau=50*b/(1+a)
	if (ntau<2) {ntau=2}
	ninf=1/(1+a)
UNITSON
}