-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathKD.mod
82 lines (67 loc) · 1.79 KB
/
KD.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
TITLE slowly inactivating K current
COMMENT
from "An Active Membrane Model of the Cerebellar Purkinje Cell
1. Simulation of Current Clamp in Slice"
ENDCOMMENT
UNITS {
(mA) = (milliamp)
(mV) = (millivolt)
}
NEURON {
SUFFIX KD
USEION k WRITE ik
RANGE gkbar, ik, gk, minf, hinf, mexp, hexp
}
INDEPENDENT {t FROM 0 TO 1 WITH 1 (ms)}
PARAMETER {
v (mV)
celsius = 37 (degC)
dt (ms)
gkbar = .0045 (mho/cm2)
ek = -85 (mV)
mon = 1
hon = 1
}
STATE {
m h
}
ASSIGNED {
ik (mA/cm2)
gk minf hinf mexp hexp
}
BREAKPOINT {
SOLVE states
gk = gkbar * m*h
ik = gk* (v-ek)
}
UNITSOFF
INITIAL {
rates(v)
m = minf
h = hinf
}
PROCEDURE states() { :Computes state variables m, h
rates(v) : at the current v and dt.
m = mon * (m + mexp*(minf-m))
h = hon * (h + hexp*(hinf-h))
}
PROCEDURE rates(v) { :Computes rate and other constants at current v.
:Call once from HOC to initialize inf at resting v.
LOCAL q10, tinc, alpha, beta, sum
TABLE minf, mexp, hinf, hexp DEPEND dt, celsius FROM -400 TO 300 WITH 700
q10 = 3^((celsius - 37)/10)
tinc = -dt * q10
:"m" potassium activation system
alpha = 8.5/(1+exp((v+17)/(-12.5)))
beta = 35/(1+exp((v+99)/14.5))
sum = alpha + beta
minf = alpha/sum
mexp = 1 - exp(tinc*sum/10)
:"h" potassium inactivation system
alpha = 0.0015/(1+exp((v+89)/8))
beta = 0.0055/(1+exp((v+83)/(-8)))
sum = alpha + beta
hinf = alpha/sum
hexp = 1 - exp(tinc*sum*1.6)
}
UNITSON