5.1.1.5. ReceivesMultipleSynapses

class ReceivesMultipleSynapses[source]

Bases: sciunit.capabilities.Capability

Indicates that the model receives one or multiple synapses

Methods Summary

run_multiple_syn(dend_loc, interval, number, …)

This function must be implemented by the model.

run_multiple_synapse_get_vm(dend_loc, …)

This function is called by the test and calls the run_multiple_syn() function.

Methods Documentation

run_multiple_syn(dend_loc, interval, number, weight)[source]

This function must be implemented by the model.

Must return numpy arrays containing the time and voltage values (at the soma and at the synaptic location )

Parameters
  • dend_loc (list) – containing the name of the section (string) and the location (float) where input is received. Eg.: [‘dendrite[3]’, 0.5]

  • number (int) – number of synaptic input

  • interval (float) – time interval between the synaptic inputs

  • weight (float) – weight of the synaptic input

run_multiple_synapse_get_vm(dend_loc, interval, number, weight)[source]

This function is called by the test and calls the run_multiple_syn() function.