forked from ModelDBRepository/262046
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCortical_Soma_I_Leak.mod
More file actions
44 lines (32 loc) · 954 Bytes
/
Copy pathCortical_Soma_I_Leak.mod
File metadata and controls
44 lines (32 loc) · 954 Bytes
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
TITLE Passive Leak Current for Cortical Neuron Soma
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.
Implemented by John Fleming - john.fleming@ucdconnect.ie - 06/12/18
Edits:
ENDCOMMENT
UNITS {
(mV) = (millivolt)
(mA) = (milliamp)
(S) = (siemens)
}
NEURON {
SUFFIX cortical_soma_i_leak
NONSPECIFIC_CURRENT i_l : Declare ASSIGNED variables as RANGE variables so that they can be accessed outside of mod file
RANGE i_l, g_l, e_l : leak current, specific conductance and equilibrium potential
}
PARAMETER {
g_l = 0.1e-3 (S/cm2)
e_l = -70 (mV)
}
ASSIGNED {
v (mV)
i_l (mA/cm2)
}
BREAKPOINT {
i_l = g_l*(v - e_l)
}