density of a given channel

The basics of how to develop, test, and use models.
Post Reply
kazmer
Posts: 10
Joined: Thu May 17, 2007 2:37 pm

density of a given channel

Post by kazmer »

Hi,

I have a simple question. How can I change a density of given channel in e. g. soma?
Thanks
ted
Site Admin
Posts: 6300
Joined: Wed May 18, 2005 4:50 pm
Location: Yale University School of Medicine
Contact:

Post by ted »

Discussed in chapters 5 and 6 of The NEURON Book. If you don't have the book, at least
read "The NEURON Simulation Environment", our first article in Neural Computation,
which you can get from the Documentation page
http://www.neuron.yale.edu/neuron/docs

Examples of how to specify properties of a density (distributed) mechanism.

Code: Select all

varname_suffix = value // suffices for default section
// any of these will work for any specified section
secname varname_suffix = value
secname {
  . . . statements . . .
  varname_suffix = value
}
secname.varname_suffix = value
Post Reply