MaterialBase objects are special in that they have additional objects created automatically (see FEProblemBase::addMaterial). More...
#include <MaterialWarehouse.h>
Public Member Functions | |
const MooseObjectWarehouse< MaterialBase > & | operator[] (Moose::MaterialDataType data_type) const |
void | addObjects (std::shared_ptr< MaterialBase > block, std::shared_ptr< MaterialBase > neighbor, std::shared_ptr< MaterialBase > face, THREAD_ID tid=0) |
A special method unique to this class for adding Block, Neighbor, and Face material objects. More... | |
virtual void | addObject (std::shared_ptr< MaterialBase > object, THREAD_ID tid=0, bool recurse=true) override |
Adds an object to the storage structure. More... | |
bool | hasVariableObjects (unsigned int variable_id, THREAD_ID tid=0) const |
Checks for whether this warehouse has objects for a given variable. More... | |
unsigned int | size (THREAD_ID tid=0) const |
Return how many kernels we store in the current warehouse. More... | |
bool | hasObjectsForVariableAndBlocks (const VariableName &var_name, const std::set< SubdomainID > &blocks, std::set< SubdomainID > &blocks_covered, THREAD_ID tid) const |
Whether there are objects for this variable and the set of blocks passed. More... | |
std::set< SubdomainID > | getActiveBlocks (THREAD_ID tid=0) const |
Return a set of active SubdomainsIDs. More... | |
const std::vector< std::shared_ptr< MaterialBase > > & | getObjectsForVariable (const VariableName &var_name, THREAD_ID tid) const |
Getter for objects that have the 'variable' set to a particular variable Note that users should check whether there are objects using 'hasObjectsForVariable' before calling this routine, because it will throw if there are no objects for this variable. More... | |
void | subdomainsCovered (std::set< SubdomainID > &subdomains_covered, std::set< std::string > &unique_variables, THREAD_ID tid=0) const |
Populates a set of covered subdomains and the associated variable names. More... | |
THREAD_ID | numThreads () const |
Return the number of threads. More... | |
std::string | activeObjectsToFormattedString (THREAD_ID tid=0, const std::string &prefix="[DBG]") const |
Output the active content of the warehouse to a string, meant to be output to the console. More... | |
virtual void | initialSetup (THREAD_ID tid=0) const |
Convenience methods for calling object setup methods that handle the extra neighbor and face objects. More... | |
virtual void | timestepSetup (THREAD_ID tid=0) const |
virtual void | subdomainSetup (THREAD_ID tid=0) const |
virtual void | subdomainSetup (SubdomainID id, THREAD_ID tid=0) const |
virtual void | neighborSubdomainSetup (THREAD_ID tid=0) const |
virtual void | neighborSubdomainSetup (SubdomainID id, THREAD_ID tid=0) const |
virtual void | jacobianSetup (THREAD_ID tid=0) const |
virtual void | residualSetup (THREAD_ID tid=0) const |
virtual void | updateActive (THREAD_ID tid=0) |
Update the active status of Kernels. More... | |
void | sort (THREAD_ID tid=0) |
virtual void | customSetup (const ExecFlagType &exec_type, THREAD_ID tid=0) const |
bool | hasActiveVariableBlockObjects (unsigned int variable_id, SubdomainID block_id, THREAD_ID tid=0) const |
Methods for checking/getting variable kernels for a variable and SubdomainID. More... | |
const std::vector< std::shared_ptr< MaterialBase > > & | getActiveVariableBlockObjects (unsigned int variable_id, SubdomainID block_id, THREAD_ID tid=0) const |
const std::vector< std::shared_ptr< MaterialBase > > & | getObjects (THREAD_ID tid=0) const |
Retrieve complete vector to the all/block/boundary restricted objects for a given thread. More... | |
const std::map< SubdomainID, std::vector< std::shared_ptr< MaterialBase > > > & | getBlockObjects (THREAD_ID tid=0) const |
const std::vector< std::shared_ptr< MaterialBase > > & | getBlockObjects (SubdomainID id, THREAD_ID tid=0) const |
const std::map< BoundaryID, std::vector< std::shared_ptr< MaterialBase > > > & | getBoundaryObjects (THREAD_ID tid=0) const |
const std::vector< std::shared_ptr< MaterialBase > > & | getBoundaryObjects (BoundaryID id, THREAD_ID tid=0) const |
const std::vector< std::shared_ptr< MaterialBase > > & | getActiveObjects (THREAD_ID tid=0) const |
Retrieve complete vector to the active all/block/boundary restricted objects for a given thread. More... | |
const std::map< SubdomainID, std::vector< std::shared_ptr< MaterialBase > > > & | getActiveBlockObjects (THREAD_ID tid=0) const |
const std::vector< std::shared_ptr< MaterialBase > > & | getActiveBlockObjects (SubdomainID id, THREAD_ID tid=0) const |
const std::map< BoundaryID, std::vector< std::shared_ptr< MaterialBase > > > & | getActiveBoundaryObjects (THREAD_ID tid=0) const |
const std::vector< std::shared_ptr< MaterialBase > > & | getActiveBoundaryObjects (BoundaryID id, THREAD_ID tid=0) const |
bool | hasObjects (THREAD_ID tid=0) const |
Convenience functions for determining if objects exist. More... | |
bool | hasActiveObjects (THREAD_ID tid=0) const |
bool | hasObjectsForVariable (const VariableName &var_name, THREAD_ID tid) const |
bool | hasActiveBlockObjects (THREAD_ID tid=0) const |
bool | hasActiveBlockObjects (SubdomainID id, THREAD_ID tid=0) const |
bool | hasActiveBoundaryObjects (THREAD_ID tid=0) const |
bool | hasActiveBoundaryObjects (BoundaryID id, THREAD_ID tid=0) const |
bool | hasBoundaryObjects (BoundaryID id, THREAD_ID tid=0) const |
bool | hasActiveObject (const std::string &name, THREAD_ID tid=0) const |
Convenience functions for checking/getting specific objects. More... | |
std::shared_ptr< MaterialBase > | getObject (const std::string &name, THREAD_ID tid=0) const |
std::shared_ptr< MaterialBase > | getActiveObject (const std::string &name, THREAD_ID tid=0) const |
void | updateVariableDependency (std::set< MooseVariableFieldBase * > &needed_moose_vars, THREAD_ID tid=0) const |
Update variable dependency vector. More... | |
void | updateBlockVariableDependency (SubdomainID id, std::set< MooseVariableFieldBase * > &needed_moose_vars, THREAD_ID tid=0) const |
void | updateBoundaryVariableDependency (std::set< MooseVariableFieldBase * > &needed_moose_vars, THREAD_ID tid=0) const |
void | updateBoundaryVariableDependency (BoundaryID id, std::set< MooseVariableFieldBase * > &needed_moose_vars, THREAD_ID tid=0) const |
void | updateBlockFEVariableCoupledVectorTagDependency (SubdomainID id, std::set< TagID > &needed_fe_var_vector_tags, THREAD_ID tid=0) const |
Update FE variable coupleable vector tag vector. More... | |
void | updateBoundaryFEVariableCoupledVectorTagDependency (BoundaryID id, std::set< TagID > &needed_fe_var_vector_tags, THREAD_ID tid=0) const |
void | updateMatPropDependency (std::unordered_set< unsigned int > &needed_mat_props, THREAD_ID tid=0) const |
Update material property dependency vector. More... | |
void | updateBlockMatPropDependency (SubdomainID id, std::unordered_set< unsigned int > &needed_mat_props, THREAD_ID tid=0) const |
void | updateBoundaryMatPropDependency (std::unordered_set< unsigned int > &needed_mat_props, THREAD_ID tid=0) const |
void | updateBoundaryMatPropDependency (BoundaryID id, std::unordered_set< unsigned int > &needed_mat_props, THREAD_ID tid=0) const |
Protected Member Functions | |
void | checkThreadID (THREAD_ID tid) const |
Calls assert on thread id. More... | |
Static Protected Member Functions | |
static void | updateActiveHelper (std::vector< std::shared_ptr< MaterialBase >> &active, const std::vector< std::shared_ptr< MaterialBase >> &all) |
Helper method for updating active vectors. More... | |
static void | sortHelper (std::vector< std::shared_ptr< MaterialBase >> &objects) |
Helper method for sorting vectors of objects. More... | |
static void | updateVariableDependencyHelper (std::set< MooseVariableFieldBase * > &needed_moose_vars, const std::vector< std::shared_ptr< MaterialBase >> &objects) |
Helper method for updating variable dependency vector. More... | |
static void | updateFEVariableCoupledVectorTagDependencyHelper (std::set< TagID > &needed_fe_var_vector_tags, const std::vector< std::shared_ptr< MaterialBase >> &objects) |
Helper method for updating FE variable coupleable vector tag vector. More... | |
static void | updateMatPropDependencyHelper (std::unordered_set< unsigned int > &needed_mat_props, const std::vector< std::shared_ptr< MaterialBase >> &objects) |
Helper method for updating material property dependency vector. More... | |
Protected Attributes | |
MooseObjectWarehouse< MaterialBase > | _neighbor_materials |
Storage for neighbor material objects (Block are stored in the base class) More... | |
MooseObjectWarehouse< MaterialBase > | _face_materials |
Storage for face material objects (Block are stored in the base class) More... | |
std::map< unsigned int, MooseObjectWarehouse< MaterialBase > > | _variable_objects |
Variable based storage. More... | |
const THREAD_ID | _num_threads |
Convenience member storing the number of threads used for storage (1 or libMesh::n_threads) More... | |
std::vector< std::vector< std::shared_ptr< MaterialBase > > > | _all_objects |
Storage container for the ALL pointers (THREAD_ID on outer vector) More... | |
std::vector< std::vector< std::shared_ptr< MaterialBase > > > | _active_objects |
All active objects (THREAD_ID on outer vector) More... | |
std::vector< std::map< SubdomainID, std::vector< std::shared_ptr< MaterialBase > > > > | _all_block_objects |
std::vector< std::map< SubdomainID, std::vector< std::shared_ptr< MaterialBase > > > > | _active_block_objects |
Active block restricted objects (THREAD_ID on outer vector) More... | |
std::vector< std::map< BoundaryID, std::vector< std::shared_ptr< MaterialBase > > > > | _all_boundary_objects |
std::vector< std::map< BoundaryID, std::vector< std::shared_ptr< MaterialBase > > > > | _active_boundary_objects |
Active boundary restricted objects (THREAD_ID on outer vector) More... | |
std::vector< std::map< VariableName, std::vector< std::shared_ptr< MaterialBase > > > > | _all_variable_objects |
All objects with a certain variable selected, as the 'variable' parameter. More... | |
MaterialBase objects are special in that they have additional objects created automatically (see FEProblemBase::addMaterial).
This class specializes the base class to acount for the additional Neightbor and face objects that may exist.
Definition at line 26 of file MaterialWarehouse.h.
|
inherited |
Output the active content of the warehouse to a string, meant to be output to the console.
tid | the thread id |
prefix | a string to prepend to the string |
Definition at line 847 of file MooseObjectWarehouseBase.h.
|
overridevirtualinherited |
Adds an object to the storage structure.
object | A shared pointer to the object being added |
tid | The thread ID (default is 0) |
recurse | Whether or not to build recusive warehouses (typically for Kernels) |
Reimplemented from MooseObjectWarehouseBase< MaterialBase >.
Definition at line 99 of file MooseObjectWarehouse.h.
void MaterialWarehouse::addObjects | ( | std::shared_ptr< MaterialBase > | block, |
std::shared_ptr< MaterialBase > | neighbor, | ||
std::shared_ptr< MaterialBase > | face, | ||
THREAD_ID | tid = 0 |
||
) |
A special method unique to this class for adding Block, Neighbor, and Face material objects.
Definition at line 15 of file MaterialWarehouse.C.
Referenced by FEProblemBase::addMaterialHelper().
|
inlineprotectedinherited |
Calls assert on thread id.
Definition at line 878 of file MooseObjectWarehouseBase.h.
Referenced by MooseObjectWarehouseBase< Indicator >::addObject(), MooseObjectWarehouseBase< Indicator >::getActiveBlockObjects(), MooseObjectWarehouseBase< Indicator >::getActiveBlocks(), MooseObjectWarehouseBase< Indicator >::getActiveBoundaryObjects(), MooseObjectWarehouseBase< Indicator >::getActiveObject(), MooseObjectWarehouseBase< Indicator >::getActiveObjects(), MooseObjectWarehouseBase< Indicator >::getBlockObjects(), MooseObjectWarehouseBase< Indicator >::getBoundaryObjects(), MooseObjectWarehouseBase< Indicator >::getObject(), MooseObjectWarehouseBase< Indicator >::getObjects(), MooseObjectWarehouseBase< Indicator >::hasActiveBlockObjects(), MooseObjectWarehouseBase< Indicator >::hasActiveBoundaryObjects(), MooseObjectWarehouseBase< Indicator >::hasActiveObject(), MooseObjectWarehouseBase< Indicator >::hasActiveObjects(), MooseObjectWarehouseBase< Indicator >::hasBoundaryObjects(), MooseObjectWarehouseBase< Indicator >::hasObjects(), MooseObjectWarehouseBase< Indicator >::hasObjectsForVariable(), MooseObjectWarehouseBase< Indicator >::hasObjectsForVariableAndBlocks(), MooseObjectWarehouseBase< Indicator >::size(), sort(), MooseObjectWarehouseBase< Indicator >::sort(), and MooseObjectWarehouseBase< Indicator >::updateActive().
|
virtualinherited |
Definition at line 176 of file MooseObjectWarehouse.h.
|
inlineinherited |
Definition at line 452 of file MooseObjectWarehouseBase.h.
Referenced by MooseObjectWarehouseBase< Indicator >::updateBlockFEVariableCoupledVectorTagDependency(), MooseObjectWarehouseBase< Indicator >::updateBlockMatPropDependency(), and MooseObjectWarehouseBase< Indicator >::updateBlockVariableDependency().
|
inherited |
Definition at line 460 of file MooseObjectWarehouseBase.h.
|
inherited |
Return a set of active SubdomainsIDs.
Definition at line 616 of file MooseObjectWarehouseBase.h.
|
inlineinherited |
Definition at line 433 of file MooseObjectWarehouseBase.h.
Referenced by MooseObjectWarehouseBase< Indicator >::updateBoundaryFEVariableCoupledVectorTagDependency(), MooseObjectWarehouseBase< Indicator >::updateBoundaryMatPropDependency(), and MooseObjectWarehouseBase< Indicator >::updateBoundaryVariableDependency().
|
inherited |
Definition at line 441 of file MooseObjectWarehouseBase.h.
|
inherited |
Definition at line 597 of file MooseObjectWarehouseBase.h.
|
inlineinherited |
Retrieve complete vector to the active all/block/boundary restricted objects for a given thread.
tid | The thread id to retrieve objects from |
Definition at line 425 of file MooseObjectWarehouseBase.h.
|
inherited |
Definition at line 143 of file MooseObjectWarehouse.h.
|
inlineinherited |
Definition at line 406 of file MooseObjectWarehouseBase.h.
|
inherited |
Definition at line 414 of file MooseObjectWarehouseBase.h.
|
inlineinherited |
Definition at line 379 of file MooseObjectWarehouseBase.h.
|
inherited |
Definition at line 395 of file MooseObjectWarehouseBase.h.
|
inherited |
Definition at line 586 of file MooseObjectWarehouseBase.h.
|
inlineinherited |
Retrieve complete vector to the all/block/boundary restricted objects for a given thread.
tid | The thread id to retrieve objects from |
Definition at line 371 of file MooseObjectWarehouseBase.h.
|
inherited |
Getter for objects that have the 'variable' set to a particular variable Note that users should check whether there are objects using 'hasObjectsForVariable' before calling this routine, because it will throw if there are no objects for this variable.
Definition at line 608 of file MooseObjectWarehouseBase.h.
|
inherited |
Definition at line 535 of file MooseObjectWarehouseBase.h.
Referenced by MooseObjectWarehouseBase< Indicator >::updateBlockFEVariableCoupledVectorTagDependency(), MooseObjectWarehouseBase< Indicator >::updateBlockMatPropDependency(), and MooseObjectWarehouseBase< Indicator >::updateBlockVariableDependency().
|
inherited |
Definition at line 546 of file MooseObjectWarehouseBase.h.
|
inherited |
Definition at line 555 of file MooseObjectWarehouseBase.h.
Referenced by MooseObjectWarehouseBase< Indicator >::updateBoundaryFEVariableCoupledVectorTagDependency(), MooseObjectWarehouseBase< Indicator >::updateBoundaryMatPropDependency(), and MooseObjectWarehouseBase< Indicator >::updateBoundaryVariableDependency().
|
inherited |
Definition at line 566 of file MooseObjectWarehouseBase.h.
|
inherited |
Convenience functions for checking/getting specific objects.
Definition at line 575 of file MooseObjectWarehouseBase.h.
|
inherited |
Definition at line 479 of file MooseObjectWarehouseBase.h.
Referenced by MooseObjectWarehouseBase< Indicator >::updateMatPropDependency(), and MooseObjectWarehouseBase< Indicator >::updateVariableDependency().
|
inherited |
Methods for checking/getting variable kernels for a variable and SubdomainID.
Definition at line 133 of file MooseObjectWarehouse.h.
|
inherited |
Definition at line 387 of file MooseObjectWarehouseBase.h.
|
inherited |
Convenience functions for determining if objects exist.
Definition at line 471 of file MooseObjectWarehouseBase.h.
|
inherited |
Definition at line 487 of file MooseObjectWarehouseBase.h.
Referenced by MooseObjectWarehouseBase< Indicator >::hasObjectsForVariableAndBlocks().
|
inherited |
Whether there are objects for this variable and the set of blocks passed.
var_name | name of the variable |
blocks | blocks to consider |
blocks_covered | subset of blocks for which there is an object |
Definition at line 496 of file MooseObjectWarehouseBase.h.
|
inherited |
Checks for whether this warehouse has objects for a given variable.
Definition at line 125 of file MooseObjectWarehouse.h.
Convenience methods for calling object setup methods that handle the extra neighbor and face objects.
Reimplemented from MooseObjectWarehouse< MaterialBase >.
Definition at line 42 of file MaterialWarehouse.C.
Referenced by FEProblemBase::initialSetup().
Reimplemented from MooseObjectWarehouse< MaterialBase >.
Definition at line 92 of file MaterialWarehouse.C.
Referenced by FEProblemBase::computeJacobianTags().
Definition at line 65 of file MaterialWarehouse.C.
Referenced by FEProblemBase::neighborSubdomainSetup().
|
virtual |
Definition at line 78 of file MaterialWarehouse.C.
|
inlineinherited |
Return the number of threads.
Definition at line 196 of file MooseObjectWarehouseBase.h.
const MooseObjectWarehouse< MaterialBase > & MaterialWarehouse::operator[] | ( | Moose::MaterialDataType | data_type | ) | const |
Definition at line 26 of file MaterialWarehouse.C.
Reimplemented from MooseObjectWarehouse< MaterialBase >.
Definition at line 84 of file MaterialWarehouse.C.
Referenced by FEProblemBase::computeBounds(), FEProblemBase::computeResidualAndJacobian(), and FEProblemBase::computeResidualTags().
|
inherited |
Return how many kernels we store in the current warehouse.
Definition at line 289 of file MooseObjectWarehouseBase.h.
Referenced by ActionWarehouse::addActionBlock(), BatchMeshGeneratorAction::addMeshGenerators(), BatchMeshGeneratorAction::BatchMeshGeneratorAction(), and MaterialOutputAction::outputHelper().
Definition at line 108 of file MaterialWarehouse.C.
Referenced by FEProblemBase::initialSetup().
|
staticprotectedinherited |
Helper method for sorting vectors of objects.
Definition at line 858 of file MooseObjectWarehouseBase.h.
Referenced by sort(), and MooseObjectWarehouseBase< Indicator >::sort().
|
inherited |
Populates a set of covered subdomains and the associated variable names.
Definition at line 829 of file MooseObjectWarehouseBase.h.
Reimplemented from MooseObjectWarehouse< MaterialBase >.
Definition at line 58 of file MaterialWarehouse.C.
Referenced by FEProblemBase::subdomainSetup().
|
virtual |
Reimplemented from MooseObjectWarehouse< MaterialBase >.
Definition at line 71 of file MaterialWarehouse.C.
Reimplemented from MooseObjectWarehouse< MaterialBase >.
Definition at line 50 of file MaterialWarehouse.C.
Referenced by FEProblemBase::timestepSetup().
Update the active status of Kernels.
Reimplemented from MooseObjectWarehouse< MaterialBase >.
Definition at line 100 of file MaterialWarehouse.C.
Referenced by sort(), MooseObjectWarehouseBase< Indicator >::sort(), and FEProblemBase::updateActiveObjects().
|
staticprotectedinherited |
Helper method for updating active vectors.
Definition at line 642 of file MooseObjectWarehouseBase.h.
Referenced by MooseObjectWarehouseBase< Indicator >::updateActive().
|
inherited |
Update FE variable coupleable vector tag vector.
Definition at line 735 of file MooseObjectWarehouseBase.h.
|
inherited |
Definition at line 780 of file MooseObjectWarehouseBase.h.
|
inherited |
Definition at line 683 of file MooseObjectWarehouseBase.h.
|
inherited |
Definition at line 745 of file MooseObjectWarehouseBase.h.
|
inherited |
Definition at line 791 of file MooseObjectWarehouseBase.h.
|
inherited |
Definition at line 801 of file MooseObjectWarehouseBase.h.
|
inherited |
Definition at line 694 of file MooseObjectWarehouseBase.h.
|
inherited |
Definition at line 707 of file MooseObjectWarehouseBase.h.
|
staticprotectedinherited |
Helper method for updating FE variable coupleable vector tag vector.
Definition at line 755 of file MooseObjectWarehouseBase.h.
Referenced by MooseObjectWarehouseBase< Indicator >::updateBlockFEVariableCoupledVectorTagDependency(), and MooseObjectWarehouseBase< Indicator >::updateBoundaryFEVariableCoupledVectorTagDependency().
|
inherited |
Update material property dependency vector.
Definition at line 771 of file MooseObjectWarehouseBase.h.
|
staticprotectedinherited |
Helper method for updating material property dependency vector.
Definition at line 812 of file MooseObjectWarehouseBase.h.
Referenced by MooseObjectWarehouseBase< Indicator >::updateBlockMatPropDependency(), MooseObjectWarehouseBase< Indicator >::updateBoundaryMatPropDependency(), and MooseObjectWarehouseBase< Indicator >::updateMatPropDependency().
|
inherited |
Update variable dependency vector.
Definition at line 674 of file MooseObjectWarehouseBase.h.
|
staticprotectedinherited |
Helper method for updating variable dependency vector.
Definition at line 718 of file MooseObjectWarehouseBase.h.
Referenced by MooseObjectWarehouseBase< Indicator >::updateBlockVariableDependency(), MooseObjectWarehouseBase< Indicator >::updateBoundaryVariableDependency(), and MooseObjectWarehouseBase< Indicator >::updateVariableDependency().
|
protectedinherited |
Active block restricted objects (THREAD_ID on outer vector)
Definition at line 220 of file MooseObjectWarehouseBase.h.
Referenced by MooseObjectWarehouseBase< Indicator >::addObject(), MooseObjectWarehouseBase< Indicator >::getActiveBlockObjects(), MooseObjectWarehouseBase< Indicator >::getActiveBlocks(), MooseObjectWarehouseBase< Indicator >::hasActiveBlockObjects(), MooseObjectWarehouseBase< Indicator >::subdomainsCovered(), and MooseObjectWarehouseBase< Indicator >::updateActive().
|
protectedinherited |
Active boundary restricted objects (THREAD_ID on outer vector)
Definition at line 226 of file MooseObjectWarehouseBase.h.
Referenced by MooseObjectWarehouseBase< Indicator >::addObject(), MooseObjectWarehouseBase< Indicator >::getActiveBoundaryObjects(), MooseObjectWarehouseBase< Indicator >::hasActiveBoundaryObjects(), MooseObjectWarehouseBase< Indicator >::updateActive(), MooseObjectWarehouseBase< Indicator >::updateBoundaryMatPropDependency(), and MooseObjectWarehouseBase< Indicator >::updateBoundaryVariableDependency().
|
protectedinherited |
All active objects (THREAD_ID on outer vector)
Definition at line 214 of file MooseObjectWarehouseBase.h.
Referenced by MooseObjectWarehouseBase< Indicator >::activeObjectsToFormattedString(), MooseObjectWarehouseBase< Indicator >::addObject(), MooseObjectWarehouseBase< Indicator >::getActiveObject(), MooseObjectWarehouseBase< Indicator >::getActiveObjects(), MooseObjectWarehouseBase< Indicator >::hasActiveObject(), MooseObjectWarehouseBase< Indicator >::hasActiveObjects(), MooseObjectWarehouseBase< Indicator >::subdomainsCovered(), and MooseObjectWarehouseBase< Indicator >::updateActive().
|
protectedinherited |
|
protectedinherited |
Definition at line 223 of file MooseObjectWarehouseBase.h.
Referenced by MooseObjectWarehouseBase< Indicator >::addObject(), MooseObjectWarehouseBase< Indicator >::getBoundaryObjects(), MooseObjectWarehouseBase< Indicator >::hasBoundaryObjects(), sort(), MooseObjectWarehouseBase< Indicator >::sort(), and MooseObjectWarehouseBase< Indicator >::updateActive().
|
protectedinherited |
Storage container for the ALL pointers (THREAD_ID on outer vector)
Definition at line 211 of file MooseObjectWarehouseBase.h.
Referenced by MooseObjectWarehouseBase< Indicator >::addObject(), MooseObjectWarehouseBase< Indicator >::getObject(), MooseObjectWarehouseBase< Indicator >::getObjects(), MooseObjectWarehouseBase< Indicator >::hasObjects(), MooseObjectWarehouseBase< Indicator >::size(), MooseObjectWarehouseBase< Indicator >::sort(), MooseObjectWarehouseBase< Indicator >::updateActive(), MooseObjectWarehouseBase< Indicator >::updateMatPropDependency(), and MooseObjectWarehouseBase< Indicator >::updateVariableDependency().
|
protectedinherited |
All objects with a certain variable selected, as the 'variable' parameter.
Definition at line 229 of file MooseObjectWarehouseBase.h.
Referenced by MooseObjectWarehouseBase< Indicator >::addObject(), MooseObjectWarehouseBase< Indicator >::getObjectsForVariable(), MooseObjectWarehouseBase< Indicator >::hasObjectsForVariable(), and MooseObjectWarehouseBase< Indicator >::hasObjectsForVariableAndBlocks().
|
protected |
Storage for face material objects (Block are stored in the base class)
Definition at line 61 of file MaterialWarehouse.h.
Referenced by addObjects(), initialSetup(), jacobianSetup(), operator[](), residualSetup(), sort(), subdomainSetup(), timestepSetup(), and updateActive().
|
protected |
Storage for neighbor material objects (Block are stored in the base class)
Definition at line 58 of file MaterialWarehouse.h.
Referenced by addObjects(), initialSetup(), jacobianSetup(), neighborSubdomainSetup(), operator[](), residualSetup(), sort(), timestepSetup(), and updateActive().
|
protectedinherited |
Convenience member storing the number of threads used for storage (1 or libMesh::n_threads)
Definition at line 208 of file MooseObjectWarehouseBase.h.
Referenced by MooseObjectWarehouseBase< Indicator >::checkThreadID().
|
protectedinherited |
Variable based storage.
Definition at line 88 of file MooseObjectWarehouse.h.