From 768a4882fa6d152165197be4b3740ef72d59c394 Mon Sep 17 00:00:00 2001 From: sdcm Date: Thu, 27 Feb 2025 12:06:32 +0100 Subject: [PATCH 1/4] [arcane,std] Read face ids in polyhedral vtkfaces file. Before it was needed to describe the faces in the same order in the main mesh and the face mesh files. This no longer stands. --- .../arcane/std/VtkPolyhedralMeshIOService.cc | 70 +++++++++++++++++-- 1 file changed, 66 insertions(+), 4 deletions(-) diff --git a/arcane/src/arcane/std/VtkPolyhedralMeshIOService.cc b/arcane/src/arcane/std/VtkPolyhedralMeshIOService.cc index 09834e2ac..29e90ed12 100644 --- a/arcane/src/arcane/std/VtkPolyhedralMeshIOService.cc +++ b/arcane/src/arcane/std/VtkPolyhedralMeshIOService.cc @@ -17,6 +17,7 @@ #include #include #include +#include #include #include @@ -30,6 +31,8 @@ #include #include #include +#include +#include #include #include @@ -123,6 +126,9 @@ class VtkPolyhedralMeshIOService Int64ConstArrayView faceNodes(); Int32ConstArrayView faceNbNodes(); + Int64ConstArrayView faceNodesInFaceMesh(); + Int32ConstArrayView faceNbNodesInFaceMesh(); + Int64ConstArrayView edgeNodes(); Int32ConstArrayView edgeNbNodes(); @@ -163,7 +169,7 @@ class VtkPolyhedralMeshIOService vtkCellData* faceData(); bool isEmpty() const noexcept { return m_is_empty; } - bool doRead() const noexcept { return m_do_read; } + bool doRead() const noexcept { return m_do_read; } private: @@ -188,6 +194,8 @@ class VtkPolyhedralMeshIOService Int32UniqueArray m_node_nb_cells, m_node_nb_faces, m_node_nb_edges; Int32UniqueArray m_cell_nb_edges, m_face_nb_edges, m_face_uid_indexes; Int32UniqueArray m_cell_face_indexes, m_edge_nb_nodes; + Int64UniqueArray m_face_node_uids_in_face_mesh; + Int32UniqueArray m_face_nb_nodes_in_face_mesh; using NodeUidToIndexMap = Int32UniqueArray; // use a map when no longer possible to index with node uids using FaceUidToIndexMap = Int32UniqueArray; // use a map when no longer possible to index with face uids using EdgeUidToIndexMap = Int32UniqueArray; // use a map when no longer possible to index with edge uids @@ -196,6 +204,7 @@ class VtkPolyhedralMeshIOService vtkCellData* m_cell_data = nullptr; vtkPointData* m_point_data = nullptr; vtkCellData* m_face_data = nullptr; + vtkCellArray* m_poly_data = nullptr; // to store faces from face mesh file void _printMeshInfos() const; @@ -207,6 +216,7 @@ class VtkPolyhedralMeshIOService void _checkVtkGrid() const; void _readPlainTextVtkFaceGrid(const String& faces_filename); void _readXmlVtkFaceGrid(const String& faces_filename); + void _readfaceNodesInFaceMesh(); }; public: @@ -676,8 +686,8 @@ _createVariable(vtkDataArray* item_values, const String& variable_name, IMesh* m void VtkPolyhedralMeshIOService:: _computeFaceVtkArcaneLidConversion(Int32Span face_vtk_to_arcane_lids, Int32Span arcane_to_vtk_lids, VtkPolyhedralMeshIOService::VtkReader& reader, IPrimaryMesh* mesh) const { - auto face_nodes_unique_ids = reader.faceNodes(); - auto face_nb_nodes = reader.faceNbNodes(); + auto face_nodes_unique_ids = reader.faceNodesInFaceMesh(); + auto face_nb_nodes = reader.faceNbNodesInFaceMesh(); auto current_face_index = 0; auto current_face_index_in_face_nodes = 0; Int32UniqueArray face_nodes_local_ids(face_nodes_unique_ids.size()); @@ -686,7 +696,7 @@ _computeFaceVtkArcaneLidConversion(Int32Span face_vtk_to_arcane_lids, Int32Span auto current_face_nodes = face_nodes_local_ids.subConstView(current_face_index_in_face_nodes, current_face_nb_node); current_face_index_in_face_nodes += current_face_nb_node; Node face_first_node{ mesh->nodeFamily()->view()[current_face_nodes[0]] }; - face_vtk_to_arcane_lids[current_face_index] = mesh_utils::getFaceFromNodesLocal(face_first_node, current_face_nodes).localId(); + face_vtk_to_arcane_lids[current_face_index] = MeshUtils::getFaceFromNodesLocalId(face_first_node, current_face_nodes).localId(); ++current_face_index; } auto vtk_lid = 0; @@ -854,6 +864,7 @@ VtkReader(const String& filename, VtkPolyhedralTools::PrintInfoLevel print_info_ } else { m_face_data = m_vtk_face_grid->GetCellData(); + m_poly_data = m_vtk_face_grid->GetPolys(); } } else{ @@ -1306,6 +1317,28 @@ faceNbNodes() /*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/ +Int64ConstArrayView VtkPolyhedralMeshIOService::VtkReader:: +faceNodesInFaceMesh() +{ + if (m_face_node_uids_in_face_mesh.empty()) + _readfaceNodesInFaceMesh(); + return m_face_node_uids_in_face_mesh; +} + +/*---------------------------------------------------------------------------*/ +/*---------------------------------------------------------------------------*/ + +Int32ConstArrayView VtkPolyhedralMeshIOService::VtkReader:: +faceNbNodesInFaceMesh() +{ + if (m_face_nb_nodes_in_face_mesh.empty()) + _readfaceNodesInFaceMesh(); + return m_face_nb_nodes_in_face_mesh; +} + +/*---------------------------------------------------------------------------*/ +/*---------------------------------------------------------------------------*/ + Int32ConstArrayView VtkPolyhedralMeshIOService::VtkReader:: edgeNbNodes() { @@ -1694,6 +1727,35 @@ _readXmlVtkFaceGrid(const String& faces_filename) /*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/ +void VtkPolyhedralMeshIOService::VtkReader:: +_readfaceNodesInFaceMesh() +{ + m_face_nb_nodes_in_face_mesh.resize(m_poly_data->GetNumberOfCells()); + m_face_node_uids_in_face_mesh.reserve(m_poly_data->GetNumberOfCells() * m_poly_data->GetMaxCellSize()); + m_poly_data->InitTraversal(); + vtkIdType face_nb_nodes; + vtkIdType* face_nodes; + + auto face_nb_node_index = 0; + Int64UniqueArray current_face_node_uids; + Int64UniqueArray reordered_current_face_node_uids; + current_face_node_uids.reserve(m_poly_data->GetMaxCellSize()); + reordered_current_face_node_uids.reserve(m_poly_data->GetMaxCellSize()); + Int64UniqueArray reordered_face_node_uids(m_poly_data->GetMaxCellSize()); + while (m_poly_data->GetNextCell(face_nb_nodes, face_nodes)) { + m_face_nb_nodes_in_face_mesh[face_nb_node_index] = face_nb_nodes; + ConstArrayView face_nodes_view(face_nb_nodes, face_nodes); + current_face_node_uids.resize(face_nb_nodes); + reordered_current_face_node_uids.resize(face_nb_nodes); + std::copy(face_nodes_view.begin(), face_nodes_view.end(), current_face_node_uids.begin()); + MeshUtils::reorderNodesOfFace(current_face_node_uids, reordered_current_face_node_uids); + std::copy(reordered_current_face_node_uids.begin(), reordered_current_face_node_uids.end(), std::back_inserter(m_face_node_uids_in_face_mesh)); + ++face_nb_node_index; + } +} +/*---------------------------------------------------------------------------*/ +/*---------------------------------------------------------------------------*/ + void VtkPolyhedralMeshIOService::VtkReader:: _checkVtkGrid() const { From dcf1f15e36560f3cdbe234041d2efe763bdcd98d Mon Sep 17 00:00:00 2001 From: sdcm Date: Thu, 27 Feb 2025 12:10:12 +0100 Subject: [PATCH 2/4] [arcane,std] Change polyhedral face mesh extension for vtk xml case from vtu to vtp. The face mesh is a Polydata structure thus its extension in vtk xml must be vtp. --- arcane/src/arcane/std/VtkPolyhedralMeshIOService.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arcane/src/arcane/std/VtkPolyhedralMeshIOService.cc b/arcane/src/arcane/std/VtkPolyhedralMeshIOService.cc index 29e90ed12..4a2bb953f 100644 --- a/arcane/src/arcane/std/VtkPolyhedralMeshIOService.cc +++ b/arcane/src/arcane/std/VtkPolyhedralMeshIOService.cc @@ -841,7 +841,7 @@ VtkReader(const String& filename, VtkPolyhedralTools::PrintInfoLevel print_info_ _readPlainTextVtkFaceGrid(faces_filename); } else{ - faces_filename = m_filename + "faces.vtu"; + faces_filename = m_filename + "faces.vtp"; ifile = std::ifstream{ faces_filename.localstr() }; if (ifile) { _readXmlVtkFaceGrid(faces_filename); @@ -852,7 +852,7 @@ VtkReader(const String& filename, VtkPolyhedralTools::PrintInfoLevel print_info_ faces_filename.split(faces_filename_and_extension,'.'); if (!ifile){ - m_read_status.info_message = String::format("Information no face mesh given {0}{1} (.vtk or .vtu) to define face variables or groups on faces.", + m_read_status.info_message = String::format("Information no face mesh given {0}{1} (.vtk or .vtp) to define face variables or groups on faces.", faces_filename_and_extension[0], faces_filename_and_extension[1]); } From 7940bec709f4013cf74a34e7bd814a9bf8740dad Mon Sep 17 00:00:00 2001 From: sdcm Date: Thu, 27 Feb 2025 12:12:32 +0100 Subject: [PATCH 3/4] [arcane,tests] Rename xml vtk polyhedral face with vtp extension. --- .../{cross_a_2x1x1.vtufaces.vtu => cross_a_2x1x1.vtufaces.vtp} | 0 arcane/src/arcane/tests/CMakeLists.txt | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename arcane/maillages/{cross_a_2x1x1.vtufaces.vtu => cross_a_2x1x1.vtufaces.vtp} (100%) diff --git a/arcane/maillages/cross_a_2x1x1.vtufaces.vtu b/arcane/maillages/cross_a_2x1x1.vtufaces.vtp similarity index 100% rename from arcane/maillages/cross_a_2x1x1.vtufaces.vtu rename to arcane/maillages/cross_a_2x1x1.vtufaces.vtp diff --git a/arcane/src/arcane/tests/CMakeLists.txt b/arcane/src/arcane/tests/CMakeLists.txt index d4021e803..85ed06e6d 100644 --- a/arcane/src/arcane/tests/CMakeLists.txt +++ b/arcane/src/arcane/tests/CMakeLists.txt @@ -263,7 +263,7 @@ arcane_copy_mesh_direct(cross_a_2x1x1.vtkfaces.vtk) arcane_copy_mesh_direct(fan_2x1x3.vtk) arcane_copy_mesh_direct(fan_2x1x3.vtkfaces.vtk) arcane_copy_mesh_direct(cross_a_2x1x1.vtu) -arcane_copy_mesh_direct(cross_a_2x1x1.vtufaces.vtu) +arcane_copy_mesh_direct(cross_a_2x1x1.vtufaces.vtp) arcane_copy_mesh_direct(plancher.msh) arcane_copy_mesh_direct(plancher.binary.msh) arcane_copy_mesh_direct(hex_tetra_pyramics.msh) From b7480cbd73cfcb9dd35496090ecddc2138f814da Mon Sep 17 00:00:00 2001 From: sdcm Date: Thu, 27 Feb 2025 12:26:07 +0100 Subject: [PATCH 4/4] [arcane,std] Update Copyright. --- arcane/src/arcane/std/VtkPolyhedralMeshIOService.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arcane/src/arcane/std/VtkPolyhedralMeshIOService.cc b/arcane/src/arcane/std/VtkPolyhedralMeshIOService.cc index 4a2bb953f..0eb450562 100644 --- a/arcane/src/arcane/std/VtkPolyhedralMeshIOService.cc +++ b/arcane/src/arcane/std/VtkPolyhedralMeshIOService.cc @@ -1,11 +1,11 @@ // -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*- //----------------------------------------------------------------------------- -// Copyright 2000-2024 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com) +// Copyright 2000-2025 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com) // See the top-level COPYRIGHT file for details. // SPDX-License-Identifier: Apache-2.0 //----------------------------------------------------------------------------- /*---------------------------------------------------------------------------*/ -/* VtkPolyhedralMeshIOService (C) 2000-2024 */ +/* VtkPolyhedralMeshIOService (C) 2000-2025 */ /* */ /* Read/write fools for polyhedral mesh with vtk file format */ /*---------------------------------------------------------------------------*/