-
Hello MFEM-Team, I'm interested in learning about FEM implementations, especially for eddy current electromagnetic problems. When trying to
With only 2 slots (-np 2), the computation works. Best regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, @dhk27182 , Using the latest version of MFEM's master branch I ran the above command line using 2 to 10 processors. I obtained essentially the same error message when using 6 or 8 processors. All other cases ran fine. I also used the Clearly we have a problem. It may just be in the mesh reader for this mesh type or it could be within the Thanks, @dhk27182 , for bringing this to our attention. Best wishes, |
Beta Was this translation helpful? Give feedback.
Hi, @dhk27182 ,
Using the latest version of MFEM's master branch I ran the above command line using 2 to 10 processors. I obtained essentially the same error message when using 6 or 8 processors. All other cases ran fine.
I also used the
mesh-explorer
miniapp to convertcoil.gen
to MFEM's native mesh format (using the 'S' option from themesh-explorer
menu). Using this version of the meshjoule
ran fine for all processor configurations from 2 to 10.Clearly we have a problem. It may just be in the mesh reader for this mesh type or it could be within the
mfem::Mesh
class, although this seems unlikely. Further investigation will be required to find the cause.Thanks, @dhk27182 , for bringin…