File: singhh.hoc

package info (click to toggle)
neuron 8.2.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 34,760 kB
  • sloc: cpp: 149,571; python: 58,465; ansic: 50,329; sh: 3,510; xml: 213; pascal: 51; makefile: 35; sed: 5
file content (44 lines) | stat: -rwxr-xr-x 874 bytes parent folder | download | duplicates (4)
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
load_file("singhhchan.hoc")

create soma
access soma
{diam=10 L=100/PI/diam}
{insert leak}
objref nachan, kchan, stim
nachan = new nahh0(.5)
kchan = new khh0(.5)

gmaxna = .12
gmaxk = .036
proc nsing() {
	nachan.gmax = gmaxna
	kchan.gmax = gmaxk
	nachan.Nsingle = $1
	kchan.Nsingle = $1
	if ($1 > 0) {
		nachan.gmax /= nachan.Nsingle
		kchan.gmax /= kchan.Nsingle
	}
	stdinit()
}
nsing(1000)

/*
xpanel("AP with a set of single channels")
xradiobutton("Continuous", "nsing(0)", 1)
xradiobutton("1 channel", "nsing(1)")
xradiobutton("10 channels", "nsing(10)")
xradiobutton("100 channels", "nsing(100)")
xradiobutton("1000 channels", "nsing(1000), 1")
xradiobutton("10000 channels", "nsing(10000)")
xpanel(100, 100)
*/

load_file(1, "singhh.ses")

proc destroy() {
	objref nachan, kchan, stim
	while (PWManager[0].count > 6) {
		PWManager[0].close(PWManager[0].count-1)
	}
}