From aef9072d240e392bc24747c021bb9bfe14328dd1 Mon Sep 17 00:00:00 2001 From: Wenqing Wang <wenqing.wang@ufz.de> Date: Thu, 14 Oct 2021 17:32:51 +0200 Subject: [PATCH] [MeshSubset] Added a member of _use_TaylorHood_elements --- MeshLib/MeshSubset.h | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/MeshLib/MeshSubset.h b/MeshLib/MeshSubset.h index 2612f384158..15e22b95d87 100644 --- a/MeshLib/MeshSubset.h +++ b/MeshLib/MeshSubset.h @@ -28,8 +28,13 @@ public: /// Construct a mesh subset from vector of nodes on the given mesh. /// \param msh Mesh /// \param vec_items Vector of Node pointers. - MeshSubset(const Mesh& msh, std::vector<Node*> const& vec_items) - : _msh(msh), _nodes(vec_items) + /// \param use_taylor_hood_elements Flag to indicate whether the Taylor-Hood + /// elements are used. + MeshSubset(const Mesh& msh, std::vector<Node*> const& vec_items, + const bool use_taylor_hood_elements = false) + : _msh(msh), + _nodes(vec_items), + _use_taylor_hood_elements(use_taylor_hood_elements) { // If the mesh nodes and the given nodes point to the same vector, they // must be equal. @@ -82,6 +87,8 @@ public: return _nodes[i]->getID(); } + bool useTaylorHoodElements() const { return _use_taylor_hood_elements; } + std::vector<Element*>::const_iterator elementsBegin() const { return _msh.getElements().cbegin(); @@ -99,5 +106,6 @@ public: private: Mesh const& _msh; std::vector<Node*> const& _nodes; + bool const _use_taylor_hood_elements; }; } // namespace MeshLib -- GitLab