Hippocampal Mossy Fiber bouton: presynaptic KV7 channel function (Martinello et al 2019)

 Download zip file 
Help downloading and running models
Accession:245417

Reference:
1 . Martinello K, Giacalone E, Migliore M, Brown DA, Shah MM (2019) The subthreshold-active KV7 current regulates neurotransmission by limiting spike-induced Ca2+ influx in hippocampal mossy fiber synaptic terminals. Commun Biol 2:145 [PubMed]
Model Information (Click on a link to find other models with that property)
Model Type: Synapse;
Brain Region(s)/Organism: Hippocampus;
Cell Type(s):
Channel(s): I A; I CAN; I K,leak; I M; I Na,t; I K;
Gap Junctions:
Receptor(s): AMPA;
Gene(s):
Transmitter(s): Glutamate;
Simulation Environment: NEURON;
Model Concept(s): Action Potentials;
Implementer(s): Migliore, Michele [Michele.Migliore at Yale.edu]; Giacalone, Elisabetta [elisabetta.giacalone at pa.ibf.cnr.it];
Search NeuronDB for information about:  AMPA; I Na,t; I A; I K; I K,leak; I M; I CAN; Glutamate;
/
modeldb_Kv7_MFB
README.html
cacumm.mod *
can2t.mod
kaprox.mod *
kdrca1.mod *
kir.mod
kmb.mod *
naxn_J.mod
fig4_modeldb.hoc
fig4_modeldb.ses
mosinit.hoc
screenshot1.png
screenshot2.png
                            
COMMENT
	calcium accumulation into a volume of area*depth next to the
	membrane with a decay (time constant tau) to resting level
	given by the global calcium variable cai0_ca_ion
	Modified to include a resting current (irest) and peak value
	(cmax)
	i is a dummy current needed to force a BREAKPOINT
ENDCOMMENT

NEURON {
	SUFFIX cacum
	USEION ca READ ica WRITE cai
	NONSPECIFIC_CURRENT i
	RANGE depth, tau, cai0, cmax
}

UNITS {
	(mM) = (milli/liter)
	(mA) = (milliamp)
	F = (faraday) (coulombs)
}

PARAMETER {
	depth = 0.1 (um)	: assume volume = area*depth
	irest = 0  (mA/cm2)		: to be initialized in hoc	
	tau = 100 (ms)
	cai0 = 50e-6 (mM)	: Requires explicit use in INITIAL
			: block for it to take precedence over cai0_ca_ion
			: Do not forget to initialize in hoc if different
			: from this default.
}

ASSIGNED {
	ica (mA/cm2)
	cmax
	i  	 (mA/cm2)
}

STATE {
	cai (mM)
}

INITIAL {
	cai = cai0
	:irest = ica
	cmax=cai
}

BREAKPOINT {
	SOLVE integrate METHOD derivimplicit
	if (cai>cmax) {cmax=cai}
	i=0
}

DERIVATIVE integrate {
	cai' = (irest-ica)/depth/F/2 * (1e4) + (cai0 - cai)/tau
}

Loading data, please wait...