Skip to content
Snippets Groups Projects
Unverified Commit 81498f10 authored by Sebastian Schmitt's avatar Sebastian Schmitt Committed by GitHub
Browse files

Minor fixes to Python's `decor` documentation (#1545)

parent 4399497f
No related branches found
No related tags found
No related merge requests found
...@@ -24,7 +24,6 @@ Cable cell decoration ...@@ -24,7 +24,6 @@ Cable cell decoration
Overrides the default global values, and can be overridden by painting Overrides the default global values, and can be overridden by painting
the values onto regions. the values onto regions.
:param str region: description of the region.
:param Vm: Initial membrane voltage [mV]. :param Vm: Initial membrane voltage [mV].
:type Vm: float or None :type Vm: float or None
:param cm: Membrane capacitance [F/m²]. :param cm: Membrane capacitance [F/m²].
...@@ -46,7 +45,7 @@ Cable cell decoration ...@@ -46,7 +45,7 @@ Cable cell decoration
by default everywhere on the cell. Species concentrations and reversal by default everywhere on the cell. Species concentrations and reversal
potential can be overridden on specific regions using the paint interface, potential can be overridden on specific regions using the paint interface,
while the method for calculating reversal potential is global for all while the method for calculating reversal potential is global for all
CVs in the cell, and can't be overriden locally. CVs in the cell, and can't be overridden locally.
:param str ion: description of the ion species. :param str ion: description of the ion species.
:param float int_con: initial internal concentration [mM]. :param float int_con: initial internal concentration [mM].
...@@ -67,7 +66,7 @@ Cable cell decoration ...@@ -67,7 +66,7 @@ Cable cell decoration
# The reversal potential is fixed, so we set the method to None. # The reversal potential is fixed, so we set the method to None.
decor.set_ion('na', int_con=5.0, rev_pot=70, method=None) decor.set_ion('na', int_con=5.0, rev_pot=70, method=None)
Verious specialisations of the ``paint`` method are available for setting properties Various specialisations of the ``paint`` method are available for setting properties
and mechanisms that are applied to regions. and mechanisms that are applied to regions.
.. method:: paint(region, Vm=None, cm=None, rL=None, tempK=None) .. method:: paint(region, Vm=None, cm=None, rL=None, tempK=None)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment