Hi,
Thank you that's very helpful. I am a bit confused about what I get back from the AfferantCoupling and Raw monitors. I have 96 nodes, and I am running a simulation with a period=2000 and a simulation_length=20000 as a trial. I was expecting the resulting coupling and raw data to have 10 data points given the period and simulation_length, but instead I get over a million data points back for each node? What exactly is recording and what information is it giving back to be that large of a size?
For context, my simulation code is:
sim = simulator.Simulator(
model = models.ReducedWongWangExcInh(G=np.array([1.1]),J_i=np.array([2.5])),
connectivity = sub,
coupling = coupling.Linear(a=np.array([1.0])),
integrator = integrators.HeunStochastic(noise=noise.Additive(nsig=np.array([1e-4]))),
monitors = (monitors.Raw(period=2000),monitors.AfferentCoupling(variables_of_interest=np.array([0]),period=2000),),
simulation_length = 20000,
)
sim.configure()
(time, dataRaw), (time, dataCoupling), = sim.run()
Thank you for your help!
Dominique Hughes