Distributed Field Transfer #2092
-
Hi together, If there is no implementation for this use case in MFEM yet, is someone aware of literature on this topic? Thanks in advance, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
I think it can be done, we just haven't tried implementing it. The main ingredient (gslib) works in parallel, so you should be able to create a list of physical points (the FE nodes on the |
Beta Was this translation helpful? Give feedback.
I think it can be done, we just haven't tried implementing it. The main ingredient (gslib) works in parallel, so you should be able to create a list of physical points (the FE nodes on the
mesh_1
) that you want to interpolate on every task, and then query the ParGridFunction (that lives onmesh_2
), similar tominiapps/pfindpts.cpp
. But I might be missing something.