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

Add example of enhanced and reduced connectivity #1316

Merged
merged 27 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
0fec5b9
Changes to the doxygen formatting
Arlie-Capps May 13, 2024
a38807a
First draft
Arlie-Capps May 18, 2024
bbebf3e
Progress on documentation
Arlie-Capps May 24, 2024
435d948
Add illustrative code.
Arlie-Capps Jun 20, 2024
d50afd6
Annotated braid_init_example_adjset()
Arlie-Capps Jun 21, 2024
c1e3e79
Added origin and basis vectors to braid_init_explicit_coordset()
Arlie-Capps Jun 22, 2024
e62ea1c
Fix important typobug
Arlie-Capps Jul 1, 2024
b09d960
Example code compiling, not working yet
Arlie-Capps Jul 11, 2024
95c799d
Fixed several errors.
Arlie-Capps Jul 16, 2024
8c49efe
Added linear interpolation as a blueprint utility.
Arlie-Capps Jul 30, 2024
cd01b87
Specify block corners as arrays of components
Arlie-Capps Aug 2, 2024
8f0349d
Save meshes at the right level
Arlie-Capps Aug 2, 2024
4bbe3d8
Save the mesh properly (thanks, Cyrus)
Arlie-Capps Aug 8, 2024
d71f056
First 3D example
Arlie-Capps Aug 8, 2024
7917796
Fix some typos
Arlie-Capps Aug 9, 2024
65fce16
Correct edge case of lerp to conform to previous convention. Correct…
Arlie-Capps Aug 9, 2024
ae9ec9e
Remove work inadvertently included from another branch
Arlie-Capps Aug 13, 2024
fdb83b7
Restore previous (simpler) version of braid_init_explicit_coordset
Arlie-Capps Sep 3, 2024
a8a4cf6
Build a structured mesh, not unstructured
Arlie-Capps Sep 3, 2024
d45da40
Remove std::vector from use in test
Arlie-Capps Sep 3, 2024
94945e6
Most of the way to node-based lerp. Not compiling due to mysteries w…
Arlie-Capps Oct 5, 2024
3f22d3b
Lerp now converted to use Node
Arlie-Capps Oct 8, 2024
73def01
Add default so we can call bent_multi_grid() with no spec
Arlie-Capps Oct 8, 2024
b56c3e9
Fix error
Arlie-Capps Oct 15, 2024
a766ca8
Merge branch 'develop' into feature/capps2/enhRedConnBlocks
Arlie-Capps Jan 17, 2025
7ace690
Wire up bent_multi_grid() to generate().
Arlie-Capps Jan 17, 2025
71fd6de
Change log entry
Arlie-Capps Jan 17, 2025
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: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ and this project aspires to adhere to [Semantic Versioning](https://semver.org/s
- Added `conduit::blueprint::mesh::examples:generate` driver functions that supports creating any blueprint example mesh with options.
- Added `conduit::blueprint::mesh::examples:generate_default_options` functions that provide default options values for `conduit::blueprint::mesh::examples:generate`.
- Added python API support for `conduit::blueprint::mesh::examples:generate` and `conduit::blueprint::mesh::examples:generate_default_options`.
- Added `gyre` example mesh, which provides a simple velocity vector field.
- Added `gyre` example mesh, which provides a simple velocity vector field.
- Added `bent_multi_grid` example mesh, which provides a multi-grid that can contain enhanced and reduced connectivity. `bent_multi_grid` can produce meshes like the example at http://visitusers.org/index.php?title=Representing_ghost_data#Enhanced_and_Reduced_Connectivity_Zones .

#### Relay
- Added limited support for species sets for Silo/Overlink I/O. Multi-buffer element-dominant species sets can be written to Silo and the same can be read from Silo. Additional species set flavors will come online in a later release.
Expand Down
2 changes: 1 addition & 1 deletion src/docs/doxygen/Doxyfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ PROJECT_BRIEF = "Scientific Data Exchange Library for HPC Simulations"
INPUT = @CMAKE_CURRENT_SOURCE_DIR@/../../libs

GENERATE_XML = YES
RECURSIVE = YES
RECURSIVE = YES
Loading
Loading