-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Arbor makes a very deliberate distinction between the description of a morphology (segments, branches, samples), and the discretisation used by the numerical solver (control volumes, roughly analogous to compartments in NEURON). The morphology description, using segments and branches is used to describe a cell shape. Regions and locations on the cell refer to this description, and are used to describe where mechanisms, probes, stims, etc are located on the morphology. The process of decomposing the morphology into control volumes (CVs) is performed during model construction. How the morphology is to be decomposed is governed by a cv policy, which is a set of rules that describe how the branches. note NEURON users will be familiar with the term "compartment", which is an unbranched cable section with fixed radius that is used . Arbor's equivalent concept is the control volume (CV). Unlike NEURON, CVs can have more complicated geometry, for example the radius can vary in a CV, and CVs can even include fork points and sub-trees of the morphology. For this reason we use the term CV instead of compartment, to avoid confusion (we are in the process of purging the word compartment from the docs). warning the Python interface in v0.4 for setting cv policies is very limited, and will change significantly in v0.5. Currently the API allows you to set a single policy (e.g.
|
Beta Was this translation helpful? Give feedback.
-
The changes announced in @bcumming 's message have been merged, together with (hopefully) more carefully defined and thus clear definitions of the various aspects of cable cell morphology, including control volumes. Please see:
@lungsi Does this help clear up your questions? If not, please get back to us, thanks! |
Beta Was this translation helpful? Give feedback.
Arbor makes a very deliberate distinction between the description of a morphology (segments, branches, samples), and the discretisation used by the numerical solver (control volumes, roughly analogous to compartments in NEURON).
The morphology description, using segments and branches is used to describe a cell shape. Regions and locations on the cell refer to this description, and are used to describe where mechanisms, probes, stims, etc are located on the morphology.
The process of decomposing the morphology into control volumes (CVs) is performed during model construction. How the morphology is to be decomposed is governed by a cv policy, which is a set of rules that describe how the br…