The problem for coreneuron to trace V_soma #2090
-
Hello, Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 12 replies
-
From https://nrn.readthedocs.io/en/latest/python/modelspec/programmatic/network/parcon.html#ParallelContext.nrncore_run the intention is for CoreNEURON to send back all the trajectories at the end of each run so that they will be shown on the GUI (and in all the vector.record instances). The negative about that is that shape plot and space plot movies won't display. There is provision with |
Beta Was this translation helpful? Give feedback.
-
Yes. Line 100 of https://github.com/neuronsimulator/ringtest/blob/master/ringtest.py |
Beta Was this translation helpful? Give feedback.
Hello @Kim1230 ,
I think I found the issue.
CoreNEURON
doesn't support returning back record vector if they have a custom recordingdt
(recordStep
). There is some work needed to be done in https://github.com/neuronsimulator/nrn/blob/master/src/nrncvode/netcvode.cpp#L5791 and maybe other places to support that.Until this is implemented I would suggest removing the
recordStep
from https://github.com/suny-downstate-medical-center/netpyne/blob/development/netpyne/cell/cell.py#L303, so changing this line to:If you do that for consistency I think you need to set the
recordStep
incfg.py
to:Let me know if this works…