https://mooseframework.inl.gov
Loading...
Searching...
No Matches
MFEMBlockRestrictable.h
Go to the documentation of this file.
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 MOOSE_MFEM_ENABLED
11
12#pragma once
13
14#include "GeneralUserObject.h"
15#include "libmesh/ignore_warnings.h"
16#include "mfem/miniapps/common/mfem-common.hpp"
17#include "libmesh/restore_warnings.h"
18
24{
25public:
27
28 MFEMBlockRestrictable(const InputParameters & parameters, const mfem::ParMesh & mfem_mesh);
29
30 mfem::Array<int> subdomainsToAttributes();
31 std::vector<std::string> subdomainsToStrings();
32
34 bool isSubdomainRestricted() { return _subdomain_names.size(); }
35
36 const mfem::Array<int> & getSubdomainAttributes() { return _subdomain_attributes; }
37 mfem::Array<int> & getSubdomainMarkers() { return _subdomain_markers; }
38 const mfem::ParMesh & getMesh() const { return _mfem_mesh; }
39
40protected:
42 const mfem::ParMesh & _mfem_mesh;
44 std::vector<SubdomainName> _subdomain_names;
46 mfem::Array<int> _subdomain_attributes;
48 mfem::Array<int> _subdomain_markers;
49};
50
51#endif
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system.
Base class for construction of an object that is restricted to a subset of subdomains of the problem ...
std::vector< std::string > subdomainsToStrings()
std::vector< SubdomainName > _subdomain_names
Stores the names of the subdomains.
const mfem::ParMesh & _mfem_mesh
Stores the names of the subdomains.
const mfem::Array< int > & getSubdomainAttributes()
mfem::Array< int > _subdomain_markers
Boolean array indicating which subdomains are active in this object.
mfem::Array< int > subdomainsToAttributes()
static InputParameters validParams()
const mfem::ParMesh & getMesh() const
bool isSubdomainRestricted()
Returns a bool indicating if the object is restricted to a subset of subdomains.
mfem::Array< int > _subdomain_attributes
Array storing subdomain attribute IDs for this object.
mfem::Array< int > & getSubdomainMarkers()