For the complete documentation index, see llms.txt. This page is also available as Markdown.

Model Simulation

Similar to the single SAC example you can simulate, trace the voltage at the soma and plot it:

simulation.simulate()
results = simulation.trace_voltages_at_soma()

import matplotlib.pyplot as plt
plt.rcParams.update({'font.size': 14})
fig = plt.figure(figsize=(7,5))
plt.plot(results[0]['1'][1]['t'], results[0]['1'][1]['v'], ls='-', c='r', label='Exp', linewidth=4)
plt.ylim([-75, -40])
plt.show()

Note that here we are showing the soma voltage of the DSGC:

In this experiment, we used a moving bar stimulus. We can verify in using:

The generated voltage traces are:

And the stimulus:

Last updated