-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSTh.mod
More file actions
40 lines (32 loc) · 753 Bytes
/
STh.mod
File metadata and controls
40 lines (32 loc) · 753 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
TITLE passive membrane properties for STh
COMMENT
Temperature is going to effect the passive membrane properties. How to
model this is difficult. Kita do not recorded their temperature at
which they measure the membrane time constant, and Nakanishi who
measure input resistance perform their experiments at 36degC.
At present I will not implement a temperature dependence of this
component.
ENDCOMMENT
UNITS {
(mV) = (millivolt)
(mA) = (milliamp)
}
INDEPENDENT {t FROM 0 TO 1 WITH 1 (ms)}
NEURON {
SUFFIX STh
RANGE gpas, epas
NONSPECIFIC_CURRENT ipas
}
PARAMETER {
v (mV)
dt (ms)
gpas = 7.84112e-05 (mho/cm2) <0,1e9>
epas = -58.4477 (mV)
celsius
}
ASSIGNED {
ipas (mA/cm2)
}
BREAKPOINT {
ipas = gpas*(v - epas)
}