-
Notifications
You must be signed in to change notification settings - Fork 0
/
IN.tem
124 lines (98 loc) · 2.13 KB
/
IN.tem
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
begintemplate IN// This is "EX Cell".
//Created by Paulo Aguiar [[email protected]]. Modified by Tianhe C. Zhang ([email protected])
public soma, dend, hillock, axon, synlist, x, y, z, position, connect2target
create soma, dend, hillock, axon
objref synlist, syn_
proc init() {
x = y = z = 0
create soma // Soma
soma {
nseg = 3
L = 20.0
diam = 20.0
//HH channels: iK
insert HH2 {
gnabar_HH2 = 0.00 // Na not in soma.
gkbar_HH2 = 0.0043*1/4 // Scaled to safronov et al. (1997) and Wolff et al.(1998) ratios.
vtraub_HH2 = -55.0
}
//intracellular Ca dynamics
insert CaIntraCellDyn {
depth_CaIntraCellDyn = 0.1
cai_tau_CaIntraCellDyn = 1.0
cai_inf_CaIntraCellDyn = 50.0e-6
}
//potassium current dependent on intracellular calcium concentration
insert iKCa {
gbar_iKCa = 0.002 //0.002
}
insert pas // Passive parameters.
g_pas = 4.2e-5
e_pas = -65.0
ek = -70.0
Ra = 150.0
}
create dend // Single dendrite.
dend {
nseg = 5
L = 400.0
diam = 3.0
//HH channels: iNat and iK
insert HH2{
gnabar_HH2 = 0.000
gkbar_HH2 = 0.036 // *5/6
}
//intracellular Ca dynamics
insert CaIntraCellDyn {
depth_CaIntraCellDyn = 0.1
cai_tau_CaIntraCellDyn = 2.0
cai_inf_CaIntraCellDyn = 50.0e-6
}
//potassium current dependent on intracellular calcium concentration
insert iKCa {
gbar_iKCa = 0.002 //0.002
}
insert pas
g_pas = 4.2e-5
e_pas = -65.0
ek = -70.0
Ra = 150.0
}
create hillock
hillock {
nseg = 3
L = 9.0
diam(0:1) = 2.0:1.0
//HH channels: iNa,t and iK
insert HH2 {
gnabar_HH2 = 3.45
gkbar_HH2 = 0.076
vtraub_HH2 = -55.0
}
insert pas
g_pas = 4.2e-5
e_pas = -65.0
Ra = 150.0
}
create axon
axon {
nseg = 5
L = 1000.0
diam = 1.0
//HH channels: iNa,t and iK
insert HH2 {
gnabar_HH2 = 0.0
gkbar_HH2 = 0.00 //0.06
vtraub_HH2 = -55
}
insert pas
g_pas = 4.2e-5
e_pas = -65.0
Ra = 150.0
}
//CONNECTIONS between cell elements.
soma connect hillock(0),1
hillock connect axon(0),1
soma connect dend(0),0
}
endtemplate IN