/* 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")