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-potassium pump
 

UNITS {
        (molar) = (1/liter)
        (pA) =  (picoamp)
	(mV) =	(millivolt)
        (uS) =  (micromho)
	(mA) =	(milliamp)
	(mM) =	(millimolar)
}


INDEPENDENT {v FROM -100 TO 50 WITH 50 (mV)}

NEURON {
	SUFFIX pump
	USEION na READ nai WRITE ina
	USEION k WRITE ik
	RANGE  inapump,ipumpmax,n,km
 
}


PARAMETER {
        dt  (ms)
        nai (mM)
        celsius = 35 (degC)
        ipumpmax  = 0.0092 (mA/cm2)
        km = 10.0 (mM)
        n  = 1.5
        
        
}

ASSIGNED { 
           ina	   (mA/cm2)
           ik	   (mA/cm2)
           inapump (mA/cm2)
}

BREAKPOINT {
	nai = 0.81
        inapump = ipumpmax*(1/(1 + pow(km/nai,n)))
	ina = 3.0*inapump
	ik = -2.0*inapump
}