Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incorrect behaviour when creating a PointNeuron with no synaptic mechanisms, with neuron backend #799

Open
apdavison opened this issue May 17, 2024 · 0 comments

Comments

@apdavison
Copy link
Member

apdavison commented May 17, 2024

When running a simulation with a composed neuron model with only a neuron component, no synapse components, the neuron backend produces incorrect behaviour.

Example of cell type:

cell = sim.PointNeuron(
    sim.AdExp(
        cm=123.5 * 1e-3,
        tau_refrac=2.47,
        v_spike=10,
        v_reset=-51,
        v_rest=-96.2,
        tau_m=3.5283698074395744, # 123.5 / (8.6 * 4.07)
        i_offset=0.0,
        a=-14.5,
        b=500.0 * 1e-3,
        delta_T=16,
        tau_w=15,
        v_thresh=-51,
    )
)

Expected behaviour (here using nest backend):
image

Actual behaviour:
image

Thanks to Ilaria Carannante for the bug report.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant