Line data Source code
1 : //* This file is part of the MOOSE framework 2 : //* https://mooseframework.inl.gov 3 : //* 4 : //* All rights reserved, see COPYRIGHT for full restrictions 5 : //* https://github.com/idaholab/moose/blob/master/COPYRIGHT 6 : //* 7 : //* Licensed under LGPL 2.1, please see LICENSE for details 8 : //* https://www.gnu.org/licenses/lgpl-2.1.html 9 : 10 : #ifdef MFEM_ENABLED 11 : 12 : #pragma once 13 : #include "GeneralUserObject.h" 14 : #include "libmesh/ignore_warnings.h" 15 : #include <mfem.hpp> 16 : #include "mfem/miniapps/common/mfem-common.hpp" 17 : #include "libmesh/restore_warnings.h" 18 : 19 : /** 20 : * Base class for construction of an object that is restricted to a subset 21 : * of subdomains of the problem mesh. 22 : */ 23 : class MFEMBlockRestrictable 24 : { 25 : public: 26 : static InputParameters validParams(); 27 : 28 : MFEMBlockRestrictable(const InputParameters & parameters, const mfem::ParMesh & mfem_mesh); 29 : 30 : mfem::Array<int> subdomainsToAttributes(const std::vector<SubdomainName> & subdomain_names); 31 : std::vector<std::string> subdomainsToStrings(const std::vector<SubdomainName> & subdomain_names); 32 : 33 : /// Returns a bool indicating if the object is restricted to a subset of subdomains. 34 294 : bool isSubdomainRestricted() { return _subdomain_names.size(); } 35 : 36 8 : const mfem::Array<int> & getSubdomainAttributes() { return _subdomain_attributes; } 37 1 : mfem::Array<int> & getSubdomainMarkers() { return _subdomain_markers; } 38 316 : const mfem::ParMesh & getMesh() const { return _mfem_mesh; } 39 : 40 : protected: 41 : /// Stores the names of the subdomains. 42 : const mfem::ParMesh & _mfem_mesh; 43 : /// Stores the names of the subdomains. 44 : std::vector<SubdomainName> _subdomain_names; 45 : /// Array storing subdomain attribute IDs for this object. 46 : mfem::Array<int> _subdomain_attributes; 47 : /// Boolean array indicating which subdomains are active in this object. 48 : mfem::Array<int> _subdomain_markers; 49 : }; 50 : 51 : #endif