-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathchanAnalysis.hoc
More file actions
503 lines (433 loc) · 12 KB
/
Copy pathchanAnalysis.hoc
File metadata and controls
503 lines (433 loc) · 12 KB
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
// func sum_g_chan() { local Gsum
// // meang_KD_ca3( Dt )
//
// Gsum=0
// sprint( strtmp, "Gsum += g_%s*area(0.5)", $s1)
// forsec $o2 {
// execute(strtmp)
// // Gsum += g_hcn*area(0.5) // S/cm2*µm2 ≠ S
// }
// return Gsum
// }
// 11 July 2017 - RBD - fixed units, so values match description and fixed bug wasted calculations
// ***** hAnalysis
begintemplate hAnalysis
public gh, nh, hSA, hGM, ih, SL, update, setGtot, remove
external HList, AddToStep, RemoveFromStep, StepEvents_
objref this, SL
proc init() {
if (numarg()) {
if (argtype(1)==1) { // input 1 is SectionList obj
SL = $o1
} else if (argtype(1)==2) { // input 1 is char array naming sections
SL = new SectionList()
forall ifsec $s1 SL.append()
} else SL = HList
} else SL = HList // no input uses default SectionList
forsec SL hSA += area(0.5) // total surface area µm2
// to get the average conductance density within sections containing the channel the
// HList should be limited to sections with the channel. For the average conductance
// density across the entire cell then HList should contain all sections
setGtot()
update()
AddToStep(this)
}
proc setGtot() {
forsec SL {
if (ismembrane("h")) {
hGM += gmax_h*area(0.5)*1e-2 // maximum total conductance µS
} else SL.remove()
}
}
proc update() { local Gsum, Isum, gtmp
Gsum=0
Isum=0
if (hGM == 0) return
forsec SL {
gtmp = g_h(0.5)*area(0.5)*1e-2 // section conductance in µS
Gsum += gtmp // total conductance (µS)
Isum += gtmp*(v(0.5)-e_h) // total current in (nA) µS*10^-3(V/mV)
}
nh = Gsum/hGM // % channel activation
gh = Gsum/hSA*1e2 // conductance density S/cm2
ih = Isum // total membrane current (nA)
}
proc remove() {
RemoveFromStep(this)
}
endtemplate hAnalysis
// ***** hcnAnalysis
begintemplate hcnAnalysis
public gh, nh, hSA, hGM, ih, SL, update, remove, setGtot
external HList, AddToStep, RemoveFromStep, StepEvents_
objref this, SL
proc init() {
if (numarg()) {
if (argtype(1)==1) {
SL = $o1
} else if (argtype(1)==2) {
SL = new SectionList()
forall ifsec $s1 SL.append()
} else SL = HList
} else SL = HList
forsec SL hSA += area(0.5) // total surface area µm2
// to get the average conductance density within sections containing the channel the
// HList should be limited to sections with the channel. For the average conductance
// density across the entire cell then HList should contain all sections
setGtot()
update()
SN=AddToStep(this)
SN=SN-1
}
proc setGtot() {
forsec SL {
if (ismembrane("hcn")) {
hGM += gmax_hcn*area(0.5)*1e-2 // maximum total conductance µS
} else SL.remove()
}
}
proc update() { local Gsum, Isum, gtmp
Gsum=0
Isum=0
if (hGM == 0) return
forsec SL {
gtmp = g_hcn(0.5)*area(0.5)*1e-2 // section conductance in µS
Gsum += gtmp // total conductance (µS)
Isum += gtmp*(v(0.5)-e_hcn) // total current in (nA) µS*mV
}
nh = Gsum/hGM // % channel activation
gh = Gsum/hSA*1e2 // conductance density S/cm2
ih = Isum // total membrane current (nA)
}
proc remove() {
RemoveFromStep(this)
}
endtemplate hcnAnalysis
// ***** MAnalysis
begintemplate MAnalysis
public gM, nM, MSA, MGM, iM, SL, update, remove, setGtot
external MList, AddToStep, RemoveFromStep, StepEvents_
objref this, SL
proc init() {
if (numarg()) {
if (argtype(1)==1) {
SL = $o1
} else if (argtype(1)==2) {
SL = new SectionList()
forall ifsec $s1 SL.append()
} else SL = MList
} else SL = MList
forsec SL MSA += area(0.5)
setGtot()
update()
AddToStep(this)
}
proc setGtot() {
forsec SL {
if (ismembrane("M")) {
MGM += gmax_M*area(0.5)*1e-2 // maximum total conductance µS
} else SL.remove()
}
}
proc update() { local Gsum, Isum, gtmp
Gsum=0
Isum=0
if (MGM == 0) return
forsec SL {
gtmp = g_M(0.5)*area(0.5)*1e-2 // section conductance in µS
Gsum += gtmp // total conductance (µS)
Isum += gtmp*(v(0.5)-ek) // total current in (nA) µS*mV
}
nM = Gsum/MGM // % channel activation
gM = Gsum/MSA*1e2 // conductance density S/cm2
iM = Isum // total membrane current (nA)
}
proc remove() {
RemoveFromStep(this)
}
endtemplate MAnalysis
// ***** KD3Analysis
begintemplate KD3Analysis
public gKD, lKD, nKD, KDSA, KDGM, iKD, SL, update, remove
external KDList, AddToStep, RemoveFromStep, StepEvents_
objref this, SL
proc init() {
if (numarg()) {
if (argtype(1)==1) {
SL = $o1
} else if (argtype(1)==2) {
SL = new SectionList()
forall ifsec $s1 SL.append()
} else SL = KDList
} else SL = KDList
forsec SL KDSA += area(0.5) // total area µm2
forsec SL {
if (ismembrane("KD_ca3")) {
KDGM += gmax_KD_ca3*area(0.5)*1e-2 // maximum total conductance µS
} else SL.remove()
}
update()
AddToStep(this)
}
proc update() { local Gsum, lsum, nsum, gtmp, am
Gsum=0
Isum=0
lsum=0
nsum=0
if (KDGM == 0) return
forsec SL {
am = area(0.5)*1e-2
gtmp = g_KD_ca3(0.5)*am // section conductance in µS
Gsum += gtmp // total conductance (µS)
Isum += gtmp*(v(0.5)-ek) // total current in (nA) µS*mV
lsum += l_KD_ca3(0.5)*gmax_KD_ca3*am
nsum += n_KD_ca3(0.5)*gmax_KD_ca3*am
}
gKD = Gsum/KDSA*1e2 // conductance density (S/cm2)
lKD = lsum/KDGM // % channel inactivation
nKD = nsum/KDGM // % channel activation
iKD = Isum // total membrane current (nA)
}
proc remove() {
RemoveFromStep(this)
}
endtemplate KD3Analysis
// ***** KDAnalysis
begintemplate KDAnalysis
public gKD, lKD, nKD, KDSA, KDGM, iKD, SL, update, remove, setGtot
external KDList, AddToStep, RemoveFromStep, StepEvents_
objref this, SL
proc init() {
if (numarg()) {
if (argtype(1)==1) {
SL = $o1
} else if (argtype(1)==2) {
SL = new SectionList()
forall ifsec $s1 SL.append()
} else SL = KDList
} else SL = KDList
forsec SL KDSA += area(0.5) // total surface area µm2
// to get the average conductance density within sections containing the channel the
// HList should be limited to sections with the channel. For the average conductance
// density across the entire cell then HList should contain all sections
setGtot()
update()
AddToStep(this)
}
proc update() { local Gsum, lsum, nsum, gtmp, am
Gsum=0
Isum=0
lsum=0
nsum=0
if (KDGM == 0) return
forsec SL {
am = area(0.5)*1e-2
gtmp = g_KD(0.5)*am // section conductance in µS
Gsum += gtmp // total conductance (µS)
Isum += gtmp*(v(0.5)-ek) // total current in (nA) µS*mV
lsum += l_KD(0.5)*gmax_KD*am
nsum += n_KD(0.5)*gmax_KD*am
}
gKD = Gsum/KDSA*1e2 // conductance density (S/cm2)
lKD = lsum/KDGM // % channel inactivation
nKD = nsum/KDGM // % channel activation
iKD = Isum // total membrane current (nA)
}
proc setGtot() {
forsec SL {
if (ismembrane("KD")) {
KDGM += gmax_KD*area(0.5)*1e-2 // maximum total conductance µS
} else SL.remove()
}
}
proc remove() {
RemoveFromStep(this)
}
endtemplate KDAnalysis
begintemplate KAAnalysis
public gKA, lKA, nKA, KASA, KAGM, iKA, SL, update, remove, setGtot
external KAList, AddToStep, RemoveFromStep, StepEvents_
objref this, SL
proc init() {
if (numarg()) {
if (argtype(1)==1) {
SL = $o1
} else if (argtype(1)==2) {
SL = new SectionList()
forall ifsec $s1 SL.append()
} else SL = KAList
} else SL = KAList
forsec SL KASA += area(0.5) // total surface area µm2
// to get the average conductance density within sections containing the channel the
// HList should be limited to sections with the channel. For the average conductance
// density across the entire cell then HList should contain all sections
setGtot()
update()
AddToStep(this)
}
proc update() { local Gsum, lsum, nsum, gtmp, am
Gsum=0
Isum=0
lsum=0
nsum=0
if (KAGM == 0) return
forsec SL {
am = area(0.5)*1e-2
gtmp = g_KA(0.5)*am // section conductance in µS
Gsum += gtmp // total conductance (µS)
Isum += gtmp*(v(0.5)-ek) // total current in (nA) µS*mV
lsum += l_KA(0.5)*gmax_KA*am
nsum += n_KA(0.5)*gmax_KA*am
}
gKA = Gsum/KASA*1e2 // conductance density (S/cm2)
lKA = lsum/KAGM // % channel inactivation
nKA = nsum/KAGM // % channel activation
iKA = Isum // total membrane current (nA)
}
proc setGtot() {
forsec SL {
if (ismembrane("KA")) {
KAGM += gmax_KA*area(0.5)*1e-2 // maximum total conductance µS
} else SL.remove()
}
}
proc remove() {
RemoveFromStep(this)
}
endtemplate KAAnalysis
begintemplate KD2Analysis
public gKD, lKD, nKD, KDSA, KDGM, iKD, SL, update, remove
external KDList, AddToStep, RemoveFromStep, StepEvents_
objref this, SL
// strdef gstr, lstr, nstr, maxstr
proc init() {
if (numarg()) {
if (argtype(1)==1) {
SL = $o1
} else if (argtype(1)==2) {
SL = new SectionList()
forall ifsec $s1 SL.append()
} else SL = KDList
} else SL = KDList
forsec SL KDSA += area(0.5)
forsec SL {
if (ismembrane("KD2")) {
KDGM += gmax_KD2*area(0.5)*1e-2
} else SL.remove()
}
update()
AddToStep(this)
}
proc update() { local Gsum, lsum, nsum, gtmp, am
Gsum=0
Isum=0
lsum=0
nsum=0
if (KDGM == 0) return
forsec SL {
am = area(0.5)*1e-2
gtmp = g_KD2(0.5)*am // section conductance in µS
Gsum += gtmp // total conductance (µS)
Isum += gtmp*(v(0.5)-ek) // total current in (nA) µS*mV
lsum += l_KD2(0.5)*gmax_KD2*am
nsum += n_KD2(0.5)*gmax_KD2*am
}
gKD = Gsum/KDSA*1e2 // conductance density (S/cm2)
lKD = lsum/KDGM // % channel inactivation
nKD = nsum/KDGM // % channel activation
iKD = Isum // total membrane current (nA)
}
proc remove() {
RemoveFromStep(this)
}
endtemplate KD2Analysis
begintemplate CaTAnalysis
public gCaT, sCaT, hCaT, CaTSA, CaTGM, iCaT, SL, update, remove
external CaTList, AddToStep, RemoveFromStep, StepEvents_
objref this, SL
proc init() {
if (numarg()) {
if (argtype(1)==1) {
SL = $o1
} else if (argtype(1)==2) {
SL = new SectionList()
forall ifsec $s1 SL.append()
} else SL = CaTList
} else SL = CaTList
forsec SL CaTSA += area(0.5) // (µm2)
// to get the average conductance density within sections containing the channel the
// SectionList should be limited to sections with the channel. For the average conductance
// density across the entire cell the SectionList should contain all sections
forsec SL {
if (ismembrane("CaT")) {
CaTGM += gmax_CaT*area(0.5)*1e-2 // max total conductance in µS
} else SL.remove()
}
update()
AddToStep(this)
}
proc update() { local Gsum, lsum, nsum, gtmp, am
Gsum=0
Isum=0
ssum=0
hsum=0
if (CaTGM == 0) return
forsec SL {
am = area(0.5)*1e-2
gtmp = g_CaT(0.5)*am // section conductance in µS
Gsum += gtmp // total conductance (µS)
Isum += gtmp*(v(0.5)-eca) // total current in (nA) µS*mV
ssum += s_CaT(0.5)*gmax_CaT*am
hsum += h_CaT(0.5)*gmax_CaT*am
}
gCaT = Gsum/CaTSA*1e2 // conductance density (S/cm2)
sCaT = ssum/CaTGM // % channel inactivation
hCaT = hsum/CaTGM // % channel activation
iCaT = Isum // total membrane current (nA)
}
proc remove() {
RemoveFromStep(this)
}
endtemplate CaTAnalysis
begintemplate KCaAnalysis
public gKCa, nKCa, KCaSA, KCaGM, iKCa, SL, update, remove
external CaTList, AddToStep, RemoveFromStep, StepEvents_
objref this, SL
proc init() {
if (numarg()) {
if (argtype(1)==1) {
SL = $o1
} else if (argtype(1)==2) {
SL = new SectionList()
forall ifsec $s1 SL.append()
} else SL = CaTList
} else SL = CaTList
forsec SL KCaSA += area(0.5)
// to get the average conductance density within sections containing the channel the
// SectionList should be limited to sections with the channel. For the average conductance
// density across the entire cell the SectionList should contain all sections
forsec SL {
if (ismembrane("KCa")) {
KCaGM += gmax_KCa*area(0.5)*1e-2 // max total conductance in µS
} else SL.remove()
}
update()
AddToStep(this)
}
proc update() { local Gsum, Isum, gtmp
Gsum=0
Isum=0
if (KCaGM == 0) return
forsec SL {
gtmp = g_KCa(0.5)*area(0.5)*1e-2// section conductance in µS
Gsum += gtmp // total conductance (µS)
Isum += gtmp*(v(0.5)-ek) // total current in (nA) µS*10^-3(V/mV)
}
gKCa = Gsum/KCaSA*1e2 // conductance density (S/cm2)
nKCa = Gsum/KCaGM // % channel activation
iKCa = Isum // total membrane current (nA)
}
proc remove() {
RemoveFromStep(this)
}
endtemplate KCaAnalysis