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 fullpartnerwiring is still being designed.
Notes
Only
paramsis currently stored. A future revision should add apartnerfield (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