Role of the AIS in the control of spontaneous frequency of dopaminergic neurons (Meza et al 2017)

 Download zip file   Auto-launch 
Help downloading and running models
Accession:235320
Computational modeling showed that the size of the Axon Initial Segment (AIS), but not its position within the somatodendritic domain, is the major causal determinant of the tonic firing rate in the intact model, by virtue of the higher intrinsic frequency of the isolated AIS. Further mechanistic analysis of the relationship between neuronal morphology and firing rate showed that dopaminergic neurons function as a coupled oscillator whose frequency of discharge results from a compromise between AIS and somatodendritic oscillators.
Reference:
1 . Meza RC, López-Jury L, Canavier CC, Henny P (2018) Role of the Axon Initial Segment in the Control of Spontaneous Frequency of Nigral Dopaminergic Neurons In Vivo. J Neurosci 38:733-744 [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: Basal ganglia; Mouse;
Cell Type(s): Substantia nigra pars compacta DA cell;
Channel(s): Na/K pump; I K,Ca; I K; I L high threshold; I T low threshold; I A; I N; I Na,t;
Gap Junctions:
Receptor(s):
Gene(s):
Transmitter(s):
Simulation Environment: NEURON;
Model Concept(s): Activity Patterns; Temporal Pattern Generation; Oscillations; Pacemaking mechanism;
Implementer(s): Lopez-Jury, Luciana [lucianalopezjury at gmail.com]; Canavier, CC;
Search NeuronDB for information about:  Substantia nigra pars compacta DA cell; I Na,t; I L high threshold; I N; I T low threshold; I A; I K; I K,Ca; Na/K pump;
TITLE Sodium ion accumulation without diffusion

NEURON {
	SUFFIX nabalan
	USEION na READ ina WRITE nai
	RANGE nainit,f
}

UNITS {
	(mM) = (milli/liter)
	(um) = (micron)
	FARADAY = (faraday) (coulomb)
	PI = (pi) (1)
}

PARAMETER {
        nainit = 0.8 (mM) 
        f = 2.00
}

ASSIGNED {
	ina (milliamp/cm2)
	diam (um)
}

STATE {
	nai (mM) <1e-4>
}

BREAKPOINT {
	SOLVE state METHOD sparse
}

INITIAL{
        nai=nainit
}

KINETIC state {
	COMPARTMENT PI*diam*diam/4 {nai}
	~ nai << (-f*ina*PI*diam*(1e4)/(FARADAY))
}