Adding an intracellular calcium concentration
Posted: Fri May 18, 2007 12:01 pm
I'm having difficulty adding a calcium-activated potassium current to a model of a hypoglossal motorneuron. The model has 3 calcium currents: T-type N-type and P-type which are selective for ca 2 in channel builder and should make up the total Ica.
I want to model calcium dynamics simply:
d[Ca2+]/dt = k1*Ica - k2*[Ca2+] where k1 and k2 are scaling factors
So that I can model a calcium-dependent potassium current which incorporates [Ca2+].
Here is my code for intracellular calcium accumulation which I cannot figure out how to make work properlly. I don't believe I understand how to input the calcium current from the T-, N-, and P-type currents.
NEURON {
SUFFIX cai
USEION ca READ cai, ica WRITE cai
RANGE ica0
}
UNITS {
(mM) = (milli/liter)
(mA) = (milliamp)
(molar) = (1/liter)
}
PARAMETER {
cai0 = 0.0000604 (mM)
k1 = -0.005 (molar/mA/ms)
k2 = 0.04 (1/ms)
}
ASSIGNED {
ica (mA/cm2)
}
STATE {
cai (mM)
}
BREAKPOINT{
SOLVE state METHOD euler
}
INITIAL {
cai = cai0
}
DERIVATIVE state {
cai' = (k1*ica) - (k2*cai)
}
Thanks for your input!
I want to model calcium dynamics simply:
d[Ca2+]/dt = k1*Ica - k2*[Ca2+] where k1 and k2 are scaling factors
So that I can model a calcium-dependent potassium current which incorporates [Ca2+].
Here is my code for intracellular calcium accumulation which I cannot figure out how to make work properlly. I don't believe I understand how to input the calcium current from the T-, N-, and P-type currents.
NEURON {
SUFFIX cai
USEION ca READ cai, ica WRITE cai
RANGE ica0
}
UNITS {
(mM) = (milli/liter)
(mA) = (milliamp)
(molar) = (1/liter)
}
PARAMETER {
cai0 = 0.0000604 (mM)
k1 = -0.005 (molar/mA/ms)
k2 = 0.04 (1/ms)
}
ASSIGNED {
ica (mA/cm2)
}
STATE {
cai (mM)
}
BREAKPOINT{
SOLVE state METHOD euler
}
INITIAL {
cai = cai0
}
DERIVATIVE state {
cai' = (k1*ica) - (k2*cai)
}
Thanks for your input!