Revision 086c190c27274f74c7f9ea204a3366758700ba56 authored by Lars Bilke on 07 October 2021, 09:17:23 UTC, committed by Lars Bilke on 07 October 2021, 09:58:34 UTC
See
https://gitlab.opengeosys.org/ogs/xdmflib/-/commit/2e2439f4c867e872bc3e646b01f6e081667c4b02.
1 parent 7d226dc
Raw File
IdentifySubdomainMesh.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 */

namespace MeshGeoToolsLib
{
class SearchLength;
class MeshNodeSearcher;
}
namespace MeshLib
{
class Mesh;
}

namespace MeshGeoToolsLib
{
/// Geometrically finds nodes and elements of the subdomain mesh in the bulk
/// mesh, and updates or verifies the corresponding bulk_node_ids and
/// bulk_element_ids properties.
///
/// In case of unexpected results OGS_FATAL is called.
void identifySubdomainMesh(MeshLib::Mesh& subdomain_mesh,
                           MeshLib::Mesh const& bulk_mesh,
                           MeshNodeSearcher const& mesh_node_searcher,
                           bool const force_overwrite = false);
}  // namespace MeshGeoToolsLib
back to top