5.1.1.8. ReceivesSynapse¶
-
class
ReceivesSynapse[source]¶ Bases:
sciunit.capabilities.CapabilityIndicates that the model receives synapse
Methods Summary
run_syn(dend_loc, interval, number, AMPA_weight)This function must be implemented by the model.
run_synapse_get_vm(dend_loc, interval, …)This function is called by the test and calls the run_syn() function.
Methods Documentation
-
run_syn(dend_loc, interval, number, AMPA_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
-