-
Notifications
You must be signed in to change notification settings - Fork 5
/
Destexhe_Static_GABAA_Synapse.mod
202 lines (152 loc) · 4.98 KB
/
Destexhe_Static_GABAA_Synapse.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
TITLE simple GABA-A receptors, based on AMPA model (discrete connections)
COMMENT
-----------------------------------------------------------------------------
Simple model for glutamate AMPA receptors
=========================================
- FIRST-ORDER KINETICS, FIT TO WHOLE-CELL RECORDINGS
Whole-cell recorded postsynaptic currents mediated by AMPA/Kainate
receptors (Xiang et al., J. Neurophysiol. 71: 2552-2556, 1994) were used
to estimate the parameters of the present model; the fit was performed
using a simplex algorithm (see Destexhe et al., J. Computational Neurosci.
1: 195-230, 1994).
- SHORT PULSES OF TRANSMITTER (0.3 ms, 0.5 mM)
The simplified model was obtained from a detailed synaptic model that
included the release of transmitter in adjacent terminals, its lateral
diffusion and uptake, and its binding on postsynaptic receptors (Destexhe
and Sejnowski, 1995). Short pulses of transmitter with first-order
kinetics were found to be the best fast alternative to represent the more
detailed models.
- ANALYTIC EXPRESSION
The first-order model can be solved analytically, leading to a very fast
mechanism for simulating synapses, since no differential equation must be
solved (see references below).
References
Destexhe, A., Mainen, Z.F. and Sejnowski, T.J. An efficient method for
computing synaptic conductances based on a kinetic model of receptor binding
Neural Computation 6: 10-14, 1994.
Destexhe, A., Mainen, Z.F. and Sejnowski, T.J. Synthesis of models for
excitable membranes, synaptic transmission and neuromodulation using a
common kinetic formalism, Journal of Computational Neuroscience 1:
195-230, 1994.
See also:
http://www.cnl.salk.edu/~alain
http://cns.fmed.ulaval.ca
-----------------------------------------------------------------------------
ENDCOMMENT
:INDEPENDENT {t FROM 0 TO 1 WITH 1 (ms)}
NEURON {
POINT_PROCESS GABAa_S
RANGE C, R, R0, R1, g, Cmax
NONSPECIFIC_CURRENT i
:GLOBAL Cdur, Alpha, Beta, Erev, blockTime, Rinf, Rtau
}
UNITS {
(nA) = (nanoamp)
(mV) = (millivolt)
(umho) = (micromho)
(mM) = (milli/liter)
}
PARAMETER {
Cmax = 0.5 (mM) : max transmitter concentration (set = 1 to match ~/netcon/ampa.hoc)
Cdur = 0.3 (ms) : transmitter duration (rising phase)
Alpha = 10.5 (/ms mM) : forward (binding) rate
Beta = 0.166 (/ms) : backward (unbinding) rate
Erev = -80 (mV) : reversal potential
blockTime = 2 (ms) : time window following dbs event during which non-dbs events are blocked
}
ASSIGNED {
v (mV) : postsynaptic voltage
i (nA) : current = g*(v - Erev)
g (umho) : conductance
C (mM) : transmitter concentration
R : fraction of open channels
R0 : open channels at start of time period
Rinf : steady state channels open
Rtau (ms) : time constant of channel binding
on : rising phase of PSC
gmax : max conductance
tLast
nspike
collisionBlock
}
INITIAL {
R = 0
C = 0
Rinf = Cmax*Alpha / (Cmax*Alpha + Beta)
Rtau = 1 / ((Alpha * Cmax) + Beta)
on = 0
R0 = 0
nspike = 0
collisionBlock = 0
}
BREAKPOINT {
SOLVE release
i = R*(v - Erev)
}
PROCEDURE release() {
if (on) { : transmitter being released?
R = gmax*Rinf + (R0 - gmax*Rinf) * exptable (- (t - tLast) / Rtau)
} else { : no release occuring
R = R0 * exptable (- Beta * (t - tLast))
}
}
: following supports both saturation from single input and
: summation from multiple inputs
: if spike occurs during CDur then new off time is t + CDur
: ie. transmitter concatenates but does not summate
: Note: automatic initialization of all reference args to 0 except first
NET_RECEIVE(weight, ncType, ncPrb) {LOCAL ok, tmp
:ncType 0=presyn cell, 1=dbs activated axon
:MOVED TO dbsStim.mod 4/11/07 ncPrb probability that incoming event causes PSP
INITIAL {
}
: flag is an implicit argument of NET_RECEIVE and normally 0
if (flag == 0) { : a spike, so turn on if not already in a Cdur pulse
ok = 0
if (ncType == 1) {
collisionBlock = collisionBlock + 1
net_send(blockTime, -1)
: tmp = scop_random()
: if (tmp <= ncPrb) {
: ok = 1
: }
ok = 1
}
else
if (collisionBlock == 0) {
ok = 1
}
if (ok) {
if (!on) {
on = 1
tLast = t
R0 = R
gmax = weight :weight not additive from separate sources as in original ampa.mod
}
nspike = nspike + 1
: come again in Cdur with flag = current value of nspike
net_send(Cdur, nspike)
}
}
else
if (flag == nspike) { : if this associated with last spike then turn off
if (on) {
on = 0
tLast = t
R0 = R
gmax = 0
}
}
else
if (flag == -1) {
collisionBlock = collisionBlock - 1
}
}
FUNCTION exptable(x) {
TABLE FROM -10 TO 10 WITH 2000
if ((x > -10) && (x < 10)) {
exptable = exp(x)
} else {
exptable = 0.
}
}