From 218bca5b05b4b6a7561c76aa6ad04ad9eb787662 Mon Sep 17 00:00:00 2001 From: gavinwhetstone Date: Wed, 13 May 2026 14:00:22 -0600 Subject: [PATCH 1/3] added arrays for storing internal node sets for tagging in Fierro --- src/swage/unstructured_mesh.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/swage/unstructured_mesh.h b/src/swage/unstructured_mesh.h index 83b54b4b..a5530eb6 100644 --- a/src/swage/unstructured_mesh.h +++ b/src/swage/unstructured_mesh.h @@ -308,6 +308,12 @@ struct Mesh RaggedRightArrayKokkos bdy_nodes_in_set; ///< Boundary nodes in a boundary set DCArrayKokkos num_bdy_nodes_in_set; ///< Number of boundary nodes in a set + // ---- Internal Condition Data Definitions ---- // + size_t num_internal_sets = 0; ///< Number of boundary sets + + RaggedRightArrayKokkos internal_nodes_in_set; ///< Boundary nodes in a boundary set + DCArrayKokkos num_internal_nodes_in_set; ///< Number of boundary nodes in a set + // MPI Decomposition Data Definitions ---- // DCArrayKokkos local_to_global_node_mapping; ///< Local to global node mapping From 57e99bdfbacb4bc9897de22481e840aefebc07c7 Mon Sep 17 00:00:00 2001 From: gavinwhetstone Date: Wed, 13 May 2026 14:04:03 -0600 Subject: [PATCH 2/3] fixed comments --- src/swage/unstructured_mesh.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/swage/unstructured_mesh.h b/src/swage/unstructured_mesh.h index a5530eb6..95fa5cf0 100644 --- a/src/swage/unstructured_mesh.h +++ b/src/swage/unstructured_mesh.h @@ -311,8 +311,8 @@ struct Mesh // ---- Internal Condition Data Definitions ---- // size_t num_internal_sets = 0; ///< Number of boundary sets - RaggedRightArrayKokkos internal_nodes_in_set; ///< Boundary nodes in a boundary set - DCArrayKokkos num_internal_nodes_in_set; ///< Number of boundary nodes in a set + RaggedRightArrayKokkos internal_nodes_in_set; ///< Internal nodes in an internal set + DCArrayKokkos num_internal_nodes_in_set; ///< Number of internal nodes in a set // MPI Decomposition Data Definitions ---- // From 2e7f4bd94b73a5f232642ce583ac217cd97393ee Mon Sep 17 00:00:00 2001 From: gavinwhetstone Date: Wed, 13 May 2026 14:04:28 -0600 Subject: [PATCH 3/3] fixed the last comment --- src/swage/unstructured_mesh.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/swage/unstructured_mesh.h b/src/swage/unstructured_mesh.h index 95fa5cf0..65dca048 100644 --- a/src/swage/unstructured_mesh.h +++ b/src/swage/unstructured_mesh.h @@ -309,7 +309,7 @@ struct Mesh DCArrayKokkos num_bdy_nodes_in_set; ///< Number of boundary nodes in a set // ---- Internal Condition Data Definitions ---- // - size_t num_internal_sets = 0; ///< Number of boundary sets + size_t num_internal_sets = 0; ///< Number of internal sets RaggedRightArrayKokkos internal_nodes_in_set; ///< Internal nodes in an internal set DCArrayKokkos num_internal_nodes_in_set; ///< Number of internal nodes in a set