Allow MOAB k-d tree to be configured (#2976)

This commit is contained in:
Paul Romano 2024-04-26 05:57:02 -05:00 committed by GitHub
parent 95b15f9522
commit d1d37a5b99
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 85 additions and 29 deletions

View file

@ -96,6 +96,8 @@ The current version of the statepoint file format is 18.1.
- **library** (*char[]*) -- Mesh library used to represent the
mesh ("moab" or "libmesh").
- **length_multiplier** (*double*) Scaling factor applied to the mesh.
- **options** (*char[]*) -- Special options that control spatial
search data structures used.
- **volumes** (*double[]*) -- Volume of each mesh cell.
- **vertices** (*double[]*) -- x, y, z values of the mesh vertices.
- **connectivity** (*int[]*) -- Connectivity array for the mesh

View file

@ -364,6 +364,10 @@ attributes/sub-elements:
The mesh library used to represent an unstructured mesh. This can be either
"moab" or "libmesh". (For unstructured mesh only.)
:options:
Special options that control spatial search data structures used. (For
unstructured mesh using MOAB only)
:filename:
The name of the mesh file to be loaded at runtime. (For unstructured mesh
only.)