-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathunc2.mod
More file actions
132 lines (92 loc) · 1.89 KB
/
unc2.mod
File metadata and controls
132 lines (92 loc) · 1.89 KB
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
TITLE UNC2
: P/Q-type channels
: From Nicoletti et al. PloS One 2019 (https://doi.org/10.1371/journal.pone.0218738)
UNITS {
(mA) = (milliamp)
(S) = (siemens)
(mV) = (millivolt)
}
NEURON {
SUFFIX unc2
USEION ca READ eca WRITE ica
RANGE gbar
GLOBAL minf, hinf, mtau, htau, munc2,hunc2
}
PARAMETER{
v (mV)
eca (mV)
celsius (degC)
gbar=1 (S/cm2)
va_unc2=-12.17 (mV)
ka_unc2=3.97 (mV)
vi_unc2=-52.47 (mV)
ki_unc2=5.6 (mV)
stm2=25 (mV)
sth2=25 (mV)
p1tmunc2=1.4969 (ms)
p2tmunc2=-8.1761 (mV)
p3tmunc2=9.0753 (mV)
p4tmunc2=15.3456 (mV)
p5tmunc2=0.1029 (ms)
p1thunc2=83.8037 (ms)
p2thunc2=52.8997 (mV)
p3thunc2=3.4557 (mV)
p4thunc2=72.0995 (ms)
p5thunc2=23.9009 (mV)
p6thunc2=3.5903 (mV)
fp3=1
fp4=1
fp5=1
shifthunc2=30
shiftmunc2=30
consthunc2=1.7
constmunc2=3
func2=1
f2unc2=1
}
ASSIGNED{
ica (mA/cm2)
minf
hinf
mtau
htau
munc2
hunc2
}
STATE {
m h
}
BREAKPOINT {
SOLVE states METHOD cnexp
ica = gbar*m*h*(v-eca)
munc2=m
hunc2=h
}
INITIAL {
rates(v)
m=minf
h=hinf
}
DERIVATIVE states {
rates(v)
m' = (minf - m)/mtau
h'=(hinf-h)/htau
}
FUNCTION act(v(mV)){
act=1/(1+exp(-(v-va_unc2+stm2)/ka_unc2))
}
FUNCTION inact(v(mV)){
inact= 1/(1+exp((v-vi_unc2+sth2)/ki_unc2))
}
FUNCTION tact(v(mV)){
tact=(p1tmunc2/(exp(-(v-p2tmunc2+shiftmunc2)/(p3tmunc2*fp3))+exp((v-p2tmunc2+shiftmunc2)/(p4tmunc2*fp4)))+p5tmunc2)*constmunc2
}
FUNCTION tinact(v(mV)){
tinact=(p1thunc2/(1+exp((v-p2thunc2+shifthunc2)/(p3thunc2*fp5)))+p4thunc2/(1+exp(-(v-p5thunc2+shifthunc2)/(p6thunc2*fp5))))*consthunc2
}
PROCEDURE rates(v (mV)){
minf=act(v)
hinf=inact(v)
mtau=tact(v)
htau=tinact(v)
}