Skip to content
Snippets Groups Projects
Commit 5fa82b0f authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[MeL] Extract common TetRule subclass

parent d3f5288b
No related branches found
No related tags found
No related merge requests found
/**
* \file
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
* http://www.opengeosys.org/project/license
*/
#include "TetRule.h"
#include "MathLib/GeometricBasics.h"
#include "MeshLib/Node.h"
namespace MeshLib
{
double TetRule::computeVolume(Node const* const* _nodes)
{
return MathLib::calcTetrahedronVolume(*_nodes[0], *_nodes[1], *_nodes[2],
*_nodes[3]);
}
bool TetRule::isPntInElement(Node const* const* nodes,
MathLib::Point3d const& pnt, double eps)
{
return MathLib::isPointInTetrahedron(pnt, *nodes[0], *nodes[1], *nodes[2],
*nodes[3], eps);
}
ElementErrorCode TetRule::validate(const Element* e)
{
ElementErrorCode error_code;
error_code[ElementErrorFlag::ZeroVolume] = hasZeroVolume(*e);
error_code[ElementErrorFlag::NodeOrder] = !e->testElementNodeOrder();
return error_code;
}
} // end namespace MeshLib
/**
* \file
* \copyright
* Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
* http://www.opengeosys.org/project/license
*
*/
#pragma once
#include "CellRule.h"
#include "Element.h"
#include "MeshLib/MeshEnums.h"
namespace MeshLib
{
class TetRule : public CellRule
{
public:
/// Constant: The number of base nodes for this element
static const unsigned n_base_nodes = 4u;
/// Constant: The geometric type of the element
static const MeshElemType mesh_elem_type = MeshElemType::TETRAHEDRON;
/// Constant: The number of faces
static const unsigned n_faces = 4;
/// Constant: The number of edges
static const unsigned n_edges = 6;
/// Constant: The number of neighbors
static const unsigned n_neighbors = 4;
/**
* \copydoc MeshLib::Element::isPntInElement()
* \param nodes the nodes of the element.
*/
static bool isPntInElement(Node const* const* nodes,
MathLib::Point3d const& pnt, double eps);
/**
* Tests if the element is geometrically valid.
*/
static ElementErrorCode validate(const Element* e);
/// Calculates the volume of the element
static double computeVolume(Node const* const* _nodes);
protected:
template <std::size_t N>
static unsigned identifyFace(Node const* const* _nodes,
Node const* nodes[3],
unsigned const face_nodes[4][N])
{
for (unsigned i = 0; i < 4; i++)
{
unsigned flag(0);
for (unsigned j = 0; j < 3; j++)
{
for (unsigned k = 0; k < 3; k++)
{
if (_nodes[face_nodes[i][j]] == nodes[k])
{
flag++;
}
}
}
if (flag == 3)
{
return i;
}
}
return std::numeric_limits<unsigned>::max();
}
};
} // namespace MeshLib
...@@ -10,10 +10,9 @@ ...@@ -10,10 +10,9 @@
#pragma once #pragma once
#include "MeshLib/MeshEnums.h"
#include "Element.h"
#include "EdgeReturn.h" #include "EdgeReturn.h"
#include "TetRule4.h" #include "Element.h"
#include "TetRule.h"
namespace MeshLib namespace MeshLib
{ {
...@@ -39,7 +38,7 @@ namespace MeshLib ...@@ -39,7 +38,7 @@ namespace MeshLib
* *
* \endcode * \endcode
*/ */
class TetRule10 : public TetRule4 class TetRule10 : public TetRule
{ {
public: public:
/// Constant: The number of all nodes for this element /// Constant: The number of all nodes for this element
...@@ -60,6 +59,12 @@ public: ...@@ -60,6 +59,12 @@ public:
/// Returns the i-th face of the element. /// Returns the i-th face of the element.
static const Element* getFace(const Element* e, unsigned i); static const Element* getFace(const Element* e, unsigned i);
/// Returns the ID of a face given an array of nodes.
static unsigned identifyFace(Node const* const* _nodes,
Node const* nodes[3])
{
return TetRule::identifyFace(_nodes, nodes, face_nodes);
}
}; /* class */ }; /* class */
} // namespace MeshLib } // namespace MeshLib
...@@ -13,8 +13,6 @@ ...@@ -13,8 +13,6 @@
#include <array> #include <array>
#include "BaseLib/Logging.h" #include "BaseLib/Logging.h"
#include "Line.h"
#include "MathLib/GeometricBasics.h"
#include "MeshLib/Node.h" #include "MeshLib/Node.h"
#include "Tri.h" #include "Tri.h"
...@@ -50,49 +48,4 @@ const Element* TetRule4::getFace(const Element* e, unsigned i) ...@@ -50,49 +48,4 @@ const Element* TetRule4::getFace(const Element* e, unsigned i)
ERR("Error in MeshLib::Element::getFace() - Index {:d} does not exist.", i); ERR("Error in MeshLib::Element::getFace() - Index {:d} does not exist.", i);
return nullptr; return nullptr;
} }
double TetRule4::computeVolume(Node const* const* _nodes)
{
return MathLib::calcTetrahedronVolume(*_nodes[0], *_nodes[1], *_nodes[2],
*_nodes[3]);
}
bool TetRule4::isPntInElement(Node const* const* nodes,
MathLib::Point3d const& pnt, double eps)
{
return MathLib::isPointInTetrahedron(pnt, *nodes[0], *nodes[1], *nodes[2],
*nodes[3], eps);
}
unsigned TetRule4::identifyFace(Node const* const* _nodes, Node const* nodes[3])
{
for (unsigned i = 0; i < 4; i++)
{
unsigned flag(0);
for (unsigned j = 0; j < 3; j++)
{
for (unsigned k = 0; k < 3; k++)
{
if (_nodes[face_nodes[i][j]] == nodes[k])
{
flag++;
}
}
}
if (flag == 3)
{
return i;
}
}
return std::numeric_limits<unsigned>::max();
}
ElementErrorCode TetRule4::validate(const Element* e)
{
ElementErrorCode error_code;
error_code[ElementErrorFlag::ZeroVolume] = hasZeroVolume(*e);
error_code[ElementErrorFlag::NodeOrder] = !e->testElementNodeOrder();
return error_code;
}
} // end namespace MeshLib } // end namespace MeshLib
...@@ -10,17 +10,16 @@ ...@@ -10,17 +10,16 @@
#pragma once #pragma once
#include "MeshLib/MeshEnums.h"
#include "Element.h"
#include "EdgeReturn.h" #include "EdgeReturn.h"
#include "CellRule.h" #include "Element.h"
#include "TetRule.h"
namespace MeshLib namespace MeshLib
{ {
/** /**
* This class represents a 3d tetrahedron element. The following sketch shows * This class represents a 3d tetrahedron element with 4 nodes.
* the node and edge numbering. * The following sketch shows the node and edge numbering.
* \anchor Tetrahedron4NodeAndEdgeNumbering * \anchor Tetrahedron4NodeAndEdgeNumbering
* \code * \code
* 3 * 3
...@@ -39,30 +38,15 @@ namespace MeshLib ...@@ -39,30 +38,15 @@ namespace MeshLib
* *
* \endcode * \endcode
*/ */
class TetRule4 : public CellRule class TetRule4 : public TetRule
{ {
public: public:
/// Constant: The number of base nodes for this element
static const unsigned n_base_nodes = 4u;
/// Constant: The number of all nodes for this element /// Constant: The number of all nodes for this element
static const unsigned n_all_nodes = 4u; static const unsigned n_all_nodes = 4u;
/// Constant: The geometric type of the element
static const MeshElemType mesh_elem_type = MeshElemType::TETRAHEDRON;
/// Constant: The FEM type of the element /// Constant: The FEM type of the element
static const CellType cell_type = CellType::TET4; static const CellType cell_type = CellType::TET4;
/// Constant: The number of faces
static const unsigned n_faces = 4;
/// Constant: The number of edges
static const unsigned n_edges = 6;
/// Constant: The number of neighbors
static const unsigned n_neighbors = 4;
/// Constant: Local node index table for faces /// Constant: Local node index table for faces
static const unsigned face_nodes[4][3]; static const unsigned face_nodes[4][3];
...@@ -75,25 +59,12 @@ public: ...@@ -75,25 +59,12 @@ public:
/// Returns the i-th face of the element. /// Returns the i-th face of the element.
static const Element* getFace(const Element* e, unsigned i); static const Element* getFace(const Element* e, unsigned i);
/**
* \copydoc MeshLib::Element::isPntInElement()
* \param nodes the nodes of the element.
*/
static bool isPntInElement(Node const* const* nodes,
MathLib::Point3d const& pnt, double eps);
/**
* Tests if the element is geometrically valid.
*/
static ElementErrorCode validate(const Element* e);
/// Returns the ID of a face given an array of nodes. /// Returns the ID of a face given an array of nodes.
static unsigned identifyFace(Node const* const* /*_nodes*/, static unsigned identifyFace(Node const* const* _nodes,
Node const* nodes[3]); Node const* nodes[3])
{
/// Calculates the volume of the element return TetRule::identifyFace(_nodes, nodes, face_nodes);
static double computeVolume(Node const* const* _nodes); }
}; /* class */ }; /* class */
} // namespace MeshLib } // namespace MeshLib
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment