-
Notifications
You must be signed in to change notification settings - Fork 2
/
MyExp2SynBB.mod
67 lines (57 loc) · 964 Bytes
/
MyExp2SynBB.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
: $Id: MyExp2SynBB.mod,v 1.4 2010/12/13 21:27:51 samn Exp $
NEURON {
: THREADSAFE
POINT_PROCESS MyExp2SynBB
RANGE tau1, tau2, e, i, g, Vwt, gmax
NONSPECIFIC_CURRENT i
}
UNITS {
(nA) = (nanoamp)
(mV) = (millivolt)
(uS) = (microsiemens)
}
PARAMETER {
tau1=.1 (ms) <1e-9,1e9>
tau2 = 10 (ms) <1e-9,1e9>
e=0 (mV)
gmax = 1e9 (uS)
Vwt = 0 : weight for inputs coming in from vector
}
ASSIGNED {
v (mV)
i (nA)
g (uS)
factor
etime (ms)
}
STATE {
A (uS)
B (uS)
}
INITIAL {
LOCAL tp
Vwt = 0 : testing
if (tau1/tau2 > .9999) {
tau1 = .9999*tau2
}
A = 0
B = 0
tp = (tau1*tau2)/(tau2 - tau1) * log(tau2/tau1)
factor = -exp(-tp/tau1) + exp(-tp/tau2)
factor = 1/factor
}
BREAKPOINT {
SOLVE state METHOD cnexp
g = B - A
if (g>gmax) {g=gmax}: saturation
i = g*(v - e)
}
DERIVATIVE state {
A' = -A/tau1
B' = -B/tau2
}
NET_RECEIVE(w (uS)) {LOCAL ww
ww=w
A = A + ww*factor
B = B + ww*factor
}