#include <CreateDisplacedProblemAction.h>
Public Member Functions | |
CreateDisplacedProblemAction (InputParameters parameters) | |
virtual void | act () override |
Method to add objects to the simulation or perform other setup tasks. More... | |
void | timedAct () |
The method called externally that causes the action to act() More... | |
virtual void | addRelationshipManagers (Moose::RelationshipManagerType when_type) |
Method to add a relationship manager for the objects being added to the system. More... | |
const std::string & | name () const |
The name of the action. More... | |
const std::string & | type () const |
InputParameters & | parameters () |
const InputParameters & | parameters () const |
const std::string & | specificTaskName () const |
const std::set< std::string > & | getAllTasks () const |
template<typename T > | |
T | getCheckedPointerParam (const std::string &name, const std::string &error_string="") const |
Verifies that the requested parameter exists and is not NULL and returns it to the caller. More... | |
bool | isParamValid (const std::string &name) const |
void | appendTask (const std::string &task) |
template<typename... Args> | |
void | paramError (const std::string ¶m, Args... args) |
Emits an error prefixed with the file and line number of the given param (from the input file) along with the full parameter path+name followed by the given args as the message. More... | |
template<typename... Args> | |
void | paramWarning (const std::string ¶m, Args... args) |
Emits a warning prefixed with the file and line number of the given param (from the input file) along with the full parameter path+name followed by the given args as the message. More... | |
template<typename... Args> | |
void | paramInfo (const std::string ¶m, Args... args) |
Emits an informational message prefixed with the file and line number of the given param (from the input file) along with the full parameter path+name followed by the given args as the message. More... | |
std::string | getBaseName () const |
Deprecated name methods, use name() More... | |
std::string | getShortName () const |
DEPRECATED METHODS. More... | |
template<typename T > | |
const T & | getParamTempl (const std::string &name) const |
Retrieve a parameter for the object. More... | |
Static Public Member Functions | |
static InputParameters | validParams () |
Public Attributes | |
const ConsoleStream | _console |
An instance of helper class to write streams to the Console objects. More... | |
Static Public Attributes | |
static constexpr auto | FILE_SUFFIX = "_mesh" |
The suffix appended when writing the restartable data file. More... | |
static constexpr auto | SYSTEM = "MeshMetaData" |
The system name used when initializing the Restartable interface. More... | |
static constexpr auto | NAME = "<empty>" |
The data name used when initializing the Restartable interface for non-MeshGenerator objects. More... | |
Protected Member Functions | |
void | addProxyAlgebraicRelationshipManagers (SystemBase &to, SystemBase &from) |
Sets up a ProxyRelationshipManager that copies algebraic ghosting from->to. More... | |
void | addProxyGeometricRelationshipManagers (SystemBase &to, SystemBase &from) |
Sets up a ProxyRelationshipManager that copies geometric ghosting from->to. More... | |
void | addRelationshipManagers (Moose::RelationshipManagerType when_type, const InputParameters &moose_object_pars) |
Method to add a relationship manager for the objects being added to the system. More... | |
template<typename T > | |
const T & | getMeshProperty (const std::string &data_name, const std::string &prefix) |
Method for retrieving a property with the given type and name exists in the mesh meta-data store. More... | |
PerfID | registerTimedSection (const std::string §ion_name, const unsigned int level) |
Call to register a named section for timing. More... | |
Protected Attributes | |
InputParameters | _pars |
Input parameters for the action. More... | |
std::string | _registered_identifier |
std::string | _name |
The name of the action. More... | |
std::string | _action_type |
MooseApp & | _app |
The MOOSE application this is associated with. More... | |
Factory & | _factory |
The Factory associated with the MooseApp. More... | |
ActionFactory & | _action_factory |
Builds Actions. More... | |
std::string | _specific_task_name |
This member will only be populated if this Action instance is only designed to handle one task. More... | |
std::set< std::string > | _all_tasks |
A list of all the tasks that this Action will satisfy. More... | |
ActionWarehouse & | _awh |
Reference to ActionWarehouse where we store object build by actions. More... | |
const std::string & | _current_task |
The current action (even though we have seperate instances for each action) More... | |
std::shared_ptr< MooseMesh > & | _mesh |
std::shared_ptr< MooseMesh > & | _displaced_mesh |
std::shared_ptr< FEProblemBase > & | _problem |
Convenience reference to a problem this action works on. More... | |
PerfID | _act_timer |
Timers. More... | |
const InputParameters * | _pg_params |
Params. More... | |
PerfGraph & | _perf_graph |
The performance graph to add to. More... | |
std::string | _prefix |
A prefix to use for all sections. More... | |
Private Member Functions | |
void | addProxyRelationshipManagers (SystemBase &to, SystemBase &from, Moose::RelationshipManagerType rm_type, std::string type) |
Generic adder of ProxyRelationshipManagers. More... | |
void | addRelationshipManager (Moose::RelationshipManagerType input_rm_type, const InputParameters &moose_object_pars, std::string rm_name, Moose::RelationshipManagerType rm_type, Moose::RelationshipManagerInputParameterCallback rm_input_parameter_func, Moose::RMSystemType sys_type) |
Method for adding a single relationship manager. More... | |
RestartableDataValue & | registerMetaDataOnApp (const std::string &name, std::unique_ptr< RestartableDataValue > data) |
Helper function for actually registering the restartable data. More... | |
Private Attributes | |
MooseApp & | _meta_data_app |
Reference to the application. More... | |
Definition at line 23 of file CreateDisplacedProblemAction.h.
CreateDisplacedProblemAction::CreateDisplacedProblemAction | ( | InputParameters | parameters | ) |
Definition at line 45 of file CreateDisplacedProblemAction.C.
|
overridevirtual |
Method to add objects to the simulation or perform other setup tasks.
Implements Action.
Definition at line 96 of file CreateDisplacedProblemAction.C.
|
protected |
Sets up a ProxyRelationshipManager that copies algebraic ghosting from->to.
Definition at line 82 of file CreateDisplacedProblemAction.C.
Referenced by act().
|
protected |
Sets up a ProxyRelationshipManager that copies geometric ghosting from->to.
Definition at line 89 of file CreateDisplacedProblemAction.C.
Referenced by act().
|
private |
Generic adder of ProxyRelationshipManagers.
to | The system to add RelationshipManagers for |
from | The system to copy RelationshipManagers over from |
rm_type | The Moose::RelationshipManagerType, e.g. GEOMETRIC or ALGEBRAIC (COUPLING doesn't need to be copied back and forth) |
type | A string form of the type, e.g. "geometric", "algebraic", or "coupling" |
Definition at line 51 of file CreateDisplacedProblemAction.C.
Referenced by addProxyAlgebraicRelationshipManagers(), and addProxyGeometricRelationshipManagers().
|
privateinherited |
Method for adding a single relationship manager.
input_rm_type | What relationship manager type we are currently adding |
moose_object_pars | The parameters of the MooseObject that requested the RM |
rm_name | The class type of the RM, e.g. ElementSideNeighborLayers |
rm_type | The RelationshipManagerType, e.g. geometric, algebraic, coupling |
rm_input_parameter_func | The RM callback function, typically a lambda defined in the requesting MooseObject's validParams function |
sys_type | A RMSystemType that can be used to limit the systems and consequent dof_maps that the RM can be attached to |
Definition at line 97 of file Action.C.
Referenced by Action::addRelationshipManagers().
|
virtualinherited |
Method to add a relationship manager for the objects being added to the system.
Relationship managers have to be added relatively early. In many cases before the Action::act() method is called.
when_type | The parameter indicating the normal time for adding either Geometric or Algebraic RelationshipManagers. It may not always be possible to add your RelationshipManager as early as you'd like. In these cases, your DistributedMesh may consume more memory during the problem setup. |
Reimplemented in MooseObjectAction.
|
protectedinherited |
Method to add a relationship manager for the objects being added to the system.
Relationship managers have to be added relatively early. In many cases before the Action::act() method is called.
when_type | The parameter indicating the normal time for adding either Geometric or Algebraic RelationshipManagers. It may not always be possible to add your RelationshipManager as early as you'd like. In these cases, your DistributedMesh may consume more memory during the problem setup. |
moose_object_pars | The MooseObject to inspect for RelationshipManagers to add |
Definition at line 197 of file Action.C.
Referenced by CouplingFunctorCheckAction::act().
|
inlineinherited |
|
inlineinherited |
|
inherited |
|
inlineinherited |
Verifies that the requested parameter exists and is not NULL and returns it to the caller.
The template parameter must be a pointer or an error will be thrown.
|
protectedinherited |
Method for retrieving a property with the given type and name exists in the mesh meta-data store.
This method will throw an error if the property does not exist.
Definition at line 72 of file MeshMetaDataInterface.h.
|
inherited |
Retrieve a parameter for the object.
name | The name of the parameter |
Definition at line 254 of file Action.h.
Referenced by MooseApp::getCheckpointDirectories().
|
inherited |
|
inlineinherited |
Definition at line 144 of file Action.h.
Referenced by CopyNodalVarsAction::act(), SetAdaptivityOptionsAction::act(), SetupMeshAction::act(), act(), AddPeriodicBCAction::autoTranslationBoundaries(), DynamicObjectRegistrationAction::DynamicObjectRegistrationAction(), and SetupMeshAction::setupMesh().
|
inlineinherited |
The name of the action.
Definition at line 105 of file Action.h.
Referenced by AddElementalFieldAction::act(), CopyNodalVarsAction::act(), AdaptivityAction::act(), DeprecatedBlockAction::act(), DisplayGhostingAction::act(), AddVariableAction::act(), AddPeriodicBCAction::act(), MaterialOutputAction::act(), Action::addRelationshipManager(), AddVariableAction::createInitialConditionAction(), Action::getCheckedPointerParam(), Action::getParamTempl(), Action::isParamValid(), GlobalParamsAction::remove(), GlobalParamsAction::setDoubleIndexParam(), GlobalParamsAction::setScalarParam(), and GlobalParamsAction::setVectorParam().
|
inlineinherited |
Emits an error prefixed with the file and line number of the given param (from the input file) along with the full parameter path+name followed by the given args as the message.
If this object's parameters were not created directly by the Parser, then this function falls back to the normal behavior of mooseError - only printing a message using the given args.
Definition at line 155 of file Action.h.
|
inlineinherited |
Definition at line 117 of file Action.h.
Referenced by Action::getCheckedPointerParam(), GlobalParamsAction::remove(), GlobalParamsAction::setDoubleIndexParam(), GlobalParamsAction::setScalarParam(), and GlobalParamsAction::setVectorParam().
|
inlineinherited |
|
inlineinherited |
Emits an informational message prefixed with the file and line number of the given param (from the input file) along with the full parameter path+name followed by the given args as the message.
If this object's parameters were not created directly by the Parser, then this function falls back to the normal behavior of mooseInfo - only printing a message using the given args.
Definition at line 186 of file Action.h.
|
inlineinherited |
Emits a warning prefixed with the file and line number of the given param (from the input file) along with the full parameter path+name followed by the given args as the message.
If this object's parameters were not created directly by the Parser, then this function falls back to the normal behavior of mooseWarning - only printing a message using the given args.
Definition at line 170 of file Action.h.
|
privateinherited |
Helper function for actually registering the restartable data.
Definition at line 23 of file MeshMetaDataInterface.C.
Referenced by MeshMetaDataInterface::getMeshProperty().
|
protectedinherited |
Call to register a named section for timing.
section_name | The name of the code section to be timed |
level | The importance of the timer - lower is more important (0 will always come out) |
Definition at line 51 of file PerfGraphInterface.C.
|
inlineinherited |
|
inherited |
The method called externally that causes the action to act()
|
inlineinherited |
Definition at line 115 of file Action.h.
Referenced by CreateProblemDefaultAction::act(), SetupDebugAction::act(), addProxyRelationshipManagers(), MaterialOutputAction::getParams(), and CommonOutputAction::hasConsole().
|
static |
Definition at line 26 of file CreateDisplacedProblemAction.C.
|
protectedinherited |
|
protectedinherited |
Builds Actions.
Definition at line 219 of file Action.h.
Referenced by CommonOutputAction::create(), AddVariableAction::createInitialConditionAction(), DynamicObjectRegistrationAction::DynamicObjectRegistrationAction(), and CreateExecutionerAction::setupAutoPreconditioning().
|
protectedinherited |
Definition at line 210 of file Action.h.
Referenced by Action::type().
|
protectedinherited |
A list of all the tasks that this Action will satisfy.
Note: That this is not populated at construction time. However, all tasks will be added prior to act().
Definition at line 234 of file Action.h.
Referenced by Action::appendTask(), and Action::getAllTasks().
|
protectedinherited |
The MOOSE application this is associated with.
Definition at line 213 of file Action.h.
Referenced by CheckIntegrityAction::act(), CreateExecutionerAction::act(), ExecuteMeshGenerators::act(), CopyNodalVarsAction::act(), SetAdaptivityOptionsAction::act(), AddMeshModifierAction::act(), CreateProblemAction::act(), CreateProblemDefaultAction::act(), AddMeshGeneratorAction::act(), SplitMeshAction::act(), MeshOnlyAction::act(), SetupMeshAction::act(), AdaptivityAction::act(), SetupMeshCompleteAction::act(), SetupTimeStepperAction::act(), SetupPredictorAction::act(), CouplingFunctorCheckAction::act(), AddRelationshipManager::act(), DisplayGhostingAction::act(), SetupRecoverFileBaseAction::act(), AddPeriodicBCAction::act(), MaterialOutputAction::act(), CommonOutputAction::act(), addProxyRelationshipManagers(), Action::addRelationshipManager(), CheckOutputAction::checkConsoleOutput(), CheckOutputAction::checkMaterialOutput(), CheckOutputAction::checkPerfLogOutput(), CheckOutputAction::checkVariableOutput(), SetupMeshCompleteAction::completeSetup(), DynamicObjectRegistrationAction::DynamicObjectRegistrationAction(), SetupMeshAction::modifyParamsForUseSplit(), and SetupMeshAction::setupMesh().
|
protectedinherited |
Reference to ActionWarehouse where we store object build by actions.
Definition at line 237 of file Action.h.
Referenced by CheckIntegrityAction::act(), SetupDampersAction::act(), CreateExecutionerAction::act(), CreateProblemDefaultAction::act(), SetupMeshAction::act(), AddRelationshipManager::act(), CommonOutputAction::create(), AddVariableAction::createInitialConditionAction(), DynamicObjectRegistrationAction::DynamicObjectRegistrationAction(), CommonOutputAction::hasConsole(), CreateExecutionerAction::setupAutoPreconditioning(), and SetupDebugAction::SetupDebugAction().
|
inherited |
An instance of helper class to write streams to the Console objects.
Definition at line 31 of file ConsoleStreamInterface.h.
Referenced by IterationAdaptiveDT::acceptStep(), Adaptivity::adaptMesh(), FEProblemBase::adaptMesh(), SimplePredictor::apply(), MultiApp::backup(), FEProblemBase::backupMultiApps(), ReferenceResidualProblem::checkNonlinearConvergence(), FEProblemBase::checkProblemIntegrity(), CoarsenedPiecewiseLinear::CoarsenedPiecewiseLinear(), IterationAdaptiveDT::computeAdaptiveDT(), Transient::computeConstrainedDT(), NonlinearSystemBase::computeDamping(), IterationAdaptiveDT::computeDT(), IterationAdaptiveDT::computeFailedDT(), IterationAdaptiveDT::computeInterpolationDT(), FEProblemBase::computeResidualTags(), NonlinearSystem::computeScaling(), IterationAdaptiveDT::constrainStep(), TimeStepper::constrainStep(), MultiApp::createApp(), FEProblemBase::execMultiApps(), FEProblemBase::execMultiAppTransfers(), MultiAppPostprocessorTransfer::execute(), MultiAppPostprocessorInterpolationTransfer::execute(), MultiAppVariableValueSamplePostprocessorTransfer::execute(), MultiAppVectorPostprocessorTransfer::execute(), MultiAppMeshFunctionTransfer::execute(), MultiAppCopyTransfer::execute(), MultiAppInterpolationTransfer::execute(), MultiAppUserObjectTransfer::execute(), MultiAppVariableValueSampleTransfer::execute(), MultiAppScalarToAuxScalarTransfer::execute(), MultiAppPostprocessorToAuxScalarTransfer::execute(), MultiAppNearestNodeTransfer::execute(), MultiAppProjectionTransfer::execute(), Steady::execute(), ActionWarehouse::executeActionsWithAction(), ActionWarehouse::executeAllActions(), ElementQualityChecker::finalize(), FEProblemBase::finishMultiAppStep(), MultiApp::globalAppToLocal(), InversePowerMethod::init(), NonlinearEigen::init(), Steady::init(), FEProblemBase::initialAdaptMesh(), FEProblemBase::initialSetup(), EigenExecutionerBase::inversePowerIteration(), Transient::keepGoing(), IterationAdaptiveDT::limitDTByFunction(), IterationAdaptiveDT::limitDTToPostprocessorValue(), EigenExecutionerBase::makeBXConsistent(), Console::meshChanged(), MooseObject::mooseDeprecated(), MooseObject::mooseInfo(), MooseObject::mooseWarning(), PerfGraphOutput::output(), DOFMapOutput::output(), VariableResidualNormsDebugOutput::output(), Console::output(), ControlOutput::outputActiveObjects(), ControlOutput::outputChangedControls(), ControlOutput::outputControls(), Console::outputInput(), Console::outputPostprocessors(), Console::outputScalarVariables(), Console::outputSystemInformation(), FEProblemBase::possiblyRebuildGeomSearchPatches(), MultiAppConservativeTransfer::postExecute(), EigenExecutionerBase::postExecute(), AB2PredictorCorrector::postSolve(), ActionWarehouse::printActionDependencySets(), EigenExecutionerBase::printEigenvalue(), MaterialPropertyDebugOutput::printMaterialMap(), AutomaticMortarGeneration::projectMasterNodesSinglePair(), AutomaticMortarGeneration::projectSlaveNodesSinglePair(), SolutionTimeAdaptiveDT::rejectStep(), DT2::rejectStep(), MultiApp::restore(), FEProblemBase::restoreMultiApps(), SimplePredictor::shouldApply(), PicardSolve::solve(), NonlinearSystem::solve(), LStableDirk2::solve(), LStableDirk3::solve(), ImplicitMidpoint::solve(), ExplicitTVDRK2::solve(), AStableDirk4::solve(), LStableDirk4::solve(), ExplicitRK2::solve(), TransientMultiApp::solveStep(), PicardSolve::solveStep(), DT2::step(), AB2PredictorCorrector::step(), NonlinearEigen::takeStep(), Transient::takeStep(), Console::writeTimestepInformation(), Console::writeVariableNorms(), and FEProblemBase::~FEProblemBase().
|
protectedinherited |
The current action (even though we have seperate instances for each action)
Definition at line 240 of file Action.h.
Referenced by AddDGKernelAction::act(), AddKernelAction::act(), AddScalarKernelAction::act(), SetAdaptivityOptionsAction::act(), CheckIntegrityAction::act(), CopyNodalVarsAction::act(), AddInterfaceKernelAction::act(), CreateProblemDefaultAction::act(), SetupMeshCompleteAction::act(), AdaptivityAction::act(), SetupMeshAction::act(), act(), AddRelationshipManager::act(), MaterialDerivativeTestAction::act(), DisplayGhostingAction::act(), AddOutputAction::act(), SetupRecoverFileBaseAction::act(), AddPeriodicBCAction::act(), MaterialOutputAction::act(), and AddNodalNormalsAction::act().
|
protectedinherited |
Definition at line 243 of file Action.h.
Referenced by SetupMeshAction::act(), SetupMeshCompleteAction::act(), act(), and Action::addRelationshipManager().
|
protectedinherited |
The Factory associated with the MooseApp.
Definition at line 216 of file Action.h.
Referenced by CreateExecutionerAction::act(), PartitionerAction::act(), SetAdaptivityOptionsAction::act(), CreateProblemAction::act(), CreateProblemDefaultAction::act(), AdaptivityAction::act(), SetupDebugAction::act(), SetupMeshAction::act(), SetupPredictorAction::act(), SetupPreconditionerAction::act(), SetupTimeStepperAction::act(), SetupResidualDebugAction::act(), act(), MaterialDerivativeTestAction::act(), DisplayGhostingAction::act(), AddPeriodicBCAction::act(), MaterialOutputAction::act(), AddControlAction::act(), AddNodalNormalsAction::act(), addProxyRelationshipManagers(), Action::addRelationshipManager(), DynamicObjectRegistrationAction::DynamicObjectRegistrationAction(), and MaterialOutputAction::getParams().
|
protectedinherited |
Definition at line 242 of file Action.h.
Referenced by PartitionerAction::act(), SetAdaptivityOptionsAction::act(), AddMeshGeneratorAction::act(), AddMeshModifierAction::act(), CreateProblemDefaultAction::act(), CreateProblemAction::act(), SetupMeshCompleteAction::act(), AdaptivityAction::act(), SetupMeshAction::act(), act(), AddPeriodicBCAction::act(), and Action::addRelationshipManager().
|
privateinherited |
Reference to the application.
Definition at line 67 of file MeshMetaDataInterface.h.
Referenced by MeshMetaDataInterface::registerMetaDataOnApp().
|
protectedinherited |
The name of the action.
Definition at line 207 of file Action.h.
Referenced by AddBCAction::act(), AddConstraintAction::act(), AddUserObjectAction::act(), AddInterfaceKernelAction::act(), AddMarkerAction::act(), AddMaterialAction::act(), AddScalarKernelAction::act(), AddPostprocessorAction::act(), AddDamperAction::act(), AddIndicatorAction::act(), AddTransferAction::act(), AddDiracKernelAction::act(), AddVectorPostprocessorAction::act(), AddMultiAppAction::act(), AddKernelAction::act(), AddInitialConditionAction::act(), PartitionerAction::act(), AddNodalKernelAction::act(), AddDGKernelAction::act(), AddMeshGeneratorAction::act(), AddFieldSplitAction::act(), AddMeshModifierAction::act(), SetupTimeIntegratorAction::act(), SetupPreconditionerAction::act(), AddDistributionAction::act(), AddFunctionAction::act(), AddSamplerAction::act(), AddOutputAction::act(), AddPeriodicBCAction::act(), AddControlAction::act(), SetupPostprocessorDataAction::act(), AddVariableAction::addVariable(), CouplingFunctorCheckAction::CouplingFunctorCheckAction(), Action::getBaseName(), Action::getShortName(), and Action::name().
|
protectedinherited |
Input parameters for the action.
Definition at line 201 of file Action.h.
Referenced by AddICAction::act(), CreateProblemAction::act(), CreateProblemDefaultAction::act(), SetupDebugAction::act(), SetupMeshAction::act(), AddPeriodicBCAction::act(), CommonOutputAction::act(), Action::getParamTempl(), AddVariableAction::init(), Action::isParamValid(), Action::paramError(), Action::parameters(), Action::paramInfo(), Action::paramWarning(), and SetupMeshAction::setupMesh().
|
protectedinherited |
The performance graph to add to.
Definition at line 67 of file PerfGraphInterface.h.
Referenced by PerfGraphData::getValue(), and PerfGraphInterface::registerTimedSection().
|
protectedinherited |
Params.
Definition at line 64 of file PerfGraphInterface.h.
|
protectedinherited |
A prefix to use for all sections.
Definition at line 70 of file PerfGraphInterface.h.
Referenced by PerfGraphInterface::registerTimedSection().
|
protectedinherited |
Convenience reference to a problem this action works on.
Definition at line 246 of file Action.h.
Referenced by AddBCAction::act(), AddBoundsVectorsAction::act(), AddDGKernelAction::act(), AddInitialConditionAction::act(), AddConstraintAction::act(), AddInterfaceKernelAction::act(), AddVectorPostprocessorAction::act(), AddDiracKernelAction::act(), AddKernelAction::act(), AddICAction::act(), AddMultiAppAction::act(), CopyNodalVarsAction::act(), AddUserObjectAction::act(), AddTransferAction::act(), AddMarkerAction::act(), SetupDampersAction::act(), AddNodalKernelAction::act(), InitProblemAction::act(), AddDamperAction::act(), SetAdaptivityOptionsAction::act(), CreateExecutionerAction::act(), CheckIntegrityAction::act(), AddScalarKernelAction::act(), AddIndicatorAction::act(), AddPostprocessorAction::act(), AddMaterialAction::act(), CreateProblemAction::act(), CreateProblemDefaultAction::act(), AddFieldSplitAction::act(), SetupDebugAction::act(), AdaptivityAction::act(), SetupTimeStepperAction::act(), SetupPredictorAction::act(), AddDistributionAction::act(), AddFunctionAction::act(), SetupPreconditionerAction::act(), SetupTimeIntegratorAction::act(), SetupResidualDebugAction::act(), act(), MaterialDerivativeTestAction::act(), CouplingFunctorCheckAction::act(), SetupQuadratureAction::act(), AddSamplerAction::act(), DisplayGhostingAction::act(), AddOutputAction::act(), AddExternalAuxVariableAction::act(), AddPeriodicBCAction::act(), MaterialOutputAction::act(), AddControlAction::act(), SetupPostprocessorDataAction::act(), AddNodalNormalsAction::act(), Action::addRelationshipManager(), AddVariableAction::addVariable(), AddPeriodicBCAction::autoTranslationBoundaries(), CheckOutputAction::checkMaterialOutput(), CheckOutputAction::checkVariableOutput(), AddVariableAction::getSubdomainIDs(), MaterialOutputAction::materialOutputHelper(), and AddPeriodicBCAction::setPeriodicVars().
|
protectedinherited |
Definition at line 204 of file Action.h.
Referenced by SetupMeshAction::act().
|
protectedinherited |
This member will only be populated if this Action instance is only designed to handle one task.
This happens when an Action is registered with several pieces of syntax in which case separate instances are built to handle the different incoming parameter values.
Definition at line 227 of file Action.h.
Referenced by Action::specificTaskName().
|
staticconstexprinherited |
The suffix appended when writing the restartable data file.
Definition at line 32 of file MeshMetaDataInterface.h.
Referenced by SetupRecoverFileBaseAction::act(), and Checkpoint::output().
|
staticconstexprinherited |
The data name used when initializing the Restartable interface for non-MeshGenerator objects.
Definition at line 38 of file MeshMetaDataInterface.h.
|
staticconstexprinherited |
The system name used when initializing the Restartable interface.
Definition at line 35 of file MeshMetaDataInterface.h.
Referenced by MeshGenerator::declareMeshProperty(), and MeshMetaDataInterface::getMeshProperty().