myogen.simulator.neuron.network.Network.connect_from_external#

Network.connect_from_external(
source: str,
target: str,
weight__uS: Quantity__uS = DEFAULT_SYNAPTIC_WEIGHT,
delay__ms: Quantity__ms = DEFAULT_SYNAPTIC_DELAY,
threshold__mV: Quantity__mV = DEFAULT_SPIKE_THRESHOLD,
) list[source]#

Connect external input source to a neural population.

Parameters:
  • source (str) – Name/label for external input source (e.g., “spindle”, “cortical_drive”).

  • target (str) – Name of target neural population.

  • weight__uS (Quantity__uS, optional) – Synaptic weight in microsiemens, by default 0.8.

  • delay__ms (float, optional) – Synaptic delay in milliseconds, by default 1.0.

  • threshold__mV (float, optional) – Spike threshold in millivolts, by default -10.0.

Returns:

List of external to neural NetCon objects.

Return type:

list[h.NetCon]