You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@anderson2981 and @tulioricci have both run into errors in make_same_mesh_connection when restarting with different orders. Specifically, this check is failing:
iffrom_discr.meshisnotto_discr.mesh:
raiseValueError("from_discr and to_discr must be based on ""the same mesh")
I suspect it's related to the mesh boundary tag relabeling that grudge does when constructing DiscretizationCollections. Strangely, though, changing the check condition to
doesn't appear to help, so maybe something else is going on? (Edit: I don't think this would be correct anyway, since it wouldn't detect transformed meshes.)
This can be worked around for now by just commenting out the check, but I should take a closer look.
The text was updated successfully, but these errors were encountered:
I had something in this direction here if it helps: alexfikl@6b35e06
It mostly just checks that the structure of the discretizations is the same, but it doesn't have any special handling for transformed meshes. If you think it would be useful, I can open a PR.
I had something in this direction here if it helps: alexfikl@6b35e06
It mostly just checks that the structure of the discretizations is the same, but it doesn't have any special handling for transformed meshes. If you think it would be useful, I can open a PR.
#359 might be good enough for this particular issue; we'll see.
@anderson2981 and @tulioricci have both run into errors in
make_same_mesh_connection
when restarting with different orders. Specifically, this check is failing:I suspect it's related to the mesh boundary tag relabeling that grudge does when constructing
DiscretizationCollection
s. Strangely, though, changing the check condition todoesn't appear to help, so maybe something else is going on? (Edit: I don't think this would be correct anyway, since it wouldn't detect transformed meshes.)
This can be worked around for now by just commenting out the check, but I should take a closer look.
The text was updated successfully, but these errors were encountered: