3.1.1.2. SomaReceivesStepCurrent

class SomaReceivesStepCurrent[source]

Bases: sciunit.capabilities.Capability

Enables injecting step current stimulus to soma

Methods Summary

inject_soma_square_current(current)

Model should implement this method such as to inject the specified

Methods Documentation

inject_soma_square_current(current)[source]
Model should implement this method such as to inject the specified

current stimulus into the soma of the neuron.

Input current is specified in the form of a dict with keys:

‘delay’ : (value in ms), ‘duration’ : (value in ms), ‘amplitude’ : (value in nA)

Example of current stimulus:

current = {'delay'    : 10.0,
           'duration' : 50.0,
           'amplitude': 1.0  }

Note

This methods needs to be implemented by the model to satisfy this capability.