Extracellular Ion Concentration (Ek and Ko)

Anything that doesn't fit elsewhere.
Post Reply
jph
Posts: 2
Joined: Wed Nov 14, 2007 10:01 pm

Extracellular Ion Concentration (Ek and Ko)

Post by jph »

I am trying to run a simulation where I vary the extracellular ion concentration to see its effect on action potentials, specifically whether an action potential can be fired by changing the extracellular potassium concentration:Ko.

So far I've had success, but I'm of course wary of my results. I've fired an AP in two ways:
1)insert hh
set ion style: axon ion_style("k_ion",3,2,1,1,0)
vary Ko via: axon{ko=100}
change things back to default after the AP fires
I can get the same results if I change ko0_k_ion on the fly

2)make a multicompartmental model where I have nodes of Ranvier seperated by paranodal and internodal segments

for all Nodes of Ranvier: insert axnode (see below for model file)
look at the middle node of ranvier: access node[10]
vary Nernst of K channel: ek_axnode=30
change it back to default -90 after AP fires

There are a whole slew of differences between 1+2 here and between hh and axnode (especially since axnode doesn't use useion statements), but I was wondering if anyone could shed any light on the merits of changing extracellular concentrations versus changing Nernst potentials to get a model to figure out what temporarily changing the extracellular potassium concentration would do in an effort to fire an AP?

Basically, what is the best way to change extracellular concentrations for a simple mammalian neuron (myelinated and unmyelinated)

Thanks
ps I've read Chapter 8 in the Neuron book a couple of times now, and I get more sense of things, but a lot of decisions seem to fall out of which model you use, so I wanted to get a better understanding.

Code: Select all

TITLE Motor Axon Node channels

: 2/02
: Cameron C. McIntyre
:
: Fast Na+, Persistant Na+, Slow K+, and Leakage currents 
: responsible for nodal action potential
: Iterative equations H-H notation rest = -80 mV
:
: This model is described in detail in:
:
: McIntyre CC, Richardson AG, and Grill WM. Modeling the excitability of
: mammalian nerve fibers: influence of afterpotentials on the recovery
: cycle. Journal of Neurophysiology 87:995-1006, 2002.

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

NEURON {
	SUFFIX axnode
	NONSPECIFIC_CURRENT ina
	NONSPECIFIC_CURRENT inap
	NONSPECIFIC_CURRENT ik
	NONSPECIFIC_CURRENT il
	RANGE gnapbar, gnabar, gkbar, gl, ena, ek, el
	RANGE mp_inf, m_inf, h_inf, s_inf
	RANGE tau_mp, tau_m, tau_h, tau_s
}


UNITS {
	(mA) = (milliamp)
	(mV) = (millivolt)
}

PARAMETER {

	gnapbar = 0.01	(mho/cm2)
	gnabar	= 3.0	(mho/cm2)
	gkbar   = 0.08 	(mho/cm2)
	gl	= 0.007 (mho/cm2)
	ena     = 50.0  (mV)
	ek      = -90.0 (mV)
	el	= -90.0 (mV)
	celsius		(degC)
	dt              (ms)
	v               (mV)
	vtraub=-80
	ampA = 0.01
	ampB = 27
	ampC = 10.2
	bmpA = 0.00025
	bmpB = 34
	bmpC = 10
	amA = 1.86
	amB = 21.4
	amC = 10.3
	bmA = 0.086
	bmB = 25.7
	bmC = 9.16
	ahA = 0.062
	ahB = 114.0
	ahC = 11.0
	bhA = 2.3
	bhB = 31.8
	bhC = 13.4
	asA = 0.3
	asB = -27
	asC = -5
	bsA = 0.03
	bsB = 10
	bsC = -1
}

STATE {
	mp m h s
}

ASSIGNED {
	inap    (mA/cm2)
	ina	(mA/cm2)
	ik      (mA/cm2)
	il      (mA/cm2)
	mp_inf
	m_inf
	h_inf
	s_inf
	tau_mp
	tau_m
	tau_h
	tau_s
	q10_1
	q10_2
	q10_3
}

BREAKPOINT {
	SOLVE states METHOD cnexp
	inap = gnapbar * mp*mp*mp * (v - ena)
	ina = gnabar * m*m*m*h * (v - ena)
	ik   = gkbar * s * (v - ek)
	il   = gl * (v - el)
}

DERIVATIVE states {   : exact Hodgkin-Huxley equations
       evaluate_fct(v)
	mp'= (mp_inf - mp) / tau_mp
	m' = (m_inf - m) / tau_m
	h' = (h_inf - h) / tau_h
	s' = (s_inf - s) / tau_s
}

UNITSOFF

INITIAL {
:
:	Q10 adjustment
:

	q10_1 = 2.2 ^ ((celsius-20)/ 10 )
	q10_2 = 2.9 ^ ((celsius-20)/ 10 )
	q10_3 = 3.0 ^ ((celsius-36)/ 10 )

	evaluate_fct(v)
	mp = mp_inf
	m = m_inf
	h = h_inf
	s = s_inf
}

PROCEDURE evaluate_fct(v(mV)) { LOCAL a,b,v2

	a = q10_1*vtrap1(v)
	b = q10_1*vtrap2(v)
	tau_mp = 1 / (a + b)
	mp_inf = a / (a + b)

	a = q10_1*vtrap6(v)
	b = q10_1*vtrap7(v)
	tau_m = 1 / (a + b)
	m_inf = a / (a + b)

	a = q10_2*vtrap8(v)
	b = q10_2*bhA / (1 + Exp(-(v+bhB)/bhC))
	tau_h = 1 / (a + b)
	h_inf = a / (a + b)

	v2 = v - vtraub : convert to traub convention

	a = q10_3*asA / (Exp((v2+asB)/asC) + 1) 
	b = q10_3*bsA / (Exp((v2+bsB)/bsC) + 1)
	tau_s = 1 / (a + b)
	s_inf = a / (a + b)
}

FUNCTION vtrap(x) {
	if (x < -50) {
		vtrap = 0
	}else{
		vtrap = bsA / (Exp((x+bsB)/bsC) + 1)
	}
}

FUNCTION vtrap1(x) {
	if (fabs((x+ampB)/ampC) < 1e-6) {
		vtrap1 = ampA*ampC
	}else{
		vtrap1 = (ampA*(x+ampB)) / (1 - Exp(-(x+ampB)/ampC))
	}
}

FUNCTION vtrap2(x) {
	if (fabs((x+bmpB)/bmpC) < 1e-6) {
		vtrap2 = -bmpA*bmpC
	}else{
		vtrap2 = (bmpA*(-(x+bmpB))) / (1 - Exp((x+bmpB)/bmpC))
	}
}

FUNCTION vtrap6(x) {
	if (fabs((x+amB)/amC) < 1e-6) {
		vtrap6 = amA*amC
	}else{
		vtrap6 = (amA*(x+amB)) / (1 - Exp(-(x+amB)/amC))
	}
}

FUNCTION vtrap7(x) {
	if (fabs((x+bmB)/bmC) < 1e-6) {
		vtrap7 = -bmA*bmC
	}else{
		vtrap7 = (bmA*(-(x+bmB))) / (1 - Exp((x+bmB)/bmC))
	}
}

FUNCTION vtrap8(x) {
	if (fabs((x+ahB)/ahC) < 1e-6) {
		vtrap8 = -ahA*ahC
	}else{
		vtrap8 = (ahA*(-(x+ahB))) / (1 - Exp((x+ahB)/ahC)) 
	}
}

FUNCTION Exp(x) {
	if (x < -100) {
		Exp = 0
	}else{
		Exp = exp(x)
	}
}

UNITSON
[/code]
ted
Site Admin
Posts: 6384
Joined: Wed May 18, 2005 4:50 pm
Location: Yale University School of Medicine
Contact:

Post by ted »

what is the best way to change extracellular concentrations
The question is first: does your conceptual model (hypothesis if you like) involve concentrations
in any "mechanistic" way? That is, does it require your computational model to include ion
accumulation, buffers, diffusion, exchange, pumps? Does it involve ligand-gated ion channels
(e.g. Ca- or Na-dependent gK)? Or are all effects of ion concentrations mediated by their
equilibrium potentials? If the answers are no no yes, then there's no need to explicitly
represent concentrations in your model. Just use equilibrium potentials. To emulate the
experimental manipulation "I vary the extracellular ion concentration", simply change the
appropriate equilibrium potential.

If on the other hand you need to investigate how repetitive spiking affects axonal excitability,
and use-dependent ion accumulation (because of restricted diffusion, pump saturation, or
whatever) is an essential component of your conceptual model, then your computational
model needs an ion accumulation mechanism. In this case, if you wish to see how
"puffing high K ringer on a node of Ranvier" affects excitability, you must perturb ko.
An FInitializeHandler would be a good way to manage such a perturbation, but it would
be a needless complication otherwise.
jph
Posts: 2
Joined: Wed Nov 14, 2007 10:01 pm

Post by jph »

Thanks for the response.

As far as the specifics of the conceptual model/hypothesis, the vague answer is that I want it to be as specific as possible. The more developed answer is that I would like to simulate something I can easily reproduce in vitro. I think this means that I will be dealing with an unmyelinated axon.

Basically the framework is thinking about a neuron cultured on a MEMS substrate that would allow small temporal and spatial modifications of ion concentrations to see if one could create an AP in a cultured axon.

Based on what I can culture, I imagine I can get away with doing a simulation with just HH dynamics as a first pass where I ignore pumps, buffers, diffusion, etc. and modify the Nernst potentials over time and space to trigger an AP.

I think I could spend vast amounts of time making a very complete model of an unmyelinated axon, but don't you agree that at the first pass I could just use HH dynamics? (I would use the axnode model that I included above, but I cannot seem to take out the myelin portions without getting very strange spiking output results.)

Thanks
ted
Site Admin
Posts: 6384
Joined: Wed May 18, 2005 4:50 pm
Location: Yale University School of Medicine
Contact:

Post by ted »

jph wrote:Based on what I can culture, I imagine I can get away with doing a simulation with just HH dynamics as a first pass where I ignore pumps, buffers, diffusion, etc. and modify the Nernst potentials over time and space to trigger an AP.

I think I could spend vast amounts of time making a very complete model of an unmyelinated axon, but don't you agree that at the first pass I could just use HH dynamics?
I agree completely. It is a good idea to sharpen one's intuitions about a biological system by
starting with minimal models that capture just the essential features. An anatomically
extended structure with excitable membrane whose permeant ions have user-controllable
reversal potentials constitutes the irreducible minimum. That by itself may be adequate for
you to gain sufficient insight into the problem.
Post Reply