-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtopo05.hoc
More file actions
36 lines (27 loc) · 1.35 KB
/
topo05.hoc
File metadata and controls
36 lines (27 loc) · 1.35 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
/* topo05.hoc
Model for HVC(RA) projection neuron with unmyelinated axon.
Simple ball and stick model of axon and soma. The axon
has two types of sections one contains a mitodondrion and the other does not.
The section with the mitochondrion has increased intracellular resisitivity.
The length of a mitochondrion containing section is fixed at 1 micron. The
mitochondria containing sections are distributed uniformly along the axon.
This file sets the topological parameters to create an axon with 5%
longitudinal mitochondial coverage, that is 5% of the length of the axon
is made up of sections containing mitochondria. The length of an axon + a mitocondrion
section is 20 microns.
*/
// Set longitudinal mitochondrial coverage t0 5%
lcover=5
printf ("longitudinal mitochondrial coverage = %.10g %\n",lcover)
// Set length of mitochondrion free sections
// Length of mitochondrion containing sections fixed at 1 micron
axonL=19 //length of axon section without mitochondrion
nseg_axon=23 // nseg for axon section without mitochonrion
//topological parameters
nmito=100 // number of mitochondria sections
naxon=100 // number of axon sections
// Set axon sections used to compute conduction velocity
// Sections must be in the middle of the axon separated by 200 microns
naxon1 = 45
naxon2 = 55
load_file("HVCRA_neuron.hoc")