-
Notifications
You must be signed in to change notification settings - Fork 5
/
Interneuron_I_Na.mod
92 lines (71 loc) · 1.85 KB
/
Interneuron_I_Na.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
TITLE Sodium Current for Cortical Interneuron
COMMENT
Model Reference:
Pospischil, M., Toledo-Rodriguez, M., Monier, C., Piwkowska, Z.,
Bal, T., Frégnac, Y., Markram, H. and Destexhe, A., 2008.
"Minimal Hodgkin–Huxley type models for different classes of
cortical and thalamic neurons."
Biological cybernetics, 99(4-5), pp.427-441.
Original Code Link:
https://senselab.med.yale.edu/ModelDB/showmodel.cshtml?model=123623
Implemented by John Fleming - [email protected] - 06/12/18
Edits:
ENDCOMMENT
UNITS {
(mV) = (millivolt)
(mA) = (milliamp)
(S) = (siemens)
}
NEURON {
SUFFIX interneuron_i_na
USEION na WRITE ina : Using na ion, treat the reversal potential as a parameter and write to ik so the total k current can be tracked
RANGE g_Na, i_Na : Sodium current, specific conductance and equilibrium potential
}
PARAMETER {
ena = 50 (mV)
i_Na = 0.0 (mA/cm2) : Parameter to record this current separately to total sodium current
g_Na = 0.05 (S/cm2)
V_T = -55(mV)
}
ASSIGNED {
v (mV)
ina (mA/cm2)
alpha_m
beta_m
alpha_h
beta_h
}
STATE {
m h
}
BREAKPOINT {
SOLVE states METHOD cnexp
ina = g_Na*m*m*m*h*(v - ena)
i_Na = ina : Record i_Na (just this sodium current) to check it is working
}
UNITSOFF
INITIAL {
settables(v)
m = 0
h = 0
}
DERIVATIVE states {
settables(v)
m' = alpha_m*(1-m)-beta_m*m
h' = alpha_h*(1-h)-beta_h*h
}
PROCEDURE settables(v) {
TABLE alpha_m, beta_m, alpha_h, beta_h DEPEND V_T FROM -100 TO 100 WITH 400
alpha_m = 0.32*vtrap(-(v-V_T-13),4)
beta_m = 0.28*vtrap((v-V_T-40),5)
alpha_h = 0.128*exp(-(v-V_T-17)/18)
beta_h = 4/(1+exp(-(v-V_T-40)/5))
}
FUNCTION vtrap(x,y) {
if (fabs(x/y) < 1e-6) {
vtrap = y*(1 - x/y/2)
}else{
vtrap = x/(exp(x/y)-1)
}
}
UNITSON