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
roystgnr opened this issue
Nov 14, 2023
· 1 comment
Labels
P: normalA defect affecting operation with a low possibility of significantly affects.T: defectAn anomaly, which is anything that deviates from expectations.
Some tests combine generation of a mesh with non-full-order second-order elements (e.g. HEX20) with the MOOSE option second_order=true, which uses all_second_order() to request that all elements in a mesh be converted into their full-order second-order equivalents (e.g. a HEX27 instead of a HEX20)
libMesh currently has a bug where, even if asked for full-order elements, it ignores non-full-order second-order elements. Fixing that bug creates exodiffs in these tests.
This is blocking the bug fix, but fixing it should be as simple as removing second_order=true from those tests.
The text was updated successfully, but these errors were encountered:
roystgnr
added
T: defect
An anomaly, which is anything that deviates from expectations.
P: normal
A defect affecting operation with a low possibility of significantly affects.
labels
Nov 14, 2023
roystgnr
added a commit
to roystgnr/moose
that referenced
this issue
Nov 14, 2023
There's currently a bug in libMesh wherein if you ask to
`all_second_order()` a mesh, with `full_order=true`, it will
ignore existing second-but-not-full-order elements. These tests were
relying on that buggy behavior.
Refs idaholab#26060 ... and hopefully fixes it; I'm still looking for other bad
tests elsewhere.
There's currently a bug in libMesh wherein if you ask to
`all_second_order()` a mesh, with `full_order=true`, it will
ignore existing second-but-not-full-order elements. These tests were
relying on that buggy behavior.
Refs idaholab#26060 ... and hopefully fixes it; I'm still looking for other bad
tests elsewhere.
P: normalA defect affecting operation with a low possibility of significantly affects.T: defectAn anomaly, which is anything that deviates from expectations.
Bug Description
Some tests combine generation of a mesh with non-full-order second-order elements (e.g. HEX20) with the MOOSE option
second_order=true
, which usesall_second_order()
to request that all elements in a mesh be converted into their full-order second-order equivalents (e.g. a HEX27 instead of a HEX20)libMesh currently has a bug where, even if asked for full-order elements, it ignores non-full-order second-order elements. Fixing that bug creates exodiffs in these tests.
Steps to Reproduce
libMesh/libmesh#3707 triggers the failures.
Impact
This is blocking the bug fix, but fixing it should be as simple as removing
second_order=true
from those tests.The text was updated successfully, but these errors were encountered: