Junction

Contents

Junction#

class braincell.mech.Junction(params=<factory>)[source]#

Gap-junction coupling declaration (placeholder).

Parameters:

params (Params) – Parameter mapping for the junction (e.g. conductance). An empty mapping is allowed while the full partner wiring is still being designed.

Notes

Only params is currently stored. A future revision should add a partner field (locset / cell handle) so two-ended gap junctions can be expressed in a single declaration.

Examples

>>> from braincell.mech import Junction, Params
>>> gap = Junction(params=Params(g=1.0))
>>> gap.params["g"]
1.0