We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I get the following error:
NameError Traceback (most recent call last) ~/projects/EEG/mfem-eeg-python/eeg_leadfield.py in <module> 60 print("done.") 61 ---> 62 print("Mesh bounding box: ", mesh.GetBoundingBox()) 63 64 # create finite element function space ~/.local/lib/python3.8/site-packages/mfem/_par/pmesh.py in GetBoundingBox(self, ref) 313 min = Vector() 314 max = Vector() --> 315 _mesh.Mesh_GetBoundingBox(self, min, max, ref) 316 return min.GetDataArray().copy(), max.GetDataArray().copy() 317 NameError: name '_mesh' is not defined
It looks to me like _mesh should be replaced with _pmesh here:
_mesh
_pmesh
PyMFEM/mfem/_par/pmesh.py
Line 315 in b3b6b4a
and also here:
Line 340 in b3b6b4a
The text was updated successfully, but these errors were encountered:
Thanks for reporting this. A fix is being in test...
Sorry, something went wrong.
This is fixed in 4.2.0.16 #84
sshiraiwa
No branches or pull requests
I get the following error:
It looks to me like
_mesh
should be replaced with_pmesh
here:PyMFEM/mfem/_par/pmesh.py
Line 315 in b3b6b4a
and also here:
PyMFEM/mfem/_par/pmesh.py
Line 340 in b3b6b4a
The text was updated successfully, but these errors were encountered: