> For the complete documentation index, see [llms.txt](https://elishai.gitbook.io/retinal-stimulation-modeling-environment/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://elishai.gitbook.io/retinal-stimulation-modeling-environment/sac-dsgc-network/model-simulation.md).

# 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:

![](/files/Rrdx5ASsBWboEbIWimgu)

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

```
simulation.visualize_results()
```

The generated voltage traces are:

![](/files/VoYwx7Wr383QAz2wu77A)

And the stimulus:

![](/files/UOYxB7RtHnSedMEsl7gH)
