Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
1accac6
Refactor some matsetview dispatch functions to begin support for mate…
BradWhitlock May 8, 2026
29c972c
Added some testing for using matsetviews as ways to look at mixed fie…
BradWhitlock May 9, 2026
c381140
Change mixvar values for unibuffer version
BradWhitlock May 9, 2026
3d1bc36
Added some untested mixed field support for scalars.
BradWhitlock May 11, 2026
f4ad0e7
Added code to test merging materials and material fields.
BradWhitlock May 12, 2026
7eba7af
Debugged merging materials and mixed fields in different matset flavors.
BradWhitlock May 12, 2026
fb74f85
make style
BradWhitlock May 12, 2026
4c880bf
make style
BradWhitlock May 12, 2026
c3c643c
Improved support for mixed fields and testing
BradWhitlock May 12, 2026
3372d8a
Re-enable some material cases.
BradWhitlock May 12, 2026
59f3be5
Add some documentation about mixed fields in sphinx.
BradWhitlock May 12, 2026
0beca85
Release notes.
BradWhitlock May 12, 2026
8a26411
make style
BradWhitlock May 12, 2026
efda52c
Merge branch 'develop' into feature/whitlock/bump_mergemeshes_mixvars
BradWhitlock May 12, 2026
3c2e485
Remove support for an obsolete matset type that was removed from Blue…
BradWhitlock May 12, 2026
a4f3cd6
Run tests sequentially
BradWhitlock May 12, 2026
ee961e8
Updated docs again
BradWhitlock May 12, 2026
ed1537e
make style
BradWhitlock May 12, 2026
106c616
Added an include and changed some view parameters from references to …
BradWhitlock May 14, 2026
c144a58
Redesigned mixed-field support so it uses a MixedFieldView that gets …
BradWhitlock May 15, 2026
294f3bb
make style
BradWhitlock May 15, 2026
6f8c960
Adjusted docs.
BradWhitlock May 15, 2026
3cff5db
make style with clang host-config
BradWhitlock May 15, 2026
119acaf
Revert a script change.
BradWhitlock May 16, 2026
91fd125
Try change to dane config only
BradWhitlock May 16, 2026
a5ebbd1
Undo dane change.
BradWhitlock May 18, 2026
19846df
Merged develop into branch.
BradWhitlock May 19, 2026
5432ae0
Merged develop into branch
BradWhitlock May 21, 2026
9a2ce57
Merge branch 'develop' into feature/whitlock/bump_mergemeshes_mixvars
BradWhitlock May 26, 2026
6c10999
Merge branch 'develop' into feature/whitlock/bump_mergemeshes_mixvars
BradWhitlock Jun 8, 2026
1e915e6
Matrix fixes
BradWhitlock Jun 9, 2026
f55dc23
Renamed a variable.
BradWhitlock Jun 9, 2026
f3a738c
make style
BradWhitlock Jun 9, 2026
5bc5fbe
Merge branch 'develop' into feature/whitlock/bump_mergemeshes_mixvars
BradWhitlock Jun 16, 2026
8e5ab48
Fixed typo
BradWhitlock Jun 16, 2026
5cf6aeb
Merge branch 'develop' into feature/whitlock/bump_mergemeshes_mixvars
BradWhitlock Jun 18, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ The Axom project release numbers follow [Semantic Versioning](http://semver.org/
- Quest: Adds OMP support for fast GWN methods for STL/Triangulated STEP input and linearized NURBS Curve input.
- Quest: Adds OMP supported, fast and accurate GWN method for NURBS curves and trimmed NURBS surfaces.
- Klee: Adds an optional "center" parameter in scale operators that permits scaling relative to a custom center point.
- Bump: The `MergeMeshes` class was enhanced so it supports material-dependent/mixed Blueprint fields that are "element-associated". These fields contain per-material values for the materials in a zone.
- Bump: Added `axom::bump::views::dispatch_material_field()` function (and related functions) for creating a material view and a material-dependent or mixed field view.
- Quest: `SamplingShaper` now supports selecting MFEM quadrature families for custom sample-point generation, including
anisotropic per-direction sampling resolution on quadrilateral and hexahedral meshes. Quadrature type is selected via
a new ``setQuadratureType`` method that accepts an enum value from ``mfem::Quadrature1D``. The number of samples in
Expand All @@ -44,6 +46,7 @@ The Axom project release numbers follow [Semantic Versioning](http://semver.org/
- Inlet: Added the ability to have collections (array and dictionary) with variant user defined structures.

### Removed
- Bump: Removed `axom::bump::views::MultiBufferMaterialView`, which was a view type for an obsolete flavor of Blueprint matset.

### Deprecated
- Core: Deprecates the pointer-based interface to linear-, quadratic- and cubic- polynomial solvers in favor of an ArrayView-based interface
Expand Down
2 changes: 2 additions & 0 deletions src/axom/bump/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ set(bump_headers
views/BasicIndexing.hpp
views/dispatch_coordset.hpp
views/dispatch_material.hpp
views/dispatch_material_field.hpp
views/dispatch_rectilinear_topology.hpp
views/dispatch_structured_topology.hpp
views/dispatch_topology.hpp
Expand All @@ -53,6 +54,7 @@ set(bump_headers
views/dispatch_utilities.hpp
views/ExplicitCoordsetView.hpp
views/MaterialView.hpp
views/MixedFieldView.hpp
views/NodeArrayView.hpp
views/RectilinearCoordsetView.hpp
views/Shapes.hpp
Expand Down
1 change: 0 additions & 1 deletion src/axom/bump/ExtractZones.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ class ExtractZones
*
* \param topoView The input topology view.
* \param coordsetView The input coordset view.
* \param matsetView The input matset view.
*/
ExtractZones(const TopologyView &topoView, const CoordsetView &coordsetView)
: m_topologyView(topoView)
Expand Down
Loading