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:
simulation.visualize_results()
The generated voltage traces are:

And the stimulus:

Last updated
Was this helpful?