-
Notifications
You must be signed in to change notification settings - Fork 1
/
ch_KvAngf.mod
118 lines (94 loc) · 1.89 KB
/
ch_KvAngf.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
TITLE A-type potassium channel (voltage dependent, for neurogliaform family)
COMMENT
A-type potassium channel (voltage dependent, for neurogliaform family)
Ions: k
Style: quasi-ohmic
From: unknown
Updates:
2014 December (Marianne Bezaire): documented
ENDCOMMENT
VERBATIM
#include <stdlib.h> /* Include this library so that the following
(innocuous) warning does not appear:
In function '_thread_cleanup':
warning: incompatible implicit declaration of
built-in function 'free' */
ENDVERBATIM
UNITS {
(mA) = (milliamp)
(mV) = (millivolt)
}
PARAMETER {
v (mV)
ek (mV)
celsius (degC) : temperature - set in hoc; default is 6.3
gmax=.01 (mho/cm2)
vhalfn=-23.6 (mV) : -33.6
vhalfl=-83 (mV)
a0l=0.08 (/ms)
a0n=0.02 (/ms)
zetan=-3 (1)
zetal=4 (1)
gmn=0.6 (1)
gml=1 (1)
}
NEURON {
SUFFIX ch_KvAngf
USEION k READ ek WRITE ik
RANGE gmax, g, ik
RANGE myi
RANGE a0l, a0n, zetan, zetal, gmn, gml
GLOBAL ninf, linf, taul, taun : note that these four are not thread safe
THREADSAFE
}
STATE {
n
l
}
INITIAL {
rates(v)
n=ninf
l=linf
}
ASSIGNED {
ik (mA/cm2)
ninf
linf
taul
taun
g
myi (mA/cm2)
}
BREAKPOINT {
SOLVE states METHOD cnexp
g = gmax*n*l
ik = g*(v-ek)
myi = ik
}
FUNCTION alpn(v(mV)) {
alpn = exp(1.e-3*zetan*(v-vhalfn)*9.648e4/(8.315*(273.16+celsius)))
}
FUNCTION betn(v(mV)) {
betn = exp(1.e-3*zetan*gmn*(v-vhalfn)*9.648e4/(8.315*(273.16+celsius)))
}
FUNCTION alpl(v(mV)) {
alpl = exp(1.e-3*zetal*(v-vhalfl)*9.648e4/(8.315*(273.16+celsius)))
}
FUNCTION betl(v(mV)) {
betl = exp(1.e-3*zetal*gml*(v-vhalfl)*9.648e4/(8.315*(273.16+celsius)))
}
DERIVATIVE states {
rates(v)
n' = (ninf - n)/taun
l' = (linf - l)/taul
}
PROCEDURE rates(v (mV)) { :callable from hoc
LOCAL a,q10
q10=3^((celsius-30)/10)
a = alpn(v)
ninf = 1/(1+a)
taun = betn(v)/(q10*a0n*(1+a))
a = alpl(v)
linf = 1/(1+a)
taul = betl(v)/(q10*a0l*(1 + a))
}