Page 1 of 1

Python+MPI version now available

Posted: Sat Dec 07, 2019 7:54 pm
by JustasB
For those interested in LFPsim, there is a pip-installable, MPI-compatible, pure-Python version of LFPsim.

Take a look at LFPsimpy

Example usage:

Code: Select all

build_your_model()

from LFPsimpy import LfpElectrode
le = LfpElectrode(x,y,z)

h.run()

plt.plot(le.times, le.values)
plt.show()