-
Notifications
You must be signed in to change notification settings - Fork 0
/
Thalamic_I_T.mod
76 lines (56 loc) · 1.39 KB
/
Thalamic_I_T.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
TITLE Low-threshold calcium current for Thalamic Neuron
COMMENT
Model Reference:
Rubin, J.E. and Terman, D., 2004. "High frequency stimulation
of the subthalamic nucleus eliminates pathological thalamic
rhythmicity in a computational model."
Journal of computational neuroscience, 16(3), pp.211-235.
Implemented by John Fleming - [email protected] - 06/12/18
Edits:
ENDCOMMENT
UNITS {
(mV) = (millivolt)
(mA) = (milliamp)
(S) = (siemens)
}
NEURON {
SUFFIX thalamic_i_t
USEION ca WRITE ica : Using ca ion, treat the reversal potential as a parameter and write to ica so the total ca current can be tracked
RANGE g_T, i_t : Calcium current, specific conductance and equilibrium potential
}
PARAMETER {
eca = 0 (mV)
i_t = 0.0 (mA/cm2)
g_T = 0.5 (S/cm2)
}
ASSIGNED {
v (mV)
ica (mA/cm2)
r_inf
tau_r (ms)
p_inf
}
STATE {
r
}
BREAKPOINT {
SOLVE states METHOD cnexp
ica = g_T*p_inf*p_inf*r*(v - eca)
i_t = ica : Record i_t (just this calcium current) to check it is working
}
UNITSOFF
INITIAL {
settables(v)
r = r_inf
}
DERIVATIVE states {
settables(v)
r' = (r_inf - r)/tau_r
}
PROCEDURE settables(v) {
TABLE r_inf, p_inf, tau_r FROM -100 TO 100 WITH 400
r_inf = 1/(1+exp((v+84)/4))
tau_r = (28+exp(-(v+25)/10.5))
p_inf = 1/(1+exp(-(v+60)/6.2))
}
UNITSON