You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
320 B
33 lines
320 B
2 years ago
|
TITLE passive (leak) membrane channel
|
||
|
|
||
|
UNITS {
|
||
|
(mV) = (millivolt)
|
||
|
(mA) = (milliamp)
|
||
|
}
|
||
|
|
||
|
NEURON {
|
||
|
THREADSAFE
|
||
|
SUFFIX leak
|
||
|
NONSPECIFIC_CURRENT i
|
||
|
RANGE gbar, erev, i
|
||
|
}
|
||
|
|
||
|
PARAMETER {
|
||
|
v (mV)
|
||
|
gbar = 0.001 (mho/cm2)
|
||
|
erev = -65 (mV)
|
||
|
}
|
||
|
|
||
|
ASSIGNED {
|
||
|
i (mA/cm2)
|
||
|
}
|
||
|
|
||
|
INITIAL {
|
||
|
|
||
|
}
|
||
|
BREAKPOINT {
|
||
|
i = gbar*(v - erev)
|
||
|
}
|
||
|
|
||
|
|