Recently we have updated NEURON-CoreNEURON usage workflow in #374 (see README).
The NMC portal provides various cell models. As part of this ticket, we should document instructions to run these cell models using NEURON and CoreNEURON.
From initial testing few months ago, I remember following changes:
print('Running for %f ms' % neuron.h.tstop)
#neuron.h.run()
from neuron import coreneuron
coreneuron.enable = True
neuron.h.cvode.cache_efficient(1)
neuron.h.stdinit()
pc = neuron.h.ParallelContext()
pc.psolve(neuron.h.tstop)
Recently we have updated NEURON-CoreNEURON usage workflow in #374 (see README).
The NMC portal provides various cell models. As part of this ticket, we should document instructions to run these cell models using NEURON and CoreNEURON.
From initial testing few months ago, I remember following changes: