/class BoundaryRestrictable /brief Provides functionality for limiting the object to certain boundary ids The is class the inheriting class with methods useful for limiting an object to certain boundaries. More...
#include <BoundaryRestrictable.h>
Public Types | |
enum | TEST_TYPE { ALL, ANY } |
A flag changing the behavior of hasBoundary. More... | |
Public Member Functions | |
BoundaryRestrictable (const MooseObject *moose_object, bool nodal) | |
Class constructor Populates the _bnd_ids for the given boundary names supplied with the 'boundary' input parameter. More... | |
BoundaryRestrictable (const MooseObject *moose_object, const std::set< SubdomainID > &block_ids, bool nodal) | |
Class constructor Populates the 'block' input parameters when an object is also block restricted, see the general class documentation for details. More... | |
BoundaryRestrictable (const BoundaryRestrictable &object, const Moose::Kokkos::FunctorCopy &key) | |
Special constructor used for Kokkos functor copy during parallel dispatch. More... | |
virtual | ~BoundaryRestrictable () |
Empty class destructor. More... | |
virtual const std::set< BoundaryID > & | boundaryIDs () const |
Return the boundary IDs for this object. More... | |
const std::vector< BoundaryName > & | boundaryNames () const |
Return the boundary names for this object. More... | |
unsigned int | numBoundaryIDs () const |
Return the number of boundaries for this object. More... | |
bool | hasBoundary (const BoundaryName &name) const |
Test if the supplied boundary name is valid for this object. More... | |
bool | hasBoundary (const std::vector< BoundaryName > &names) const |
Test if the supplied vector of boundary names are valid for this object. More... | |
bool | hasBoundary (const BoundaryID &id) const |
Test if the supplied boundary ids are valid for this object. More... | |
bool | hasBoundary (const std::vector< BoundaryID > &ids, TEST_TYPE type=ALL) const |
Test if the supplied vector boundary ids are valid for this object. More... | |
bool | hasBoundary (const std::set< BoundaryID > &ids, TEST_TYPE type=ALL) const |
Test if the supplied set of boundary ids are valid for this object. More... | |
bool | isBoundarySubset (const std::set< BoundaryID > &ids) const |
Test if the class boundary ids are a subset of the supplied objects. More... | |
bool | isBoundarySubset (const std::vector< BoundaryID > &ids) const |
template<typename T , bool is_ad = false> | |
bool | hasBoundaryMaterialProperty (const std::string &prop_name) const |
Check if a material property is valid for all boundaries of this object. More... | |
virtual bool | boundaryRestricted () const |
Returns true if this object has been restricted to a boundary. More... | |
const std::set< BoundaryID > & | meshBoundaryIDs () const |
Returns the set of all boundary ids for the entire mesh. More... | |
virtual bool | checkVariableBoundaryIntegrity () const |
Whether integrity/coverage checking should be conducted for moose variables used in this object. More... | |
Static Public Member Functions | |
static InputParameters | validParams () |
static bool | restricted (const std::set< BoundaryID > &ids) |
Helper for determining if the object is boundary restricted. More... | |
Protected Member Functions | |
bool | hasBoundaryMaterialPropertyHelper (const std::string &prop_name) const |
A helper method to avoid circular #include problems. More... | |
KOKKOS_FUNCTION dof_id_type | numKokkosBoundaryNodes () const |
Get the number of nodes this Kokkos object is operating on. More... | |
KOKKOS_FUNCTION dof_id_type | numKokkosBoundarySides () const |
Get the number of sides this Kokkos object is operating on. More... | |
KOKKOS_FUNCTION ContiguousNodeID | kokkosBoundaryNodeID (ThreadID tid) const |
Get the contiguous node ID this Kokkos thread is operating on. More... | |
KOKKOS_FUNCTION auto | kokkosBoundaryElementSideID (ThreadID tid) const |
Get the contiguous element ID - side index pair this Kokkos thread is operating on. More... | |
Private Member Functions | |
void | initializeBoundaryRestrictable () |
An initialization routine needed for dual constructors. More... | |
void | initializeKokkosBoundaryRestrictable (MooseMesh *mesh) |
Private Attributes | |
FEProblemBase * | _bnd_feproblem |
Pointer to FEProblemBase. More... | |
MooseMesh * | _bnd_mesh |
Point to mesh. More... | |
std::set< BoundaryID > | _bnd_ids |
Set of the boundary ids. More... | |
std::vector< BoundaryID > | _vec_ids |
Vector of the boundary ids. More... | |
std::vector< BoundaryName > | _boundary_names |
Vector the the boundary names. More... | |
const bool | _bnd_dual_restrictable |
Flag for allowing dual restriction with BlockRestrictable. More... | |
const std::set< SubdomainID > | _empty_block_ids |
An empty set for referencing when block_ids is not included. More... | |
const std::set< SubdomainID > & | _block_ids |
Reference to the block_ids, defaults to an empty set if not provided. More... | |
THREAD_ID | _bnd_tid |
Thread id for this object. More... | |
const MaterialData & | _bnd_material_data |
Pointer to MaterialData for boundary (. More... | |
bool | _bnd_nodal |
Whether or not this object is restricted to nodesets. More... | |
const MooseObject & | _moose_object |
The moose object that this is an interface for. More... | |
Moose::Kokkos::Array< ContiguousNodeID > | _kokkos_node_ids |
List of contiguous node IDs this Kokkos object is operating on. More... | |
Moose::Kokkos::Array< Moose::Kokkos::Pair< ContiguousElementID, unsigned int > > | _kokkos_element_side_ids |
List of contiguous element ID - side index pairs this Kokkos object is operating on. More... | |
/class BoundaryRestrictable /brief Provides functionality for limiting the object to certain boundary ids The is class the inheriting class with methods useful for limiting an object to certain boundaries.
The parameters "_boundary_id" and "boundary", which are created with BoundaryRestrictable::validParams() are used the framework.
Definition at line 29 of file BoundaryRestrictable.h.
A flag changing the behavior of hasBoundary.
Enumerator | |
---|---|
ALL | |
ANY |
Definition at line 33 of file BoundaryRestrictable.h.
BoundaryRestrictable::BoundaryRestrictable | ( | const MooseObject * | moose_object, |
bool | nodal | ||
) |
Class constructor Populates the _bnd_ids for the given boundary names supplied with the 'boundary' input parameter.
parameters | The input parameters |
nodal | True indicates that the object is operating on nodesets, false for sidesets |
Definition at line 36 of file BoundaryRestrictable.C.
BoundaryRestrictable::BoundaryRestrictable | ( | const MooseObject * | moose_object, |
const std::set< SubdomainID > & | block_ids, | ||
bool | nodal | ||
) |
Class constructor Populates the 'block' input parameters when an object is also block restricted, see the general class documentation for details.
parameters | The input parameters (see the detailed help for additional information) |
block_ids | The block ids that the object is restricted to |
nodal | True indicates that the object is operating on nodesets, false for sidesets |
Definition at line 59 of file BoundaryRestrictable.C.
BoundaryRestrictable::BoundaryRestrictable | ( | const BoundaryRestrictable & | object, |
const Moose::Kokkos::FunctorCopy & | key | ||
) |
Special constructor used for Kokkos functor copy during parallel dispatch.
|
virtual |
|
virtual |
Return the boundary IDs for this object.
Definition at line 197 of file BoundaryRestrictable.C.
Referenced by MaterialBase::getGenericZeroMaterialPropertyByName(), hasBoundaryMaterialPropertyHelper(), SidesetInfoVectorPostprocessor::initialize(), SideFVFluxBCIntegral::initialSetup(), InterfaceQpUserObjectBase::initialSetup(), and MaterialBase::registerPropName().
const std::vector< BoundaryName > & BoundaryRestrictable::boundaryNames | ( | ) | const |
Return the boundary names for this object.
Definition at line 203 of file BoundaryRestrictable.C.
Referenced by MaterialOutputAction::getParams(), NearestNodeDistanceAux::NearestNodeDistanceAux(), and NearestNodeValueAux::NearestNodeValueAux().
|
virtual |
Returns true if this object has been restricted to a boundary.
Definition at line 215 of file BoundaryRestrictable.C.
Referenced by Moose::Kokkos::Material< KokkosGenericConstantMaterial >::checkMaterialProperty(), Material::checkMaterialProperty(), MaterialOutputAction::getParams(), DerivativeMaterialInterface< MortarScalarBase >::haveMaterialProperty(), and NodePositions::initialize().
|
inlinevirtual |
Whether integrity/coverage checking should be conducted for moose variables used in this object.
This should return true if variables are only evaluated locally, e.g. on the current node or element. This should return false if evaluation of this object entails non-local variable evaluations
Definition at line 190 of file BoundaryRestrictable.h.
bool BoundaryRestrictable::hasBoundary | ( | const BoundaryName & | name | ) | const |
Test if the supplied boundary name is valid for this object.
name | A BoundaryName to check |
Definition at line 227 of file BoundaryRestrictable.C.
Referenced by AuxKernelTempl< Real >::AuxKernelTempl(), hasBoundary(), hasBoundaryMaterialPropertyHelper(), and NodePositions::initialize().
bool BoundaryRestrictable::hasBoundary | ( | const std::vector< BoundaryName > & | names | ) | const |
Test if the supplied vector of boundary names are valid for this object.
names | A vector of BoundaryNames to check |
Definition at line 235 of file BoundaryRestrictable.C.
bool BoundaryRestrictable::hasBoundary | ( | const BoundaryID & | id | ) | const |
Test if the supplied boundary ids are valid for this object.
id | A BoundaryID to check |
Definition at line 241 of file BoundaryRestrictable.C.
bool BoundaryRestrictable::hasBoundary | ( | const std::vector< BoundaryID > & | ids, |
TEST_TYPE | type = ALL |
||
) | const |
Test if the supplied vector boundary ids are valid for this object.
ids | A vector of BoundaryIDs ids to check |
type | A flag for the type of matching to perform: ALL requires that all supplied ids must match those of the object; ANY requires that any one of the supplied ids must match those of the object |
Definition at line 250 of file BoundaryRestrictable.C.
bool BoundaryRestrictable::hasBoundary | ( | const std::set< BoundaryID > & | ids, |
TEST_TYPE | type = ALL |
||
) | const |
Test if the supplied set of boundary ids are valid for this object.
ids | A std::set of BoundaryIDs to check |
type | A flag for the type of matching to perform: ALL requires that all supplied ids must match those of the object; ANY requires that any one of the supplied ids must match those of the object |
Definition at line 257 of file BoundaryRestrictable.C.
bool BoundaryRestrictable::hasBoundaryMaterialProperty | ( | const std::string & | prop_name | ) | const |
Check if a material property is valid for all boundaries of this object.
This method returns true if the supplied property name has been declared in a Material object on the boundary ids for this object.
T | The type of material property |
prop_name | the name of the property to query |
Definition at line 295 of file BoundaryRestrictable.h.
|
protected |
A helper method to avoid circular #include problems.
Definition at line 318 of file BoundaryRestrictable.C.
Referenced by hasBoundaryMaterialProperty().
|
private |
An initialization routine needed for dual constructors.
Definition at line 84 of file BoundaryRestrictable.C.
Referenced by initializeBoundaryRestrictable().
bool BoundaryRestrictable::isBoundarySubset | ( | const std::set< BoundaryID > & | ids | ) | const |
Test if the class boundary ids are a subset of the supplied objects.
ids | A std::set of boundaries to check |
Definition at line 289 of file BoundaryRestrictable.C.
Referenced by isBoundarySubset().
bool BoundaryRestrictable::isBoundarySubset | ( | const std::vector< BoundaryID > & | ids | ) | const |
Definition at line 305 of file BoundaryRestrictable.C.
|
inlineprotected |
Get the contiguous element ID - side index pair this Kokkos thread is operating on.
tid | The thread ID |
Definition at line 273 of file BoundaryRestrictable.h.
|
inlineprotected |
Get the contiguous node ID this Kokkos thread is operating on.
tid | The thread ID |
Definition at line 264 of file BoundaryRestrictable.h.
const std::set< BoundaryID > & BoundaryRestrictable::meshBoundaryIDs | ( | ) | const |
Returns the set of all boundary ids for the entire mesh.
Definition at line 312 of file BoundaryRestrictable.C.
Referenced by hasBoundaryMaterialPropertyHelper().
unsigned int BoundaryRestrictable::numBoundaryIDs | ( | ) | const |
Return the number of boundaries for this object.
Definition at line 209 of file BoundaryRestrictable.C.
Referenced by SidesetInfoVectorPostprocessor::initialize().
|
inlineprotected |
Get the number of nodes this Kokkos object is operating on.
Definition at line 250 of file BoundaryRestrictable.h.
|
inlineprotected |
Get the number of sides this Kokkos object is operating on.
Definition at line 255 of file BoundaryRestrictable.h.
|
static |
Helper for determining if the object is boundary restricted.
This is needed for the MaterialPropertyInterface.
Definition at line 221 of file BoundaryRestrictable.C.
Referenced by moose::internal::boundaryRestricted(), and boundaryRestricted().
|
static |
Definition at line 17 of file BoundaryRestrictable.C.
Referenced by NodePositions::validParams(), InterfaceKernelBase::validParams(), NodalUserObject::validParams(), NodalKernelBase::validParams(), DGKernelBase::validParams(), InitialConditionBase::validParams(), AuxKernelTempl< Real >::validParams(), and MaterialBase::validParams().
|
private |
Reference to the block_ids, defaults to an empty set if not provided.
Definition at line 215 of file BoundaryRestrictable.h.
Referenced by initializeBoundaryRestrictable().
|
private |
Flag for allowing dual restriction with BlockRestrictable.
Definition at line 209 of file BoundaryRestrictable.h.
Referenced by initializeBoundaryRestrictable().
|
private |
Pointer to FEProblemBase.
Definition at line 194 of file BoundaryRestrictable.h.
Referenced by hasBoundaryMaterialPropertyHelper(), and initializeBoundaryRestrictable().
|
private |
Set of the boundary ids.
Definition at line 200 of file BoundaryRestrictable.h.
Referenced by boundaryIDs(), boundaryRestricted(), hasBoundary(), initializeBoundaryRestrictable(), isBoundarySubset(), and numBoundaryIDs().
|
private |
Pointer to MaterialData for boundary (.
Definition at line 221 of file BoundaryRestrictable.h.
Referenced by hasBoundaryMaterialProperty().
|
private |
Point to mesh.
Definition at line 197 of file BoundaryRestrictable.h.
Referenced by hasBoundary(), initializeBoundaryRestrictable(), isBoundarySubset(), and meshBoundaryIDs().
|
private |
Whether or not this object is restricted to nodesets.
Definition at line 224 of file BoundaryRestrictable.h.
Referenced by initializeBoundaryRestrictable().
|
private |
Thread id for this object.
Definition at line 218 of file BoundaryRestrictable.h.
|
private |
Vector the the boundary names.
Definition at line 206 of file BoundaryRestrictable.h.
Referenced by boundaryNames(), and initializeBoundaryRestrictable().
|
private |
An empty set for referencing when block_ids is not included.
Definition at line 212 of file BoundaryRestrictable.h.
|
private |
List of contiguous element ID - side index pairs this Kokkos object is operating on.
Definition at line 289 of file BoundaryRestrictable.h.
Referenced by kokkosBoundaryElementSideID(), and numKokkosBoundarySides().
|
private |
List of contiguous node IDs this Kokkos object is operating on.
Definition at line 284 of file BoundaryRestrictable.h.
Referenced by kokkosBoundaryNodeID(), and numKokkosBoundaryNodes().
|
private |
The moose object that this is an interface for.
Definition at line 227 of file BoundaryRestrictable.h.
Referenced by initializeBoundaryRestrictable().
|
private |
Vector of the boundary ids.
Definition at line 203 of file BoundaryRestrictable.h.
Referenced by initializeBoundaryRestrictable().