Skip to content
New issue

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

Update libMesh to a version with ExodusII IsoGeometric Analysis support #19222

Merged
merged 3 commits into from Oct 31, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion conda/libmesh/meta.yaml
@@ -1,7 +1,7 @@
# Do not use jinja templating (A physical change to this file is required to trigger a build)
{% set build = 0 %}
{% set strbuild = "build_" + build|string %}
{% set version = "2021.09.15" %}
{% set version = "2021.10.27" %}

package:
name: moose-libmesh
Expand Down
2 changes: 1 addition & 1 deletion conda/mpich/conda_build_config.yaml
Expand Up @@ -2,7 +2,7 @@
## Any changes made will require additional changes to any item above that.

moose_libmesh:
- 2021.09.15 build_0
- 2021.10.27 build_0

moose_petsc:
- 3.15.1 build_2
Expand Down
2 changes: 1 addition & 1 deletion libmesh
Submodule libmesh updated 344 files
19 changes: 19 additions & 0 deletions modules/doc/content/newsletter/2021_10.md
Expand Up @@ -101,4 +101,23 @@ Some examples of MOOSE mortar constraints (previously available only in 2D) incl

## libMesh-level Changes

- Support for Tri7 triangles (like Tri6 plus one mid-element
node) and Tet14 tetrahedra (like Tri10 plus one mid-face node on
each face)
- Reduced Basis EIM updates
- SIDE\_HIERARCHIC finite element (shapes defined on sides and
discontinuous between sides) support for triangles
- LOG\_CALL() macro to simplify exception-safe PerfLog support in more
use cases.
- Refactoring and simplification of the finite-difference-method
fallback for calculating shape function gradients on finite element
types without analytic gradient implementations
- ExodusII\_IO::get\_sideset\_data\_indices() accessor method
- Fixed file handle leaks in some ExodusII use cases, leaks which
triggered errors when running with ExodusII version 8.11
- Read support for new IsoGeometric Analysis extensions to ExodusII
- Assorted bug fixes for distcheck, clang warnings,
non-double-precision configurations, Elem::permute(), other minor
issues.

## Bug Fixes and Minor Enhancements