AP initiation, propagation, and cortical invasion in a Layer 5 pyramidal cell (Anderson et 2018)

 Download zip file 
Help downloading and running models
Accession:241160
" ... High frequency (~130 Hz) deep brain stimulation (DBS) of the subthalamic region is an established clinical therapy for the treatment of late stage Parkinson's disease (PD). Direct modulation of the hyperdirect pathway, defined as cortical layer V pyramidal neurons that send an axon collateral to the subthalamic nucleus (STN), has emerged as a possible component of the therapeutic mechanisms. ...We found robust AP propagation throughout the complex axonal arbor of the hyperdirect neuron. Even at therapeutic DBS frequencies, stimulation induced APs could reach all of the intracortical axon terminals with ~100% fidelity. The functional result of this high frequency axonal driving of the thousands of synaptic connections made by each directly stimulated hyperdirect neuron is a profound synaptic suppression that would effectively disconnect the neuron from the cortical circuitry. ..."
Reference:
1 . Anderson RW, Farokhniaee A, Gunalan K, Howell B, McIntyre CC (2018) Action potential initiation, propagation, and cortical invasion in the hyperdirect pathway during subthalamic deep brain stimulation Brain Stimulation
Model Information (Click on a link to find other models with that property)
Model Type: Neuron or other electrically excitable cell; Axon;
Brain Region(s)/Organism:
Cell Type(s): Neocortex U1 L2/6 pyramidal intratelencephalic GLU cell;
Channel(s):
Gap Junctions:
Receptor(s):
Gene(s):
Transmitter(s):
Simulation Environment: NEURON;
Model Concept(s): Action Potentials; Parkinson's; Deep brain stimulation;
Implementer(s):
Search NeuronDB for information about:  Neocortex U1 L2/6 pyramidal intratelencephalic GLU cell;
/
AndersonEtAl2018
mechanism
ca.mod *
cad.mod *
gabaa.mod *
ipulse1.mod
kca.mod *
km.mod *
kv.mod *
kvShu.mod
na.mod
na12.mod
na16.mod
naShu.mod
mosinit.hoc
                            
TITLE decay of internal calcium concentration
:
: Internal calcium concentration due to calcium currents and pump.
: Differential equations.
:
: Simple model of ATPase pump with 3 kinetic constants (Destexhe 92)
:     Cai + P <-> CaP -> Cao + P  (k1,k2,k3)
: A Michaelis-Menten approximation is assumed, which reduces the complexity
: of the system to 2 parameters: 
:       kt = <tot enzyme concentration> * k3  -> TIME CONSTANT OF THE PUMP
:	kd = k2/k1 (dissociation constant)    -> EQUILIBRIUM CALCIUM VALUE
: The values of these parameters are chosen assuming a high affinity of 
: the pump to calcium and a low transport capacity (cfr. Blaustein, 
: TINS, 11: 438, 1988, and references therein).  
:
: Units checked using "modlunit" -> factor 10000 needed in ca entry
:
: VERSION OF PUMP + DECAY (decay can be viewed as simplified buffering)
:
: All variables are range variables
:
:
: This mechanism was published in:  Destexhe, A. Babloyantz, A. and 
: Sejnowski, TJ.  Ionic mechanisms for intrinsic slow oscillations in
: thalamic relay neurons. Biophys. J. 65: 1538-1552, 1993)
:
: Written by Alain Destexhe, Salk Institute, Nov 12, 1992
:

INDEPENDENT {t FROM 0 TO 1 WITH 1 (ms)}

NEURON {
	SUFFIX cad
	USEION ca READ ica, cai WRITE cai
	RANGE ca
	GLOBAL depth,cainf,taur
}

UNITS {
	(molar) = (1/liter)			: moles do not appear in units
	(mM)	= (millimolar)
	(um)	= (micron)
	(mA)	= (milliamp)
	(msM)	= (ms mM)
	FARADAY = (faraday) (coulomb)
}


PARAMETER {
	depth	= .1	(um)		: depth of shell
	taur	= 200	(ms)		: rate of calcium removal
	cainf	= 100e-6(mM)
	cai		(mM)
}

STATE {
	ca		(mM) 
}

INITIAL {
	ca = cainf
}

ASSIGNED {
	ica		(mA/cm2)
	drive_channel	(mM/ms)
}
	
BREAKPOINT {
	SOLVE state METHOD derivimplicit
}

DERIVATIVE state { 

	drive_channel =  - (10000) * ica / (2 * FARADAY * depth)
	if (drive_channel <= 0.) { drive_channel = 0. }	: cannot pump inward

	ca' = drive_channel + (cainf-ca)/taur
	cai = ca
}








Loading data, please wait...