https://gitlab.opengeosys.org/ogs/ogs.git
Revision 7222138215e483a7c33a74097a6e48d99e14b42a authored by Norbert Grunwald on 04 October 2021, 18:43:56 UTC, committed by Norbert Grunwald on 04 October 2021, 18:43:56 UTC
[MPL] Remove 'heat_capacity' since unused and confuses with specific h.c.

See merge request ogs/ogs!3823
2 parent s ee47dc9 + a6d0aff
Raw File
Tip revision: 7222138215e483a7c33a74097a6e48d99e14b42a authored by Norbert Grunwald on 04 October 2021, 18:43:56 UTC
Merge branch 'remove_heat_capacity' into 'master'
Tip revision: 7222138
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