Пример #1
0
 def volume(self):
     """The volume of the compartment in cubic microns.
     
     Read only."""
     import rxd
     rxd._update_node_data()
     return _volumes[self._index]
Пример #2
0
    def surface_area(self):
        """The surface area of the compartment in square microns.
        
        This is the area (if any) of the compartment that lies on the plasma membrane
        and therefore is the area used to determine the contribution of currents (e.g. ina) from
        mod files or kschan to the compartment's concentration.
        
        Read only.
        """

        rxd._update_node_data()
        return _surface_area[self._index]
Пример #3
0
 def surface_area(self):
     """The surface area of the compartment in square microns.
     
     This is the area (if any) of the compartment that lies on the plasma membrane
     and therefore is the area used to determine the contribution of currents (e.g. ina) from
     mod files or kschan to the compartment's concentration.
     
     Read only.
     """
     
     rxd._update_node_data()
     return _surface_area[self._index]
Пример #4
0
 def volume(self):
     """The volume of the compartment in cubic microns.
     
     Read only."""
     rxd._update_node_data()
     return _volumes[self._index]