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.
18 lines
290 B
18 lines
290 B
2 years ago
|
TITLE Purkinje Leak Current
|
||
|
|
||
|
: A passive purkinje cell leak current
|
||
|
NEURON {
|
||
|
SUFFIX lkpkj
|
||
|
NONSPECIFIC_CURRENT i
|
||
|
RANGE i, e, gbar
|
||
|
}
|
||
|
PARAMETER {
|
||
|
gbar = 5e-5 (siemens/cm2) < 0, 1e9 >
|
||
|
e = -60.5 (millivolt)
|
||
|
}
|
||
|
ASSIGNED {
|
||
|
i (milliamp/cm2)
|
||
|
v (millivolt)
|
||
|
}
|
||
|
BREAKPOINT { i = gbar*(v - e) }
|