Soma class¶
(Shortest import: from brian2 import Soma)
-
class
brian2.spatialneuron.morphology.Soma(**kwds)[source]¶ Bases:
brian2.spatialneuron.morphology.MorphologyA spherical, iso-potential soma.
Parameters: diameter :
QuantityDiameter of the sphere.
x :
Quantity, optionalThe x coordinate of the position of the soma.
y :
Quantity, optionalThe y coordinate of the position of the soma.
z :
Quantity, optionalThe z coordinate of the position of the soma.
type : str, optional
The
typeof this section, defaults to'soma'.Attributes
areaThe membrane surface area of this section (as an array of length 1). diameterThe diameter of this section (as an array of length 1). distanceThe total distance between the midpoint of this section and the root of the morphology. end_distanceThe distance to the root of the morphology at the end of this section. end_x_The x-coordinate of the current section (as an array of length 1). end_y_The y-coordinate of the current section (as an array of length 1). end_z_The z-coordinate of the current section (as an array of length 1). lengthThe “length” (equal to diameter) of this section (as an array of length 1).r_length_1The geometry-dependent term to calculate the conductance between the start and the midpoint of each compartment. r_length_2The geometry-dependent term to calculate the conductance between the midpoint and the end of each compartment. start_x_The x-coordinate of the current section (as an array of length 1). start_y_The y-coordinate of the current section (as an array of length 1). start_z_The z-coordinate of the current section (as an array of length 1). volumeThe volume of this section (as an array of length 1). x_The x-coordinate of the current section (as an array of length 1). y_The y-coordinate of the current section (as an array of length 1). z_The z-coordinate of the current section (as an array of length 1). Methods
copy_section()Create a copy of the current section (attributes of this section only, not re-creating the parent/children relation) Details
-
area¶ The membrane surface area of this section (as an array of length 1).
-
diameter¶ The diameter of this section (as an array of length 1).
-
distance¶ The total distance between the midpoint of this section and the root of the morphology. The
Somais most likely the root of the morphology, and therefore thedistanceis 0.
-
end_distance¶ The distance to the root of the morphology at the end of this section. Note that since a
Somais modeled as a point (see docs ofx, etc.), it does not add anything to the total distance, e.g. a section connecting to aSomahas adistanceof 0 um at its start.
-
end_x_¶ The x-coordinate of the current section (as an array of length 1). Note that a
Somais modelled as a “point” with finite surface/volume, equivalent to that of a sphere with the givendiameter. It’s start-, midpoint-, and end-coordinates are therefore identical.
-
end_y_¶ The y-coordinate of the current section (as an array of length 1). Note that a
Somais modelled as a “point” with finite surface/volume, equivalent to that of a sphere with the givendiameter. It’s start-, midpoint-, and end-coordinates are therefore identical.
-
end_z_¶ The z-coordinate of the current section (as an array of length 1). Note that a
Somais modelled as a “point” with finite surface/volume, equivalent to that of a sphere with the givendiameter. It’s start-, midpoint-, and end-coordinates are therefore identical.
-
r_length_1¶ The geometry-dependent term to calculate the conductance between the start and the midpoint of each compartment. Returns a fixed (high) value for a
Soma, corresponding to a section with very low intracellular resistance.
-
r_length_2¶ The geometry-dependent term to calculate the conductance between the midpoint and the end of each compartment. Returns a fixed (high) value for a
Soma, corresponding to a section with very low intracellular resistance.
-
start_x_¶ The x-coordinate of the current section (as an array of length 1). Note that a
Somais modelled as a “point” with finite surface/volume, equivalent to that of a sphere with the givendiameter. It’s start-, midpoint-, and end-coordinates are therefore identical.
-
start_y_¶ The y-coordinate of the current section (as an array of length 1). Note that a
Somais modelled as a “point” with finite surface/volume, equivalent to that of a sphere with the givendiameter. It’s start-, midpoint-, and end-coordinates are therefore identical.
-
start_z_¶ The z-coordinate of the current section (as an array of length 1). Note that a
Somais modelled as a “point” with finite surface/volume, equivalent to that of a sphere with the givendiameter. It’s start-, midpoint-, and end-coordinates are therefore identical.
-
volume¶ The volume of this section (as an array of length 1).
-
x_¶ The x-coordinate of the current section (as an array of length 1). Note that a
Somais modelled as a “point” with finite surface/volume, equivalent to that of a sphere with the givendiameter. It’s start-, midpoint-, and end-coordinates are therefore identical.
-
y_¶ The y-coordinate of the current section (as an array of length 1). Note that a
Somais modelled as a “point” with finite surface/volume, equivalent to that of a sphere with the givendiameter. It’s start-, midpoint-, and end-coordinates are therefore identical.
-
z_¶ The z-coordinate of the current section (as an array of length 1). Note that a
Somais modelled as a “point” with finite surface/volume, equivalent to that of a sphere with the givendiameter. It’s start-, midpoint-, and end-coordinates are therefore identical.
-
copy_section()[source]¶ Create a copy of the current section (attributes of this section only, not re-creating the parent/children relation)
Returns: copy :
MorphologyA copy of this section (without the links to the parent/children)
-
Tutorials and examples using this¶
- Example compartmental/bipolar_with_inputs
- Example compartmental/morphotest
- Example compartmental/bipolar_with_inputs2
- Example compartmental/bipolar_cell
- Example compartmental/spike_initiation
- Example frompapers/Brette_2012/Fig1
- Example frompapers/Brette_2012/Fig4
- Example frompapers/Brette_2012/Fig3CF
- Example frompapers/Brette_2012/Fig5A
- Example frompapers/Brette_2012/Fig3AB