Graded (non-spiking) synaptic transmission between cells
Model: Analog Synapses
Demonstrates <gradedSynapse> and <silentSynapse> — continuous graded synaptic transmission where the postsynaptic current depends smoothly on the presynaptic voltage, without spike-based transmission.
import matplotlib.pyplot as pltimport numpy as npfor name, ref_arr in ref_outputs.items(): t = ref_arr[:, 0] *1000 fig, ax = plt.subplots(figsize=(10, 4))for i inrange(1, min(ref_arr.shape[1], 6)): ax.plot(t, ref_arr[:, i], alpha=0.8, label=f'col {i}') ax.set_xlabel("Time (ms)") ax.set_title(f"Ex20: Analog Synapses — {name}") ax.legend(fontsize=7) ax.grid(True, alpha=0.3) plt.tight_layout() plt.show()
Graded Synapses
gradedSynapse and silentSynapse are NeuroML-native network features for continuous synaptic transmission. TVBO represents the FHN cell dynamics; the synaptic kinetics are handled by the NeuroML adapter.