https://mooseframework.inl.gov
Classes | Public Types | Public Member Functions | Protected Attributes | Private Member Functions | Static Private Member Functions | Private Attributes | Friends | List of all members
InputParameters Class Reference

The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system. More...

#include <InputParameters.h>

Inheritance diagram for InputParameters:
[legend]

Classes

struct  CommandLineMetadata
 Structure for storing information about a command line parameter. More...
 
class  CommandLineParamSetKey
 Class that is used as a parameter to commandLineParamSet() that allows only the CommandLine to set that a parmeter is set by the command line. More...
 
struct  isValidCommandLineType
 Determines whether or not the given type is a type that is supported for a command line parameter. More...
 
struct  Metadata
 
class  SetHitNodeKey
 Class that is used as a parameter to setHitNode() that allows only relevant classes to set the hit node. More...
 
class  SetParamHitNodeKey
 Class that is used as a parameter to setHitNode(param) that allows only relevant classes to set the hit node. More...
 

Public Types

typedef std::map< std::string, std::unique_ptr< Value >, std::less<> > map_type
 
typedef map_type::iterator iterator
 
typedef map_type::const_iterator const_iterator
 

Public Member Functions

 InputParameters (const InputParameters &rhs)
 
 InputParameters (const Parameters &rhs)
 
virtual ~InputParameters ()=default
 
virtual void clear () override
 
void addClassDescription (const std::string &doc_string)
 This method adds a description of the class that will be displayed in the input file syntax dump. More...
 
std::string getClassDescription () const
 Returns the class description. More...
 
virtual void set_attributes (const std::string &name, bool inserted_only) override
 Override from libMesh to set user-defined attributes on our parameter. More...
 
std::optional< std::string > queryDeprecatedParamMessage (const std::string &name) const
 
template<typename T >
void setHelper (const std::string &name)
 This functions is called in set as a 'callback' to avoid code duplication. More...
 
template<typename T >
T & set (const std::string &name, bool quiet_mode=false)
 Returns a writable reference to the named parameters. More...
 
template<typename T , typename... Ts>
void setParameters (const std::string &name, const T &value, Ts... extra_input_parameters)
 Given a series of parameters names and values, sets each name to the corresponding value. More...
 
template<typename 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...
 
template<typename T >
void addRequiredParam (const std::string &name, const std::string &doc_string)
 This method adds a parameter and documentation string to the InputParameters object that will be extracted from the input file. More...
 
template<typename T >
void addRequiredParam (const std::string &name, const T &moose_enum, const std::string &doc_string)
 This version of addRequiredParam is here for a consistent use with MooseEnums. More...
 
template<typename T >
void addParam (const std::string &name, const std::initializer_list< typename T::value_type > &value, const std::string &doc_string)
 Enable support for initializer lists as default arguments for container type. More...
 
template<typename T >
void addRequiredCustomTypeParam (const std::string &name, const std::string &custom_type, const std::string &doc_string)
 These methods add an option parameter and with a customer type to the InputParameters object. More...
 
template<typename T >
void addCustomTypeParam (const std::string &name, const T &value, const std::string &custom_type, const std::string &doc_string)
 
template<typename T >
void addCustomTypeParam (const std::string &name, const std::string &custom_type, const std::string &doc_string)
 
template<typename T >
void addDeprecatedCustomTypeParam (const std::string &name, const std::string &custom_type, const std::string &doc_string, const std::string &deprecation_msg)
 
template<typename T >
void addPrivateParam (const std::string &name, const T &value)
 These method add a parameter to the InputParameters object which can be retrieved like any other parameter. More...
 
template<typename T >
void addPrivateParam (const std::string &name)
 
template<typename T >
void addRequiredCommandLineParam (const std::string &name, const std::string &syntax, const std::string &doc_string)
 Add parameters for retrieval from the command line. More...
 
template<typename T >
void addCommandLineParam (const std::string &name, const std::string &syntax, const std::string &doc_string)
 
template<typename T >
void addCommandLineParam (const std::string &name, const std::string &syntax, const T &value, const std::string &doc_string)
 
template<typename T >
void addCommandLineParam (const std::string &name, const std::string &syntax, const std::initializer_list< typename T::value_type > &value, const std::string &doc_string)
 
template<typename T >
void addOptionalValuedCommandLineParam (const std::string &name, const std::string &syntax, const T &value, const std::string &doc_string)
 Add a command line parameter with an optional value. More...
 
void setGlobalCommandLineParam (const std::string &name)
 Sets the command line parameter with name as global. More...
 
template<typename T >
void addDeprecatedParam (const std::string &name, const T &value, const std::string &doc_string, const std::string &deprecation_message)
 
template<typename T >
void addDeprecatedParam (const std::string &name, const std::string &doc_string, const std::string &deprecation_message)
 
template<typename T >
void checkConsistentType (const std::string &name) const
 This method checks to make sure that we aren't adding a parameter with the same name but a different type. More...
 
bool isCommandLineParameter (const std::string &name) const
 
std::optional< InputParameters::CommandLineMetadataqueryCommandLineMetadata (const std::string &name) const
 
const InputParameters::CommandLineMetadatagetCommandLineMetadata (const std::string &name) const
 
void commandLineParamSet (const std::string &name, const CommandLineParamSetKey)
 Marks the command line parameter name as set by the CommandLine. More...
 
const std::string & getDescription (const std::string &name) const
 Get the documentation string for a parameter. More...
 
void addParamNamesToGroup (const std::string &space_delim_names, const std::string group_name)
 This method takes a space delimited list of parameter names and adds them to the specified group name. More...
 
void renameParameterGroup (const std::string &old_name, const std::string &new_name)
 This method renames a parameter group. More...
 
std::string getGroupName (const std::string &param_name) const
 This method retrieves the group name for the passed parameter name if one exists. More...
 
template<typename T >
void suppressParameter (const std::string &name)
 This method suppresses an inherited parameter so that it isn't required or valid in the derived class. More...
 
template<typename T >
void makeParamRequired (const std::string &name)
 Changes the parameter to be required. More...
 
template<typename T >
void makeParamNotRequired (const std::string &name)
 Changes the parameter to not be required. More...
 
void addCoupledVar (const std::string &name, const std::string &doc_string)
 This method adds a coupled variable name pair. More...
 
void addDeprecatedCoupledVar (const std::string &old_name, const std::string &new_name, const std::string &removal_date="")
 This method adds a deprecated coupled variable name pair. More...
 
void addCoupledVar (const std::string &name, const Real value, const std::string &doc_string)
 This method adds a coupled variable name pair. More...
 
void addCoupledVar (const std::string &name, const std::vector< Real > &value, const std::string &doc_string)
 This method adds a coupled variable name pair. More...
 
std::string getMooseType (const std::string &name) const
 Utility functions for retrieving one of the MooseTypes variables into the common "string" base class. More...
 
std::vector< std::string > getVecMooseType (const std::string &name) const
 
bool isMooseBaseObject () const
 
const std::string * queryObjectType () const
 
const std::string & getObjectType () const
 
const std::string & getObjectName () const
 
void addRequiredCoupledVar (const std::string &name, const std::string &doc_string)
 This method adds a coupled variable name pair. More...
 
std::string getDocString (const std::string &name) const
 Returns the documentation string for the specified parameter name. More...
 
void setDocString (const std::string &name, const std::string &doc)
 Set the doc string of a parameter. More...
 
std::string getDocUnit (const std::string &name) const
 Returns the documentation unit string for the specified parameter name. More...
 
void setDocUnit (const std::string &name, const std::string &doc_unit)
 Set the unit string of a parameter. More...
 
bool isParamRequired (const std::string &name) const
 Returns a boolean indicating whether the specified parameter is required or not. More...
 
void makeParamNotRequired (const std::string &name)
 Forces parameter of given name to be not required regardless of type. More...
 
bool isParamValid (const std::string &name) const
 This method returns parameters that have been initialized in one fashion or another, i.e. More...
 
bool isParamSetByAddParam (const std::string &name) const
 Returns whether or not the parameter was set due to addParam. More...
 
bool isParamDeprecated (const std::string &name) const
 Returns True if the parameters is deprecated. More...
 
bool isKokkosObject () const
 Returns whether this InputParameters belongs to a Kokkos object Checks whether MooseBase::kokkos_object_param is valid. More...
 
bool areAllRequiredParamsValid () const
 This method returns true if all of the parameters in this object are valid (i.e. More...
 
std::string type (const std::string &name) const
 Prints the type of the requested parameter by name. More...
 
bool isPrivate (const std::string &name) const
 Returns a Boolean indicating whether the specified parameter is private or not. More...
 
void declareControllable (const std::string &name, std::set< ExecFlagType > execute_flags={})
 Declare the given parameters as controllable. More...
 
void markControlled (const std::string &name)
 Marker a parameter that has been changed by the Control system (this is for output purposes) More...
 
bool isControllable (const std::string &name) const
 Returns a Boolean indicating whether the specified parameter is controllable. More...
 
const std::set< ExecFlagType > & getControllableExecuteOnTypes (const std::string &name) const
 Return the allowed execute flags for a controllable parameter. More...
 
void registerBase (const std::string &value)
 This method must be called from every base "Moose System" to create linkage with the Action System. More...
 
bool hasBase () const
 
const std::string & getBase () const
 
void registerSystemAttributeName (const std::string &value)
 This method is used to define the MOOSE system name that is used by the TheWarehouse object for storing objects to be retrieved for execution. More...
 
const std::string & getSystemAttributeName () const
 Get the system attribute name if it was registered. More...
 
void registerBuildableTypes (const std::string &names)
 This method is here to indicate which Moose types a particular Action may build. More...
 
void addRelationshipManager (const std::string &name, Moose::RelationshipManagerType rm_type, Moose::RelationshipManagerInputParameterCallback input_parameter_callback=nullptr)
 Tells MOOSE about a RelationshipManager that this object needs. More...
 
void clearRelationshipManagers ()
 Clears all currently registered RelationshipManagers. More...
 
const std::vector< std::string > & getBuildableTypes () const
 Returns the list of buildable types as a std::vector<std::string> More...
 
const std::vector< std::tuple< std::string, Moose::RelationshipManagerType, Moose::RelationshipManagerInputParameterCallback > > & getBuildableRelationshipManagerTypes () const
 Returns the list of buildable (or required) RelationshipManager object types for this object. More...
 
void checkParams (const std::string &parsing_syntax)
 This function checks parameters stored in the object to make sure they are in the correct state as the user expects: Required parameters are verified as valid meaning that they were either initialized when they were created, or were read from an input file or some other valid source. More...
 
std::optional< std::pair< bool, std::string > > parameterRangeCheck (const Parameters::Value &value, const std::string &long_name, const std::string &short_name, const bool include_param_path)
 Performs a range check on the parameter (which must have a range check) More...
 
void finalize (const std::string &parsing_syntax)
 Finalizes the parameters, which must be done before constructing any objects with these parameters (to be called in the corresponding factories). More...
 
std::filesystem::path getFileBase (const std::optional< std::string > &param_name=std::optional< std::string >()) const
 
std::set< std::string >::const_iterator coupledVarsBegin () const
 Methods returning iterators to the coupled variables names stored in this InputParameters object. More...
 
std::set< std::string >::const_iterator coupledVarsEnd () const
 
const std::set< std::string > & getCoupledVariableParamNames () const
 Return the coupled variable parameter names. More...
 
const std::unordered_map< std::string, std::string > & getNewToDeprecatedVarMap () const
 Return the new to deprecated variable name map. More...
 
bool isRangeChecked (const std::string &param_name) const
 Return whether a parameter has a range check. More...
 
std::string rangeCheckedFunction (const std::string &name) const
 Return the range check function for any parameter (empty string if it is not range checked) More...
 
bool hasDefault (const std::string &param_name) const
 Return whether a parameter has a default. More...
 
bool hasCoupledValue (const std::string &coupling_name) const
 Return whether or not the coupled variable exists. More...
 
bool hasDefaultCoupledValue (const std::string &coupling_name) const
 Return whether or not the requested parameter has a default coupled value. More...
 
Real defaultCoupledValue (const std::string &coupling_name, unsigned int i=0) const
 Get the default value for an optionally coupled variable. More...
 
unsigned int numberDefaultCoupledValues (const std::string &coupling_name) const
 Get the number of defaulted coupled value entries. More...
 
void defaultCoupledValue (const std::string &coupling_name, Real value, unsigned int i=0)
 Set the default value for an optionally coupled variable (called by the Parser). More...
 
std::map< std::string, std::pair< std::string, std::string > > getAutoBuildVectors () const
 Returns the auto build vectors for all parameters. More...
 
void applyParameters (const InputParameters &common, const std::vector< std::string > &exclude={}, const bool allow_private=false)
 Method for applying common parameters. More...
 
void applyCommonUserSetParameters (const InputParameters &common, const std::vector< std::string > &exclude={}, const bool allow_private=false)
 Variant of applyParameters that only applies parameters explicitly set by the user in common (i.e. More...
 
void applySpecificParameters (const InputParameters &common, const std::vector< std::string > &include, bool allow_private=false)
 Method for applying common parameters. More...
 
void applyParameter (const InputParameters &common, const std::string &common_name, bool allow_private=false)
 Apply values from a single parameter in common, to a single parameter stored in this object. More...
 
void applyCoupledVar (const InputParameters &common, const std::string &var_name)
 Apply properties of a single coupled variable in common, to a single coupled variable stored in this object. More...
 
bool paramSetByUser (const std::string &name) const
 Deprecated method. More...
 
bool isParamSetByUser (const std::string &name) const
 Method returns true if the parameter was set by the user. More...
 
bool isParamDefined (const std::string &name) const
 Method returns true if the parameter is defined for any type. More...
 
template<typename T >
const T * queryParam (const std::string &name) const
 Query a parameter. More...
 
template<typename R1 , typename R2 , typename V1 = typename std::conditional<std::is_same<R1, MooseEnumItem>::value, MultiMooseEnum, std::vector<R1>>::type, typename V2 = typename std::conditional<std::is_same<R2, MooseEnumItem>::value, MultiMooseEnum, std::vector<R2>>::type>
std::vector< std::pair< R1, R2 > > get (const std::string &param1, const std::string &param2) const
 Combine two vector parameters into a single vector of pairs. More...
 
std::set< std::string > getParametersList () const
 
std::set< std::string > getControllableParameters () const
 Return list of controllable parameters. More...
 
std::set< std::string > getGroupParameters (const std::string &group) const
 Return names of parameters within a group. More...
 
void setReservedValues (const std::string &name, const std::set< std::string > &reserved)
 Provide a set of reserved values for a parameter. More...
 
std::set< std::string > reservedValues (const std::string &name) const
 Get a set of reserved parameter values. More...
 
std::string blockLocation () const
 
std::string blockFullpath () const
 
const hit::Node * getHitNode (const std::string &param) const
 
void setHitNode (const std::string &param, const hit::Node &node, const SetParamHitNodeKey)
 Sets the hit node associated with the parameter param to node. More...
 
std::string inputLocation (const std::string &param) const
 
std::string paramFullpath (const std::string &param) const
 
std::string paramLocationPrefix (const std::string &param) const
 Returns a prefix containing the parameter name and location (if available) More...
 
template<typename... Args>
std::string paramMessage (const std::string &param, Args... args) const
 
template<typename... Args>
void mooseError (Args &&... args) const
 Emits an error prefixed with the object information, if available. More...
 
template<typename... Args>
void paramError (const std::string &param, Args... args) const
 Emits a parameter error prefixed with the parameter location and object information if available. More...
 
std::string rawParamVal (const std::string &param) const
 
template<typename T >
void ignoreParameter (const std::string &name)
 Informs this object that values for this parameter set from the input file or from the command line should be ignored. More...
 
bool shouldIgnore (const std::string &name)
 Whether to ignore the value of an input parameter set in the input file or from the command line. More...
 
template<typename T >
bool isType (const std::string &name) const
 
std::string varName (const std::string &var_param_name, const std::string &moose_object_with_var_param_name) const
 Determine the actual variable name from the given variable parameter name. More...
 
void renameParam (const std::string &old_name, const std::string &new_name, const std::string &new_docstring)
 Rename a parameter and provide a new documentation string. More...
 
void renameCoupledVar (const std::string &old_name, const std::string &new_name, const std::string &new_docstring)
 Rename a coupled variable and provide a new documentation string. More...
 
void deprecateParam (const std::string &old_name, const std::string &new_name, const std::string &removal_date)
 
void deprecateCoupledVar (const std::string &old_name, const std::string &new_name, const std::string &removal_date)
 
std::string checkForRename (const std::string &name) const
 Checks whether the provided name is a renamed parameter name. More...
 
template<typename T >
const T & get (std::string_view name) const
 A wrapper around the Parameters base class method. More...
 
template<typename T >
bool have_parameter (std::string_view name) const
 A wrapper around the Parameters base class method. More...
 
template<typename T >
void transferParam (const InputParameters &source_param, const std::string &name, const std::string &new_name="", const std::string &new_description="")
 A routine to transfer a parameter from one class' validParams to another. More...
 
std::vector< std::string > paramAliases (const std::string &param_name) const
 Return all the aliased names associated with param_name. More...
 
const hit::Node * getHitNode () const
 
void setHitNode (const hit::Node &node, const SetHitNodeKey)
 Sets the hit node that represents the syntax responsible for creating these parameters. More...
 
bool isFinalized () const
 
std::optional< Moose::DataFileUtils::PathqueryDataFileNamePath (const std::string &name) const
 
std::optional< std::string > setupVariableNames (std::vector< VariableName > &names, const hit::Node &node, const Moose::PassKey< Moose::Builder >)
 Entrypoint for the Builder to setup a std::vector<VariableName> parameter, which will setup the default variable names if appropriate. More...
 
template<>
void addRequiredParam (const std::string &name, const MooseEnum &moose_enum, const std::string &doc_string)
 
template<>
void addRequiredParam (const std::string &name, const MultiMooseEnum &moose_enum, const std::string &doc_string)
 
template<>
void addParam (const std::string &, const std::string &)
 
template<>
void addParam (const std::string &, const std::string &)
 
template<>
void addPrivateParam (const std::string &)
 
template<>
void addPrivateParam (const std::string &)
 
template<>
void addDeprecatedParam (const std::string &, const std::string &, const std::string &)
 
template<>
void addDeprecatedParam (const std::string &, const std::string &, const std::string &)
 
template<>
const MooseEnumgetParamHelper (const std::string &name, const InputParameters &pars)
 
template<>
const MultiMooseEnumgetParamHelper (const std::string &name, const InputParameters &pars)
 
template<>
void addRequiredParam (const std::string &name, const MooseEnum &moose_enum, const std::string &doc_string)
 
template<>
void addRequiredParam (const std::string &name, const MultiMooseEnum &moose_enum, const std::string &doc_string)
 
template<>
void addParam (const std::string &, const std::string &)
 
template<>
void addParam (const std::string &, const std::string &)
 
template<>
void addPrivateParam (const std::string &)
 
template<>
void addPrivateParam (const std::string &)
 
template<>
void addDeprecatedParam (const std::string &, const std::string &, const std::string &)
 
template<>
void addDeprecatedParam (const std::string &, const std::string &, const std::string &)
 
template<>
const MooseEnumgetParamHelper (const std::string &name_in, const InputParameters &pars)
 
template<>
const MultiMooseEnumgetParamHelper (const std::string &name_in, const InputParameters &pars)
 
virtual Parametersoperator+= (const Parameters &source)
 
void insert (const std::string &)
 
T & set (const std::string &)
 
void remove (std::string_view)
 
std::size_t n_parameters () const
 
unsigned int n_parameters () const
 
void print (std::ostream &os=libMesh::out) const
 
iterator begin ()
 
const_iterator begin () const
 
iterator end ()
 
const_iterator end () const
 
template<typename T , typename UP_T >
std::optional< std::pair< bool, std::string > > rangeCheck (const std::string &full_name, const std::string &short_name, const InputParameters::Parameter< T > &param, const bool include_param_path=true)
 Runs a range on the supplied parameter if it exists and throws an error if that check fails. More...
 
template<typename T , typename UP_T >
std::optional< std::pair< bool, std::string > > rangeCheck (const std::string &full_name, const std::string &short_name, const InputParameters::Parameter< std::vector< T >> &param, const bool include_param_path=true)
 
template<typename T , typename S >
void addParam (const std::string &name, const S &value, const std::string &doc_string)
 These methods add an optional parameter and a documentation string to the InputParameters object. More...
 
template<typename T >
void addParam (const std::string &name, const std::string &doc_string)
 
template<typename T >
void addRequiredRangeCheckedParam (const std::string &name, const std::string &parsed_function, const std::string &doc_string)
 These methods add an range checked parameters. More...
 
template<typename T >
void addRangeCheckedParam (const std::string &name, const T &value, const std::string &parsed_function, const std::string &doc_string)
 
template<typename T >
void addRangeCheckedParam (const std::string &name, const std::string &parsed_function, const std::string &doc_string)
 
void addCoupledVarWithAutoBuild (const std::string &name, const std::string &base_name, const std::string &num_name, const std::string &doc_string)
 These methods add a coupled variable name pair. More...
 
void addRequiredCoupledVarWithAutoBuild (const std::string &name, const std::string &base_name, const std::string &num_name, const std::string &doc_string)
 
void collapseSyntaxNesting (bool collapse)
 Mutators for controlling whether or not the outermost level of syntax will be collapsed when printed. More...
 
bool collapseSyntaxNesting () const
 
void mooseObjectSyntaxVisibility (bool visibility)
 Mutators for controlling whether or not the outermost level of syntax will be collapsed when printed. More...
 
bool mooseObjectSyntaxVisibility () const
 
InputParametersoperator= (const InputParameters &rhs)
 
InputParametersoperator+= (const InputParameters &rhs)
 

Static Public Member Functions

template<typename T >
static const T & getParamHelper (const std::string &name, const InputParameters &pars)
 

Protected Attributes

map_type _values
 

Private Member Functions

 InputParameters ()
 
void setParameters ()
 Method to terminate the recursive setParameters definition. More...
 
template<typename T >
std::string appendFunctorDescription (const std::string &doc_string) const
 Appends description of what a functor is to a doc string. More...
 
void setDeprecatedVarDocString (const std::string &new_name, const std::string &doc_string)
 Private method for setting deprecated coupled variable documentation strings. More...
 
void renameParamInternal (const std::string &old_name, const std::string &new_name, const std::string &docstring, const std::string &removal_date)
 
void renameCoupledVarInternal (const std::string &old_name, const std::string &new_name, const std::string &docstring, const std::string &removal_date)
 
std::pair< std::string, const hit::Node * > paramMessageContext (const std::string &param) const
 Get the context associated with a parameter for a message. More...
 
std::string paramMessagePrefix (const std::string &param) const
 Get a prefix for messages associated with a parameter. More...
 
Metadataat (const std::string &param_name)
 
const Metadataat (const std::string &param_name) const
 
void allowCopy (bool status)
 Toggle the availability of the copy constructor. More...
 
void checkParamName (const std::string &name) const
 Make sure the parameter name doesn't have any invalid characters. More...
 
template<typename T , typename S >
void setParamHelper (const std::string &name, T &l_value, const S &r_value)
 This method is called when adding a Parameter with a default value, can be specialized for non-matching types. More...
 
template<typename T >
void addCommandLineParamHelper (const std::string &name, const std::string &syntax, const bool required, const bool value_required)
 Helper for all of the addCommandLineParam() calls, which sets up _cl_data in the metadata. More...
 
void callMooseError (std::string msg, const bool with_prefix=true, const hit::Node *node=nullptr, const bool show_trace=true) const
 Internal helper for calling back to mooseError(), ideally from the underlying MooseBase object if it is available (for more context) More...
 
template<>
void setParamHelper (const std::string &name, PostprocessorName &l_value, const Real &r_value)
 
template<>
void setParamHelper (const std::string &name, PostprocessorName &l_value, const int &r_value)
 
template<>
void setParamHelper (const std::string &, FunctionName &l_value, const Real &r_value)
 
template<>
void setParamHelper (const std::string &, FunctionName &l_value, const int &r_value)
 
template<>
void setParamHelper (const std::string &, MaterialPropertyName &l_value, const Real &r_value)
 
template<>
void setParamHelper (const std::string &, MaterialPropertyName &l_value, const int &r_value)
 
template<>
void setParamHelper (const std::string &, MooseFunctorName &l_value, const Real &r_value)
 
template<>
void setParamHelper (const std::string &, MooseFunctorName &l_value, const int &r_value)
 
template<>
void setParamHelper (const std::string &, PostprocessorName &l_value, const Real &r_value)
 
template<>
void setParamHelper (const std::string &, PostprocessorName &l_value, const int &r_value)
 
template<>
void setParamHelper (const std::string &, FunctionName &l_value, const Real &r_value)
 
template<>
void setParamHelper (const std::string &, FunctionName &l_value, const int &r_value)
 
template<>
void setParamHelper (const std::string &, MaterialPropertyName &l_value, const Real &r_value)
 
template<>
void setParamHelper (const std::string &, MaterialPropertyName &l_value, const int &r_value)
 
template<>
void setParamHelper (const std::string &, MooseFunctorName &l_value, const Real &r_value)
 
template<>
void setParamHelper (const std::string &, MooseFunctorName &l_value, const int &r_value)
 

Static Private Member Functions

template<typename T >
static constexpr bool isFunctorNameType ()
 

Private Attributes

std::map< std::string, Metadata_params
 The actual parameter data. More...
 
std::set< std::string > _coupled_vars
 The coupled variables set. More...
 
std::string _class_description
 The class description for the owning object. More...
 
std::vector< std::string > _buildable_types
 The parameter is used to restrict types that can be built. More...
 
std::vector< std::tuple< std::string, Moose::RelationshipManagerType, Moose::RelationshipManagerInputParameterCallback > > _buildable_rm_types
 The RelationshipManagers that this object may either build or require. More...
 
bool _collapse_nesting
 This parameter collapses one level of nesting in the syntax blocks. More...
 
bool _moose_object_syntax_visibility
 This parameter hides derived MOOSE object types from appearing in syntax dumps. More...
 
bool _show_deprecated_message
 Flag for disabling deprecated parameters message, this is used by applyParameters to avoid dumping messages. More...
 
bool _allow_copy
 A flag for toggling the error message in the copy constructor. More...
 
std::unordered_map< std::string, std::string > _new_to_deprecated_coupled_vars
 A map from deprecated coupled variable names to the new blessed name. More...
 
std::map< std::string, std::pair< std::string, std::string > > _old_to_new_name_and_dep
 A map from base-class/deprecated parameter names to derived-class/blessed parameter names and the deprecation messages in the case that the "old" parameter name is a deprecated parameter name. More...
 
std::multimap< std::string, std::string > _new_to_old_names
 A map from derived-class/blessed parameter names to associated base-class/deprecated parameter names. More...
 
const hit::Node * _hit_node
 The hit node representing the syntax that created these parameters, if any. More...
 
bool _finalized
 Whether or not we've called finalize() on these parameters yet. More...
 

Friends

class InputParameterWarehouse
 
class Parser
 
class ActionWarehouse
 
InputParameters emptyInputParameters ()
 

Detailed Description

The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system.

Definition at line 67 of file InputParameters.h.

Constructor & Destructor Documentation

◆ InputParameters() [1/3]

InputParameters::InputParameters ( const InputParameters rhs)

Definition at line 48 of file InputParameters.C.

50 {
51  *this = rhs;
52 }
bool _allow_copy
A flag for toggling the error message in the copy constructor.
bool _show_deprecated_message
Flag for disabling deprecated parameters message, this is used by applyParameters to avoid dumping me...

◆ InputParameters() [2/3]

InputParameters::InputParameters ( const Parameters rhs)

Definition at line 54 of file InputParameters.C.

56 {
57  _params.clear();
59  _collapse_nesting = false;
61 }
bool _allow_copy
A flag for toggling the error message in the copy constructor.
bool _show_deprecated_message
Flag for disabling deprecated parameters message, this is used by applyParameters to avoid dumping me...
bool _collapse_nesting
This parameter collapses one level of nesting in the syntax blocks.
infix_ostream_iterator< T, charT, traits > & operator=(T const &item)
Definition: InfixIterator.h:47
bool _moose_object_syntax_visibility
This parameter hides derived MOOSE object types from appearing in syntax dumps.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ ~InputParameters()

virtual InputParameters::~InputParameters ( )
virtualdefault

◆ InputParameters() [3/3]

InputParameters::InputParameters ( )
private

Definition at line 37 of file InputParameters.C.

38  : Parameters(),
39  _collapse_nesting(false),
42  _allow_copy(true),
43  _hit_node(nullptr),
44  _finalized(false)
45 {
46 }
bool _allow_copy
A flag for toggling the error message in the copy constructor.
bool _show_deprecated_message
Flag for disabling deprecated parameters message, this is used by applyParameters to avoid dumping me...
bool _collapse_nesting
This parameter collapses one level of nesting in the syntax blocks.
bool _finalized
Whether or not we&#39;ve called finalize() on these parameters yet.
const hit::Node * _hit_node
The hit node representing the syntax that created these parameters, if any.
bool _moose_object_syntax_visibility
This parameter hides derived MOOSE object types from appearing in syntax dumps.

Member Function Documentation

◆ addClassDescription()

void InputParameters::addClassDescription ( const std::string &  doc_string)

This method adds a description of the class that will be displayed in the input file syntax dump.

Definition at line 81 of file InputParameters.C.

Referenced by ConservativeAdvectionTempl< is_ad >::generalParams(), ADFluxFromGradientMaterial::validParams(), FVOneVarDiffusionInterface::validParams(), FVTwoVarContinuityConstraint::validParams(), FVDiffusionInterface::validParams(), AddIndicatorAction::validParams(), AddInitialConditionAction::validParams(), CopyNodalVarsAction::validParams(), BoundaryDeletionGenerator::validParams(), ADDGKernel::validParams(), ConstantVectorPostprocessor::validParams(), ArrayHFEMDiffusion::validParams(), DGConvection::validParams(), AddInterfaceKernelAction::validParams(), CreateExecutionerAction::validParams(), HFEMDiffusion::validParams(), ProcessorIDAux::validParams(), InversePowerMethod::validParams(), AddKernelAction::validParams(), DynamicObjectRegistrationAction::validParams(), ElementIDOutputAction::validParams(), AddMarkerAction::validParams(), GlobalParamsAction::validParams(), CoupledVarThresholdElementSubdomainModifier::validParams(), AddBCAction::validParams(), AddDGKernelAction::validParams(), PartitionerAction::validParams(), AddDiracKernelAction::validParams(), AddMaterialAction::validParams(), ReadExecutorParamsAction::validParams(), FVScalarLagrangeMultiplierInterface::validParams(), AddDamperAction::validParams(), AddMeshGeneratorAction::validParams(), SetupMeshCompleteAction::validParams(), FVAdvection::validParams(), ADRobinBC::validParams(), FVFunctorTimeKernel::validParams(), AddElementalFieldAction::validParams(), AddMultiAppAction::validParams(), ADVectorRobinBC::validParams(), FVMatAdvection::validParams(), FVReaction::validParams(), FVTimeKernel::validParams(), AddNodalKernelAction::validParams(), ArrayHFEMDirichletBC::validParams(), ArrayNeumannBC::validParams(), ArrayPenaltyDirichletBC::validParams(), ArrayVacuumBC::validParams(), PenaltyDirichletNodalKernel::validParams(), AnalyticalIndicator::validParams(), GradientJumpIndicator::validParams(), LaplacianJumpIndicator::validParams(), AddBoundsVectorsAction::validParams(), AddFunctorMaterialAction::validParams(), ArrayVariableComponent::validParams(), ArrayVarReductionAux::validParams(), ADTimeDerivative::validParams(), ADVectorDiffusion::validParams(), BuildArrayVariableAux::validParams(), ADVectorTimeDerivative::validParams(), ArrayDiffusion::validParams(), ArrayReaction::validParams(), ArrayTimeDerivative::validParams(), AddPostprocessorAction::validParams(), HFEMDirichletBC::validParams(), AverageNodalVariableValue::validParams(), ElementArrayL2Norm::validParams(), MassEigenKernel::validParams(), MassLumpedTimeDerivative::validParams(), AddScalarKernelAction::validParams(), ElementIntegerAux::validParams(), EmptyPostprocessor::validParams(), TimeDerivative::validParams(), VectorTimeDerivative::validParams(), NumLinearIterations::validParams(), NumNodes::validParams(), NumRelationshipManagers::validParams(), NumVars::validParams(), PerfGraphData::validParams(), Residual::validParams(), AddConstraintAction::validParams(), AddFVInitialConditionAction::validParams(), ErrorFractionMarker::validParams(), ErrorToleranceMarker::validParams(), TimestepSize::validParams(), VariableResidual::validParams(), VectorPostprocessorComponent::validParams(), AddTransferAction::validParams(), ExtraElementIDAux::validParams(), UniformMarker::validParams(), VectorPostprocessorReductionValue::validParams(), ValueRangeMarker::validParams(), ValueThresholdMarker::validParams(), AddUserObjectAction::validParams(), ExternalProblem::validParams(), AddFVInterfaceKernelAction::validParams(), AddVectorPostprocessorAction::validParams(), ConstantReporter::validParams(), ElementVariableStatistics::validParams(), EqualValueBoundaryConstraint::validParams(), NodalVariableStatistics::validParams(), GenericConstantArray::validParams(), AutoCheckpointAction::validParams(), ADScalarTimeDerivative::validParams(), CoupledODETimeDerivative::validParams(), ODETimeDerivative::validParams(), CheckFVBCAction::validParams(), FileMesh::validParams(), ConstantDT::validParams(), TestSourceStepper::validParams(), TiledMesh::validParams(), VerifyElementUniqueID::validParams(), VerifyNodalUniqueID::validParams(), ElementOrderConversionGenerator::validParams(), PointValueSampler::validParams(), SideValueSampler::validParams(), KokkosIntegralMaterialProperty< KokkosSideIntegralPostprocessor >::validParams(), CreateProblemAction::validParams(), PeriodicFunction::validParams(), JSONOutput::validParams(), XMLOutput::validParams(), CoefReactionTempl< is_ad >::validParams(), AddFieldSplitAction::validParams(), DerivativeSumMaterialTempl< is_ad >::validParams(), ExtraIDIntegralReporter::validParams(), GenericConstantVectorMaterialTempl< is_ad >::validParams(), CSVReaderVectorPostprocessor::validParams(), Eigenvalues::validParams(), LineValueSampler::validParams(), NodalPatchRecoveryAuxBase::validParams(), PenetrationAux::validParams(), UniqueExtraIDMeshGenerator::validParams(), ActivateElementsUserObjectBase::validParams(), MooseObjectAction::validParams(), MFEMNDtoRTAux::validParams(), MFEMBoundaryIntegratedBC::validParams(), MFEMBoundaryNormalIntegratedBC::validParams(), MFEMComplexScalarDirichletBC::validParams(), MFEMComplexVectorNormalDirichletBC::validParams(), MFEMComplexVectorTangentialDirichletBC::validParams(), MFEMRWTE10IntegratedBC::validParams(), MFEMScalarDirichletBC::validParams(), MFEMVectorBoundaryIntegratedBC::validParams(), MFEMVectorDirichletBC::validParams(), FVPostprocessorDirichletBC::validParams(), MFEMVectorFEBoundaryFluxIntegratedBC::validParams(), MFEMVectorFEBoundaryTangentIntegratedBC::validParams(), MFEMVectorFEMassIntegratedBC::validParams(), MFEMVectorNormalDirichletBC::validParams(), MFEMVectorTangentialDirichletBC::validParams(), MFEMScalarFESpace::validParams(), MFEMVectorFESpace::validParams(), AdaptivityAction::validParams(), SetupMeshAction::validParams(), MFEMEigenproblem::validParams(), ArrayFunctionIC::validParams(), FunctionScalarIC::validParams(), ArrayBodyForce::validParams(), ElementExtremeMaterialPropertyTempl< is_ad >::validParams(), ElementExtremeValue::validParams(), ElementL2Error::validParams(), NodalExtremeValue::validParams(), AddFVBCAction::validParams(), SideExtremeValue::validParams(), TimeExtremeValue::validParams(), BoxMarker::validParams(), GapValueAux::validParams(), LogConstantDT::validParams(), AddFVKernelAction::validParams(), ElementQualityChecker::validParams(), ComposeTimeStepperAction::validParams(), MultiPostprocessorConvergence::validParams(), JSONFileReader::validParams(), BlockToMeshConverterGenerator::validParams(), PostprocessorConvergence::validParams(), BoundaryLayerSubdomainGenerator::validParams(), PostprocessorSteadyStateConvergence::validParams(), BreakBoundaryOnSubdomainGenerator::validParams(), CoarsenBlockGenerator::validParams(), NodalPatchRecoveryVariable::validParams(), ElementGenerator::validParams(), ElementsAlongLine::validParams(), ElementsAlongPlane::validParams(), ArrayDGDiffusion::validParams(), ExtraNodesetGenerator::validParams(), IntersectionPointsAlongLine::validParams(), FileMeshGenerator::validParams(), LineFunctionSampler::validParams(), FlipSidesetGenerator::validParams(), SidesetInfoVectorPostprocessor::validParams(), AddHDGKernelAction::validParams(), LowerDBlockFromSidesetGenerator::validParams(), FunctionDiracSource::validParams(), MoveNodeGenerator::validParams(), NodeSetsFromSideSetsGenerator::validParams(), OrientSurfaceMeshGenerator::validParams(), FunctorDiracKernel::validParams(), OverlayMeshGenerator::validParams(), ParsedSubdomainIDsGenerator::validParams(), ParsedSubdomainMeshGenerator::validParams(), PlaneIDMeshGenerator::validParams(), Steady::validParams(), RefineBlockGenerator::validParams(), RefineSidesetGenerator::validParams(), RenameBlockGenerator::validParams(), RenameBoundaryGenerator::validParams(), DeprecatedBlockAction::validParams(), RenumberBySubdomainGenerator::validParams(), RinglebMeshGenerator::validParams(), SideSetsFromNodeSetsGenerator::validParams(), SecondTimeDerivativeAux::validParams(), ConstantFunction::validParams(), SideSetsFromNormalsGenerator::validParams(), SphereMeshGenerator::validParams(), SpiralAnnularMeshGenerator::validParams(), SubdomainIDGenerator::validParams(), SubdomainPerElementGenerator::validParams(), SurfaceDelaunayGeneratorBase::validParams(), SymmetryTransformGenerator::validParams(), AddConvergenceAction::validParams(), TiledMeshGenerator::validParams(), PiecewiseConstant::validParams(), TimeDerivativeAux::validParams(), MoveNodesToSphere::validParams(), VariableValueElementSubdomainModifier::validParams(), AddDefaultConvergenceAction::validParams(), VolumeAux::validParams(), VectorVariableMagnitudeAux::validParams(), WeightedGapAux::validParams(), ConstantScalarAux::validParams(), AddMeshDivisionAction::validParams(), SetupDebugAction::validParams(), FVInterpolationMethod::validParams(), FVCoupledForce::validParams(), SetupPreconditionerAction::validParams(), SetupPredictorAction::validParams(), ADVectorMatchedValueBC::validParams(), FunctionIC::validParams(), SetupTimeIntegratorAction::validParams(), SetupTimeStepperAction::validParams(), ScalarComponentIC::validParams(), ArrayTimeDerivativeNodalKernel::validParams(), AddDistributionAction::validParams(), StartWebServerControlAction::validParams(), CoupledForceNodalKernel::validParams(), LowerBoundNodalKernel::validParams(), ReactionNodalKernel::validParams(), UpperBoundNodalKernel::validParams(), AdvectiveFluxAux::validParams(), InterfaceDiffusion::validParams(), ADArrayDiffusion::validParams(), ADArrayReaction::validParams(), ADKernelCurl::validParams(), AddPositionsAction::validParams(), ArrayCoupledTimeDerivative::validParams(), ConstantAux::validParams(), FunctorDirichletBC::validParams(), AreaPostprocessor::validParams(), AddChainControlAction::validParams(), AverageElementSize::validParams(), AddFunctionAction::validParams(), FunctorNeumannBC::validParams(), CoupledTimeDerivative::validParams(), DivDivField::validParams(), ConstantPostprocessor::validParams(), CopyValueAux::validParams(), DiscreteVariableResidualNorm::validParams(), DivField::validParams(), FunctionDiffusion::validParams(), FunctorKernel::validParams(), ElementAverageSecondTimeDerivative::validParams(), GradField::validParams(), ElementAverageTimeDerivative::validParams(), DebugResidualAux::validParams(), ElementExtremeFunctorValueTempl< is_ad >::validParams(), AddReporterAction::validParams(), KernelCurl::validParams(), MassMatrix::validParams(), MaterialDerivativeTestKernel::validParams(), ElementL2Difference::validParams(), ElementMaxLevelPostProcessor::validParams(), NullKernel::validParams(), FunctionElementAverage::validParams(), FunctionElementIntegral::validParams(), FunctionSideAverage::validParams(), MatrixSymmetryCheck::validParams(), VectorCoupledTimeDerivative::validParams(), NodalL2Error::validParams(), NodalMaxValueId::validParams(), ElemSideNeighborLayersTester::validParams(), AddTimesAction::validParams(), NumElements::validParams(), NodalSum::validParams(), VariableOldValueBounds::validParams(), NumTimeSteps::validParams(), NumResidualEvaluations::validParams(), AddTimeStepperAction::validParams(), GetPostprocessorChainControl::validParams(), LinearFVAdvectionDiffusionScalarSymmetryBC::validParams(), LimitChainControl::validParams(), ScalarVariable::validParams(), ScalePostprocessor::validParams(), SideAverageFunctorPostprocessor::validParams(), PIDChainControl::validParams(), BoundaryMarker::validParams(), RealToBoolChainControl::validParams(), ScaleOldChainControl::validParams(), ComboMarker::validParams(), TimeIntegratedPostprocessor::validParams(), TimePostprocessor::validParams(), VolumePostprocessor::validParams(), TerminateChainControl::validParams(), SingleMatrixPreconditioner::validParams(), ForcingFunctionAux::validParams(), UnitTripChainControl::validParams(), FunctionArrayAux::validParams(), ParsedScalarReporter::validParams(), ParsedVectorRealReductionReporter::validParams(), ParsedVectorReporter::validParams(), ParsedVectorVectorRealReductionReporter::validParams(), RestartableDataReporter::validParams(), NullScalarKernel::validParams(), ExplicitEuler::validParams(), ExplicitSSPRungeKutta::validParams(), ImplicitEuler::validParams(), TimeIntervalTimes::validParams(), ChainControlSetupAction::validParams(), AnnularMesh::validParams(), GeneratedMesh::validParams(), RinglebMesh::validParams(), FixedPointIterationAdaptiveDT::validParams(), AddFVInterpolationMethodAction::validParams(), SpiralAnnularMesh::validParams(), ExtraElementIntegerDivision::validParams(), CombineComponentsMeshes::validParams(), NestedDivision::validParams(), IterationCountConvergence::validParams(), AddMetaDataGenerator::validParams(), ElemSideNeighborLayersGeomTester::validParams(), BlockDeletionGenerator::validParams(), InterfaceQpMaterialPropertyRealUO::validParams(), InterfaceQpValueUserObject::validParams(), InterfaceValueUserObject::validParams(), LayeredAverageFunctor::validParams(), BoundaryElementConversionGenerator::validParams(), LayeredSideAverageFunctor::validParams(), LayeredSideIntegralFunctor::validParams(), BreakMeshByBlockGenerator::validParams(), BSplineCurveGenerator::validParams(), CartesianMeshGenerator::validParams(), MaterialRealDenseMatrixAux::validParams(), ConcentricCircleMeshGenerator::validParams(), ProjectedStatefulMaterialNodalPatchRecoveryBase::validParams(), GeneratedMeshGenerator::validParams(), MaxIncrement::validParams(), CombinedVectorPostprocessor::validParams(), FillBetweenCurvesGenerator::validParams(), PositionsFunctorValueSampler::validParams(), ElementsToTetrahedronsConverter::validParams(), FiniteDifferencePreconditioner::validParams(), MaterialStdVectorRealGradientAux::validParams(), ElementValueSampler::validParams(), FillBetweenPointVectorsGenerator::validParams(), SpatialUserObjectVectorPostprocessor::validParams(), FillBetweenSidesetsGenerator::validParams(), SphericalAverage::validParams(), ImageSubdomainGenerator::validParams(), MeshDiagnosticsGenerator::validParams(), MeshRepairGenerator::validParams(), NodalValueSampler::validParams(), ConstantPointSource::validParams(), ParsedAux::validParams(), ParsedSubdomainGeneratorBase::validParams(), CreateMeshSetupActionsForComponents::validParams(), ParsedVectorAux::validParams(), PolyLineMeshGenerator::validParams(), SideAverageMaterialPropertyTempl< is_ad >::validParams(), NullExecutor::validParams(), SideSetExtruderGenerator::validParams(), SideSetsBetweenSubdomainsGenerator::validParams(), LinearFVAnisotropicDiffusion::validParams(), SideSetsFromPointsGenerator::validParams(), SmoothMeshGenerator::validParams(), Receiver::validParams(), LinearCombinationFunction::validParams(), StitchBoundaryMeshGenerator::validParams(), StitchMeshGenerator::validParams(), SubdomainsFromPartitionerGenerator::validParams(), AddLinearFVBCAction::validParams(), ParsedPostprocessor::validParams(), TagVectorArrayVariableValueAux::validParams(), PiecewiseConstantFromCSV::validParams(), XYTriangleBoundaryLayerGenerator::validParams(), ExamplePatchMeshGenerator::validParams(), PiecewiseLinear::validParams(), TagVectorAux::validParams(), MoveNodesToGeometryModifierBase::validParams(), PiecewiseLinearBase::validParams(), AddLinearFVKernelAction::validParams(), VariableGradientComponent::validParams(), SplineFunction::validParams(), FunctorADConverterTempl< T >::validParams(), VectorMagnitudeAux::validParams(), FunctorSmootherTempl< T >::validParams(), VectorPostprocessorVisualizationAux::validParams(), VectorVariableComponentAux::validParams(), ReactionTempl< is_ad >::validParams(), FVBoundaryScalarLagrangeMultiplierConstraint::validParams(), CylindricalAverage::validParams(), MaterialStdVectorAuxTempl< is_ad >::validParams(), MFEMSimplifiedFESpace::validParams(), AddActionComponentAction::validParams(), FVAdvectedUpwind::validParams(), FVHarmonicAverage::validParams(), NodalMaxValue::validParams(), ADDGAdvection::validParams(), FVMassMatrix::validParams(), AddAuxVariableAction::validParams(), EqualGradientConstraint::validParams(), FVScalarLagrangeMultiplierConstraint::validParams(), SetupResidualDebugAction::validParams(), FunctorIC::validParams(), IntegralPreservingFunctionIC::validParams(), CentroidMultiApp::validParams(), QuadraturePointMultiApp::validParams(), ArrayReactionNodalKernelTempl< is_ad >::validParams(), ConvectiveFluxBC::validParams(), AddOutputAction::validParams(), Console::validParams(), ControlOutput::validParams(), GMVOutput::validParams(), ArrayParsedAux::validParams(), ADMatInterfaceReaction::validParams(), InterfaceReaction::validParams(), PenaltyInterfaceDiffusionTempl< T, is_ad >::validParams(), ExodusTimeSequenceStepper::validParams(), ReporterDebugOutput::validParams(), Tecplot::validParams(), VTKOutput::validParams(), XDA::validParams(), EigenDirichletBC::validParams(), DiffusionCG::validParams(), DiffusionFV::validParams(), FilePositions::validParams(), MessageFromInput::validParams(), InputPositions::validParams(), MultiAppPositions::validParams(), NearestNodeNumberUO::validParams(), ReporterPositions::validParams(), TransformedPositions::validParams(), AverageVariableChange::validParams(), AxisymmetricCenterlineAverageValue::validParams(), ElementSidesL2Norm::validParams(), ChainControlDataPostprocessor::validParams(), Diffusion::validParams(), ChangeOverFixedPointPostprocessor::validParams(), ChangeOverTimePostprocessor::validParams(), MatchedValueBCTempl< is_ad >::validParams(), ElementAverageMaterialPropertyTempl< is_ad >::validParams(), DiffusionFluxAux::validParams(), DivergenceAuxTempl< is_ad >::validParams(), MaterialDerivativeRankFourTestKernel::validParams(), ElementL2FunctorErrorTempl< is_ad >::validParams(), MaterialDerivativeRankTwoTestKernel::validParams(), AnnularMeshGenerator::validParams(), VectorDiffusion::validParams(), NearestNodeNumber::validParams(), ExodusFileTimes::validParams(), NumFixedPointIterations::validParams(), NumFailedTimeSteps::validParams(), ConstantBounds::validParams(), NumNonlinearIterations::validParams(), LinearFVAdvectionDiffusionExtrapolatedBC::validParams(), ElementLengthAux::validParams(), LinearFVAdvectionDiffusionOutflowBC::validParams(), PseudoTimestep::validParams(), ElementNormalAux::validParams(), LinearFVReaction::validParams(), LinearFVSource::validParams(), BoundaryPreservedMarker::validParams(), SetValueChainControlTempl< T >::validParams(), ReporterPointMarker::validParams(), SmootherChainControl::validParams(), MultiAppScalarToAuxScalarTransfer::validParams(), AccumulateReporter::validParams(), ElementExtremeMaterialPropertyReporterTempl< is_ad >::validParams(), IterationInfo::validParams(), GenericConstant2DArrayTempl< is_ad >::validParams(), FunctorAux::validParams(), EqualValueConstraint::validParams(), GenericConstantRealVectorValueTempl< is_ad >::validParams(), MultiAppCloneReporterTransfer::validParams(), OldEqualValueConstraint::validParams(), ParsedODEKernel::validParams(), ActuallyExplicitEuler::validParams(), BDF2::validParams(), PerfGraphOutput::validParams(), MaterialFunctorConverterTempl< T >::validParams(), RankTwoTensorFromComponentProperties::validParams(), NewmarkBeta::validParams(), ControllableInputTimes::validParams(), VectorFromComponentVariablesMaterialTempl< is_ad >::validParams(), CSVFileTimes::validParams(), InputTimes::validParams(), ReporterTimes::validParams(), SimulationTimes::validParams(), ConcentricCircleMesh::validParams(), FunctionDT::validParams(), ImageMesh::validParams(), MeshGeneratorMesh::validParams(), PostprocessorDT::validParams(), PIDTransientControl::validParams(), HardwareIDAux::validParams(), TimeSequenceStepper::validParams(), InterfaceValueUserObjectAux::validParams(), MultiAppPostprocessorToAuxScalarTransfer::validParams(), FunctorBinnedValuesDivision::validParams(), MultiAppReporterTransfer::validParams(), SubdomainsDivision::validParams(), InterfaceUserObject::validParams(), MaterialRateRealAuxTempl< is_ad >::validParams(), FunctorTimes::validParams(), BreakMeshByElementGenerator::validParams(), MaterialRealTensorValueAuxTempl< is_ad >::validParams(), BoundingValueElementDamper::validParams(), CombinerGenerator::validParams(), MFEMPointValueSampler::validParams(), CutMeshByPlaneGenerator::validParams(), DeleteElementsNearMeshGenerator::validParams(), ArrayVariableValueVolumeHistogram::validParams(), ConditionalFunctionEnableControl::validParams(), VectorFunctionReaction::validParams(), BoolFunctionControl::validParams(), CreateDisplacedProblemAction::validParams(), ImageMeshGenerator::validParams(), NearestNodeDistanceAux::validParams(), MeshCollectionGenerator::validParams(), MeshExtruderGenerator::validParams(), AddCorrectorAction::validParams(), NormalizationAux::validParams(), ParsedExtraElementIDGenerator::validParams(), VectorConstantPointSource::validParams(), ParsedGenerateNodeset::validParams(), LineMaterialRealSampler::validParams(), PolyLineMeshFollowingNodeSetGenerator::validParams(), ProjectSideSetOntoLevelSetGenerator::validParams(), MeshDivisionAux::validParams(), BicubicSplineFunction::validParams(), SideSetsFromAllNormalsGenerator::validParams(), SideSetsFromBoundingBoxGenerator::validParams(), ElementLpNormAux::validParams(), CompositeFunction::validParams(), StackGenerator::validParams(), MFEMHyprePCG::validParams(), SpatialUserObjectAux::validParams(), SurfaceSubdomainsFromAllNormalsGenerator::validParams(), TagMatrixAux::validParams(), LeastSquaresFit::validParams(), TransformGenerator::validParams(), TagVectorArrayVariableAux::validParams(), MFEMGMRESSolver::validParams(), XYZDelaunayGenerator::validParams(), NumPositions::validParams(), NumMeshDivisions::validParams(), TimedSubdomainModifier::validParams(), MaterialDerivativeTestAction::validParams(), VariableTimeIntegrationAux::validParams(), FunctorChangeFunctorMaterialTempl< is_ad >::validParams(), VectorFunctionAux::validParams(), MFEMComplexScalarProjectionAux::validParams(), MFEMComplexVectorProjectionAux::validParams(), ParsedFunctorMaterialTempl< is_ad >::validParams(), VectorMagnitudeFunctorMaterialTempl< is_ad >::validParams(), MFEMScalarProjectionAux::validParams(), NodalL2Norm::validParams(), MFEMVectorProjectionAux::validParams(), FVConstantScalarOutflowBC::validParams(), MFEMBoundaryCondition::validParams(), FVDirichletBC::validParams(), FunctorVectorElementalAuxTempl< is_ad >::validParams(), FVFunctionDirichletBC::validParams(), MultiAppGeneralFieldShapeEvaluationTransfer::validParams(), FVNeumannBC::validParams(), FunctionScalarAux::validParams(), QuotientScalarAux::validParams(), MFEMTransient::validParams(), SetAdaptivityOptionsAction::validParams(), ScalarTagMatrixAux::validParams(), ElementMaterialSampler::validParams(), ScalarTagVectorAux::validParams(), ElementsToSimplicesConverter::validParams(), VectorFunctionDirichletBC::validParams(), SolutionInvalidityReporter::validParams(), MFEMComplexKernel::validParams(), ADArrayDirichletBC::validParams(), MFEMMixedBilinearFormKernel::validParams(), ADDirichletBC::validParams(), ADFunctionDirichletBC::validParams(), AddMeshModifiersAction::validParams(), ADFunctionNeumannBC::validParams(), FVAnisotropicDiffusion::validParams(), MFEMConduitDataCollection::validParams(), MFEMParaViewDataCollection::validParams(), MFEMVisItDataCollection::validParams(), MFEML2Error::validParams(), MFEMVectorL2Error::validParams(), InterfaceQpMaterialPropertyBaseUserObject< Real >::validParams(), MFEMCGSolver::validParams(), ADVectorFunctionDirichletBC::validParams(), ADVectorFunctionNeumannBC::validParams(), MFEMHypreAME::validParams(), MFEMHypreBoomerAMG::validParams(), MFEMHypreFGMRES::validParams(), MFEMHypreLOBPCG::validParams(), FunctionSideIntegral::validParams(), MFEMMUMPS::validParams(), MFEMNewtonNonlinearSolver::validParams(), ArrayConstantIC::validParams(), MFEMOperatorJacobiSmoother::validParams(), ArrayDirichletBC::validParams(), BoundingValueNodalDamper::validParams(), MFEMEigenvaluesPostprocessor::validParams(), MemoryUsage::validParams(), FullSolveMultiApp::validParams(), NodalNormalsEvaluator::validParams(), VectorDivPenaltyDirichletBC::validParams(), NodalNormalsCorner::validParams(), DirichletBC::validParams(), SolutionInvalidityOutput::validParams(), EigenArrayDirichletBC::validParams(), ADFluxDivergence::validParams(), ADMatCoupledForce::validParams(), VariableValueVolumeHistogram::validParams(), FunctionGradientNeumannBC::validParams(), FunctionNeumannBC::validParams(), ElementGroupCentroidPositions::validParams(), FunctorPositions::validParams(), LayeredSideDiffusiveFluxAverage::validParams(), LayeredSideAverage::validParams(), CoupledForceTempl< is_ad >::validParams(), DifferencePostprocessor::validParams(), ElementHDivError::validParams(), NeumannBCTempl< is_ad >::validParams(), SphericalGridDivision::validParams(), TiedValueConstraint::validParams(), LayeredAverage::validParams(), ElementHCurlError::validParams(), ElementHCurlSemiError::validParams(), PostprocessorDirichletBC::validParams(), ElementHDivSemiError::validParams(), ElementL1Error::validParams(), ElementAdaptivityLevelAux::validParams(), InterfaceIntegralPostprocessor::validParams(), VectorCurlPenaltyDirichletBC::validParams(), VectorDirichletBC::validParams(), MaterialRealAuxTempl< is_ad, is_functor >::validParams(), CoupledTiedValueConstraint::validParams(), VectorPenaltyDirichletBC::validParams(), PercentChangePostprocessor::validParams(), GetFunctionValueChainControl::validParams(), RelativeSolutionDifferenceNorm::validParams(), DistributedPositions::validParams(), LinearFVTimeDerivative::validParams(), ElementQualityAux::validParams(), ElementCentroidPositions::validParams(), WorkBalance::validParams(), TimesEnableControl::validParams(), CoupledGradientMaterialTempl< is_ad >::validParams(), ReferenceResidualProblem::validParams(), TimeSequenceFromTimes::validParams(), MortarSegmentMeshReporter::validParams(), FunctionAux::validParams(), GenericConstantRankTwoTensorTempl< is_ad >::validParams(), GenericConstantSymmetricRankTwoTensorTempl< is_ad >::validParams(), GenericFunctionRankTwoTensorTempl< is_ad >::validParams(), FunctorElementalGradientAuxTempl< is_ad >::validParams(), SolutionTimeAdaptiveDT::validParams(), CartesianGridDivision::validParams(), CylindricalGridDivision::validParams(), DefaultNonlinearConvergence::validParams(), MultiAppShapeEvaluationTransfer::validParams(), MultiAppVariableValueSampleTransfer::validParams(), AdvancedExtruderGenerator::validParams(), MFEMLineValueSampler::validParams(), LinearFVDiffusion::validParams(), PointwiseRenormalizeVector::validParams(), CircularBoundaryCorrectionGenerator::validParams(), ParsedChainControl::validParams(), CreateApplicationBlockAction::validParams(), MultiAppPostprocessorInterpolationTransfer::validParams(), NearestNodeValueAux::validParams(), OrientedSubdomainBoundingBoxGenerator::validParams(), ParsedCurveGenerator::validParams(), ParsedNodeTransformGenerator::validParams(), MeshDivisionFunctorReductionVectorPostprocessor::validParams(), Transient::validParams(), SideAverageValue::validParams(), QuotientAux::validParams(), DefaultSteadyStateConvergence::validParams(), FVOrthogonalDiffusion::validParams(), DisplayGhostingAction::validParams(), LinearFVAdvection::validParams(), MFEMHypreAMS::validParams(), LeastSquaresFitHistory::validParams(), FunctionElementIntegralUserObject::validParams(), PointValue::validParams(), MultiAppGeneralFieldUserObjectTransfer::validParams(), ExtraIDIntegralVectorPostprocessor::validParams(), PiecewiseLinearFromVectorPostprocessor::validParams(), AddMFEMComplexKernelComponentAction::validParams(), SetMFEMMeshFESpaceAction::validParams(), GenericFunctorGradientMaterialTempl< is_ad >::validParams(), MFEMDataCollection::validParams(), GenericFunctorTimeDerivativeMaterialTempl< is_ad >::validParams(), GenericVectorFunctorMaterialTempl< is_ad >::validParams(), ConstantDamper::validParams(), VectorOfPostprocessors::validParams(), FunctorCoordinatesFunctionAux::validParams(), CentralDifference::validParams(), MFEMProblemSolve::validParams(), Gnuplot::validParams(), MFEMGenericFESpace::validParams(), FileOutput::validParams(), FVAdvectedMinmodWeightBased::validParams(), MFEMNLDiffusionKernel::validParams(), MFEMNLCurlCurlKernel::validParams(), MaterialRealVectorValueAuxTempl< T, is_ad, is_functor >::validParams(), MFEMMesh::validParams(), PerfGraphReporter::validParams(), MFEMHypreGMRES::validParams(), FVAdvectedVanLeerWeightBased::validParams(), CutMeshByLevelSetGenerator::validParams(), NodalPatchRecoveryMaterialProperty::validParams(), MFEMSubMeshTransfer::validParams(), NearestPointLayeredSideAverageFunctor::validParams(), NEML2Assembly::validParams(), ConstantRate::validParams(), TimeDerivativeNodalKernel::validParams(), MFEMSteady::validParams(), DOFMapOutput::validParams(), NearestPointLayeredSideIntegralFunctor::validParams(), SolutionHistory::validParams(), BlockWeightedPartitioner::validParams(), FunctionDirichletBC::validParams(), SingleRankPartitioner::validParams(), VectorMemoryUsage::validParams(), AnisotropicDiffusion::validParams(), FVFunctorNeumannBC::validParams(), NodePositions::validParams(), ElementIntegralMaterialPropertyTempl< is_ad >::validParams(), OneDEqualValueConstraintBC::validParams(), MultiAppVectorPostprocessorTransfer::validParams(), LayeredExtremumMaterialProperty::validParams(), MatCoupledForce::validParams(), GenericFunctorMaterialTempl< is_ad >::validParams(), MaterialPropertyValueTempl< is_ad >::validParams(), InterfaceAverageVariableValuePostprocessor::validParams(), GreaterThanLessThanPostprocessor::validParams(), CumulativeValuePostprocessor::validParams(), MatNeumannBCTempl< is_ad >::validParams(), ElementAverageValue::validParams(), ParsedConvergence::validParams(), MFEMComplexAuxKernel::validParams(), MFEMAuxKernel::validParams(), SideDiffusiveFluxAverageTempl< is_ad >::validParams(), NearestPositionsDivision::validParams(), LayeredSideIntegral::validParams(), MultiAppVariableValueSamplePostprocessorTransfer::validParams(), MFEMHypreADS::validParams(), GenericConstantStdVectorMaterialTempl< is_ad >::validParams(), XYDelaunayGenerator::validParams(), FEProblem::validParams(), PiecewiseLinearInterpolationMaterial::validParams(), CoupledValueFunctionMaterialTempl< is_ad >::validParams(), CoarsenedPiecewiseLinear::validParams(), MultiAppPostprocessorTransfer::validParams(), DefaultMultiAppFixedPointConvergence::validParams(), CSV::validParams(), FVFunctorDirichletBCTempl< is_ad >::validParams(), MaterialRankFourTensorAuxTempl< is_ad >::validParams(), MFEMVectorFEDivergenceKernel::validParams(), CutMeshByLevelSetGeneratorBase::validParams(), Moose::MFEM::SolverBase::validParams(), AddControlAction::validParams(), ElementUOAux::validParams(), ReporterPointSource::validParams(), MFEMPetscNonlinearSolver::validParams(), MFEMVectorFEDomainLFKernel::validParams(), MaterialDerivativeTestKernelBase< Real >::validParams(), MFEMConvectiveHeatFluxBC::validParams(), MFEMNLConvectiveHeatFluxBC::validParams(), MFEMVectorFEMassKernel::validParams(), AddMFEMComplexBCComponentAction::validParams(), MFEMVectorFEWeakDivergenceKernel::validParams(), MFEMTimeDerivativeMassKernel::validParams(), FVFunctionNeumannBC::validParams(), MFEMTimeDerivativeVectorFEMassKernel::validParams(), NumDOFs::validParams(), LinearNodalConstraint::validParams(), MFEMVectorDomainLFKernel::validParams(), MFEMCurlCurlKernel::validParams(), MFEMMixedScalarCurlKernel::validParams(), MFEMDomainLFKernel::validParams(), MFEMMixedGradGradKernel::validParams(), MFEMMixedVectorGradientKernel::validParams(), MFEMMixedVectorMassKernel::validParams(), FVBodyForce::validParams(), MFEMMassKernel::validParams(), ParsedMaterialTempl< is_ad >::validParams(), MultiAppMFEMTolibMeshShapeEvaluationTransfer::validParams(), MFEMDiffusionKernel::validParams(), MFEMDivDivKernel::validParams(), Moose::MFEM::EigensolverBase::validParams(), FunctionValuePostprocessor::validParams(), InterfacePostprocessor::validParams(), UserForcingFunctorNodalKernel::validParams(), MFEMFunctorMaterial::validParams(), DirectionalNeumannBC::validParams(), GhostingFromUOAux::validParams(), CopyMeshPartitioner::validParams(), EigenProblem::validParams(), ElementVectorL2Error::validParams(), FVDirichletBCBase::validParams(), ElementH1SemiError::validParams(), AddSamplerAction::validParams(), ElementH1Error::validParams(), Boundary2DDelaunayGenerator::validParams(), ElementH1ErrorFunctionAux::validParams(), QuadraturePointsPositions::validParams(), ElementIntegralFunctorPostprocessorTempl< is_ad >::validParams(), TorchScriptMaterial::validParams(), MatReactionTempl< false >::validParams(), SideIntegralMaterialPropertyTempl< is_ad >::validParams(), RandomPartitioner::validParams(), ADPiecewiseLinearInterpolationMaterial::validParams(), DerivativeParsedMaterialTempl< is_ad >::validParams(), SidesetAroundSubdomainUpdater::validParams(), VectorBodyForce::validParams(), XYMeshLineCutter::validParams(), InterpolatedStatefulMaterialTempl< T >::validParams(), MaterialADConverterTempl< T >::validParams(), BatchMeshGeneratorAction::validParams(), MultiAppGeneralFieldNearestLocationTransfer::validParams(), MatBodyForceTempl< is_ad, Parent >::validParams(), UserForcingFunctionNodalKernel::validParams(), ConservativeAdvectionBCTempl< false >::validParams(), LibtorchControlValuePostprocessor::validParams(), FVBoundaryIntegralValueConstraint::validParams(), ElementIntegralUserObject::validParams(), MultiAppMFEMShapeEvaluationTransfer::validParams(), MFEMDomainSubMesh::validParams(), ManifoldSubdomainGenerator::validParams(), ParsedGenerateSideset::validParams(), MultiAppMFEMCopyTransfer::validParams(), MultiApplibMeshToMFEMShapeEvaluationTransfer::validParams(), MFEMBoundarySubMesh::validParams(), EigenProblemSolve::validParams(), PlaneDeletionGenerator::validParams(), ProjectionAux::validParams(), SideSetsAroundSubdomainGenerator::validParams(), CrankNicolson::validParams(), InterfaceQpUserObjectBase::validParams(), MFEMVectorBoundaryFluxIntegralPostprocessor::validParams(), MFEMComplexVectorPeriodAveragedPostprocessor::validParams(), MaterialOutputAction::validParams(), TorchScriptUserObject::validParams(), MFEMDivAux::validParams(), MFEMSumAux::validParams(), ElementL2ErrorFunctionAux::validParams(), TimePeriodBase::validParams(), BlockRestrictionDebugOutput::validParams(), FVGeometricAverage::validParams(), FVDivergence::validParams(), NodalEqualValueConstraint::validParams(), ElementIntegralArrayVariablePostprocessor::validParams(), MFEMComplexDivAux::validParams(), TimePeriod::validParams(), BoundingBoxIC::validParams(), MFEMGenericFunctorVectorMaterial::validParams(), ScalarConstantIC::validParams(), SolutionScalarAux::validParams(), MFEMParsedFunction::validParams(), SideFVFluxBCIntegral::validParams(), ElementalVariableValue::validParams(), ElementIntegralVariableUserObject::validParams(), NearestPointIntegralVariablePostprocessor::validParams(), MFEMGradAux::validParams(), PostprocessorNeumannBC::validParams(), FunctorExtremaPositions::validParams(), ElementIntegralVariablePostprocessor::validParams(), MFEMGenericFunctorMaterial::validParams(), MFEMComplexCurlAux::validParams(), BoundaryLinearFVFluxIntegral::validParams(), MFEMComplexGradAux::validParams(), MFEMCurlAux::validParams(), NearestPointAverage::validParams(), FindValueOnLine::validParams(), MFEMComplexSumAux::validParams(), TransfiniteMeshGenerator::validParams(), PetscExternalPartitioner::validParams(), MFEMScalarTimeAverageAux::validParams(), SurfaceSubdomainsDelaunayRemesher::validParams(), SetupQuadratureAction::validParams(), SolutionAux::validParams(), MultiAppDofCopyTransfer::validParams(), MFEMVectorFEInnerProductIntegralPostprocessor::validParams(), ValueJumpIndicatorTempl< ComputeValueType >::validParams(), BoundaryIntegralValueConstraint::validParams(), MooseStaticCondensationPreconditioner::validParams(), MultiAppProjectionTransfer::validParams(), CSVTimeSequenceStepper::validParams(), OrientedBoxMarker::validParams(), FunctionLayeredIntegral::validParams(), Moose::MFEM::LinearSolverBase::validParams(), TagVectorSum::validParams(), SideIntegralFunctorPostprocessorTempl< false >::validParams(), ImageFunction::validParams(), AddMFEMFESpaceAction::validParams(), MFEMInnerProductAux::validParams(), FVAdvectedVenkatakrishnanDeferredCorrection::validParams(), ScalarL2Error::validParams(), TransientMultiApp::validParams(), MaterialPropertyDebugOutput::validParams(), GenericConstantMaterialTempl< is_ad >::validParams(), MFEMCutTransitionSubMesh::validParams(), CoupledVarNeumannBCTempl< false >::validParams(), FVOrthogonalBoundaryDiffusion::validParams(), StitchedMesh::validParams(), MultiAppCopyTransfer::validParams(), MFEMComplexInnerProductAux::validParams(), AddMFEMSubMeshAction::validParams(), ContainsPointAux::validParams(), ElementVariablesDifferenceMax::validParams(), MaterialRankTwoTensorAuxTempl< T, is_ad >::validParams(), LibtorchArtificialNeuralNetParameters::validParams(), AddMFEMPreconditionerAction::validParams(), RealFunctionControl::validParams(), ADDGDiffusion::validParams(), VacuumBC::validParams(), NearestPointLayeredSideIntegral::validParams(), MultiAppGeneralFieldFunctorTransfer::validParams(), LinearFVAdvectionDiffusionFunctorDirichletBC::validParams(), EqualValueEmbeddedConstraintTempl< is_ad >::validParams(), LibmeshPartitioner::validParams(), InterfaceIntegralVariableValuePostprocessor::validParams(), Exodus::validParams(), LinearCombinationPostprocessor::validParams(), FVConstantIC::validParams(), MeshInfo::validParams(), MFEMProblem::validParams(), DGDiffusion::validParams(), LinearFVAdvectionDiffusionFunctorNeumannBC::validParams(), PiecewiseMultilinear::validParams(), VariableResidualNormsDebugOutput::validParams(), ParsedDownSelectionPositions::validParams(), SideIntegralVariablePostprocessor::validParams(), MooseParsedVectorFunction::validParams(), Nemesis::validParams(), MFEMComplexExteriorProductAux::validParams(), MultiAppNearestNodeTransfer::validParams(), PiecewiseMulticonstant::validParams(), MFEMCrossProductAux::validParams(), HistogramVectorPostprocessor::validParams(), MatDiffusionTempl< is_ad >::validParams(), ExplicitMidpoint::validParams(), ReferenceResidualConvergence::validParams(), InternalSideIntegralVariablePostprocessor::validParams(), PatternedMeshGenerator::validParams(), PNGOutput::validParams(), ParsedElementDeletionGenerator::validParams(), FVDiffusion::validParams(), BodyForceTempl< is_ad >::validParams(), LinearFVAdvectionDiffusionFunctorRobinBC::validParams(), NearestPointLayeredSideAverage::validParams(), NearestPointLayeredAverage::validParams(), AdamsPredictor::validParams(), CommonOutputAction::validParams(), PenaltyEqualValueConstraintTempl< is_ad >::validParams(), NearestPointLayeredIntegral::validParams(), NodalVariableValue::validParams(), NearestPointLayeredSideDiffusiveFluxAverage::validParams(), AddMFEMSolverAction::validParams(), Ralston::validParams(), SinDirichletBC::validParams(), LibtorchNeuralNetControl::validParams(), SubdomainBoundingBoxGenerator::validParams(), Split::validParams(), Heun::validParams(), ADFunctionPenaltyDirichletBC::validParams(), SideAdvectiveFluxIntegralTempl< is_ad >::validParams(), FVFunctionIC::validParams(), DistributedRectilinearMeshGenerator::validParams(), NodalNormalsPreprocessor::validParams(), AddPeriodicBCAction::validParams(), DiffusionFluxBC::validParams(), SinNeumannBC::validParams(), WeakGradientBC::validParams(), InterfaceDiffusiveFluxIntegralTempl< is_ad >::validParams(), NearestRadiusLayeredAverage::validParams(), GhostingUserObject::validParams(), EigenExecutionerBase::validParams(), ActionComponent::validParams(), VectorConstantIC::validParams(), BoundingBoxNodeSetGenerator::validParams(), MooseParsedGradFunction::validParams(), WebServerControl::validParams(), PropertyReadFile::validParams(), SideDiffusiveFluxIntegralTempl< is_ad, Real >::validParams(), FunctionPenaltyDirichletBC::validParams(), FVBoundedValueConstraint::validParams(), Moose::MFEM::NonlinearSolverBase::validParams(), NEML2Action::validParams(), HFEMTestJump::validParams(), HFEMTrialJump::validParams(), DiffusionPhysicsBase::validParams(), FVIntegralValueConstraint::validParams(), AddNodalNormalsAction::validParams(), Axisymmetric2D3DSolutionFunction::validParams(), SumPostprocessor::validParams(), GenericFunctionVectorMaterialTempl< is_ad >::validParams(), ComponentJunction::validParams(), DGFunctionDiffusionDirichletBC::validParams(), ProjectedStatefulMaterialStorageAction::validParams(), VectorFunctionIC::validParams(), MultiAppUserObjectTransfer::validParams(), CylinderComponent::validParams(), MultiAppGeometricInterpolationTransfer::validParams(), MFEMLinearElasticityKernel::validParams(), TransientBase::validParams(), Eigenvalue::validParams(), MooseParsedFunction::validParams(), GenericFunctionMaterialTempl< is_ad >::validParams(), AB2PredictorCorrector::validParams(), MFEMExecutedObject::validParams(), MeshGeneratorComponent::validParams(), PatternedMesh::validParams(), FVPointValueConstraint::validParams(), InterfaceUserObjectBase::validParams(), GridPartitioner::validParams(), ADPeriodicSegmentalConstraint::validParams(), PenaltyPeriodicSegmentalConstraint::validParams(), PhysicsBase::validParams(), PeriodicSegmentalConstraint::validParams(), ADPenaltyPeriodicSegmentalConstraint::validParams(), PostprocessorComparison::validParams(), ConstantIC::validParams(), AverageValueConstraint::validParams(), SolutionUserObjectBase::validParams(), RelativeDifferencePostprocessor::validParams(), VectorPostprocessorComparison::validParams(), ScalarSolutionIC::validParams(), ElementW1pError::validParams(), MFEMObject::validParams(), PhysicsBasedPreconditioner::validParams(), ScalarLagrangeMultiplier::validParams(), IterationAdaptiveDT::validParams(), ScalarLMKernelTempl< is_ad >::validParams(), PostprocessorSpatialUserObject::validParams(), FunctionMaterialBase< is_ad >::validParams(), RadialAverage::validParams(), VariableCondensationPreconditioner::validParams(), PenaltyDirichletBC::validParams(), CompositionDT::validParams(), ADPenaltyDirichletBC::validParams(), DumpObjectsProblem::validParams(), SimplePredictor::validParams(), SolutionIC::validParams(), NEML2FEInterpolation::validParams(), GhostBoundary::validParams(), DisplacedProblem::validParams(), RandomIC::validParams(), DerivativeParsedMaterialHelperTempl< is_ad >::validParams(), RandomICBase::validParams(), LStableDirk2::validParams(), Terminator::validParams(), MeshDivision::validParams(), LStableDirk3::validParams(), DerivativeFunctionMaterialBaseTempl< is_ad >::validParams(), ImplicitMidpoint::validParams(), MFEMSuperLU::validParams(), ExplicitTVDRK2::validParams(), MooseVariableBase::validParams(), OutputInterface::validParams(), PiecewiseBilinear::validParams(), AStableDirk4::validParams(), Checkpoint::validParams(), FieldSplitPreconditionerTempl< MoosePreconditioner >::validParams(), LStableDirk4::validParams(), PiecewiseFunction::validParams(), ParsedMaterialHelper< is_ad >::validParams(), Sampler::validParams(), and TopResidualDebugOutput::validParams().

82 {
83  _class_description = doc_string;
84 }
std::string _class_description
The class description for the owning object.

◆ addCommandLineParam() [1/3]

template<typename T >
void InputParameters::addCommandLineParam ( const std::string &  name,
const std::string &  syntax,
const std::string &  doc_string 
)

Definition at line 2015 of file InputParameters.h.

Referenced by MooseApp::addAppParam(), MooseApp::addInputParam(), and MooseApp::validParams().

2018 {
2019  static_assert(!std::is_same_v<T, MooseEnum>,
2020  "addCommandLineParam() without a value cannot be used with a MooseEnum because a "
2021  "MooseEnum requires initialization");
2022 
2023  auto constexpr is_bool = std::is_same_v<T, bool>;
2024  if constexpr (is_bool)
2025  addParam<T>(name, false, doc_string);
2026  else
2027  addParam<T>(name, doc_string);
2028 
2029  addCommandLineParamHelper<T>(
2030  name, syntax, /* required = */ false, /* value_required = */ !is_bool);
2031 }
std::string name(const ElemQuality q)

◆ addCommandLineParam() [2/3]

template<typename T >
void InputParameters::addCommandLineParam ( const std::string &  name,
const std::string &  syntax,
const T &  value,
const std::string &  doc_string 
)

Definition at line 2035 of file InputParameters.h.

2039 {
2040  if constexpr (std::is_same_v<T, bool>)
2041  mooseAssert(!value, "Default for bool must be false");
2042 
2043  addParam<T>(name, value, doc_string);
2044  addCommandLineParamHelper<T>(name, syntax, /* required = */ false, /* value_required = */ true);
2045 }
std::string name(const ElemQuality q)
Real value(unsigned n, unsigned alpha, unsigned beta, Real x)

◆ addCommandLineParam() [3/3]

template<typename T >
void InputParameters::addCommandLineParam ( const std::string &  name,
const std::string &  syntax,
const std::initializer_list< typename T::value_type > &  value,
const std::string &  doc_string 
)
inline

Definition at line 352 of file InputParameters.h.

356  {
357  addCommandLineParam<T>(name, syntax, T{value}, doc_string);
358  }
std::string name(const ElemQuality q)
Real value(unsigned n, unsigned alpha, unsigned beta, Real x)

◆ addCommandLineParamHelper()

template<typename T >
void InputParameters::addCommandLineParamHelper ( const std::string &  name,
const std::string &  syntax,
const bool  required,
const bool  value_required 
)
private

Helper for all of the addCommandLineParam() calls, which sets up _cl_data in the metadata.

Parameters
nameThe parameter name
syntaxThe parameter syntax
requiredWhether or not the parameter is required
value_requiredWhethre or not the parameter requires a value

Definition at line 1840 of file InputParameters.h.

1844 {
1845  static_assert(isValidCommandLineType<T>::value,
1846  "This type is not a supported command line parameter type. See "
1847  "CommandLine::populateCommandLineParams to add it as a supported type.");
1848 
1849  auto & cl_data = at(name)._cl_data;
1850  cl_data = CommandLineMetadata();
1851 
1852  // Split up the syntax by whitespace
1853  std::vector<std::string> syntax_split;
1854  MooseUtils::tokenize(syntax, syntax_split, 1, " \t\n\v\f\r");
1855 
1856  // Set the single syntax string as the combined syntax with removed whitespace
1857  cl_data->syntax = MooseUtils::stringJoin(syntax_split);
1858  mooseAssert(cl_data->syntax.size(), "Empty token");
1859 
1860  // Set the switches; only parse those that begin with "-" as we also
1861  // provide examples within the syntax
1862  for (const auto & val : syntax_split)
1863  if (val.rfind("-", 0) == 0)
1864  {
1865  if (!std::regex_search(val, std::regex("^\\-+[a-zA-Z]")))
1866  mooseError("The switch '",
1867  val,
1868  "' for the command line parameter '",
1869  name,
1870  "' is invalid. It must begin with an alphabetical character.");
1871 
1872  cl_data->switches.push_back(val);
1874  }
1875 
1876  cl_data->required = required;
1877  cl_data->global = false;
1878 
1879  // No arguments needed for a boolean parameter
1880  if constexpr (std::is_same_v<T, bool>)
1881  {
1882  (void)value_required; // purposely unused; doesn't take a value
1883  cl_data->argument_type = CommandLineMetadata::ArgumentType::NONE;
1884  }
1885  // MooseEnums require a value
1886  else if constexpr (std::is_same_v<T, MooseEnum>)
1887  {
1888  (void)value_required; // purposely unused; always required
1889  cl_data->argument_type = CommandLineMetadata::ArgumentType::REQUIRED;
1890  }
1891  // The user didn't specify a default, so a value is required
1892  else if (value_required)
1893  cl_data->argument_type = CommandLineMetadata::ArgumentType::REQUIRED;
1894  // Otherwise, it's optional (user specified a default)
1895  else
1896  cl_data->argument_type = CommandLineMetadata::ArgumentType::OPTIONAL;
1897 }
void tokenize(const std::string &str, std::vector< T > &elements, unsigned int min_len=1, const std::string &delims="/")
This function will split the passed in string on a set of delimiters appending the substrings to the ...
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
void add_command_line_name(const std::string &name)
class infix_ostream_iterator if void
Definition: InfixIterator.h:27
std::optional< CommandLineMetadata > _cl_data
The data pertaining to a command line parameter (empty if not a command line param) ...
std::string stringJoin(const std::vector< std::string > &values, const std::string &separator=" ")
Concatenates value into a single string separated by separator.
Metadata & at(const std::string &param_name)

◆ addCoupledVar() [1/3]

void InputParameters::addCoupledVar ( const std::string &  name,
const std::string &  doc_string 
)

This method adds a coupled variable name pair.

The parser will look for variable name pair in the input file and can return a reference to the storage location for the coupled variable if found

Definition at line 253 of file InputParameters.C.

Referenced by applyCoupledVar(), ConservativeAdvectionTempl< is_ad >::generalParams(), transferParam(), ArrayHFEMDirichletBC::validParams(), BuildArrayVariableAux::validParams(), HFEMDirichletBC::validParams(), DerivativeSumMaterialTempl< is_ad >::validParams(), ElementExtremeValue::validParams(), SideExtremeValue::validParams(), NodalExtremeValue::validParams(), PenetrationAux::validParams(), InterfaceQpValueUserObject::validParams(), FunctionDiffusion::validParams(), ParsedAux::validParams(), VectorMagnitudeAux::validParams(), ParsedMaterialBase::validParams(), VectorFromComponentVariablesMaterialTempl< is_ad >::validParams(), ParsedVectorAux::validParams(), ArrayParsedAux::validParams(), ParsedODEKernel::validParams(), SpatialAverageBase::validParams(), ArrayVariableValueVolumeHistogram::validParams(), QuotientScalarAux::validParams(), VariableValueVolumeHistogram::validParams(), NodalNormalBC::validParams(), CoupledValueFunctionMaterialTempl< is_ad >::validParams(), PointwiseRenormalizeVector::validParams(), QuotientAux::validParams(), ElementVectorL2Error::validParams(), ADKernelSUPGTempl< T >::validParams(), MatReactionTempl< false >::validParams(), FindValueOnLine::validParams(), KernelScalarBase::validParams(), MortarScalarBase::validParams(), CoupledVarNeumannBCTempl< false >::validParams(), ADMortarScalarBase::validParams(), ADKernelScalarBase::validParams(), InterfaceIntegralVariableValuePostprocessor::validParams(), InterfaceDiffusiveFluxIntegralTempl< is_ad >::validParams(), SideAdvectiveFluxIntegralTempl< is_ad >::validParams(), MatDiffusionBaseTempl< T, false >::validParams(), BoundaryCondition::validParams(), NodeFaceConstraint::validParams(), MatReaction::validParams(), MortarConstraintBase::validParams(), ConservativeAdvectionTempl< is_ad >::validParams(), MatDiffusionBase< T >::validParams(), FVInterfaceKernel::validParams(), and FVBoundaryCondition::validParams().

254 {
255  addParam<std::vector<VariableName>>(name, doc_string);
256  _coupled_vars.insert(name);
257 
258  // Set the doc string for any associated deprecated coupled var
259  setDeprecatedVarDocString(name, doc_string);
260 }
std::string name(const ElemQuality q)
void setDeprecatedVarDocString(const std::string &new_name, const std::string &doc_string)
Private method for setting deprecated coupled variable documentation strings.
std::set< std::string > _coupled_vars
The coupled variables set.

◆ addCoupledVar() [2/3]

void InputParameters::addCoupledVar ( const std::string &  name,
const Real  value,
const std::string &  doc_string 
)

This method adds a coupled variable name pair.

The parser will look for variable name pair in the input file and can return a reference to the storage location for the coupled variable if found

Also - you can provide a default value for this variable in the case that an actual variable is not provided.

Definition at line 224 of file InputParameters.C.

225 {
226  addParam<std::vector<VariableName>>(name, doc_string);
227  _coupled_vars.insert(name);
228  auto & metadata = _params[name];
229  metadata._coupled_default.assign(1, value);
230  metadata._have_coupled_default = true;
231 
232  // Set the doc string for any associated deprecated coupled var
233  setDeprecatedVarDocString(name, doc_string);
234 }
std::string name(const ElemQuality q)
void setDeprecatedVarDocString(const std::string &new_name, const std::string &doc_string)
Private method for setting deprecated coupled variable documentation strings.
std::set< std::string > _coupled_vars
The coupled variables set.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ addCoupledVar() [3/3]

void InputParameters::addCoupledVar ( const std::string &  name,
const std::vector< Real > &  value,
const std::string &  doc_string 
)

This method adds a coupled variable name pair.

The parser will look for variable name pair in the input file and can return a reference to the storage location for the coupled variable if found

Also - you can provide a vector of values for this variable in the case that an actual variable is not provided.

Definition at line 237 of file InputParameters.C.

240 {
241  // std::vector<VariableName>(1, Moose::stringify(value)),
242  addParam<std::vector<VariableName>>(name, doc_string);
243  _coupled_vars.insert(name);
244  auto & metadata = _params[name];
245  metadata._coupled_default = value;
246  metadata._have_coupled_default = true;
247 
248  // Set the doc string for any associated deprecated coupled var
249  setDeprecatedVarDocString(name, doc_string);
250 }
std::string name(const ElemQuality q)
void setDeprecatedVarDocString(const std::string &new_name, const std::string &doc_string)
Private method for setting deprecated coupled variable documentation strings.
Real value(unsigned n, unsigned alpha, unsigned beta, Real x)
std::set< std::string > _coupled_vars
The coupled variables set.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ addCoupledVarWithAutoBuild()

void InputParameters::addCoupledVarWithAutoBuild ( const std::string &  name,
const std::string &  base_name,
const std::string &  num_name,
const std::string &  doc_string 
)

These methods add a coupled variable name pair.

The parser will look for variable name pair in the input file and can return a reference to the storage location for the coupled variable if found.

This version of the method will build a vector if the given the base_name and num_name parameters exist in the input file: e.g. [./foo] ... some_base = base_ some_num = 5 [../]

The coupling parameter will be passed this vector: "base_0 base_1 base_2 base_3 base_4"

Definition at line 291 of file InputParameters.C.

Referenced by addRequiredCoupledVarWithAutoBuild().

295 {
296  addParam<std::vector<VariableName>>(name, doc_string);
297  _coupled_vars.insert(name);
298  _params[name]._autobuild_vecs = std::make_pair(base_name, num_name);
299 
300  // Additionally there are two more parameters that need to be added:
301  addParam<std::string>(base_name, doc_string + " (base_name)");
302  addParam<unsigned int>(num_name, doc_string + " (num_name)");
303 }
std::string name(const ElemQuality q)
std::set< std::string > _coupled_vars
The coupled variables set.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ addCustomTypeParam() [1/2]

template<typename T >
void InputParameters::addCustomTypeParam ( const std::string &  name,
const T &  value,
const std::string &  custom_type,
const std::string &  doc_string 
)

Definition at line 1942 of file InputParameters.h.

Referenced by ParsedVectorAux::validParams(), ParsedMaterialBase::validParams(), SolutionUserObject::validParams(), and ParsedConvergence::validParams().

1946 {
1947  addParam<T>(name, value, doc_string);
1948  _params[name]._custom_type = custom_type;
1949 }
std::string name(const ElemQuality q)
Real value(unsigned n, unsigned alpha, unsigned beta, Real x)
std::map< std::string, Metadata > _params
The actual parameter data.

◆ addCustomTypeParam() [2/2]

template<typename T >
void InputParameters::addCustomTypeParam ( const std::string &  name,
const std::string &  custom_type,
const std::string &  doc_string 
)

Definition at line 1953 of file InputParameters.h.

1956 {
1957  addParam<T>(name, doc_string);
1958  _params[name]._custom_type = custom_type;
1959 }
std::string name(const ElemQuality q)
std::map< std::string, Metadata > _params
The actual parameter data.

◆ addDeprecatedCoupledVar()

void InputParameters::addDeprecatedCoupledVar ( const std::string &  old_name,
const std::string &  new_name,
const std::string &  removal_date = "" 
)

This method adds a deprecated coupled variable name pair.

The parser will look for variable name pair in the input file and can return a reference to the storage location for the coupled variable if found. The doc string for the deprecated variable will be constructed from the doc string for the new variable. A deprecation message will also be automatically generated

Definition at line 263 of file InputParameters.C.

266 {
267  mooseDeprecated("Please use 'deprecateCoupledVar'");
268 
269  _show_deprecated_message = false;
270 
271  // Set the doc string if we are adding the deprecated var after the new var has already been added
272  auto params_it = _params.find(new_name);
273  std::string doc_string;
274  if (params_it != _params.end())
275  doc_string = params_it->second._doc_string;
276 
277  addParam<std::vector<VariableName>>(old_name, doc_string);
278  _coupled_vars.insert(old_name);
279  _new_to_deprecated_coupled_vars.emplace(new_name, old_name);
280 
281  std::string deprecation_message =
282  "The coupled variable parameter '" + old_name + "' has been deprecated";
283  if (!removal_date.empty())
284  deprecation_message += " and will be removed " + removal_date;
285  deprecation_message += ". Please use the '" + new_name + "' coupled variable parameter instead.";
286  _params[old_name]._deprecation_message = deprecation_message;
288 }
std::unordered_map< std::string, std::string > _new_to_deprecated_coupled_vars
A map from deprecated coupled variable names to the new blessed name.
bool _show_deprecated_message
Flag for disabling deprecated parameters message, this is used by applyParameters to avoid dumping me...
void mooseDeprecated(Args &&... args)
Emit a deprecated code/feature message with the given stringified, concatenated args.
Definition: MooseError.h:363
std::set< std::string > _coupled_vars
The coupled variables set.
void addParam(const std::string &name, const S &value, const std::string &doc_string)
These methods add an optional parameter and a documentation string to the InputParameters object...
std::map< std::string, Metadata > _params
The actual parameter data.

◆ addDeprecatedCustomTypeParam()

template<typename T >
void InputParameters::addDeprecatedCustomTypeParam ( const std::string &  name,
const std::string &  custom_type,
const std::string &  doc_string,
const std::string &  deprecation_msg 
)

Definition at line 1963 of file InputParameters.h.

Referenced by ParsedMaterialBase::validParams().

1967 {
1968  _show_deprecated_message = false;
1969  addParam<T>(name, doc_string);
1970  auto & metadata = _params[name];
1971  metadata._custom_type = custom_type;
1972 
1973  metadata._deprecation_message = deprecation_message;
1974  _show_deprecated_message = true;
1975 }
std::string name(const ElemQuality q)
bool _show_deprecated_message
Flag for disabling deprecated parameters message, this is used by applyParameters to avoid dumping me...
std::map< std::string, Metadata > _params
The actual parameter data.

◆ addDeprecatedParam() [1/6]

template<typename T >
void InputParameters::addDeprecatedParam ( const std::string &  name,
const T &  value,
const std::string &  doc_string,
const std::string &  deprecation_message 
)
Parameters
nameThe name of the parameter
valueThe default value of this parameter if it requires one
doc_stringDocumentation. This will be shown for –help
deprecation_messageThe message that will will print about why this param was deprecated. It might mention the "new way".

Definition at line 2133 of file InputParameters.h.

Referenced by FileMesh::validParams(), AdaptivityAction::validParams(), SetupDebugAction::validParams(), BlockDeletionGenerator::validParams(), RenameBlockGenerator::validParams(), AnnularMesh::validParams(), ParsedSubdomainGeneratorBase::validParams(), PolyLineMeshGenerator::validParams(), Console::validParams(), PostprocessorDT::validParams(), AnnularMeshGenerator::validParams(), SideSetsFromBoundingBoxGenerator::validParams(), VectorFunctionDirichletBC::validParams(), TagAuxBase< AuxKernel >::validParams(), FixedPointSolve::validParams(), DerivativeKernelInterface< T >::validParams(), Exodus::validParams(), CommonOutputAction::validParams(), MooseParsedGradFunction::validParams(), PropertyReadFile::validParams(), MultiAppUserObjectTransfer::validParams(), MultiAppTransfer::validParams(), FunctionMaterialBase< is_ad >::validParams(), SampledOutput::validParams(), DerivativeFunctionMaterialBaseTempl< is_ad >::validParams(), MortarConstraintBase::validParams(), Executioner::validParams(), Output::validParams(), MultiApp::validParams(), and FEProblemBase::validParams().

2137 {
2138  _show_deprecated_message = false;
2139  mooseAssert(!_old_to_new_name_and_dep.count(name),
2140  "Attempting to deprecate via addDeprecatedParam the parameter, '"
2141  << name << "', already deprecated via deprecateParam or renamed via renameParam");
2142  addParam<T>(name, value, doc_string);
2143 
2144  _params[name]._deprecation_message = deprecation_message;
2145  _show_deprecated_message = true;
2146 }
std::string name(const ElemQuality q)
bool _show_deprecated_message
Flag for disabling deprecated parameters message, this is used by applyParameters to avoid dumping me...
Real value(unsigned n, unsigned alpha, unsigned beta, Real x)
std::map< std::string, Metadata > _params
The actual parameter data.
std::map< std::string, std::pair< std::string, std::string > > _old_to_new_name_and_dep
A map from base-class/deprecated parameter names to derived-class/blessed parameter names and the dep...

◆ addDeprecatedParam() [2/6]

template<typename T >
void InputParameters::addDeprecatedParam ( const std::string &  name,
const std::string &  doc_string,
const std::string &  deprecation_message 
)

Definition at line 2150 of file InputParameters.h.

2153 {
2154  _show_deprecated_message = false;
2155  mooseAssert(!_old_to_new_name_and_dep.count(name),
2156  "Attempting to deprecate via addDeprecatedParam the parameter, '"
2157  << name << "', already deprecated via deprecateParam or renamed via renameParam");
2158  addParam<T>(name, doc_string);
2159 
2160  _params[name]._deprecation_message = deprecation_message;
2161  _show_deprecated_message = true;
2162 }
std::string name(const ElemQuality q)
bool _show_deprecated_message
Flag for disabling deprecated parameters message, this is used by applyParameters to avoid dumping me...
std::map< std::string, Metadata > _params
The actual parameter data.
std::map< std::string, std::pair< std::string, std::string > > _old_to_new_name_and_dep
A map from base-class/deprecated parameter names to derived-class/blessed parameter names and the dep...

◆ addDeprecatedParam() [3/6]

template<>
void InputParameters::addDeprecatedParam ( const std::string &  ,
const std::string &  ,
const std::string &   
)

Definition at line 1416 of file InputParameters.C.

1419 {
1420  mooseError("You must supply a MooseEnum object and the deprecation string when using "
1421  "addDeprecatedParam, even if the parameter is not required!");
1422 }
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.

◆ addDeprecatedParam() [4/6]

template<>
void InputParameters::addDeprecatedParam ( const std::string &  ,
const std::string &  ,
const std::string &   
)

Definition at line 1426 of file InputParameters.C.

1429 {
1430  mooseError("You must supply a MultiMooseEnum object and the deprecation string when using "
1431  "addDeprecatedParam, even if the parameter is not required!");
1432 }
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.

◆ addDeprecatedParam() [5/6]

template<>
void InputParameters::addDeprecatedParam ( const std::string &  ,
const std::string &  ,
const std::string &   
)

◆ addDeprecatedParam() [6/6]

template<>
void InputParameters::addDeprecatedParam ( const std::string &  ,
const std::string &  ,
const std::string &   
)

◆ addOptionalValuedCommandLineParam()

template<typename T >
void InputParameters::addOptionalValuedCommandLineParam ( const std::string &  name,
const std::string &  syntax,
const T &  value,
const std::string &  doc_string 
)

Add a command line parameter with an optional value.

This is a deprecated option and only remains for two parameters: "mesh_only" and "recover". There are issues with command line parameters with optional values because if a value following one of these is a hit cli parameter, we don't know if we should apply it to the optional option or as a hit parameter.

It is also allowed for "run" as we take all arguments past –run and pass to python.

Parameters
nameThe name of the parameer
syntaxSpace separated list of command-line switch syntax that can set this option
valueThe default value to assign
doc_stringDocumentation. This will be shown for –help

Definition at line 2049 of file InputParameters.h.

Referenced by MooseApp::validParams().

2053 {
2054  mooseAssert(name == "csg_only" || name == "mesh_only" || name == "recover" || name == "run",
2055  "Not supported for new parameters");
2056  static_assert(!std::is_same_v<T, bool>, "Cannot be used for a bool (does not take a value)");
2057  addParam<T>(name, value, doc_string);
2058  addCommandLineParamHelper<T>(name, syntax, /* required = */ false, /* value_required = */ false);
2059 }
std::string name(const ElemQuality q)
Real value(unsigned n, unsigned alpha, unsigned beta, Real x)

◆ addParam() [1/7]

template<typename T , typename S >
void InputParameters::addParam ( const std::string &  name,
const S &  value,
const std::string &  doc_string 
)

These methods add an optional parameter and a documentation string to the InputParameters object.

The first version of this function takes a default value which is used if the parameter is not found in the input file. The second method will leave the parameter uninitialized but can be checked with "isParamValid" before use.

Definition at line 1796 of file InputParameters.h.

Referenced by MFEMExecutedObject::addDependencyParam(), addDeprecatedCoupledVar(), ConstantReporter::addReporterTypeParams(), MultiAppTransfer::addSkipCoordCollapsingParam(), MultiAppTransfer::addUserObjectExecutionCheckParam(), AdvancedOutput::addValidParams(), Moose::commonAdaptivityParams(), TransientBase::defaultSteadyStateConvergenceParams(), FEProblemSolve::feProblemDefaultConvergenceParams(), FixedPointSolve::fixedPointDefaultConvergenceParams(), ConservativeAdvectionTempl< is_ad >::generalParams(), Moose::PetscSupport::getPetscValidParams(), Moose::SlepcSupport::getSlepcEigenProblemValidParams(), ADFluxFromGradientMaterial::validParams(), FVDiffusionInterface::validParams(), FVOneVarDiffusionInterface::validParams(), AutoCheckpointAction::validParams(), PenaltyDirichletNodalKernel::validParams(), ArrayTimeDerivative::validParams(), EqualValueBoundaryConstraint::validParams(), MassEigenKernel::validParams(), TimeDerivative::validParams(), VectorTimeDerivative::validParams(), NumRelationshipManagers::validParams(), NumVars::validParams(), PerfGraphData::validParams(), Residual::validParams(), DynamicObjectRegistrationAction::validParams(), ErrorFractionMarker::validParams(), VectorPostprocessorReductionValue::validParams(), ErrorToleranceMarker::validParams(), ReadExecutorParamsAction::validParams(), ValueRangeMarker::validParams(), ValueThresholdMarker::validParams(), ElementStatistics::validParams(), NodalStatistics::validParams(), FileMesh::validParams(), ArrayVariableComponent::validParams(), TiledMesh::validParams(), ConstantVectorPostprocessor::validParams(), InversePowerMethod::validParams(), BoundaryDeletionGenerator::validParams(), ArrayVarReductionAux::validParams(), NonlinearEigen::validParams(), ADRobinBC::validParams(), ADVectorRobinBC::validParams(), ArrayHFEMDirichletBC::validParams(), ArrayNeumannBC::validParams(), ArrayPenaltyDirichletBC::validParams(), ArrayVacuumBC::validParams(), CopyNodalVarsAction::validParams(), HFEMDirichletBC::validParams(), ElementIntegerAux::validParams(), CreateExecutionerAction::validParams(), FVFunctorTimeKernel::validParams(), FVMatAdvection::validParams(), FVReaction::validParams(), GradientJumpIndicator::validParams(), CoefReactionTempl< is_ad >::validParams(), JSONOutput::validParams(), ExtraIDIntegralReporter::validParams(), DerivativeSumMaterialTempl< is_ad >::validParams(), AddFieldSplitAction::validParams(), ElementOrderConversionGenerator::validParams(), ActivateElementsByPath::validParams(), ActivateElementsCoupled::validParams(), ThresholdElementSubdomainModifier::validParams(), CreateProblemAction::validParams(), AdaptivityAction::validParams(), MooseObjectAction::validParams(), PenetrationAux::validParams(), TimeExtremeValue::validParams(), SetupMeshAction::validParams(), ElementQualityChecker::validParams(), CSVReaderVectorPostprocessor::validParams(), Eigenvalues::validParams(), UniqueExtraIDMeshGenerator::validParams(), ActivateElementsUserObjectBase::validParams(), MFEMBoundaryIntegratedBC::validParams(), MFEMBoundaryNormalIntegratedBC::validParams(), MFEMComplexScalarDirichletBC::validParams(), MFEMComplexVectorDirichletBCBase::validParams(), MFEMRWTE10IntegratedBC::validParams(), MFEMScalarDirichletBC::validParams(), MFEMVectorBoundaryIntegratedBC::validParams(), MFEMVectorDirichletBCBase::validParams(), MFEMVectorFEBoundaryFluxIntegratedBC::validParams(), MFEMVectorFEBoundaryTangentIntegratedBC::validParams(), MFEMVectorFEMassIntegratedBC::validParams(), GapValueAux::validParams(), MFEMScalarFESpace::validParams(), MFEMVectorFESpace::validParams(), MFEMEigenproblem::validParams(), ScaleOldChainControl::validParams(), TerminateChainControl::validParams(), LowerBoundNodalKernel::validParams(), CoupledForceNodalKernel::validParams(), ReactionNodalKernel::validParams(), UpperBoundNodalKernel::validParams(), PIDChainControl::validParams(), UnitTripChainControl::validParams(), CoefTimeDerivative::validParams(), DivDivField::validParams(), DivField::validParams(), FunctionDiffusion::validParams(), FunctorKernel::validParams(), GradField::validParams(), MassMatrix::validParams(), ConstantPostprocessor::validParams(), NullKernel::validParams(), DiscreteVariableResidualNorm::validParams(), ElementExtremeFunctorValueTempl< is_ad >::validParams(), MatrixSymmetryCheck::validParams(), NumElements::validParams(), SecondTimeDerivativeAux::validParams(), ConditionalEnableControl::validParams(), LinearFVAdvectionDiffusionScalarSymmetryBC::validParams(), ScalarVariable::validParams(), ScalePostprocessor::validParams(), TimeIntegratedPostprocessor::validParams(), BoundaryMarker::validParams(), SingleMatrixPreconditioner::validParams(), IterationCountConvergence::validParams(), TimeDerivativeAux::validParams(), MultiPostprocessorConvergence::validParams(), RestartableDataReporter::validParams(), NullScalarKernel::validParams(), TimeIntervalTimes::validParams(), SetupDebugAction::validParams(), ArrayDGDiffusion::validParams(), AnnularMesh::validParams(), GeneratedMesh::validParams(), ElemSideNeighborLayersTester::validParams(), RinglebMesh::validParams(), SpiralAnnularMesh::validParams(), AddMetaDataGenerator::validParams(), BlockDeletionGenerator::validParams(), BoundaryLayerSubdomainGenerator::validParams(), SidesetInfoVectorPostprocessor::validParams(), AdvectiveFluxAux::validParams(), BreakBoundaryOnSubdomainGenerator::validParams(), CoarsenBlockGenerator::validParams(), ElementGenerator::validParams(), ExtraNodesetGenerator::validParams(), FileMeshGenerator::validParams(), CombineComponentsMeshes::validParams(), ConstantFunction::validParams(), LowerDBlockFromSidesetGenerator::validParams(), ConstantAux::validParams(), PiecewiseConstant::validParams(), MoveNodeGenerator::validParams(), NodeSetsGeneratorBase::validParams(), OrientSurfaceMeshGenerator::validParams(), ParsedSubdomainMeshGenerator::validParams(), CopyValueAux::validParams(), PiecewiseTabularInterface::validParams(), PlaneIDMeshGenerator::validParams(), RefineBlockGenerator::validParams(), RefineSidesetGenerator::validParams(), RenameBlockGenerator::validParams(), RenumberBySubdomainGenerator::validParams(), RinglebMeshGenerator::validParams(), SideSetsFromNodeSetsGenerator::validParams(), SphereMeshGenerator::validParams(), SpiralAnnularMeshGenerator::validParams(), SubdomainPerElementGenerator::validParams(), SurfaceDelaunayGeneratorBase::validParams(), DirichletBCBase::validParams(), TiledMeshGenerator::validParams(), MoveNodesToSphere::validParams(), FunctorDirichletBC::validParams(), FunctorNeumannBC::validParams(), FVCoupledForce::validParams(), FunctionIC::validParams(), DeprecatedBlockAction::validParams(), BoundsBase::validParams(), GetPostprocessorChainControl::validParams(), InterfaceDiffusion::validParams(), LimitChainControl::validParams(), SpatialUserObjectVectorPostprocessor::validParams(), MaterialStdVectorRealGradientAux::validParams(), Console::validParams(), ControlOutput::validParams(), GMVOutput::validParams(), CombinedVectorPostprocessor::validParams(), PerfGraphOutput::validParams(), Tecplot::validParams(), EqualValueConstraint::validParams(), VTKOutput::validParams(), ParsedAux::validParams(), DiffusionCG::validParams(), DiffusionFV::validParams(), MultiAppPositions::validParams(), ParsedVectorAux::validParams(), TransformedPositions::validParams(), ChangeOverTimePostprocessor::validParams(), ChangeOverFixedPointPostprocessor::validParams(), NodalConstraint::validParams(), AddActionComponentAction::validParams(), ReactionTempl< is_ad >::validParams(), NumFixedPointIterations::validParams(), LinearFVAdvectionDiffusionExtrapolatedBC::validParams(), NumNonlinearIterations::validParams(), ParsedPostprocessor::validParams(), PIDTransientControl::validParams(), PseudoTimestep::validParams(), Receiver::validParams(), LinearFVAnisotropicDiffusion::validParams(), LinearFVReaction::validParams(), LinearFVSource::validParams(), FiniteDifferencePreconditioner::validParams(), TagVectorAux::validParams(), ElementExtremeMaterialPropertyReporterTempl< is_ad >::validParams(), IterationInfo::validParams(), ParsedReporterBase::validParams(), VariableGradientComponent::validParams(), VectorPostprocessorVisualizationAux::validParams(), NewmarkBeta::validParams(), ActuallyExplicitEuler::validParams(), CSVFileTimes::validParams(), MaxIncrement::validParams(), Times::validParams(), FunctionDT::validParams(), ADDGAdvection::validParams(), MaterialFunctorConverterTempl< T >::validParams(), TimeSequenceStepperBase::validParams(), ParsedMaterialBase::validParams(), MultiAppCloneReporterTransfer::validParams(), MultiAppConservativeTransfer::validParams(), RankTwoTensorFromComponentProperties::validParams(), ConcentricCircleMesh::validParams(), MultiAppReporterTransfer::validParams(), MeshGeneratorMesh::validParams(), ImageMesh::validParams(), InterfaceValueUserObject::validParams(), FunctorBinnedValuesDivision::validParams(), SetupResidualDebugAction::validParams(), AnnularMeshGenerator::validParams(), BoundaryElementConversionGenerator::validParams(), SpatialAverageBase::validParams(), BreakMeshByBlockGenerator::validParams(), BSplineCurveGenerator::validParams(), CartesianMeshGenerator::validParams(), ArrayParsedAux::validParams(), ConcentricCircleMeshGenerator::validParams(), ExamplePatchMeshGenerator::validParams(), FillBetweenCurvesGenerator::validParams(), FillBetweenPointVectorsGenerator::validParams(), FillBetweenSidesetsGenerator::validParams(), GeneratedMeshGenerator::validParams(), MeshDiagnosticsGenerator::validParams(), MeshRepairGenerator::validParams(), PiecewiseLinear::validParams(), ParsedSubdomainGeneratorBase::validParams(), PolyLineMeshGenerator::validParams(), SplineFunction::validParams(), FunctorADConverterTempl< T >::validParams(), DivergenceAuxTempl< is_ad >::validParams(), FunctorSmootherTempl< T >::validParams(), SideSetExtruderGenerator::validParams(), SmoothMeshGenerator::validParams(), FVBoundaryScalarLagrangeMultiplierConstraint::validParams(), StitchMeshGenerator::validParams(), SubdomainsFromPartitionerGenerator::validParams(), ElementNormalAux::validParams(), XYTriangleBoundaryLayerGenerator::validParams(), FunctorAux::validParams(), MoveNodesToGeometryModifierBase::validParams(), PostprocessorDT::validParams(), MatchedValueBCTempl< is_ad >::validParams(), ParsedODEKernel::validParams(), FVMassMatrix::validParams(), MFEMSimplifiedFESpace::validParams(), FVScalarLagrangeMultiplierConstraint::validParams(), FunctorIC::validParams(), InterfaceValueUserObjectAux::validParams(), MaterialRealDenseMatrixAux::validParams(), ADMatInterfaceReaction::validParams(), PenaltyInterfaceDiffusionTempl< T, is_ad >::validParams(), MaterialStdVectorAuxBaseTempl< Real, is_ad >::validParams(), MFEMHyprePCG::validParams(), MFEMMUMPS::validParams(), FullSolveMultiApp::validParams(), SolutionTimeAdaptiveDT::validParams(), MaterialDerivativeTestAction::validParams(), MeshDivisionAux::validParams(), ADFluxDivergence::validParams(), Constraint::validParams(), FVNeumannBC::validParams(), ADMatCoupledForce::validParams(), CoupledTiedValueConstraint::validParams(), SolutionInvalidityOutput::validParams(), CoupledForceTempl< is_ad >::validParams(), NormalizationAux::validParams(), LinearFVTimeDerivative::validParams(), ElementGroupCentroidPositions::validParams(), RelativeSolutionDifferenceNorm::validParams(), ExtremeValueBase< SideVariablePostprocessor >::validParams(), VectorFunctionReaction::validParams(), FunctionSideIntegral::validParams(), TiedValueConstraint::validParams(), MemoryUsage::validParams(), ArrayVariableValueVolumeHistogram::validParams(), LinearFVFluxKernel::validParams(), TimesEnableControl::validParams(), TagMatrixAux::validParams(), QuadraturePointMarker::validParams(), SetAdaptivityOptionsAction::validParams(), CoupledGradientMaterialTempl< is_ad >::validParams(), BoundingValueElementDamper::validParams(), BoundingValueNodalDamper::validParams(), VariableTimeIntegrationAux::validParams(), MFEMCGSolver::validParams(), ScalarTagMatrixAux::validParams(), MFEMVisItDataCollection::validParams(), MultiAppGeneralFieldKDTreeTransferBase::validParams(), ScalarTagVectorAux::validParams(), CylindricalGridDivision::validParams(), FunctorTimes::validParams(), CartesianGridDivision::validParams(), SphericalGridDivision::validParams(), FEProblemSolve::validParams(), AdvancedExtruderGenerator::validParams(), ElementMaterialSampler::validParams(), LeastSquaresFit::validParams(), VariableValueVolumeHistogram::validParams(), WorkBalance::validParams(), BreakMeshByElementGenerator::validParams(), ADFunctionDirichletBC::validParams(), CombinerGenerator::validParams(), DeleteElementsNearMeshGenerator::validParams(), BicubicSplineFunction::validParams(), CompositeFunction::validParams(), ADVectorFunctionDirichletBC::validParams(), ImageMeshGenerator::validParams(), LevelSetMeshingHelper::validParams(), ADVectorFunctionNeumannBC::validParams(), MeshExtruderGenerator::validParams(), ParsedExtraElementIDGenerator::validParams(), ParsedGenerateNodeset::validParams(), PolyLineMeshFollowingNodeSetGenerator::validParams(), ProjectSideSetOntoLevelSetGenerator::validParams(), SideSetsFromBoundingBoxGenerator::validParams(), VectorMagnitudeFunctorMaterialTempl< is_ad >::validParams(), StackGenerator::validParams(), StitchMeshGeneratorBase::validParams(), ParsedFunctorMaterialTempl< is_ad >::validParams(), SurfaceMeshGeneratorBase::validParams(), SurfaceSubdomainsFromAllNormalsGenerator::validParams(), TransformGenerator::validParams(), CreateDisplacedProblemAction::validParams(), XYZDelaunayGenerator::validParams(), FunctionGradientNeumannBC::validParams(), MultiAppShapeEvaluationTransfer::validParams(), TimedSubdomainModifier::validParams(), FVAnisotropicDiffusion::validParams(), MFEMBoundaryCondition::validParams(), FunctorElementalGradientAuxTempl< is_ad >::validParams(), FVDiffusionInterpolationInterface::validParams(), NeumannBCTempl< is_ad >::validParams(), ScalarKernelBase::validParams(), FunctorVectorElementalAuxTempl< is_ad >::validParams(), InterfaceQpMaterialPropertyBaseUserObject< Real >::validParams(), MFEMMixedBilinearFormKernel::validParams(), VectorCurlPenaltyDirichletBC::validParams(), VectorDivPenaltyDirichletBC::validParams(), VectorFunctionDirichletBC::validParams(), VectorPenaltyDirichletBC::validParams(), MFEMConduitDataCollection::validParams(), MFEMParaViewDataCollection::validParams(), MFEML2Error::validParams(), MFEMVectorL2Error::validParams(), InternalSideIndicatorBase::validParams(), GetFunctionValueChainControl::validParams(), MaterialRealTensorValueAuxTempl< is_ad >::validParams(), MFEMGMRESSolver::validParams(), MFEMHypreBoomerAMG::validParams(), MFEMHypreFGMRES::validParams(), MFEMHypreLOBPCG::validParams(), FVRelationshipManagerInterface::validParams(), ParsedChainControl::validParams(), MaterialRealVectorValueAuxTempl< T, is_ad, is_functor >::validParams(), CSV::validParams(), DOFMapOutput::validParams(), FileOutput::validParams(), Gnuplot::validParams(), SolutionHistory::validParams(), XYDelaunayGenerator::validParams(), SingleRankPartitioner::validParams(), Positions::validParams(), MatCoupledForce::validParams(), MaterialPropertyValueTempl< is_ad >::validParams(), GreaterThanLessThanPostprocessor::validParams(), LinearFVDiffusion::validParams(), MFEMHypreGMRES::validParams(), MFEMHypreAMS::validParams(), ParsedConvergence::validParams(), CoupledValueFunctionMaterialTempl< is_ad >::validParams(), PiecewiseLinearInterpolationMaterial::validParams(), MultiAppPostprocessorInterpolationTransfer::validParams(), MFEMDataCollection::validParams(), MultiAppVariableValueSamplePostprocessorTransfer::validParams(), ExtraIDIntegralVectorPostprocessor::validParams(), LeastSquaresFitHistory::validParams(), PointVariableSamplerBase::validParams(), CircularBoundaryCorrectionGenerator::validParams(), CutMeshByLevelSetGenerator::validParams(), CoarsenedPiecewiseLinear::validParams(), OrientedSubdomainBoundingBoxGenerator::validParams(), ParsedCurveGenerator::validParams(), PiecewiseLinearFromVectorPostprocessor::validParams(), ParsedNodeTransformGenerator::validParams(), VectorMemoryUsage::validParams(), FVOrthogonalDiffusion::validParams(), GenericFunctorGradientMaterialTempl< is_ad >::validParams(), MFEMFESpace::validParams(), GenericFunctorMaterialTempl< is_ad >::validParams(), GenericFunctorTimeDerivativeMaterialTempl< is_ad >::validParams(), FVFunctorNeumannBC::validParams(), CreateApplicationBlockAction::validParams(), FVAdvectedMinmodWeightBased::validParams(), FVAdvectedVanLeerWeightBased::validParams(), FunctorCoordinatesFunctionAux::validParams(), MFEMProblemSolve::validParams(), MFEMSteady::validParams(), MFEMGenericFESpace::validParams(), PointwiseRenormalizeVector::validParams(), MFEML2ZienkiewiczZhuIndicator::validParams(), MFEMNLCurlCurlKernel::validParams(), MFEMNLDiffusionKernel::validParams(), MFEMRefinementMarker::validParams(), MFEMMesh::validParams(), DisplayGhostingAction::validParams(), MultiAppPostprocessorTransfer::validParams(), MFEMHypreADS::validParams(), MFEMPetscNonlinearSolver::validParams(), ReferenceResidualInterface::validParams(), Moose::MFEM::EigensolverBase::validParams(), MaterialADConverterTempl< T >::validParams(), ADKernelSUPGTempl< T >::validParams(), EigenProblem::validParams(), RandomPartitioner::validParams(), NodalScalarKernel::validParams(), ElementIntegralFunctorPostprocessorTempl< is_ad >::validParams(), ElementVectorL2Error::validParams(), FunctionValuePostprocessor::validParams(), FVFunctionNeumannBC::validParams(), NumDOFs::validParams(), MultiSystemSolveObject::validParams(), Moose::MFEM::SolverBase::validParams(), ADPiecewiseLinearInterpolationMaterial::validParams(), MFEMMixedVectorMassKernel::validParams(), PointSamplerBase::validParams(), GhostingFromUOAux::validParams(), MFEMVectorFEWeakDivergenceKernel::validParams(), VectorBodyForce::validParams(), MFEMVectorFEDomainLFKernel::validParams(), Boundary2DDelaunayGenerator::validParams(), CutMeshByLevelSetGeneratorBase::validParams(), ElementDeletionGeneratorBase::validParams(), BatchMeshGeneratorAction::validParams(), ReporterPointSource::validParams(), MFEMDivDivKernel::validParams(), MFEMKernel::validParams(), ElemElemConstraint::validParams(), QuadraturePointsPositions::validParams(), MaterialDerivativeTestKernelBase< Real >::validParams(), PiecewiseTabularBase::validParams(), LinearNodalConstraint::validParams(), DirectionalNeumannBC::validParams(), FVFunctorDirichletBCTempl< is_ad >::validParams(), ElementUOAux::validParams(), XYMeshLineCutter::validParams(), MFEMNLConvectiveHeatFluxBC::validParams(), MultiAppGeneralFieldNearestLocationTransfer::validParams(), FVBodyForce::validParams(), MFEMConvectiveHeatFluxBC::validParams(), IntegratedBCBase::validParams(), SidesetAroundSubdomainUpdater::validParams(), MFEMCurlCurlKernel::validParams(), MFEMDiffusionKernel::validParams(), MFEMDomainLFKernel::validParams(), MFEMMassKernel::validParams(), MFEMMixedGradGradKernel::validParams(), MFEMMixedVectorGradientKernel::validParams(), MFEMMixedScalarCurlKernel::validParams(), MFEMVectorDomainLFKernel::validParams(), MFEMVectorFEDivergenceKernel::validParams(), MFEMVectorFEMassKernel::validParams(), MFEMBoundarySubMesh::validParams(), SurfaceSubdomainsDelaunayRemesher::validParams(), SetupQuadratureAction::validParams(), FixedPointSolve::validParams(), MortarNodalAuxKernelTempl< ComputeValueType >::validParams(), TransfiniteMeshGenerator::validParams(), BlockRestrictionDebugOutput::validParams(), FunctorExtremaPositions::validParams(), MultiAppDofCopyTransfer::validParams(), TorchScriptUserObject::validParams(), LibtorchControlValuePostprocessor::validParams(), MFEMDomainSubMesh::validParams(), ConservativeAdvectionBCTempl< false >::validParams(), SolutionAux::validParams(), MFEMVectorFEInnerProductIntegralPostprocessor::validParams(), MFEMComplexVectorPeriodAveragedPostprocessor::validParams(), SolutionScalarAux::validParams(), InterfaceQpUserObjectBase::validParams(), EigenProblemSolve::validParams(), MaterialOutputAction::validParams(), TimeStepper::validParams(), FindValueOnLine::validParams(), ElementIntegralVariablePostprocessor::validParams(), ElementIntegralArrayVariablePostprocessor::validParams(), BoundingBoxIC::validParams(), ManifoldSubdomainGenerator::validParams(), ParsedGenerateSideset::validParams(), PetscExternalPartitioner::validParams(), TimePeriod::validParams(), MFEMScalarTimeAverageAux::validParams(), DerivativeKernelInterface< T >::validParams(), ProjectionAux::validParams(), PostprocessorNeumannBC::validParams(), MFEMVectorBoundaryFluxIntegralPostprocessor::validParams(), ElementSideNeighborLayers::validParams(), Moose::MFEM::LinearSolverBase::validParams(), MFEMBlockRestrictable::validParams(), ElementVariablesDifferenceMax::validParams(), FVOrthogonalBoundaryDiffusion::validParams(), ADMortarScalarBase::validParams(), MaterialAuxBaseTempl< RealTensorValue, is_ad >::validParams(), EigenKernel::validParams(), ADKernelScalarBase::validParams(), TransientMultiApp::validParams(), SideIntegralFunctorPostprocessorTempl< false >::validParams(), MooseStaticCondensationPreconditioner::validParams(), MFEMBoundaryRestrictable::validParams(), BoundaryIntegralValueConstraint::validParams(), GeometricSearchInterface::validParams(), KernelScalarBase::validParams(), MortarScalarBase::validParams(), CoupledVarNeumannBCTempl< false >::validParams(), CSVTimeSequenceStepper::validParams(), MultiAppProjectionTransfer::validParams(), StitchedMesh::validParams(), MFEMInnerProductAux::validParams(), Exodus::validParams(), EqualValueEmbeddedConstraintTempl< is_ad >::validParams(), LinearFVAdvectionDiffusionFunctorNeumannBC::validParams(), ADDirichletBCBase::validParams(), MFEMProblem::validParams(), PiecewiseMultilinear::validParams(), DGDiffusion::validParams(), InterfaceIntegralVariableValuePostprocessor::validParams(), Nemesis::validParams(), VacuumBC::validParams(), SteadyBase::validParams(), MooseParsedVectorFunction::validParams(), LibmeshPartitioner::validParams(), PiecewiseMulticonstant::validParams(), MultiAppGeneralFieldFunctorTransfer::validParams(), MultiAppNearestNodeTransfer::validParams(), MeshInfo::validParams(), VariableResidualNormsDebugOutput::validParams(), ADDGDiffusion::validParams(), LinearCombinationPostprocessor::validParams(), ParsedDownSelectionPositions::validParams(), MFEMCrossProductAux::validParams(), ExplicitTimeIntegrator::validParams(), NodalVariableValue::validParams(), NodalPatchRecovery::validParams(), PNGOutput::validParams(), LinearFVAdvectionDiffusionFunctorRobinBC::validParams(), SideSetsGeneratorBase::validParams(), LibtorchNeuralNetControl::validParams(), CommonOutputAction::validParams(), SubdomainBoundingBoxGenerator::validParams(), BodyForceTempl< is_ad >::validParams(), FVDiffusion::validParams(), AdamsPredictor::validParams(), ParsedElementDeletionGenerator::validParams(), PatternedMeshGenerator::validParams(), Split::validParams(), Convergence::validParams(), EigenExecutionerBase::validParams(), FVFunctionIC::validParams(), RelationshipManager::validParams(), ActionComponent::validParams(), NodalNormalsPreprocessor::validParams(), AddPeriodicBCAction::validParams(), GhostingUserObject::validParams(), DistributedRectilinearMeshGenerator::validParams(), SideAdvectiveFluxIntegralTempl< is_ad >::validParams(), SinNeumannBC::validParams(), PiecewiseMultiInterpolation::validParams(), ADDirichletBCBaseTempl< Real >::validParams(), InterfaceDiffusiveFluxIntegralTempl< is_ad >::validParams(), Moose::MFEM::NonlinearSolverBase::validParams(), Damper::validParams(), PropertyReadFile::validParams(), AddNodalNormalsAction::validParams(), MatDiffusionBaseTempl< T, false >::validParams(), Axisymmetric2D3DSolutionFunction::validParams(), SideDiffusiveFluxIntegralTempl< is_ad, Real >::validParams(), MooseParsedGradFunction::validParams(), BoundingBoxNodeSetGenerator::validParams(), VectorConstantIC::validParams(), DiffusionPhysicsBase::validParams(), WebServerControl::validParams(), InitialConditionInterface::validParams(), NodalBCBase::validParams(), NEML2Action::validParams(), ComparisonPostprocessor::validParams(), VectorFunctionIC::validParams(), DGFunctionDiffusionDirichletBC::validParams(), CylinderComponent::validParams(), GenericFunctionVectorMaterialTempl< is_ad >::validParams(), MultiAppUserObjectTransfer::validParams(), GenericFunctionMaterialTempl< is_ad >::validParams(), Eigenvalue::validParams(), Predictor::validParams(), MFEMLinearElasticityKernel::validParams(), InterfaceKernelBase::validParams(), TableOutput::validParams(), TransientBase::validParams(), MultiAppGeometricInterpolationTransfer::validParams(), ComponentJunction::validParams(), ProjectedStatefulMaterialStorageAction::validParams(), GridPartitioner::validParams(), PatternedMesh::validParams(), AB2PredictorCorrector::validParams(), MeshGeneratorComponent::validParams(), NodalUserObject::validParams(), ADPenaltyPeriodicSegmentalConstraint::validParams(), ADNodalBCTempl< RealVectorValue, ADDirichletBCBase >::validParams(), MooseObject::validParams(), ElementIndicator::validParams(), DiracKernelBase::validParams(), PhysicsBase::validParams(), PenaltyPeriodicSegmentalConstraint::validParams(), SolutionUserObjectBase::validParams(), MultiAppTransfer::validParams(), NearestPointBase< LayeredSideDiffusiveFluxAverage, SideIntegralVariableUserObject >::validParams(), BoundaryCondition::validParams(), NodalKernelBase::validParams(), IterationAdaptiveDT::validParams(), FileRangeBuilder::validParams(), NEML2ModelInterface< GeneralUserObject >::validParams(), FunctionMaterialBase< is_ad >::validParams(), PenaltyDirichletBC::validParams(), VectorPostprocessor::validParams(), SetupInterface::validParams(), ADPenaltyDirichletBC::validParams(), NodeFaceConstraint::validParams(), VariableCondensationPreconditioner::validParams(), FVFluxKernel::validParams(), MoosePreconditioner::validParams(), Material::validParams(), Indicator::validParams(), LayeredBase::validParams(), SolutionIC::validParams(), DumpObjectsProblem::validParams(), MortarConsumerInterface::validParams(), MultiAppGeneralFieldTransfer::validParams(), RandomIC::validParams(), Terminator::validParams(), RandomICBase::validParams(), AuxScalarKernel::validParams(), DerivativeParsedMaterialHelperTempl< is_ad >::validParams(), SampledOutput::validParams(), Action::validParams(), MooseParsedFunctionBase::validParams(), ShapeUserObject< SideUserObject >::validParams(), PetscOutput::validParams(), TimeIntegrator::validParams(), Transfer::validParams(), NestedSolveTempl< is_ad >::validParams(), DGKernelBase::validParams(), TransientInterface::validParams(), RandomInterface::validParams(), MeshGenerator::validParams(), ElementSubdomainModifierBase::validParams(), BoundaryRestrictable::validParams(), ConservativeAdvectionTempl< is_ad >::validParams(), MortarConstraintBase::validParams(), MooseVariableBase::validParams(), ScalarInitialCondition::validParams(), Control::validParams(), OutputInterface::validParams(), PiecewiseBilinear::validParams(), DomainUserObject::validParams(), Executioner::validParams(), UserObjectBase::validParams(), AStableDirk4::validParams(), Output::validParams(), Checkpoint::validParams(), FieldSplitPreconditionerTempl< MoosePreconditioner >::validParams(), ParsedMaterialHelper< is_ad >::validParams(), FunctionParserUtils< false >::validParams(), Sampler::validParams(), InitialConditionBase::validParams(), AuxKernelBase::validParams(), FVInterfaceKernel::validParams(), TaggingInterface::validParams(), Moose::Builder::validParams(), FVBoundaryCondition::validParams(), TopResidualDebugOutput::validParams(), SubProblem::validParams(), BlockRestrictable::validParams(), MaterialPropertyInterface::validParams(), MaterialBase::validParams(), MeshBaseImageSampler::validParams(), ImageSampler::validParams(), MooseMesh::validParams(), MultiApp::validParams(), Executor::validParams(), MooseApp::validParams(), and FEProblemBase::validParams().

1797 {
1798  checkParamName(name);
1799  checkConsistentType<T>(name);
1800 
1801  T & l_value = InputParameters::set<T>(name);
1802  auto & metadata = _params[name];
1803  if constexpr (isFunctorNameType<T>())
1804  metadata._doc_string = appendFunctorDescription<T>(doc_string);
1805  else
1806  metadata._doc_string = doc_string;
1807 
1808  // Set the parameter now
1809  setParamHelper(name, l_value, value);
1810 
1811  /* Indicate the default value, as set via addParam, is being used. The parameter is removed from
1812  the list whenever
1813  it changes, see set_attributes */
1814  metadata._set_by_add_param = true;
1815 }
std::string name(const ElemQuality q)
std::string appendFunctorDescription(const std::string &doc_string) const
Appends description of what a functor is to a doc string.
void checkParamName(const std::string &name) const
Make sure the parameter name doesn&#39;t have any invalid characters.
std::map< std::string, Metadata > _params
The actual parameter data.
void setParamHelper(const std::string &name, T &l_value, const S &r_value)
This method is called when adding a Parameter with a default value, can be specialized for non-matchi...

◆ addParam() [2/7]

template<typename T >
void InputParameters::addParam ( const std::string &  name,
const std::string &  doc_string 
)

Definition at line 1819 of file InputParameters.h.

1820 {
1821  checkParamName(name);
1822  checkConsistentType<T>(name);
1823 
1824  InputParameters::insert<T>(name);
1825  if constexpr (isFunctorNameType<T>())
1826  _params[name]._doc_string = appendFunctorDescription<T>(doc_string);
1827  else
1828  _params[name]._doc_string = doc_string;
1829 }
std::string name(const ElemQuality q)
std::string appendFunctorDescription(const std::string &doc_string) const
Appends description of what a functor is to a doc string.
void checkParamName(const std::string &name) const
Make sure the parameter name doesn&#39;t have any invalid characters.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ addParam() [3/7]

template<typename T >
void InputParameters::addParam ( const std::string &  name,
const std::initializer_list< typename T::value_type > &  value,
const std::string &  doc_string 
)
inline

Enable support for initializer lists as default arguments for container type.

Definition at line 266 of file InputParameters.h.

269  {
270  addParam<T>(name, T{value}, doc_string);
271  }
std::string name(const ElemQuality q)
Real value(unsigned n, unsigned alpha, unsigned beta, Real x)

◆ addParam() [4/7]

template<>
void InputParameters::addParam ( const std::string &  ,
const std::string &   
)

Definition at line 1355 of file InputParameters.C.

1357 {
1358  mooseError("You must supply a MooseEnum object when using addParam, even if the parameter is not "
1359  "required!");
1360 }
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.

◆ addParam() [5/7]

template<>
void InputParameters::addParam ( const std::string &  ,
const std::string &   
)

Definition at line 1364 of file InputParameters.C.

1366 {
1367  mooseError("You must supply a MultiMooseEnum object when using addParam, even if the parameter "
1368  "is not required!");
1369 }
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.

◆ addParam() [6/7]

template<>
void InputParameters::addParam ( const std::string &  ,
const std::string &   
)

◆ addParam() [7/7]

template<>
void InputParameters::addParam ( const std::string &  ,
const std::string &   
)

◆ addParamNamesToGroup()

void InputParameters::addParamNamesToGroup ( const std::string &  space_delim_names,
const std::string  group_name 
)

This method takes a space delimited list of parameter names and adds them to the specified group name.

This information is used in the GUI to group parameters into logical sections.

Definition at line 994 of file InputParameters.C.

Referenced by MultiAppTransfer::addSkipCoordCollapsingParam(), AdvancedOutput::addValidParams(), TransientBase::defaultSteadyStateConvergenceParams(), FEProblemSolve::feProblemDefaultConvergenceParams(), FixedPointSolve::fixedPointDefaultConvergenceParams(), Moose::PetscSupport::getPetscValidParams(), Moose::SlepcSupport::getSlepcEigenProblemValidParams(), CopyNodalVarsAction::validParams(), DerivativeSumMaterialTempl< is_ad >::validParams(), SetupMeshAction::validParams(), GeneratedMesh::validParams(), NodalPatchRecoveryBase::validParams(), FileMeshGenerator::validParams(), NodeSetsGeneratorBase::validParams(), SurfaceDelaunayGeneratorBase::validParams(), PiecewiseTabularInterface::validParams(), Console::validParams(), GMVOutput::validParams(), Tecplot::validParams(), VTKOutput::validParams(), DiffusionFV::validParams(), Times::validParams(), AddActionComponentAction::validParams(), MultiAppConservativeTransfer::validParams(), BSplineCurveGenerator::validParams(), Constraint::validParams(), TimedSubdomainModifier::validParams(), ScalarKernelBase::validParams(), SetAdaptivityOptionsAction::validParams(), AdvancedExtruderGenerator::validParams(), LevelSetMeshingHelper::validParams(), ParsedGenerateNodeset::validParams(), ProjectSideSetOntoLevelSetGenerator::validParams(), SurfaceMeshGeneratorBase::validParams(), SurfaceSubdomainsFromAllNormalsGenerator::validParams(), CSV::validParams(), FVRelationshipManagerInterface::validParams(), FileOutput::validParams(), Positions::validParams(), LeastSquaresFitHistory::validParams(), XYDelaunayGenerator::validParams(), IntegratedBCBase::validParams(), BatchMeshGeneratorAction::validParams(), ReferenceResidualInterface::validParams(), EigenProblem::validParams(), MultiSystemSolveObject::validParams(), EigenProblemSolve::validParams(), FixedPointSolve::validParams(), SurfaceSubdomainsDelaunayRemesher::validParams(), TransfiniteMeshGenerator::validParams(), TransientMultiApp::validParams(), GeometricSearchInterface::validParams(), MaterialAuxBaseTempl< RealTensorValue, is_ad >::validParams(), Exodus::validParams(), PNGOutput::validParams(), Postprocessor::validParams(), Split::validParams(), NodalPatchRecovery::validParams(), SideSetsGeneratorBase::validParams(), EigenExecutionerBase::validParams(), NodalBCBase::validParams(), DiffusionPhysicsBase::validParams(), ComponentJunction::validParams(), CylinderComponent::validParams(), TableOutput::validParams(), InterfaceKernelBase::validParams(), TransientBase::validParams(), DiracKernelBase::validParams(), PhysicsBase::validParams(), MooseObject::validParams(), SolutionUserObjectBase::validParams(), NearestPointBase< LayeredSideDiffusiveFluxAverage, SideIntegralVariableUserObject >::validParams(), BoundaryCondition::validParams(), NodalKernelBase::validParams(), RadialAverage::validParams(), VectorPostprocessor::validParams(), FVFluxKernel::validParams(), Indicator::validParams(), Material::validParams(), ProjectedStatefulMaterialNodalPatchRecoveryTempl< T, is_ad >::validParams(), LayeredBase::validParams(), MultiAppGeneralFieldTransfer::validParams(), AuxScalarKernel::validParams(), SampledOutput::validParams(), Action::validParams(), ShapeUserObject< SideUserObject >::validParams(), PetscOutput::validParams(), DGKernelBase::validParams(), RandomInterface::validParams(), TransientInterface::validParams(), MeshGenerator::validParams(), MooseVariableBase::validParams(), OutputInterface::validParams(), Executioner::validParams(), UserObjectBase::validParams(), Output::validParams(), FunctionParserUtils< false >::validParams(), AuxKernelBase::validParams(), InitialConditionBase::validParams(), TaggingInterface::validParams(), FVInterfaceKernel::validParams(), FVBoundaryCondition::validParams(), SubProblem::validParams(), MaterialPropertyInterface::validParams(), MeshBaseImageSampler::validParams(), ImageSampler::validParams(), MultiApp::validParams(), and FEProblemBase::validParams().

996 {
997  std::vector<std::string> elements;
998  MooseUtils::tokenize(space_delim_names, elements, 1, " \t\n\v\f\r"); // tokenize on whitespace
999 
1000  // Since we don't require types (templates) for this method, we need
1001  // to get a raw list of parameter names to compare against.
1002  std::set<std::string> param_names;
1003  for (const auto & it : *this)
1004  param_names.insert(it.first);
1005 
1006  for (const auto & param_name : elements)
1007  if (_params.count(param_name) > 0)
1008  _params[param_name]._group = group_name;
1009  else
1010  mooseError("Unable to find a parameter with name: ",
1011  param_name,
1012  " when adding to group ",
1013  group_name,
1014  '.');
1015 }
void tokenize(const std::string &str, std::vector< T > &elements, unsigned int min_len=1, const std::string &delims="/")
This function will split the passed in string on a set of delimiters appending the substrings to the ...
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ addPrivateParam() [1/6]

template<typename T >
void InputParameters::addPrivateParam ( const std::string &  name,
const T &  value 
)

These method add a parameter to the InputParameters object which can be retrieved like any other parameter.

This parameter however is not printed in the Input file syntax dump or web page dump so does not take a documentation string. The first version of this function takes an optional default value.

Definition at line 1990 of file InputParameters.h.

Referenced by AddControlAction::act(), FEProblemBase::addOutput(), ActionFactory::create(), ActionFactory::getValidParams(), AppFactory::storeAppParams(), GlobalParamsAction::validParams(), CreateProblemDefaultAction::validParams(), ElementReporter::validParams(), GeneralReporter::validParams(), NodalReporter::validParams(), DefaultConvergenceBase::validParams(), StitchMeshGenerator::validParams(), XDA::validParams(), InternalSideIndicatorBase::validParams(), DefaultNonlinearConvergence::validParams(), SurfaceSubdomainsFromAllNormalsGenerator::validParams(), MFEMFunctorMaterial::validParams(), CopyMeshPartitioner::validParams(), MoosePartitioner::validParams(), EigenProblemSolve::validParams(), RelationshipManager::validParams(), NodalNormalsPreprocessor::validParams(), EigenExecutionerBase::validParams(), MFEMExecutedObject::validParams(), MooseObject::validParams(), BoundaryRestrictableRequired::validParams(), VectorPostprocessor::validParams(), MoosePreconditioner::validParams(), DisplacedProblem::validParams(), Action::validParams(), MeshGenerator::validParams(), BoundaryRestrictable::validParams(), MooseVariableBase::validParams(), Executioner::validParams(), Output::validParams(), MooseBase::validParams(), BlockRestrictable::validParams(), MaterialBase::validParams(), MaterialPropertyInterface::validParams(), MultiApp::validParams(), MooseApp::validParams(), and FEProblemBase::validParams().

1991 {
1992  checkParamName(name);
1993  checkConsistentType<T>(name);
1994 
1995  InputParameters::set<T>(name) = value;
1996  auto & metadata = _params[name];
1997  metadata._is_private = true;
1998  metadata._set_by_add_param = true;
1999 }
std::string name(const ElemQuality q)
void checkParamName(const std::string &name) const
Make sure the parameter name doesn&#39;t have any invalid characters.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ addPrivateParam() [2/6]

template<typename T >
void InputParameters::addPrivateParam ( const std::string &  name)

Definition at line 1979 of file InputParameters.h.

1980 {
1981  checkParamName(name);
1982  checkConsistentType<T>(name);
1983 
1984  InputParameters::insert<T>(name);
1985  _params[name]._is_private = true;
1986 }
std::string name(const ElemQuality q)
void checkParamName(const std::string &name) const
Make sure the parameter name doesn&#39;t have any invalid characters.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ addPrivateParam() [3/6]

template<>
void InputParameters::addPrivateParam ( const std::string &  )

Definition at line 1400 of file InputParameters.C.

1401 {
1402  mooseError("You must supply a MooseEnum object when using addPrivateParam, even if the parameter "
1403  "is not required!");
1404 }
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.

◆ addPrivateParam() [4/6]

template<>
void InputParameters::addPrivateParam ( const std::string &  )

Definition at line 1408 of file InputParameters.C.

1409 {
1410  mooseError("You must supply a MultiMooseEnum object when using addPrivateParam, even if the "
1411  "parameter is not required!");
1412 }
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.

◆ addPrivateParam() [5/6]

template<>
void InputParameters::addPrivateParam ( const std::string &  )

◆ addPrivateParam() [6/6]

template<>
void InputParameters::addPrivateParam ( const std::string &  )

◆ addRangeCheckedParam() [1/2]

template<typename T >
void InputParameters::addRangeCheckedParam ( const std::string &  name,
const T &  value,
const std::string &  parsed_function,
const std::string &  doc_string 
)

Definition at line 1911 of file InputParameters.h.

Referenced by MultiAppTransfer::addBBoxFactorParam(), Moose::commonAdaptivityParams(), FixedPointSolve::fixedPointDefaultConvergenceParams(), ErrorFractionMarker::validParams(), ConstantDT::validParams(), PeriodicFunction::validParams(), LogConstantDT::validParams(), GeneratedMesh::validParams(), SurfaceDelaunayGeneratorBase::validParams(), CoarsenBlockGenerator::validParams(), FixedPointIterationAdaptiveDT::validParams(), AnnularMesh::validParams(), EqualValueConstraint::validParams(), FillBetweenSidesetsGenerator::validParams(), GeneratedMeshGenerator::validParams(), ConcentricCircleMesh::validParams(), ImageMesh::validParams(), SmoothMeshGenerator::validParams(), AnnularMeshGenerator::validParams(), XYTriangleBoundaryLayerGenerator::validParams(), BSplineCurveGenerator::validParams(), NewmarkBeta::validParams(), ConcentricCircleMeshGenerator::validParams(), FillBetweenPointVectorsGenerator::validParams(), FillBetweenCurvesGenerator::validParams(), PIDTransientControl::validParams(), ImageMeshGenerator::validParams(), CylindricalGridDivision::validParams(), SurfaceMeshGeneratorBase::validParams(), SphericalGridDivision::validParams(), ElementLpNormAux::validParams(), AdvancedExtruderGenerator::validParams(), XYZDelaunayGenerator::validParams(), BreakMeshByElementGenerator::validParams(), MFEMRefinementMarker::validParams(), ParsedCurveGenerator::validParams(), FVAdvectedMinmodWeightBased::validParams(), XYDelaunayGenerator::validParams(), CircularBoundaryCorrectionGenerator::validParams(), FVAdvectedVanLeerWeightBased::validParams(), ManifoldSubdomainGenerator::validParams(), FixedPointSolve::validParams(), TimeStepper::validParams(), SurfaceSubdomainsDelaunayRemesher::validParams(), TransfiniteMeshGenerator::validParams(), FVAdvectedVenkatakrishnanDeferredCorrection::validParams(), ElementSideNeighborLayers::validParams(), Exodus::validParams(), ElementPointNeighborLayers::validParams(), SideSetsGeneratorBase::validParams(), PNGOutput::validParams(), PatternedMeshGenerator::validParams(), DistributedRectilinearMeshGenerator::validParams(), CylinderComponent::validParams(), ComponentJunction::validParams(), PatternedMesh::validParams(), ElementW1pError::validParams(), IterationAdaptiveDT::validParams(), RadialAverage::validParams(), LayeredBase::validParams(), MultiAppGeneralFieldTransfer::validParams(), DerivativeFunctionMaterialBaseTempl< is_ad >::validParams(), MooseVariableBase::validParams(), Output::validParams(), and MultiApp::validParams().

1915 {
1916  addParam<T>(name, value, doc_string);
1917  _params[name]._range_function = parsed_function;
1918 }
std::string name(const ElemQuality q)
Real value(unsigned n, unsigned alpha, unsigned beta, Real x)
std::map< std::string, Metadata > _params
The actual parameter data.

◆ addRangeCheckedParam() [2/2]

template<typename T >
void InputParameters::addRangeCheckedParam ( const std::string &  name,
const std::string &  parsed_function,
const std::string &  doc_string 
)

Definition at line 1922 of file InputParameters.h.

1925 {
1926  addParam<T>(name, doc_string);
1927  _params[name]._range_function = parsed_function;
1928 }
std::string name(const ElemQuality q)
std::map< std::string, Metadata > _params
The actual parameter data.

◆ addRelationshipManager()

void InputParameters::addRelationshipManager ( const std::string &  name,
Moose::RelationshipManagerType  rm_type,
Moose::RelationshipManagerInputParameterCallback  input_parameter_callback = nullptr 
)

Tells MOOSE about a RelationshipManager that this object needs.

RelationshipManagers handle element "ghosting", "non-local DOF access" and "sparsity pattern" relationships.

Basically: if this object needs non-local (ie non-current-element) data access then you probably need a relationship manager

Parameters
nameThe name of the RelationshipManager type
rm_typeThe type (GEOMETRIC/ALGEBRAIC) of the RelationshipManger. Note: You can use boolean logic to to "or" RelationshipManagerTypes together to make a RelationshipManager that is multi-typed.
input_parameter_callbackThis is a function pointer that will get called to fill in the RelationShipManager's InputParameters. See MooseTypes.h for the signature of this function.

Definition at line 537 of file InputParameters.C.

Referenced by GradientJumpIndicator::validParams(), ElemSideNeighborLayersGeomTester::validParams(), ElemSideNeighborLayersTester::validParams(), NodalPatchRecoveryBase::validParams(), Tecplot::validParams(), GMVOutput::validParams(), BreakMeshByBlockGenerator::validParams(), ProjectedStatefulMaterialNodalPatchRecoveryBase::validParams(), FunctorElementalGradientAuxTempl< is_ad >::validParams(), FVAnisotropicDiffusion::validParams(), FVRelationshipManagerInterface::validParams(), FVFunctorDirichletBCTempl< is_ad >::validParams(), ProjectionAux::validParams(), MultiAppProjectionTransfer::validParams(), Exodus::validParams(), FVDiffusion::validParams(), DistributedRectilinearMeshGenerator::validParams(), InterfaceKernelBase::validParams(), InterfaceUserObjectBase::validParams(), InternalSideUserObject::validParams(), SideUserObject::validParams(), RadialAverage::validParams(), InterfaceMaterial::validParams(), ProjectedStatefulMaterialNodalPatchRecoveryTempl< T, is_ad >::validParams(), MultiAppGeneralFieldTransfer::validParams(), MortarConsumerInterface::validParams(), DGKernelBase::validParams(), MortarConstraintBase::validParams(), DomainUserObject::validParams(), AuxKernelBase::validParams(), FVInterfaceKernel::validParams(), and MooseVariableFV< Real >::validParams().

541 {
542  _buildable_rm_types.emplace_back(name, rm_type, input_parameter_callback);
543 }
std::vector< std::tuple< std::string, Moose::RelationshipManagerType, Moose::RelationshipManagerInputParameterCallback > > _buildable_rm_types
The RelationshipManagers that this object may either build or require.

◆ addRequiredCommandLineParam()

template<typename T >
void InputParameters::addRequiredCommandLineParam ( const std::string &  name,
const std::string &  syntax,
const std::string &  doc_string 
)

Add parameters for retrieval from the command line.

NOTE: This ONLY works for App objects! This is not valid for normal MOOSE objects!

Parameters
nameThe name of the parameter
syntaxSpace separated list of command-line switch syntax that can set this option
doc_stringDocumentation. This will be shown for –help

Definition at line 2003 of file InputParameters.h.

2006 {
2007  static_assert(!std::is_same_v<T, bool>, "Cannot be used for a bool");
2008 
2009  addRequiredParam<T>(name, doc_string);
2010  addCommandLineParamHelper<T>(name, syntax, /* required = */ true, /* value_required = */ true);
2011 }
std::string name(const ElemQuality q)

◆ addRequiredCoupledVar()

void InputParameters::addRequiredCoupledVar ( const std::string &  name,
const std::string &  doc_string 
)

This method adds a coupled variable name pair.

The parser will look for variable name pair in the input file and can return a reference to the storage location for the coupled variable. If the coupled variable is not supplied in the input file, and error is thrown.

Version 2: An auto built vector will be built from the base_name and num_name param. See addCoupledVar for an example

Definition at line 317 of file InputParameters.C.

Referenced by transferParam(), ADFluxFromGradientMaterial::validParams(), ArrayVariableComponent::validParams(), FVScalarLagrangeMultiplierInterface::validParams(), VariableInnerProduct::validParams(), ElementVariableStatistics::validParams(), NodalVariableStatistics::validParams(), CoupledODETimeDerivative::validParams(), ArrayVarReductionAux::validParams(), LowerDIntegratedBC::validParams(), CoupledVarThresholdElementSubdomainModifier::validParams(), SideVariablePostprocessor::validParams(), SideValueSampler::validParams(), DerivativeSumMaterialTempl< is_ad >::validParams(), ActivateElementsCoupled::validParams(), ElementVariablePostprocessor::validParams(), ElementL2Difference::validParams(), VectorVariableMagnitudeAux::validParams(), InterfaceQpValueUserObject::validParams(), ADVectorMatchedValueBC::validParams(), ArrayCoupledTimeDerivative::validParams(), NodalPatchRecoveryVariable::validParams(), ElementVariableVectorPostprocessor::validParams(), ArrayLowerDIntegratedBC::validParams(), NodalVariableVectorPostprocessor::validParams(), CoupledTimeDerivative::validParams(), GradField::validParams(), VectorCoupledTimeDerivative::validParams(), LowerBoundNodalKernel::validParams(), SecondTimeDerivativeAux::validParams(), DivField::validParams(), CopyValueAux::validParams(), VariableValueElementSubdomainModifier::validParams(), CoupledForceNodalKernel::validParams(), UpperBoundNodalKernel::validParams(), VectorMagnitudeAux::validParams(), VectorVariableComponentAux::validParams(), DiffusionFluxAux::validParams(), FVBoundaryScalarLagrangeMultiplierConstraint::validParams(), FVScalarLagrangeMultiplierConstraint::validParams(), MatchedValueBCTempl< is_ad >::validParams(), VectorFromComponentVariablesMaterialTempl< is_ad >::validParams(), VariableGradientComponent::validParams(), ElementLpNormAux::validParams(), CoupledForceTempl< is_ad >::validParams(), ElementHCurlSemiError::validParams(), ScalarTagMatrixAux::validParams(), CoupledGradientMaterialTempl< is_ad >::validParams(), NormalizationAux::validParams(), VariableTimeIntegrationAux::validParams(), ElementHDivSemiError::validParams(), PointVariableSamplerBase::validParams(), NodalVariablePostprocessor::validParams(), NearestNodeValueAux::validParams(), MatCoupledForce::validParams(), PiecewiseLinearInterpolationMaterial::validParams(), OneDEqualValueConstraintBC::validParams(), MaterialDerivativeTestKernelBase< Real >::validParams(), TagAuxBase< AuxKernel >::validParams(), ADPiecewiseLinearInterpolationMaterial::validParams(), InterpolatedStatefulMaterialTempl< T >::validParams(), ProjectionAux::validParams(), ElementIntegralVariableUserObject::validParams(), ElementIntegralVariablePostprocessor::validParams(), ElementIntegralArrayVariablePostprocessor::validParams(), SideIntegralVariableUserObject::validParams(), NodalEqualValueConstraint::validParams(), BoundaryIntegralValueConstraint::validParams(), ElementVariablesDifferenceMax::validParams(), CoupledVarNeumannBCTempl< false >::validParams(), InterfaceIntegralVariableValuePostprocessor::validParams(), DGLowerDKernel::validParams(), SideIntegralVariablePostprocessor::validParams(), InternalSideIntegralVariablePostprocessor::validParams(), InterfaceDiffusiveFluxIntegralTempl< is_ad >::validParams(), CompositeTensorBase< T, U >::validParams(), HFEMTrialJump::validParams(), ArrayDGLowerDKernel::validParams(), HFEMTestJump::validParams(), InterfaceKernelBase::validParams(), PeriodicSegmentalConstraint::validParams(), NodeElemConstraintBase::validParams(), PenaltyPeriodicSegmentalConstraint::validParams(), ADPeriodicSegmentalConstraint::validParams(), ADPenaltyPeriodicSegmentalConstraint::validParams(), and ScalarLagrangeMultiplier::validParams().

318 {
319  addRequiredParam<std::vector<VariableName>>(name, doc_string);
320  _coupled_vars.insert(name);
321 }
std::string name(const ElemQuality q)
std::set< std::string > _coupled_vars
The coupled variables set.

◆ addRequiredCoupledVarWithAutoBuild()

void InputParameters::addRequiredCoupledVarWithAutoBuild ( const std::string &  name,
const std::string &  base_name,
const std::string &  num_name,
const std::string &  doc_string 
)

Definition at line 306 of file InputParameters.C.

310 {
311  addRequiredParam<std::vector<VariableName>>(name, doc_string);
312 
313  addCoupledVarWithAutoBuild(name, base_name, num_name, doc_string);
314 }
std::string name(const ElemQuality q)
void addCoupledVarWithAutoBuild(const std::string &name, const std::string &base_name, const std::string &num_name, const std::string &doc_string)
These methods add a coupled variable name pair.

◆ addRequiredCustomTypeParam()

template<typename T >
void InputParameters::addRequiredCustomTypeParam ( const std::string &  name,
const std::string &  custom_type,
const std::string &  doc_string 
)

These methods add an option parameter and with a customer type to the InputParameters object.

The custom type will be output in YAML dumps and can be used within the GUI application.

Definition at line 1932 of file InputParameters.h.

Referenced by ArrayParsedAux::validParams(), ParsedAux::validParams(), ParsedODEKernel::validParams(), ParsedPostprocessor::validParams(), ParsedReporterBase::validParams(), ParsedVectorAux::validParams(), ParsedFunctorMaterialTempl< is_ad >::validParams(), ParsedChainControl::validParams(), ParsedConvergence::validParams(), ParsedDownSelectionPositions::validParams(), MooseParsedFunction::validParams(), and Terminator::validParams().

1935 {
1936  addRequiredParam<T>(name, doc_string);
1937  _params[name]._custom_type = custom_type;
1938 }
std::string name(const ElemQuality q)
std::map< std::string, Metadata > _params
The actual parameter data.

◆ addRequiredParam() [1/6]

template<typename T >
void InputParameters::addRequiredParam ( const std::string &  name,
const std::string &  doc_string 
)

This method adds a parameter and documentation string to the InputParameters object that will be extracted from the input file.

If the parameter is missing in the input file, an error will be thrown

Definition at line 1770 of file InputParameters.h.

Referenced by MFEMExecutedObject::addRequiredDependencyParam(), ADFluxFromGradientMaterial::validParams(), MFEMComplexVariable::validParams(), FVOneVarDiffusionInterface::validParams(), FVDiffusionInterface::validParams(), ArrayPenaltyDirichletBC::validParams(), FVAdvection::validParams(), FVMatAdvection::validParams(), AnalyticalIndicator::validParams(), EqualValueBoundaryConstraint::validParams(), ArrayDiffusion::validParams(), PenaltyDirichletNodalKernel::validParams(), ArrayReaction::validParams(), ExtraElementIDAux::validParams(), PerfGraphData::validParams(), IndicatorMarker::validParams(), UniformMarker::validParams(), ValueRangeMarker::validParams(), VariableResidual::validParams(), VectorPostprocessorComponent::validParams(), GenericConstantArray::validParams(), VectorPostprocessorReductionValue::validParams(), DGConvection::validParams(), FileMesh::validParams(), ConstantDT::validParams(), TestSourceStepper::validParams(), TiledMesh::validParams(), BoundaryDeletionGenerator::validParams(), ConstantVectorPostprocessor::validParams(), ElementOrderConversionGenerator::validParams(), PointValueSampler::validParams(), ActivateElementsCoupled::validParams(), ThresholdElementSubdomainModifier::validParams(), ExtraIDIntegralReporter::validParams(), GenericConstantVectorMaterialTempl< is_ad >::validParams(), KokkosIntegralMaterialProperty< KokkosSideIntegralPostprocessor >::validParams(), PeriodicFunction::validParams(), FVPostprocessorDirichletBC::validParams(), GapValueAux::validParams(), FunctionScalarIC::validParams(), UniqueExtraIDMeshGenerator::validParams(), ActivateElementsUserObjectBase::validParams(), ArrayFunctionIC::validParams(), NodalPatchRecoveryAuxBase::validParams(), ArrayBodyForce::validParams(), PenetrationAux::validParams(), ElementExtremeMaterialPropertyTempl< is_ad >::validParams(), ElementL2Error::validParams(), BoxMarker::validParams(), TimeExtremeValue::validParams(), MooseObjectAction::validParams(), ElementQualityChecker::validParams(), CSVReaderVectorPostprocessor::validParams(), LineValueSampler::validParams(), CoarsenBlockGenerator::validParams(), DebugResidualAux::validParams(), ElementGenerator::validParams(), ExtraNodesetGenerator::validParams(), FileMeshGenerator::validParams(), AdvectiveFluxAux::validParams(), FlipSidesetGenerator::validParams(), LowerDBlockFromSidesetGenerator::validParams(), MoveNodeGenerator::validParams(), NodeSetsFromSideSetsGenerator::validParams(), NodeSetsGeneratorBase::validParams(), FunctorNeumannBC::validParams(), OverlayMeshGenerator::validParams(), ParsedSubdomainMeshGenerator::validParams(), PlaneIDMeshGenerator::validParams(), FunctorDirichletBC::validParams(), RefineBlockGenerator::validParams(), RefineSidesetGenerator::validParams(), RenameBlockGenerator::validParams(), RenameBoundaryGenerator::validParams(), RenumberBySubdomainGenerator::validParams(), RinglebMeshGenerator::validParams(), SideSetsFromNodeSetsGenerator::validParams(), SideSetsFromNormalsGenerator::validParams(), FVCoupledForce::validParams(), FunctionIC::validParams(), SubdomainIDGenerator::validParams(), SubdomainPerElementGenerator::validParams(), SymmetryTransformGenerator::validParams(), TiledMeshGenerator::validParams(), BoundsBase::validParams(), ScalarComponentIC::validParams(), GetPostprocessorChainControl::validParams(), LimitChainControl::validParams(), PIDChainControl::validParams(), ProjectedMaterialPropertyNodalPatchRecoveryAux::validParams(), RealToBoolChainControl::validParams(), ScaleOldChainControl::validParams(), ADArrayReaction::validParams(), UnitTripChainControl::validParams(), FunctorKernel::validParams(), TerminateChainControl::validParams(), MultiPostprocessorConvergence::validParams(), DiscreteVariableResidualNorm::validParams(), ElementExtremeFunctorValueTempl< is_ad >::validParams(), BoundaryMarker::validParams(), ElementMaxLevelPostProcessor::validParams(), FunctionElementIntegral::validParams(), NodalL2Error::validParams(), ComboMarker::validParams(), PostprocessorSteadyStateConvergence::validParams(), ScalarVariable::validParams(), ScalePostprocessor::validParams(), PostprocessorConvergence::validParams(), ParsedVectorRealReductionReporter::validParams(), ParsedVectorReporter::validParams(), ParsedVectorVectorRealReductionReporter::validParams(), ExplicitSSPRungeKutta::validParams(), ConstantScalarAux::validParams(), ArrayDGDiffusion::validParams(), AnnularMesh::validParams(), FunctionArrayAux::validParams(), FunctionDiracSource::validParams(), FunctorDiracKernel::validParams(), GeneratedMesh::validParams(), RinglebMesh::validParams(), ExtraElementIntegerDivision::validParams(), NestedDivision::validParams(), ElemSideNeighborLayersGeomTester::validParams(), ElemSideNeighborLayersTester::validParams(), JSONFileReader::validParams(), BlockToMeshConverterGenerator::validParams(), NodalPatchRecoveryBase::validParams(), BoundaryLayerSubdomainGenerator::validParams(), ElementsAlongLine::validParams(), ElementsAlongPlane::validParams(), IntersectionPointsAlongLine::validParams(), BreakBoundaryOnSubdomainGenerator::validParams(), LineFunctionSampler::validParams(), AccumulateReporter::validParams(), SplineFunction::validParams(), PositionsFunctorValueSampler::validParams(), ConcentricCircleMeshGenerator::validParams(), SpatialAverageBase::validParams(), MultiAppConservativeTransfer::validParams(), TransformedPositions::validParams(), ReporterPositions::validParams(), ElementsToTetrahedronsConverter::validParams(), FillBetweenCurvesGenerator::validParams(), FillBetweenPointVectorsGenerator::validParams(), FillBetweenSidesetsGenerator::validParams(), ImageSubdomainGenerator::validParams(), GeneratedMeshGenerator::validParams(), MeshRepairGenerator::validParams(), MeshDiagnosticsGenerator::validParams(), VectorFromComponentVariablesMaterialTempl< is_ad >::validParams(), InterfaceValueUserObjectAux::validParams(), ParsedSubdomainGeneratorBase::validParams(), SideSetExtruderGenerator::validParams(), SideSetsFromPointsGenerator::validParams(), SmoothMeshGenerator::validParams(), StitchBoundaryMeshGenerator::validParams(), StitchMeshGenerator::validParams(), SubdomainsFromPartitionerGenerator::validParams(), DiffusionFluxAux::validParams(), ConstantBounds::validParams(), FunctorIC::validParams(), XYTriangleBoundaryLayerGenerator::validParams(), SpatialUserObjectVectorPostprocessor::validParams(), IntegralPreservingFunctionIC::validParams(), DivergenceAuxTempl< is_ad >::validParams(), InterfaceReaction::validParams(), PenaltyInterfaceDiffusionTempl< T, is_ad >::validParams(), ArrayReactionNodalKernelTempl< is_ad >::validParams(), SetValueChainControlTempl< T >::validParams(), SmootherChainControl::validParams(), PiecewiseConstantFromCSV::validParams(), DiffusionFV::validParams(), FilePositions::validParams(), CartesianMeshGenerator::validParams(), MaterialDerivativeRankFourTestKernel::validParams(), InputPositions::validParams(), MultiAppPositions::validParams(), EqualGradientConstraint::validParams(), MaterialDerivativeRankTwoTestKernel::validParams(), AverageVariableChange::validParams(), TagVectorArrayVariableValueAux::validParams(), ChangeOverFixedPointPostprocessor::validParams(), ChangeOverTimePostprocessor::validParams(), ChainControlDataPostprocessor::validParams(), ElementL2FunctorErrorTempl< is_ad >::validParams(), TagVectorAux::validParams(), PIDTransientControl::validParams(), LinearFVAnisotropicDiffusion::validParams(), NearestNodeNumber::validParams(), BoundaryPreservedMarker::validParams(), ElementLengthAux::validParams(), ElementNormalAux::validParams(), VectorPostprocessorVisualizationAux::validParams(), PseudoTimestep::validParams(), VectorVariableComponentAux::validParams(), ReporterPointMarker::validParams(), AddActionComponentAction::validParams(), BreakMeshByBlockGenerator::validParams(), CylindricalAverage::validParams(), ADDGAdvection::validParams(), GenericConstant2DArrayTempl< is_ad >::validParams(), ElementExtremeMaterialPropertyReporterTempl< is_ad >::validParams(), GenericConstantRealVectorValueTempl< is_ad >::validParams(), FunctorAux::validParams(), ControllableInputTimes::validParams(), CSVFileTimes::validParams(), ExodusFileTimes::validParams(), InputTimes::validParams(), ReporterTimes::validParams(), Times::validParams(), RankTwoTensorFromComponentProperties::validParams(), ExodusTimeSequenceStepper::validParams(), PostprocessorDT::validParams(), ConstantPointSource::validParams(), TimeSequenceStepper::validParams(), MultiAppCloneReporterTransfer::validParams(), ConcentricCircleMesh::validParams(), MultiAppPostprocessorToAuxScalarTransfer::validParams(), MultiAppReporterTransfer::validParams(), MultiAppScalarToAuxScalarTransfer::validParams(), FunctorBinnedValuesDivision::validParams(), Distribution::validParams(), MessageFromInput::validParams(), NearestNodeNumberUO::validParams(), AnnularMeshGenerator::validParams(), BoundaryElementConversionGenerator::validParams(), CombinedVectorPostprocessor::validParams(), LinearCombinationFunction::validParams(), SpatialUserObjectAux::validParams(), LeastSquaresFit::validParams(), CombinerGenerator::validParams(), ArrayDirichletBC::validParams(), FunctorChangeFunctorMaterialTempl< is_ad >::validParams(), CutMeshByPlaneGenerator::validParams(), DeleteElementsNearMeshGenerator::validParams(), AdvancedExtruderGenerator::validParams(), DirichletBC::validParams(), MeshExtruderGenerator::validParams(), ParsedFunctorMaterialTempl< is_ad >::validParams(), MeshCollectionGenerator::validParams(), VectorMagnitudeFunctorMaterialTempl< is_ad >::validParams(), ElementsToSimplicesConverter::validParams(), FunctionGradientNeumannBC::validParams(), FVConstantScalarOutflowBC::validParams(), FVDirichletBC::validParams(), TimeSequenceFromTimes::validParams(), FVFunctionDirichletBC::validParams(), FunctorPositions::validParams(), FunctionScalarAux::validParams(), FunctionNeumannBC::validParams(), FunctorElementalGradientAuxTempl< is_ad >::validParams(), SolutionTimeAdaptiveDT::validParams(), FunctorVectorElementalAuxTempl< is_ad >::validParams(), ParsedExtraElementIDGenerator::validParams(), GenericFunctionRankTwoTensorTempl< is_ad >::validParams(), ParsedGenerateNodeset::validParams(), LayeredSideDiffusiveFluxAverage::validParams(), VariableValueVolumeHistogram::validParams(), PolyLineMeshFollowingNodeSetGenerator::validParams(), ProjectSideSetOntoLevelSetGenerator::validParams(), FVAnisotropicDiffusion::validParams(), GenericConstantRankTwoTensorTempl< is_ad >::validParams(), MaterialDerivativeTestAction::validParams(), PostprocessorDirichletBC::validParams(), FunctorTimes::validParams(), SideSetsFromBoundingBoxGenerator::validParams(), VectorCurlPenaltyDirichletBC::validParams(), StackGenerator::validParams(), VectorDirichletBC::validParams(), ArrayConstantIC::validParams(), FunctionAux::validParams(), VectorDivPenaltyDirichletBC::validParams(), ADDirichletBC::validParams(), SurfaceMeshGeneratorBase::validParams(), VectorPenaltyDirichletBC::validParams(), NodalNormalsCorner::validParams(), TransformGenerator::validParams(), NearestNodeDistanceAux::validParams(), XYZDelaunayGenerator::validParams(), MeshDivisionAux::validParams(), GetFunctionValueChainControl::validParams(), CylindricalGridDivision::validParams(), MFEMComplexScalarProjectionAux::validParams(), MFEMComplexVectorProjectionAux::validParams(), MFEMScalarProjectionAux::validParams(), MFEMVectorProjectionAux::validParams(), InternalSideIndicatorBase::validParams(), MFEMPointValueSampler::validParams(), ElementAdaptivityLevelAux::validParams(), NEML2PostKernel::validParams(), DistributedPositions::validParams(), StitchMeshGeneratorBase::validParams(), DifferencePostprocessor::validParams(), TagVectorArrayVariableAux::validParams(), ElementHCurlSemiError::validParams(), BoolFunctionControl::validParams(), ElementHDivSemiError::validParams(), ElementL1Error::validParams(), ConditionalFunctionEnableControl::validParams(), VectorFunctionAux::validParams(), TimesEnableControl::validParams(), QuadraturePointMarker::validParams(), ElementQualityAux::validParams(), NumMeshDivisions::validParams(), CoupledGradientMaterialTempl< is_ad >::validParams(), NumPositions::validParams(), PercentChangePostprocessor::validParams(), GenericConstantSymmetricRankTwoTensorTempl< is_ad >::validParams(), ArrayVariableValueVolumeHistogram::validParams(), InterfaceQpMaterialPropertyBaseUserObject< Real >::validParams(), ADArrayDirichletBC::validParams(), VectorConstantPointSource::validParams(), MultiAppVariableValueSampleTransfer::validParams(), ADFunctionNeumannBC::validParams(), BicubicSplineFunction::validParams(), BreakMeshByElementGenerator::validParams(), PiecewiseLinearFromVectorPostprocessor::validParams(), CircularBoundaryCorrectionGenerator::validParams(), FunctorCoordinatesFunctionAux::validParams(), CutMeshByLevelSetGenerator::validParams(), MeshDivisionFunctorReductionVectorPostprocessor::validParams(), GenericVectorFunctorMaterialTempl< is_ad >::validParams(), FunctionElementIntegralUserObject::validParams(), FVFunctorNeumannBC::validParams(), FunctionDirichletBC::validParams(), MaterialPropertyValueTempl< is_ad >::validParams(), OrientedSubdomainBoundingBoxGenerator::validParams(), ParsedCurveGenerator::validParams(), MultiAppVectorPostprocessorTransfer::validParams(), ParsedNodeTransformGenerator::validParams(), MatNeumannBCTempl< is_ad >::validParams(), GenericConstantStdVectorMaterialTempl< is_ad >::validParams(), FVOrthogonalDiffusion::validParams(), MultiAppVariableValueSamplePostprocessorTransfer::validParams(), XYDelaunayGenerator::validParams(), NearestPositionsDivision::validParams(), LeastSquaresFitHistory::validParams(), MFEMAuxKernel::validParams(), NearestNodeValueAux::validParams(), MFEMRefinementMarker::validParams(), MFEMMultiAppTransfer::validParams(), MFEMVariable::validParams(), MFEMLineValueSampler::validParams(), AnisotropicDiffusion::validParams(), ConstantDamper::validParams(), BlockWeightedPartitioner::validParams(), Positions::validParams(), MFEMGenericFESpace::validParams(), CumulativeValuePostprocessor::validParams(), MultiAppPostprocessorTransfer::validParams(), LinearFVAdvection::validParams(), MFEMComplexAuxKernel::validParams(), VectorOfPostprocessors::validParams(), ConstantRate::validParams(), PointValue::validParams(), CoarsenedPiecewiseLinear::validParams(), ExtraIDIntegralVectorPostprocessor::validParams(), CoupledValueFunctionMaterialTempl< is_ad >::validParams(), PiecewiseLinearInterpolationMaterial::validParams(), GreaterThanLessThanPostprocessor::validParams(), MultiAppGeneralFieldUserObjectTransfer::validParams(), OneDEqualValueConstraintBC::validParams(), ElementIntegralMaterialPropertyTempl< is_ad >::validParams(), MultiAppPostprocessorInterpolationTransfer::validParams(), CutMeshByLevelSetGeneratorBase::validParams(), ElementDeletionGeneratorBase::validParams(), FVFunctionNeumannBC::validParams(), FVFunctorDirichletBCTempl< is_ad >::validParams(), UserForcingFunctorNodalKernel::validParams(), FunctionValuePostprocessor::validParams(), Boundary2DDelaunayGenerator::validParams(), ElementIntegralFunctorPostprocessorTempl< is_ad >::validParams(), MaterialDerivativeTestKernelBase< Real >::validParams(), MatReactionTempl< false >::validParams(), XYMeshLineCutter::validParams(), ReporterPointSource::validParams(), SidesetAroundSubdomainUpdater::validParams(), BatchMeshGeneratorAction::validParams(), ADPiecewiseLinearInterpolationMaterial::validParams(), ElementUOAux::validParams(), LinearNodalConstraint::validParams(), GhostingFromUOAux::validParams(), MaterialRankFourTensorAuxTempl< is_ad >::validParams(), TorchScriptMaterial::validParams(), InterpolatedStatefulMaterialTempl< T >::validParams(), SideIntegralFunctorUserObject::validParams(), ElementH1SemiError::validParams(), LibtorchControlValuePostprocessor::validParams(), MatBodyForceTempl< is_ad, Parent >::validParams(), BoundaryLinearFVFluxIntegral::validParams(), ManifoldSubdomainGenerator::validParams(), FunctorExtremaPositions::validParams(), SolutionScalarAux::validParams(), UserForcingFunctionNodalKernel::validParams(), PlaneDeletionGenerator::validParams(), SolutionAux::validParams(), BoundingBoxIC::validParams(), SurfaceSubdomainsDelaunayRemesher::validParams(), TorchScriptUserObject::validParams(), ElementIntegralFunctorUserObject::validParams(), MFEMScalarTimeAverageAux::validParams(), MFEMGenericFunctorMaterial::validParams(), MFEMIndicator::validParams(), MFEMVectorBoundaryFluxIntegralPostprocessor::validParams(), SideFVFluxBCIntegral::validParams(), MFEMGenericFunctorVectorMaterial::validParams(), ParsedGenerateSideset::validParams(), ScalarConstantIC::validParams(), TransfiniteMeshGenerator::validParams(), AuxNodalScalarKernel::validParams(), ElementL2ErrorFunctionAux::validParams(), FVDivergence::validParams(), ElementalVariableValue::validParams(), SideIntegralFunctorPostprocessorTempl< false >::validParams(), StitchedMesh::validParams(), FVOrthogonalBoundaryDiffusion::validParams(), ContainsPointAux::validParams(), MaterialRankTwoTensorAuxTempl< T, is_ad >::validParams(), MaterialAuxBaseTempl< RealTensorValue, is_ad >::validParams(), CSVTimeSequenceStepper::validParams(), MFEMInnerProductAux::validParams(), TagVectorSum::validParams(), MFEMCutTransitionSubMesh::validParams(), MultiAppCopyTransfer::validParams(), ScalarL2Error::validParams(), OrientedBoxMarker::validParams(), GenericConstantMaterialTempl< is_ad >::validParams(), LibtorchArtificialNeuralNetParameters::validParams(), EqualValueEmbeddedConstraintTempl< is_ad >::validParams(), MultiAppGeneralFieldFunctorTransfer::validParams(), FVConstantIC::validParams(), ParsedDownSelectionPositions::validParams(), ADDGDiffusion::validParams(), LinearFVAdvectionDiffusionFunctorDirichletBC::validParams(), MFEMCrossProductAux::validParams(), HistogramVectorPostprocessor::validParams(), RealFunctionControl::validParams(), LibmeshPartitioner::validParams(), DGDiffusion::validParams(), LinearCombinationPostprocessor::validParams(), LinearFVAdvectionDiffusionFunctorNeumannBC::validParams(), ParsedElementDeletionGenerator::validParams(), PatternedMeshGenerator::validParams(), FVDiffusion::validParams(), LibtorchNeuralNetControl::validParams(), SideSetsGeneratorBase::validParams(), NodalVariableValue::validParams(), PNGOutput::validParams(), SubdomainBoundingBoxGenerator::validParams(), ADFunctionPenaltyDirichletBC::validParams(), ProxyRelationshipManager::validParams(), DistributedRectilinearMeshGenerator::validParams(), SideAdvectiveFluxIntegralTempl< is_ad >::validParams(), EigenExecutionerBase::validParams(), FVFunctionIC::validParams(), InterfaceDiffusiveFluxIntegralTempl< is_ad >::validParams(), NodalNormalsPreprocessor::validParams(), RelationshipManager::validParams(), PropertyReadFile::validParams(), VectorConstantIC::validParams(), FVBoundedValueConstraint::validParams(), Axisymmetric2D3DSolutionFunction::validParams(), CompositeTensorBase< T, U >::validParams(), FunctionPenaltyDirichletBC::validParams(), BoundingBoxNodeSetGenerator::validParams(), NodalDamper::validParams(), Predictor::validParams(), DGFunctionDiffusionDirichletBC::validParams(), MultiAppUserObjectTransfer::validParams(), ComparisonPostprocessor::validParams(), CompileTimeDerivativesMaterial< N, is_ad, MaxD >::validParams(), ComponentJunction::validParams(), SumPostprocessor::validParams(), CylinderComponent::validParams(), FVPointValueConstraint::validParams(), PatternedMesh::validParams(), MeshGeneratorComponent::validParams(), AB2PredictorCorrector::validParams(), NodeElemConstraintBase::validParams(), PostprocessorComparison::validParams(), ConstantIC::validParams(), ElementIndicator::validParams(), ElementW1pError::validParams(), SolutionUserObjectBase::validParams(), RelativeDifferencePostprocessor::validParams(), AverageValueConstraint::validParams(), BoundaryRestrictableRequired::validParams(), VectorPostprocessorComparison::validParams(), ScalarSolutionIC::validParams(), IterationAdaptiveDT::validParams(), PhysicsBasedPreconditioner::validParams(), ScalarLMKernelTempl< is_ad >::validParams(), RadialAverage::validParams(), ElementDamper::validParams(), NEML2Kernel::validParams(), PostprocessorSpatialUserObject::validParams(), ADPenaltyDirichletBC::validParams(), VariableCondensationPreconditioner::validParams(), InternalSideIndicatorTempl< ComputeValueType >::validParams(), PenaltyDirichletBC::validParams(), ProjectedStatefulMaterialNodalPatchRecoveryTempl< T, is_ad >::validParams(), LayeredBase::validParams(), SolutionIC::validParams(), SamplerBase::validParams(), GhostBoundary::validParams(), NEML2FEInterpolation::validParams(), MortarConsumerInterface::validParams(), AuxScalarKernel::validParams(), LineMaterialSamplerBase< Real >::validParams(), OrientedBoxInterface::validParams(), FVInitialConditionBase::validParams(), PiecewiseFunction::validParams(), FieldSplitPreconditionerTempl< MoosePreconditioner >::validParams(), InitialConditionBase::validParams(), AuxKernelBase::validParams(), LinearFVBoundaryCondition::validParams(), FVInterfaceKernel::validParams(), FVBoundaryCondition::validParams(), and MultiApp::validParams().

1771 {
1772  checkParamName(name);
1773  checkConsistentType<T>(name);
1774 
1775  InputParameters::insert<T>(name);
1776  auto & metadata = _params[name];
1777  metadata._required = true;
1778  if constexpr (isFunctorNameType<T>())
1779  metadata._doc_string = appendFunctorDescription<T>(doc_string);
1780  else
1781  metadata._doc_string = doc_string;
1782 }
std::string name(const ElemQuality q)
std::string appendFunctorDescription(const std::string &doc_string) const
Appends description of what a functor is to a doc string.
void checkParamName(const std::string &name) const
Make sure the parameter name doesn&#39;t have any invalid characters.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ addRequiredParam() [2/6]

template<typename T >
void InputParameters::addRequiredParam ( const std::string &  name,
const T &  moose_enum,
const std::string &  doc_string 
)

This version of addRequiredParam is here for a consistent use with MooseEnums.

Use of this function for any other type will throw an error.

Definition at line 1786 of file InputParameters.h.

1789 {
1790  mooseError("You cannot call addRequiredParam and supply a default value for this type, please "
1791  "use addParam instead");
1792 }
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.

◆ addRequiredParam() [3/6]

template<>
void InputParameters::addRequiredParam ( const std::string &  name,
const MooseEnum moose_enum,
const std::string &  doc_string 
)

Definition at line 1295 of file InputParameters.C.

1298 {
1299  InputParameters::set<MooseEnum>(name) = moose_enum; // valid parameter is set by set_attributes
1300  auto & metadata = _params[name];
1301  metadata._required = true;
1302  metadata._doc_string = doc_string;
1303 }
std::string name(const ElemQuality q)
std::map< std::string, Metadata > _params
The actual parameter data.

◆ addRequiredParam() [4/6]

template<>
void InputParameters::addRequiredParam ( const std::string &  name,
const MultiMooseEnum moose_enum,
const std::string &  doc_string 
)

Definition at line 1307 of file InputParameters.C.

1310 {
1311  InputParameters::set<MultiMooseEnum>(name) =
1312  moose_enum; // valid parameter is set by set_attributes
1313  auto & metadata = _params[name];
1314  metadata._required = true;
1315  metadata._doc_string = doc_string;
1316 }
std::string name(const ElemQuality q)
std::map< std::string, Metadata > _params
The actual parameter data.

◆ addRequiredParam() [5/6]

template<>
void InputParameters::addRequiredParam ( const std::string &  name,
const MooseEnum moose_enum,
const std::string &  doc_string 
)

◆ addRequiredParam() [6/6]

template<>
void InputParameters::addRequiredParam ( const std::string &  name,
const MultiMooseEnum moose_enum,
const std::string &  doc_string 
)

◆ addRequiredRangeCheckedParam()

template<typename T >
void InputParameters::addRequiredRangeCheckedParam ( const std::string &  name,
const std::string &  parsed_function,
const std::string &  doc_string 
)

◆ allowCopy()

void InputParameters::allowCopy ( bool  status)
inlineprivate

Toggle the availability of the copy constructor.

When MooseObject is created via the Factory this flag is set to false, so when a MooseObject is created if the constructor is not a const reference an error is produced. This method allows the InputParameterWarehouse to disable copying.

Definition at line 1449 of file InputParameters.h.

Referenced by ActionWarehouse::printInputFile().

1449 { _allow_copy = status; }
bool _allow_copy
A flag for toggling the error message in the copy constructor.
MPI_Status status

◆ appendFunctorDescription()

template<typename T >
std::string InputParameters::appendFunctorDescription ( const std::string &  doc_string) const
private

Appends description of what a functor is to a doc string.

Definition at line 2564 of file InputParameters.h.

2565 {
2566  auto numeric_value_type = []()
2567  {
2569  Moose::internal::getNullptrExample<T>()))
2570  return "number";
2571  else if constexpr (Moose::internal::isVectorFunctorNameTypeHelper(
2572  Moose::internal::getNullptrExample<T>()))
2573  return "numeric vector value (enclosed in curly braces)";
2574  else
2575  {
2576  mooseAssert(false, "We control instantiations of this method");
2577  return "";
2578  }
2579  };
2580 
2581  return MooseUtils::trim(doc_string, ". ") + ". A functor is any of the following: a variable, " +
2582  (
2583 #ifdef MOOSE_MFEM_ENABLED
2584  Moose::internal::isMFEMFunctorNameTypeHelper(Moose::internal::getNullptrExample<T>())
2585  ? "an MFEM"
2586  :
2587 #endif
2588  "a functor") +
2589  " material property, a function, a postprocessor or a " + numeric_value_type() + ".";
2590 }
constexpr bool isMFEMFunctorNameTypeHelper(T *)
constexpr bool isVectorFunctorNameTypeHelper(std::vector< T, A > *)
std::string trim(const std::string &str, const std::string &white_space=" \\\)
Standard scripting language trim function.
constexpr bool isScalarFunctorNameTypeHelper(T *)
constexpr T * getNullptrExample()
if(!dmm->_nl) SETERRQ(PETSC_COMM_WORLD
MOOSE now contains C++17 code, so give a reasonable error message stating what the user can do to add...

◆ applyCommonUserSetParameters()

void InputParameters::applyCommonUserSetParameters ( const InputParameters common,
const std::vector< std::string > &  exclude = {},
const bool  allow_private = false 
)

Variant of applyParameters that only applies parameters explicitly set by the user in common (i.e.

isParamSetByUser() is true). Object-type defaults are therefore never overridden by common-block defaults, only by values the user actually wrote.

Definition at line 1116 of file InputParameters.C.

Referenced by FEProblemBase::addOutput().

1119 {
1120  for (const auto & it : common)
1121  {
1122  const std::string & common_name = it.first;
1123  if (std::find(exclude.begin(), exclude.end(), common_name) != exclude.end())
1124  continue;
1125  if (!common.isParamSetByUser(common_name))
1126  continue;
1127  applyParameter(common, common_name, allow_private);
1128  }
1129 
1130  for (const auto & var_name : common._coupled_vars)
1131  {
1132  if (std::find(exclude.begin(), exclude.end(), var_name) != exclude.end())
1133  continue;
1134  if (!common.isParamSetByUser(var_name))
1135  continue;
1136  applyCoupledVar(common, var_name);
1137  }
1138 }
KOKKOS_INLINE_FUNCTION const T * find(const T &target, const T *const begin, const T *const end)
Find a value in an array.
Definition: KokkosUtils.h:40
void applyCoupledVar(const InputParameters &common, const std::string &var_name)
Apply properties of a single coupled variable in common, to a single coupled variable stored in this ...
void applyParameter(const InputParameters &common, const std::string &common_name, bool allow_private=false)
Apply values from a single parameter in common, to a single parameter stored in this object...

◆ applyCoupledVar()

void InputParameters::applyCoupledVar ( const InputParameters common,
const std::string &  var_name 
)

Apply properties of a single coupled variable in common, to a single coupled variable stored in this object.

Parameters
commonThe set of InputParameters from which to extract the coupled variable's properties
var_nameThe name of the coupled variable whose properties are to be applied

In order to apply the properties, both the local parameters and the common parameters must have a coupled variable with name var_name

Definition at line 1175 of file InputParameters.C.

Referenced by applyCommonUserSetParameters(), applyParameters(), and applySpecificParameters().

1176 {
1177  // Disable the display of deprecated message when applying common parameters, this avoids a dump
1178  // of messages
1179  _show_deprecated_message = false;
1180 
1181  // If the local parameters has a coupled variable, populate it with the value from the common
1182  // parameters, if the common parameters has the coupled variable too
1183  if (hasCoupledValue(var_name))
1184  {
1185  if (common.hasDefaultCoupledValue(var_name))
1186  {
1187  // prepare a vector of default coupled values
1188  std::vector<Real> defaults(common.numberDefaultCoupledValues(var_name));
1189  for (unsigned int j = 0; j < common.numberDefaultCoupledValues(var_name); ++j)
1190  defaults[j] = common.defaultCoupledValue(var_name, j);
1191  addCoupledVar(var_name, defaults, common.getDocString(var_name));
1192  }
1193  else if (common.hasCoupledValue(var_name))
1194  addCoupledVar(var_name, common.getDocString(var_name));
1195  }
1196 
1197  // Enable deprecated message printing
1198  _show_deprecated_message = true;
1199 }
bool hasCoupledValue(const std::string &coupling_name) const
Return whether or not the coupled variable exists.
unsigned int numberDefaultCoupledValues(const std::string &coupling_name) const
Get the number of defaulted coupled value entries.
bool _show_deprecated_message
Flag for disabling deprecated parameters message, this is used by applyParameters to avoid dumping me...
std::string getDocString(const std::string &name) const
Returns the documentation string for the specified parameter name.
bool hasDefaultCoupledValue(const std::string &coupling_name) const
Return whether or not the requested parameter has a default coupled value.
Real defaultCoupledValue(const std::string &coupling_name, unsigned int i=0) const
Get the default value for an optionally coupled variable.
void addCoupledVar(const std::string &name, const std::string &doc_string)
This method adds a coupled variable name pair.

◆ applyParameter()

void InputParameters::applyParameter ( const InputParameters common,
const std::string &  common_name,
bool  allow_private = false 
)

Apply values from a single parameter in common, to a single parameter stored in this object.

Parameters
commonThe set of InputParameters from which to extract parameters from
common_nameThe name within common from which to get the parameter values

In order to apply common parameter 4 statements must be satisfied (1) A local parameter must exist with the same name as common parameter (2) Common parameter must valid (3) Local parameter must be invalid OR not have been set from its default (4) Both cannot be private

Definition at line 1202 of file InputParameters.C.

Referenced by ComposeTimeStepperAction::act(), applyCommonUserSetParameters(), applyParameters(), and applySpecificParameters().

1205 {
1206  // Disable the display of deprecated message when applying common parameters, this avoids a dump
1207  // of messages
1208  _show_deprecated_message = false;
1209 
1210  const auto local_name = checkForRename(common_name);
1211 
1212  // Extract the properties from the local parameter for the current common parameter name
1213  const bool local_exist = _values.find(local_name) != _values.end();
1214  const bool local_set = _params.count(local_name) > 0 && !_params[local_name]._set_by_add_param;
1215  const bool local_priv = allow_private ? false : isPrivate(local_name);
1216  const bool local_valid = isParamValid(local_name);
1217 
1218  // Extract the properties from the common parameter
1219  const bool common_exist = common._values.find(common_name) != common._values.end();
1220  const bool common_priv = allow_private ? false : common.isPrivate(common_name);
1221  const bool common_valid = common.isParamValid(common_name);
1222 
1223  /* In order to apply a common parameter 4 statements must be satisfied
1224  * (1) A local parameter must exist with the same name as the common parameter
1225  * (2) Common parameter must be valid and exist
1226  * (3) Local parameter must be invalid OR not have been set from its default
1227  * (4) Both cannot be private
1228  */
1229  if (local_exist && common_exist && common_valid && (!local_valid || !local_set) &&
1230  (!common_priv || !local_priv))
1231  {
1232  remove(local_name);
1233  _values[local_name] = common._values.find(common_name)->second->clone();
1234  set_attributes(local_name, false);
1235  _params[local_name]._set_by_add_param =
1236  libmesh_map_find(common._params, common_name)._set_by_add_param;
1237  // Keep track of where this param came from if we can. This will enable us to
1238  // produce param errors from objects created within an action that link to
1239  // the parameter in the action
1240  at(local_name)._hit_node = common.getHitNode(common_name);
1241  }
1242  else if (!local_exist && !common_exist)
1243  mooseError("InputParameters::applyParameter(): Attempted to apply invalid parameter \"",
1244  common_name,
1245  "\"");
1246 
1247  // Enable deprecated message printing
1248  _show_deprecated_message = true;
1249 }
const hit::Node * getHitNode(const std::string &param) const
const hit::Node * _hit_node
Original location of parameter node; used for error messages.
bool isPrivate(const std::string &name) const
Returns a Boolean indicating whether the specified parameter is private or not.
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
bool _show_deprecated_message
Flag for disabling deprecated parameters message, this is used by applyParameters to avoid dumping me...
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.
virtual void set_attributes(const std::string &name, bool inserted_only) override
Override from libMesh to set user-defined attributes on our parameter.
Metadata & at(const std::string &param_name)
bool isParamValid(const std::string &name) const
This method returns parameters that have been initialized in one fashion or another, i.e.

◆ applyParameters()

void InputParameters::applyParameters ( const InputParameters common,
const std::vector< std::string > &  exclude = {},
const bool  allow_private = false 
)

Method for applying common parameters.

Parameters
commonThe set of parameters to apply to the parameters stored in this object
excludeA vector of parameters to exclude

In order to apply common parameter 4 statements must be satisfied (1) A local parameter must exist with the same name as common parameter (2) Common parameter must be valid (3) Local parameter must be invalid OR not have been set from its default (4) Both cannot be private (unless allow_private = true)

Output objects have a set of common parameters that are passed down to each of the output objects created. This method is used for applying those common parameters.

See also
CommonOutputAction AddOutputAction

Definition at line 1084 of file InputParameters.C.

Referenced by AddActionComponentAction::act(), FEProblemBase::addDefaultMultiAppFixedPointConvergence(), ReferenceResidualProblem::addDefaultNonlinearConvergence(), FEProblemBase::addDefaultNonlinearConvergence(), FEProblemBase::addDefaultSteadyStateConvergence(), SampledOutput::cloneMesh(), DumpObjectsProblem::DumpObjectsProblem(), and ProjectedStatefulMaterialStorageAction::processProperty().

1087 {
1088  // If we're applying all of the things, also associate the top level hit node
1089  if (exclude.empty() && !getHitNode() && common.getHitNode())
1090  setHitNode(*common.getHitNode(), {});
1091 
1092  // Loop through the common parameters
1093  for (const auto & it : common)
1094  {
1095  // Common parameter name
1096  const std::string & common_name = it.first;
1097  // Continue to next parameter, if the current is in list of excluded parameters
1098  if (std::find(exclude.begin(), exclude.end(), common_name) != exclude.end())
1099  continue;
1100 
1101  applyParameter(common, common_name, allow_private);
1102  }
1103 
1104  // Loop through the coupled variables
1105  for (const auto & var_name : common._coupled_vars)
1106  {
1107  // Continue to next variable, if the current is in list of excluded parameters
1108  if (std::find(exclude.begin(), exclude.end(), var_name) != exclude.end())
1109  continue;
1110 
1111  applyCoupledVar(common, var_name);
1112  }
1113 }
const hit::Node * getHitNode(const std::string &param) const
KOKKOS_INLINE_FUNCTION const T * find(const T &target, const T *const begin, const T *const end)
Find a value in an array.
Definition: KokkosUtils.h:40
void applyCoupledVar(const InputParameters &common, const std::string &var_name)
Apply properties of a single coupled variable in common, to a single coupled variable stored in this ...
void applyParameter(const InputParameters &common, const std::string &common_name, bool allow_private=false)
Apply values from a single parameter in common, to a single parameter stored in this object...
void setHitNode(const std::string &param, const hit::Node &node, const SetParamHitNodeKey)
Sets the hit node associated with the parameter param to node.
const hit::Node * getHitNode() const

◆ applySpecificParameters()

void InputParameters::applySpecificParameters ( const InputParameters common,
const std::vector< std::string > &  include,
bool  allow_private = false 
)

Method for applying common parameters.

Parameters
commonThe set of parameters to apply to the parameters stored in this object
includeA vector of parameters to apply

In order to apply common parameter 4 statements must be satisfied (1) A local parameter must exist with the same name as common parameter (2) Common parameter must valid (3) Local parameter must be invalid OR not have been set from its default (4) Both cannot be private

Output objects have a set of common parameters that are passed down to each of the output objects created. This method is used for applying those common parameters.

See also
CommonOutputAction AddOutputAction

Definition at line 1141 of file InputParameters.C.

Referenced by AddVariableAction::init(), OverlayMeshGenerator::OverlayMeshGenerator(), and ProjectedStatefulMaterialStorageAction::processProperty().

1144 {
1145  // Loop through the common parameters
1146  for (const auto & it : common)
1147  {
1148  // Common parameter name
1149  const std::string & common_name = it.first;
1150 
1151  // Continue to next parameter, if the current is not in list of included parameters
1152  if (std::find(include.begin(), include.end(), common_name) == include.end())
1153  continue;
1154 
1155  applyParameter(common, common_name, allow_private);
1156  }
1157 
1158  // Loop through the coupled variables
1159  for (std::set<std::string>::const_iterator it = common.coupledVarsBegin();
1160  it != common.coupledVarsEnd();
1161  ++it)
1162  {
1163  // Variable name
1164  const std::string var_name = *it;
1165 
1166  // Continue to next variable, if the current is not in list of included parameters
1167  if (std::find(include.begin(), include.end(), var_name) == include.end())
1168  continue;
1169 
1170  applyCoupledVar(common, var_name);
1171  }
1172 }
KOKKOS_INLINE_FUNCTION const T * find(const T &target, const T *const begin, const T *const end)
Find a value in an array.
Definition: KokkosUtils.h:40
void applyCoupledVar(const InputParameters &common, const std::string &var_name)
Apply properties of a single coupled variable in common, to a single coupled variable stored in this ...
void applyParameter(const InputParameters &common, const std::string &common_name, bool allow_private=false)
Apply values from a single parameter in common, to a single parameter stored in this object...

◆ areAllRequiredParamsValid()

bool InputParameters::areAllRequiredParamsValid ( ) const

This method returns true if all of the parameters in this object are valid (i.e.

isParamValid(name) == true - for all parameters)

Definition at line 440 of file InputParameters.C.

Referenced by ActionWarehouse::buildBuildableActions().

441 {
442  for (const auto & it : *this)
443  if (isParamRequired(it.first) && !isParamValid(it.first))
444  return false;
445  return true;
446 }
bool isParamRequired(const std::string &name) const
Returns a boolean indicating whether the specified parameter is required or not.
bool isParamValid(const std::string &name) const
This method returns parameters that have been initialized in one fashion or another, i.e.

◆ at() [1/2]

Metadata& InputParameters::at ( const std::string &  param_name)
inlineprivate

Definition at line 1425 of file InputParameters.h.

Referenced by addCommandLineParamHelper(), applyParameter(), commandLineParamSet(), finalize(), getCommandLineMetadata(), getControllableExecuteOnTypes(), getHitNode(), isCommandLineParameter(), queryCommandLineMetadata(), queryDataFileNamePath(), setGlobalCommandLineParam(), and setHitNode().

1426  {
1427  const auto param = checkForRename(param_name);
1428  if (_params.count(param) == 0)
1429  mooseError("param '", param, "' not present in InputParams");
1430  return _params[param];
1431  }
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ at() [2/2]

const Metadata& InputParameters::at ( const std::string &  param_name) const
inlineprivate

Definition at line 1432 of file InputParameters.h.

1433  {
1434  const auto param = checkForRename(param_name);
1435  if (_params.count(param) == 0)
1436  mooseError("param '", param, "' not present in InputParams");
1437  return _params.at(param);
1438  }
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ blockFullpath()

std::string InputParameters::blockFullpath ( ) const
Returns
A string representing the full HIT parameter path from the input file (e.g. "Mesh/foo") for the block containing parameters for this object.

Definition at line 1586 of file InputParameters.C.

Referenced by AddFVICAction::act(), AddICAction::act(), AddAuxKernelAction::act(), AddMFEMComplexKernelComponentAction::act(), AddMFEMComplexBCComponentAction::act(), AddActionComponentAction::AddActionComponentAction(), checkParams(), MooseObjectAction::MooseObjectAction(), FVRelationshipManagerInterface::parameterError(), and NEML2Action::printSummary().

1587 {
1588  if (const auto hit_node = getHitNode())
1589  return hit_node->fullpath();
1590  return "";
1591 }
const hit::Node * getHitNode() const

◆ blockLocation()

std::string InputParameters::blockLocation ( ) const
Returns
A string representing the location (i.e. filename,linenum) in the input text for the block containing parameters for this object.

Definition at line 1578 of file InputParameters.C.

1579 {
1580  if (const auto hit_node = getHitNode())
1581  return hit_node->fileLocation(/* with_column = */ false);
1582  return "";
1583 }
const hit::Node * getHitNode() const

◆ callMooseError()

void InputParameters::callMooseError ( std::string  msg,
const bool  with_prefix = true,
const hit::Node *  node = nullptr,
const bool  show_trace = true 
) const
private

Internal helper for calling back to mooseError(), ideally from the underlying MooseBase object if it is available (for more context)

Definition at line 1907 of file InputParameters.C.

Referenced by mooseError(), and paramError().

1911 {
1912  // Find the context of the app if we can. This will let our errors be
1913  // prefixed by the multiapp name (if applicable) and will flush the
1914  // console before outputting an error
1915  MooseApp * app = nullptr;
1916  if (isMooseBaseObject() && have_parameter<MooseApp *>(MooseBase::app_param))
1917  app = get<MooseApp *>(MooseBase::app_param);
1918 
1919  MooseBase::callMooseError(app, *this, msg, with_prefix, node, show_trace);
1920 }
static const std::string app_param
The name of the parameter that contains the MooseApp.
Definition: MooseBase.h:59
Base class for MOOSE-based applications.
Definition: MooseApp.h:108
bool isMooseBaseObject() const
void callMooseError(std::string msg, const bool with_prefix, const hit::Node *node=nullptr, const bool show_trace=true) const
External method for calling moose error with added object context.
Definition: MooseBase.C:105

◆ checkConsistentType()

template<typename T >
void InputParameters::checkConsistentType ( const std::string &  name) const

This method checks to make sure that we aren't adding a parameter with the same name but a different type.

It throws a MooseError if an inconsistent type is detected. While this state is supported by libMesh it brings nothing but blood and tears for those who try ;)

Parameters
namethe name of the parameter

Definition at line 2063 of file InputParameters.h.

2064 {
2065  const auto name = checkForRename(name_in);
2066 
2067  // If we don't currently have the Parameter, can't be any inconsistency
2068  InputParameters::const_iterator it = _values.find(name);
2069  if (it == _values.end())
2070  return;
2071 
2072  // Now, if we already have the Parameter, but it doesn't have the
2073  // right type, throw an error.
2074  if (!this->Parameters::have_parameter<T>(name))
2075  mooseError("Attempting to set parameter \"",
2076  name,
2077  "\" with type (",
2078  libMesh::demangle(typeid(T).name()),
2079  ")\nbut the parameter already exists as type (",
2080  it->second->type(),
2081  ")");
2082 }
std::string name(const ElemQuality q)
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
std::string demangle(const char *name)
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
map_type::const_iterator const_iterator

◆ checkForRename()

std::string InputParameters::checkForRename ( const std::string &  name) const

Checks whether the provided name is a renamed parameter name.

If so we return the 'new' name. If not we return the incoming name

Parameters
nameThe name to check for whether it is a renamed name
Returns
The new name if the incoming name is a renamed name, else name

Definition at line 1804 of file InputParameters.C.

Referenced by applyParameter(), at(), checkConsistentType(), checkParams(), ScalarCoupleable::checkVar(), Coupleable::checkVar(), commandLineParamSet(), Coupleable::coupledComponents(), ScalarCoupleable::coupledScalarComponents(), declareControllable(), defaultCoupledValue(), get(), getCheckedPointerParam(), getCommandLineMetadata(), getControllableExecuteOnTypes(), getDescription(), getDocString(), getDocUnit(), getGroupName(), getMooseType(), getParamHelper(), ScalarCoupleable::getScalarVar(), Coupleable::getVarHelper(), getVecMooseType(), hasDefault(), have_parameter(), ignoreParameter(), isCommandLineParameter(), isControllable(), Coupleable::isCoupled(), ScalarCoupleable::isCoupledScalar(), isParamDefined(), isParamDeprecated(), isParamRequired(), isParamSetByAddParam(), isParamSetByUser(), isParamValid(), isPrivate(), isRangeChecked(), isType(), makeParamNotRequired(), makeParamRequired(), queryCommandLineMetadata(), queryDataFileNamePath(), queryDeprecatedParamMessage(), rangeCheckedFunction(), reservedValues(), set(), set_attributes(), setDocString(), setDocUnit(), setGlobalCommandLineParam(), setReservedValues(), shouldIgnore(), suppressParameter(), transferParam(), and type().

1805 {
1806  if (auto it = _old_to_new_name_and_dep.find(name); it != _old_to_new_name_and_dep.end())
1807  return it->second.first;
1808  else
1809  return name;
1810 }
std::map< std::string, std::pair< std::string, std::string > > _old_to_new_name_and_dep
A map from base-class/deprecated parameter names to derived-class/blessed parameter names and the dep...

◆ checkParamName()

void InputParameters::checkParamName ( const std::string &  name) const
private

Make sure the parameter name doesn't have any invalid characters.

Definition at line 1625 of file InputParameters.C.

Referenced by addParam(), addPrivateParam(), addRequiredParam(), and set().

1626 {
1627  const static pcrecpp::RE valid("[\\w:/]+");
1628  if (!valid.FullMatch(name))
1629  mooseError("Invalid parameter name: '", name, "'");
1630 }
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
std::vector< ElemQuality > valid(const ElemType t)

◆ checkParams()

void InputParameters::checkParams ( const std::string &  parsing_syntax)

This function checks parameters stored in the object to make sure they are in the correct state as the user expects: Required parameters are verified as valid meaning that they were either initialized when they were created, or were read from an input file or some other valid source.

Definition at line 589 of file InputParameters.C.

Referenced by FEProblemBase::addFVInitialCondition(), FEProblemBase::addInitialCondition(), and finalize().

590 {
591  const std::string parampath = blockFullpath() != "" ? blockFullpath() : parsing_syntax;
592 
593  // Required parameters
594  std::vector<std::string> required_param_errors;
595  for (const auto & it : *this)
596  {
597  const auto param_name = checkForRename(it.first);
598  if (!isParamValid(param_name) && isParamRequired(param_name))
599  {
600  // check if an old, deprecated name exists for this parameter that may be specified
601  auto oit = _new_to_deprecated_coupled_vars.find(param_name);
602  if (oit != _new_to_deprecated_coupled_vars.end() && isParamValid(oit->second))
603  continue;
604 
605  required_param_errors.push_back("missing required parameter '" + parampath + "/" +
606  param_name + "'\n\tDoc String: \"" +
607  getDocString(param_name) + "\"");
608  }
609  }
610 
611  if (required_param_errors.size())
612  mooseError(MooseUtils::stringJoin(required_param_errors, "\n"));
613 
614  // Range checked parameters
615  for (const auto & [name, param_ptr] : *this)
616  {
617  if (const auto error = parameterRangeCheck(*param_ptr, parampath + "/" + name, name, false))
618  {
619  if (error->first)
620  paramError(name, error->second);
621  else
622  mooseError("For range checked parameter '" + name + "': " + error->second);
623  }
624  }
625 
626  // Controllable parameters
627  for (const auto & param_name : getControllableParameters())
628  {
629  if (isPrivate(param_name))
630  paramError(param_name,
631  "private parameter '" + paramFullpath(param_name) + "' marked controllable");
632 
633  std::optional<std::string> error;
634  checkMooseType(NonlinearVariableName, param_name);
635  checkMooseType(AuxVariableName, param_name);
636  checkMooseType(VariableName, param_name);
637  checkMooseType(BoundaryName, param_name);
638  checkMooseType(SubdomainName, param_name);
639  checkMooseType(PostprocessorName, param_name);
640  checkMooseType(VectorPostprocessorName, param_name);
641  checkMooseType(UserObjectName, param_name);
642  checkMooseType(MaterialPropertyName, param_name);
643  if (error)
644  paramError(param_name, *error);
645  }
646 }
std::unordered_map< std::string, std::string > _new_to_deprecated_coupled_vars
A map from deprecated coupled variable names to the new blessed name.
bool isPrivate(const std::string &name) const
Returns a Boolean indicating whether the specified parameter is private or not.
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
void paramError(const std::string &param, Args... args) const
Emits a parameter error prefixed with the parameter location and object information if available...
std::string getDocString(const std::string &name) const
Returns the documentation string for the specified parameter name.
std::optional< std::pair< bool, std::string > > parameterRangeCheck(const Parameters::Value &value, const std::string &long_name, const std::string &short_name, const bool include_param_path)
Performs a range check on the parameter (which must have a range check)
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::string blockFullpath() const
bool isParamRequired(const std::string &name) const
Returns a boolean indicating whether the specified parameter is required or not.
std::set< std::string > getControllableParameters() const
Return list of controllable parameters.
std::string stringJoin(const std::vector< std::string > &values, const std::string &separator=" ")
Concatenates value into a single string separated by separator.
std::string paramFullpath(const std::string &param) const
bool isParamValid(const std::string &name) const
This method returns parameters that have been initialized in one fashion or another, i.e.

◆ clear()

void InputParameters::clear ( )
overridevirtual

Reimplemented from libMesh::Parameters.

Definition at line 64 of file InputParameters.C.

65 {
67  _params.clear();
68  _coupled_vars.clear();
70  _collapse_nesting = false;
73  _allow_copy = true;
75  _new_to_old_names.clear();
76  _hit_node = nullptr;
77  _finalized = false;
78 }
std::multimap< std::string, std::string > _new_to_old_names
A map from derived-class/blessed parameter names to associated base-class/deprecated parameter names...
bool _allow_copy
A flag for toggling the error message in the copy constructor.
std::unordered_map< std::string, std::string > _new_to_deprecated_coupled_vars
A map from deprecated coupled variable names to the new blessed name.
bool _show_deprecated_message
Flag for disabling deprecated parameters message, this is used by applyParameters to avoid dumping me...
bool _collapse_nesting
This parameter collapses one level of nesting in the syntax blocks.
sideset clear()
std::set< std::string > _coupled_vars
The coupled variables set.
bool _finalized
Whether or not we&#39;ve called finalize() on these parameters yet.
const hit::Node * _hit_node
The hit node representing the syntax that created these parameters, if any.
bool _moose_object_syntax_visibility
This parameter hides derived MOOSE object types from appearing in syntax dumps.
std::map< std::string, Metadata > _params
The actual parameter data.
std::map< std::string, std::pair< std::string, std::string > > _old_to_new_name_and_dep
A map from base-class/deprecated parameter names to derived-class/blessed parameter names and the dep...

◆ clearRelationshipManagers()

void InputParameters::clearRelationshipManagers ( )
inline

Clears all currently registered RelationshipManagers.

Definition at line 788 of file InputParameters.h.

Referenced by ElemSideNeighborLayersGeomTester::validParams().

788 { _buildable_rm_types.clear(); }
std::vector< std::tuple< std::string, Moose::RelationshipManagerType, Moose::RelationshipManagerInputParameterCallback > > _buildable_rm_types
The RelationshipManagers that this object may either build or require.

◆ collapseSyntaxNesting() [1/2]

void InputParameters::collapseSyntaxNesting ( bool  collapse)

Mutators for controlling whether or not the outermost level of syntax will be collapsed when printed.

Definition at line 560 of file InputParameters.C.

Referenced by Moose::Builder::buildFullTree(), and Moose::Builder::buildJsonSyntaxTree().

561 {
562  _collapse_nesting = collapse;
563 }
bool _collapse_nesting
This parameter collapses one level of nesting in the syntax blocks.

◆ collapseSyntaxNesting() [2/2]

bool InputParameters::collapseSyntaxNesting ( ) const

Definition at line 566 of file InputParameters.C.

567 {
568  return _collapse_nesting;
569 }
bool _collapse_nesting
This parameter collapses one level of nesting in the syntax blocks.

◆ commandLineParamSet()

void InputParameters::commandLineParamSet ( const std::string &  name,
const CommandLineParamSetKey   
)

Marks the command line parameter name as set by the CommandLine.

Protected by the CommandLineParamSetKey so that only the CommandLine can call this.

Definition at line 1063 of file InputParameters.C.

1064 {
1065  auto & cl_data = at(checkForRename(name))._cl_data;
1066  if (!cl_data)
1067  mooseError("InputParameters::commandLineParamSet: The parameter '",
1068  name,
1069  "' is not a command line parameter");
1070  cl_data->set_by_command_line = true;
1071 }
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::optional< CommandLineMetadata > _cl_data
The data pertaining to a command line parameter (empty if not a command line param) ...
Metadata & at(const std::string &param_name)

◆ coupledVarsBegin()

std::set<std::string>::const_iterator InputParameters::coupledVarsBegin ( ) const
inline

Methods returning iterators to the coupled variables names stored in this InputParameters object.

Definition at line 882 of file InputParameters.h.

Referenced by Coupleable::Coupleable(), LazyCoupleable::LazyCoupleable(), and ScalarCoupleable::ScalarCoupleable().

883  {
884  return _coupled_vars.begin();
885  }
std::set< std::string > _coupled_vars
The coupled variables set.

◆ coupledVarsEnd()

std::set<std::string>::const_iterator InputParameters::coupledVarsEnd ( ) const
inline

Definition at line 886 of file InputParameters.h.

Referenced by Coupleable::Coupleable(), LazyCoupleable::LazyCoupleable(), and ScalarCoupleable::ScalarCoupleable().

887  {
888  return _coupled_vars.end();
889  }
std::set< std::string > _coupled_vars
The coupled variables set.

◆ declareControllable()

void InputParameters::declareControllable ( const std::string &  name,
std::set< ExecFlagType execute_flags = {} 
)

Declare the given parameters as controllable.

Definition at line 456 of file InputParameters.C.

Referenced by GenericConstantArray::validParams(), PenaltyDirichletNodalKernel::validParams(), GenericConstantVectorMaterialTempl< is_ad >::validParams(), ConstantScalarAux::validParams(), ConstantFunction::validParams(), ConstantPostprocessor::validParams(), ConstantAux::validParams(), ControllableInputTimes::validParams(), ReactionTempl< is_ad >::validParams(), GenericConstant2DArrayTempl< is_ad >::validParams(), ConstantPointSource::validParams(), ArrayDirichletBC::validParams(), VectorConstantPointSource::validParams(), DirichletBC::validParams(), ADArrayDirichletBC::validParams(), NeumannBCTempl< is_ad >::validParams(), VectorDirichletBC::validParams(), ADDirichletBC::validParams(), PiecewiseLinearInterpolationMaterial::validParams(), ConstantRate::validParams(), PiecewiseTabularBase::validParams(), FunctionValuePostprocessor::validParams(), FVBodyForce::validParams(), VectorBodyForce::validParams(), TorchScriptUserObject::validParams(), TimeStepper::validParams(), GenericConstantMaterialTempl< is_ad >::validParams(), BodyForceTempl< is_ad >::validParams(), Damper::validParams(), InterfaceKernelBase::validParams(), DiracKernelBase::validParams(), IterationAdaptiveDT::validParams(), PenaltyDirichletBC::validParams(), ADPenaltyDirichletBC::validParams(), AuxScalarKernel::validParams(), UserObjectBase::validParams(), Output::validParams(), AuxKernelBase::validParams(), LinearFVBoundaryCondition::validParams(), FVInterfaceKernel::validParams(), FVBoundaryCondition::validParams(), MultiApp::validParams(), and FEProblemBase::validParams().

458 {
459  std::vector<std::string> names;
460  MooseUtils::tokenize<std::string>(input_names, names, 1, " ");
461  for (auto & name_in : names)
462  {
463  const auto name = checkForRename(name_in);
464  auto map_iter = _params.find(name);
465  if (map_iter != _params.end()) // error is handled by checkParams method
466  {
467  map_iter->second._controllable = true;
468  map_iter->second._controllable_flags = execute_flags;
469  }
470  else
471  mooseError("The input parameter '",
472  name,
473  "' does not exist, thus cannot be marked as controllable.");
474  }
475 }
std::string name(const ElemQuality q)
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.
ExecFlagEnum execute_flags
Storage for the registered execute flags.

◆ defaultCoupledValue() [1/2]

Real InputParameters::defaultCoupledValue ( const std::string &  coupling_name,
unsigned int  i = 0 
) const

Get the default value for an optionally coupled variable.

Parameters
coupling_nameThe name of the coupling parameter to get the default value for.
iBy default 0, in general the index of the requested coupled default value.

Definition at line 843 of file InputParameters.C.

Referenced by applyCoupledVar(), ScalarCoupleable::getADDefaultValue(), Coupleable::getADDefaultValue(), Coupleable::getADDefaultVectorValue(), Coupleable::getDefaultArrayValue(), ScalarCoupleable::getDefaultValue(), Coupleable::getDefaultValue(), Coupleable::getDefaultVectorValue(), setupVariableNames(), and transferParam().

844 {
845  auto value_it = _params.find(coupling_name);
846 
847  if (value_it == _params.end() || !value_it->second._have_coupled_default)
848  mooseError("Attempted to retrieve default value for coupled variable '",
849  coupling_name,
850  "' when none was provided. \n\nThere are three reasons why this may have "
851  "occurred:\n 1. The other version of params.addCoupledVar() should be used in order "
852  "to provide a default value. \n 2. This should have been a required coupled "
853  "variable added with params.addRequiredCoupledVar() \n 3. The call to get the "
854  "coupled value should have been properly guarded with isCoupled()\n");
855 
856  return value_it->second._coupled_default.at(i);
857 }
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ defaultCoupledValue() [2/2]

void InputParameters::defaultCoupledValue ( const std::string &  coupling_name,
Real  value,
unsigned int  i = 0 
)

Set the default value for an optionally coupled variable (called by the Parser).

Parameters
coupling_nameThe name of the coupling parameter to get the default value for.
valueDefault value to set.
iBy default 0, in general the index of the requested coupled default value.

Definition at line 834 of file InputParameters.C.

835 {
836  const auto actual_name = checkForRename(coupling_name);
837  _params[actual_name]._coupled_default.resize(i + 1);
838  _params[actual_name]._coupled_default[i] = value;
839  _params[actual_name]._have_coupled_default = true;
840 }
Real value(unsigned n, unsigned alpha, unsigned beta, Real x)
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ deprecateCoupledVar()

void InputParameters::deprecateCoupledVar ( const std::string &  old_name,
const std::string &  new_name,
const std::string &  removal_date 
)

Definition at line 1796 of file InputParameters.C.

Referenced by CoupledGradientMaterialTempl< is_ad >::validParams(), and ConservativeAdvectionTempl< is_ad >::validParams().

1799 {
1800  renameCoupledVarInternal(old_name, new_name, "", removal_date);
1801 }
void renameCoupledVarInternal(const std::string &old_name, const std::string &new_name, const std::string &docstring, const std::string &removal_date)

◆ deprecateParam()

void InputParameters::deprecateParam ( const std::string &  old_name,
const std::string &  new_name,
const std::string &  removal_date 
)

Definition at line 1788 of file InputParameters.C.

Referenced by CoupledGradientMaterialTempl< is_ad >::validParams(), and ConservativeAdvectionTempl< is_ad >::validParams().

1791 {
1792  renameParamInternal(old_name, new_name, "", removal_date);
1793 }
void renameParamInternal(const std::string &old_name, const std::string &new_name, const std::string &docstring, const std::string &removal_date)

◆ finalize()

void InputParameters::finalize ( const std::string &  parsing_syntax)

Finalizes the parameters, which must be done before constructing any objects with these parameters (to be called in the corresponding factories).

typed parameters.

This calls checkParams() and sets up the absolute paths for all file name.

Definition at line 674 of file InputParameters.C.

Referenced by Factory::initialize().

675 {
676  mooseAssert(!isFinalized(), "Already finalized");
677 
678  checkParams(parsing_syntax);
679 
680  // Set parameters that represent file types
681  for (const auto & name_value : *this)
682  {
683  const auto & param_name = name_value.first;
684  const auto & param_value = name_value.second;
685 
686  // Helper for setting a file typed parameter value
687  const auto set_filename = [&](auto & value)
688  {
689  constexpr bool is_data_file_name =
690  std::is_same_v<std::decay_t<decltype(value)>, DataFileName>;
691 
692  // We have behavior (which is gross) that requires that for
693  // everything but DataFileName, if the value is empty we
694  // don't bother looking for it
695  if constexpr (!is_data_file_name)
696  {
697  if (value.empty())
698  return;
699  }
700 
701  // Setup options for searching for the path
703  // Associate relative path searches with the folder
704  // that input file that has this parameter is located
705  options.base = getFileBase(param_name);
706  // If we don't explicitly have a DataFileName parameter,
707  // we only want to augment cases where a data name is
708  // explicitly set (like moose:file). We don't want to
709  // search all other data. To presere previous behavior,
710  // we also don't want to error if nothing is found; for
711  // example if a relative or absolute path is not found.
712  // The only time we'll error is if the data name is
713  // explicitly set and the path doesn't exist in the data
714  // or if that data name isn't registered.
715  if constexpr (!is_data_file_name)
716  {
717  options.search_all_data = false;
718  options.graceful = true;
719  }
720 
722  try
723  {
724  Moose::ScopedThrowOnError scoped_throw_on_error;
725  path = Moose::DataFileUtils::getPath(value, options);
726  }
727  catch (std::exception & e)
728  {
729  paramError(param_name, e.what());
730  }
731 
732  value = path.path;
733  at(param_name)._data_file_name_path = path;
734  };
735 
736 #define set_if_filename(type) \
737  else if (auto type_value = dynamic_cast<Parameters::Parameter<type> *>(param_value.get())) \
738  set_filename(type_value->set()); \
739  else if (auto type_values = dynamic_cast<Parameters::Parameter<std::vector<type>> *>( \
740  param_value.get())) for (auto & value : type_values->set()) set_filename(value)
741 
742  if (false)
743  ;
744  set_if_filename(FileName);
745  set_if_filename(FileNameNoExtension);
746  set_if_filename(MeshFileName);
747  set_if_filename(MatrixFileName);
748  set_if_filename(DataFileName);
749 #undef set_if_filename
750  }
751 
752  _finalized = true;
753 }
bool search_all_data
Whether or not to search all registered data.
Definition: DataFileUtils.h:67
std::optional< Moose::DataFileUtils::Path > _data_file_name_path
The searched path information pertaining to a DataFileName parameter.
bool graceful
Whether or not to error whenever a path is not found.
Definition: DataFileUtils.h:72
void paramError(const std::string &param, Args... args) const
Emits a parameter error prefixed with the parameter location and object information if available...
Path getPath(std::string path, const GetPathOptions &options={})
Get the data path for a given path, searching the registered data.
Definition: DataFileUtils.C:22
Real value(unsigned n, unsigned alpha, unsigned beta, Real x)
void checkParams(const std::string &parsing_syntax)
This function checks parameters stored in the object to make sure they are in the correct state as th...
Options to be passed to getPath().
Definition: DataFileUtils.h:60
Representation of a data file path.
Definition: DataFileUtils.h:40
std::optional< std::string > base
The base path by which to search for relative paths.
Definition: DataFileUtils.h:65
bool isFinalized() const
bool _finalized
Whether or not we&#39;ve called finalize() on these parameters yet.
Scoped helper for setting Moose::_throw_on_error during this scope.
Definition: Moose.h:295
std::filesystem::path getFileBase(const std::optional< std::string > &param_name=std::optional< std::string >()) const
Metadata & at(const std::string &param_name)

◆ get() [1/2]

template<typename R1 , typename R2 , typename V1 , typename V2 >
std::vector< std::pair< R1, R2 > > InputParameters::get ( const std::string &  param1,
const std::string &  param2 
) const

Combine two vector parameters into a single vector of pairs.

Definition at line 2305 of file InputParameters.h.

Referenced by ElementIDOutputAction::act(), AddMaterialAction::act(), SetupMeshAction::act(), SplitMeshAction::act(), MeshOnlyAction::act(), CSGOnlyAction::act(), SetupDebugAction::act(), MaterialOutputAction::act(), FEProblemBase::addAuxScalarKernel(), FEProblemBase::addAuxVariable(), FEProblemBase::addConstraint(), NonlinearSystemBase::addDGKernel(), FEProblemBase::addDGKernel(), FEProblemBase::addDiracKernel(), FunctorMaterial::addFunctorPropertyByBlocks(), FEProblemBase::addFVInitialCondition(), FEProblemBase::addFVKernel(), FEProblemBase::addIndicator(), FEProblemBase::addInitialCondition(), FEProblemBase::addInterfaceKernel(), MooseEigenSystem::addKernel(), NonlinearSystemBase::addKernel(), FEProblem::addLineSearch(), FEProblemBase::addMarker(), FEProblemBase::addMaterialHelper(), MFEMProblem::addMFEMFESpaceFromMOOSEVariable(), FEProblemBase::addMultiApp(), NonlinearSystemBase::addNodalKernel(), FEProblemBase::addNodalKernel(), MooseObjectWarehouseBase< Indicator >::addObject(), FEProblemBase::addObjectParamsHelper(), FEProblemBase::addOutput(), FEProblemBase::addScalarKernel(), FEProblemBase::addTransfer(), FEProblemBase::addUserObject(), MooseServer::addValuesToList(), AuxiliarySystem::addVariable(), AddVariableAction::addVariable(), SystemBase::addVariable(), FEProblemBase::addVariable(), AuxKernelBase::AuxKernelBase(), AuxScalarKernel::AuxScalarKernel(), BoundsBase::BoundsBase(), PiecewiseTabularInterface::buildFromFile(), PiecewiseTabularInterface::buildFromJSON(), PiecewiseTabularInterface::buildFromXandY(), PiecewiseTabularInterface::buildFromXY(), Moose::Builder::buildFullTree(), Moose::Builder::buildJsonSyntaxTree(), PostprocessorInterface::checkParam(), Moose::SlepcSupport::clearFreeNonlinearPowerIterations(), MooseBase::connectControllableParams(), Coupleable::coupledMatrixTagValue(), Coupleable::coupledMatrixTagValues(), PostprocessorInterface::coupledPostprocessors(), Coupleable::coupledVectorTagArrayGradient(), Coupleable::coupledVectorTagArrayGradients(), Coupleable::coupledVectorTagArrayValues(), Coupleable::coupledVectorTagDofValues(), Coupleable::coupledVectorTagGradient(), Coupleable::coupledVectorTagGradients(), Coupleable::coupledVectorTagValues(), ActionFactory::create(), AppFactory::create(), AddVariableAction::createInitialConditionAction(), MaterialBase::declareADProperty(), Moose::Kokkos::MaterialBase::declareKokkosOnDemandProperty(), Moose::Kokkos::MaterialBase::declareKokkosProperty(), MaterialBase::declareProperty(), Postprocessor::declareValue(), FunctorInterface::deduceFunctorName(), ElementSubdomainModifierBase::extrapolatePolynomial(), AddVariableAction::feType(), FileRangeBuilder::FileRangeBuilder(), GapValueAux::GapValueAux(), ParsedSubdomainGeneratorBase::generate(), MooseServer::getActionParameters(), AppFactory::getAppParamsID(), MooseApp::getCheckpointDirectories(), DistributionInterface::getDistribution(), ElementIDInterface::getElementID(), ElementIDInterface::getElementIDByName(), ElementIDInterface::getElementIDIndex(), ElementIDInterface::getElementIDNeighbor(), ElementIDInterface::getElementIDNeighborByName(), FunctionInterface::getFunction(), MaterialBase::getGenericZeroMaterialProperty(), MooseServer::getHoverDisplayText(), FunctionInterface::getKokkosFunction(), MaterialPropertyInterface::getMaterial(), MaterialPropertyInterface::getMaterialDataType(), MaterialPropertyInterface::getMaterialPropertyName(), MooseServer::getObjectParameters(), MooseBase::getParam(), getParamHelper(), PostprocessorInterface::getPostprocessorNameInternal(), ReporterInterface::getReporterName(), Reporter::getReporterValueName(), SamplerInterface::getSampler(), AddVariableAction::getSubdomainIDs(), AuxKernelBase::getVariableHelper(), CommonOutputAction::hasConsole(), MeshGeneratorSystem::hasDataDrivenAllowed(), FunctionInterface::hasFunction(), MeshGenerator::hasGenerateCSG(), MeshGenerator::hasGenerateData(), ImageSampler::ImageSampler(), AddVariableAction::init(), FullSolveMultiApp::initialSetup(), FEProblemBase::initNullSpaceVectors(), isValid(), IterationAdaptiveDT::IterationAdaptiveDT(), LayeredBase::LayeredBase(), LevelSetMeshingHelper::LevelSetMeshingHelper(), SubProblem::markFamilyPRefinement(), SetupMeshAction::modifyParamsForUseSplit(), MooseVariableInterface< Real >::MooseVariableInterface(), NodeFaceConstraint::NodeFaceConstraint(), OrientedBoxInterface::OrientedBoxInterface(), ConsoleUtils::outputLegacyInformation(), InputParametersChecksUtils< BatchMeshGeneratorAction >::parameterConsistent(), ParsedMaterialBase::ParsedMaterialBase(), PenetrationAux::PenetrationAux(), PiecewiseTabularInterface::PiecewiseTabularInterface(), NEML2Action::printSummary(), ProjectedStatefulMaterialStorageAction::ProjectedStatefulMaterialStorageAction(), ReferenceResidualConvergence::ReferenceResidualConvergence(), InputParameterWarehouse::removeInputParameters(), FEProblemBase::setAuxKernelParamsAndLog(), Moose::SlepcSupport::setEigenProblemSolverParams(), Moose::PetscSupport::setLineSearchFromParams(), Moose::PetscSupport::setMFFDTypeFromParams(), Moose::SlepcSupport::setNewtonPetscOptions(), MooseMesh::setPartitioner(), FEProblemBase::setResidualObjectParamsAndLog(), FVRelationshipManagerInterface::setRMParams(), Moose::SlepcSupport::setSlepcEigenSolverTolerances(), Moose::PetscSupport::setSolveTypeFromParams(), Moose::PeriodicBCHelper::setupAutoPeriodicBoundaries(), CreateExecutionerAction::setupAutoPreconditioning(), ReadExecutorParamsAction::setupAutoPreconditioning(), MeshBaseImageSampler::setupImageSampler(), ImageSampler::setupImageSampler(), NonlinearSystemBase::shouldEvaluatePreSMOResidual(), SideSetsFromBoundingBoxGenerator::SideSetsFromBoundingBoxGenerator(), Moose::SlepcSupport::storeSolveType(), DumpObjectsProblem::stringifyParameters(), TaggingInterface::TaggingInterface(), transferParam(), MooseBase::uniqueName(), GradientJumpIndicator::validParams(), ElemSideNeighborLayersGeomTester::validParams(), ElemSideNeighborLayersTester::validParams(), FunctorElementalGradientAuxTempl< is_ad >::validParams(), FVRelationshipManagerInterface::validParams(), FVFunctorDirichletBCTempl< is_ad >::validParams(), ProjectionAux::validParams(), DistributedRectilinearMeshGenerator::validParams(), NearestRadiusLayeredAverage::validParams(), MortarConsumerInterface::validParams(), MultiAppGeneralFieldTransfer::validParams(), MortarConstraintBase::validParams(), FVInterfaceKernel::validParams(), MooseVariableFV< Real >::validParams(), Coupleable::vectorTagDofValueHelper(), Coupleable::vectorTagValueHelper(), MeshBaseImageSampler::vtkFlip(), MeshBaseImageSampler::vtkShiftAndScale(), ImageSampler::vtkShiftAndScale(), MeshBaseImageSampler::vtkThreshold(), ImageSampler::vtkThreshold(), and Moose::Builder::walkRaw().

2306 {
2307  const auto param1 = checkForRename(param1_in);
2308  const auto param2 = checkForRename(param2_in);
2309 
2310  const auto & v1 = get<V1>(param1);
2311  const auto & v2 = get<V2>(param2);
2312 
2313  auto controllable = getControllableParameters();
2314  if (controllable.count(param1) || controllable.count(param2))
2315  mooseError("Parameters ",
2316  param1,
2317  " and/or ",
2318  param2 + " are controllable parameters and cannot be retireved using "
2319  "the MooseObject::getParam/InputParameters::get methods for pairs");
2320 
2321  if (v1.size() != v2.size())
2322  paramError(param1,
2323  "Vector parameters ",
2324  param1,
2325  "(size: ",
2326  v1.size(),
2327  ") and " + param2,
2328  "(size: ",
2329  v2.size(),
2330  ") are of different lengths \n");
2331 
2332  std::vector<std::pair<R1, R2>> parameter_pairs;
2333  auto i1 = v1.begin();
2334  auto i2 = v2.begin();
2335  for (; i1 != v1.end() && i2 != v2.end(); ++i1, ++i2)
2336  parameter_pairs.emplace_back(std::make_pair(*i1, *i2));
2337  return parameter_pairs;
2338 }
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
void paramError(const std::string &param, Args... args) const
Emits a parameter error prefixed with the parameter location and object information if available...
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::set< std::string > getControllableParameters() const
Return list of controllable parameters.

◆ get() [2/2]

template<typename T >
const T & InputParameters::get ( std::string_view  name) const

A wrapper around the Parameters base class method.

Checks for parameter rename before calling the base class method

Parameters
nameThe name to query the parameter values map with
Returns
The parameter value corresponding to the (possibly renamed) name

Definition at line 2355 of file InputParameters.h.

2356 {
2357  const auto name = checkForRename(std::string(name_in));
2358 
2359  return Parameters::get<T>(name);
2360 }
std::string name(const ElemQuality q)
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.

◆ getAutoBuildVectors()

std::map< std::string, std::pair< std::string, std::string > > InputParameters::getAutoBuildVectors ( ) const

Returns the auto build vectors for all parameters.

Definition at line 871 of file InputParameters.C.

872 {
873  std::map<std::string, std::pair<std::string, std::string>> abv;
874  for (auto it = _params.begin(); it != _params.end(); ++it)
875  {
876  if (!it->second._autobuild_vecs.first.empty())
877  abv[it->first] = it->second._autobuild_vecs;
878  }
879  return abv;
880 }
std::map< std::string, Metadata > _params
The actual parameter data.

◆ getBase()

const std::string & InputParameters::getBase ( ) const
Returns
The base system of the object these parameters are for, if any

Set via registerBase().

Definition at line 505 of file InputParameters.C.

Referenced by ActionWarehouse::addActionBlock(), AuxiliarySystem::addKernel(), FEProblemBase::addMaterialHelper(), JsonSyntaxTree::addParameters(), Action::addRelationshipManager(), MFEMProblem::addTransfer(), MooseServer::addValuesToList(), MooseBase::getBase(), MooseServer::getHoverDisplayText(), MooseServer::getObjectParameters(), and MooseBase::messagePrefix().

506 {
507  if (!have_parameter<std::string>(MooseBase::moose_base_param))
508  mooseError("InputParameters::getBase(): Parameters do not have base; one needs to be set with "
509  "registerBase()");
510  return get<std::string>(MooseBase::moose_base_param);
511 }
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
static const std::string moose_base_param
The name of the parameter that contains the moose system base.
Definition: MooseBase.h:61

◆ getBuildableRelationshipManagerTypes()

const std::vector< std::tuple< std::string, Moose::RelationshipManagerType, Moose::RelationshipManagerInputParameterCallback > > & InputParameters::getBuildableRelationshipManagerTypes ( ) const

Returns the list of buildable (or required) RelationshipManager object types for this object.

Definition at line 554 of file InputParameters.C.

Referenced by Action::addRelationshipManagers().

555 {
556  return _buildable_rm_types;
557 }
std::vector< std::tuple< std::string, Moose::RelationshipManagerType, Moose::RelationshipManagerInputParameterCallback > > _buildable_rm_types
The RelationshipManagers that this object may either build or require.

◆ getBuildableTypes()

const std::vector< std::string > & InputParameters::getBuildableTypes ( ) const

Returns the list of buildable types as a std::vector<std::string>

Definition at line 546 of file InputParameters.C.

Referenced by Moose::Builder::buildFullTree(), and Moose::Builder::buildJsonSyntaxTree().

547 {
548  return _buildable_types;
549 }
std::vector< std::string > _buildable_types
The parameter is used to restrict types that can be built.

◆ getCheckedPointerParam()

template<typename T >
T InputParameters::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.

The template parameter must be a pointer or an error will be thrown.

Definition at line 1754 of file InputParameters.h.

Referenced by Coupleable::Coupleable(), Postprocessor::declareValue(), MooseBase::getCheckedPointerParam(), ElementIDInterface::getElementID(), ElementIDInterface::getElementIDByName(), ElementIDInterface::getElementIDNeighbor(), ElementIDInterface::getElementIDNeighborByName(), AuxKernelBase::getVariableHelper(), MooseVariableInterface< Real >::MooseVariableInterface(), ScalarCoupleable::ScalarCoupleable(), and TaggingInterface::TaggingInterface().

1756 {
1757  const auto name = checkForRename(name_in);
1758 
1759  T param = this->get<T>(name);
1760 
1761  // Note: You will receive a compile error on this line if you attempt to pass a non-pointer
1762  // template type to this method
1763  if (!param)
1764  mooseError("Parameter ", name, " is NULL.\n", error_string);
1765  return this->get<T>(name);
1766 }
std::string name(const ElemQuality q)
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.

◆ getClassDescription()

std::string InputParameters::getClassDescription ( ) const

Returns the class description.

Definition at line 129 of file InputParameters.C.

Referenced by JsonSyntaxTree::addParameters(), MooseServer::addValuesToList(), and MooseServer::getHoverDisplayText().

130 {
131  return _class_description;
132 }
std::string _class_description
The class description for the owning object.

◆ getCommandLineMetadata()

const InputParameters::CommandLineMetadata & InputParameters::getCommandLineMetadata ( const std::string &  name) const
Returns
The command line metadata for the parameter name.

Definition at line 1052 of file InputParameters.C.

Referenced by MooseApp::copyInputs(), and MooseApp::showInputs().

1053 {
1054  const auto & cl_data = at(checkForRename(name))._cl_data;
1055  if (!cl_data)
1056  mooseError("InputParameters::getCommandLineMetadata: The parameter '",
1057  name,
1058  "' is not a command line parameter");
1059  return *cl_data;
1060 }
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::optional< CommandLineMetadata > _cl_data
The data pertaining to a command line parameter (empty if not a command line param) ...
Metadata & at(const std::string &param_name)

◆ getControllableExecuteOnTypes()

const std::set< ExecFlagType > & InputParameters::getControllableExecuteOnTypes ( const std::string &  name) const

Return the allowed execute flags for a controllable parameter.

Definition at line 485 of file InputParameters.C.

486 {
487  const auto name = checkForRename(name_in);
488  return at(name)._controllable_flags;
489 }
std::string name(const ElemQuality q)
std::set< ExecFlagType > _controllable_flags
Controllable execute flag restriction.
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
Metadata & at(const std::string &param_name)

◆ getControllableParameters()

std::set< std::string > InputParameters::getControllableParameters ( ) const

Return list of controllable parameters.

Definition at line 1662 of file InputParameters.C.

Referenced by checkParams(), and get().

1663 {
1664  std::set<std::string> controllable;
1665  for (auto it = _params.begin(); it != _params.end(); ++it)
1666  if (it->second._controllable)
1667  controllable.emplace(it->first);
1668  return controllable;
1669 }
std::map< std::string, Metadata > _params
The actual parameter data.

◆ getCoupledVariableParamNames()

const std::set<std::string>& InputParameters::getCoupledVariableParamNames ( ) const
inline

Return the coupled variable parameter names.

Definition at line 894 of file InputParameters.h.

Referenced by FunctionMaterialBase< is_ad >::FunctionMaterialBase().

894 { return _coupled_vars; }
std::set< std::string > _coupled_vars
The coupled variables set.

◆ getDescription()

const std::string & InputParameters::getDescription ( const std::string &  name) const

Get the documentation string for a parameter.

Definition at line 1284 of file InputParameters.C.

Referenced by transferParam().

1285 {
1286  const auto name = checkForRename(name_in);
1287  auto it = _params.find(name);
1288  if (it == _params.end())
1289  mooseError("No parameter exists with the name ", name);
1290  return it->second._doc_string;
1291 }
std::string name(const ElemQuality q)
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ getDocString()

std::string InputParameters::getDocString ( const std::string &  name) const

Returns the documentation string for the specified parameter name.

Definition at line 324 of file InputParameters.C.

Referenced by applyCoupledVar(), checkParams(), and MooseServer::getHoverDisplayText().

325 {
326  const auto name = checkForRename(name_in);
327 
328  std::string doc_string;
329  auto it = _params.find(name);
330  if (it != _params.end())
331  for (const auto & ch : it->second._doc_string)
332  {
333  if (ch == '\n')
334  doc_string += " ... ";
335  else
336  doc_string += ch;
337  }
338 
339  return doc_string;
340 }
std::string name(const ElemQuality q)
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ getDocUnit()

std::string InputParameters::getDocUnit ( const std::string &  name) const

Returns the documentation unit string for the specified parameter name.

Definition at line 356 of file InputParameters.C.

Referenced by MooseServer::getHoverDisplayText().

357 {
358  const auto name = checkForRename(name_in);
359  return _params.at(name)._doc_unit;
360 }
std::string name(const ElemQuality q)
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ getFileBase()

std::filesystem::path InputParameters::getFileBase ( const std::optional< std::string > &  param_name = std::optional<std::string>()) const
Returns
A file base to associate with these parameters.

Optionally, an input parameter can be provided via param_name.

If the parameter is provided, we have the following options:

  • The parameter itself has a hit node set (context for that parameter)
  • The InputParameters object has a hit node set (context for all parameters)
  • Neither of the above and we die

In the event that a the parameter is set via command line, this will attempt to look at the parameter's parents to find a suitable context.

Definition at line 756 of file InputParameters.C.

Referenced by finalize().

757 {
758  mooseAssert(!have_parameter<std::string>("_app_name"),
759  "Not currently setup to work with app FileName parameters");
760 
761  const hit::Node * hit_node = nullptr;
762 
763  // Context from the individual parameter
764  if (param_name)
765  hit_node = getHitNode(*param_name);
766  // Context from the parameters
767  if (!hit_node)
768  hit_node = getHitNode();
769  // No hit node, so use the cwd (no input files)
770  if (!hit_node)
771  return std::filesystem::current_path();
772 
773  // Find any context that isn't command line arguments
774  while (hit_node && hit_node->filename() == "CLI_ARGS")
775  hit_node = hit_node->parent();
776 
777  // Failed to find a node up the tree that isn't a command line argument
778  if (!hit_node)
779  {
780  const std::string error = "Input context was set via a command-line argument and does not have "
781  "sufficient context for determining a file path.";
782  if (param_name)
783  paramError(*param_name, error);
784  else
785  mooseError(error);
786  }
787 
788  return std::filesystem::absolute(std::filesystem::path(hit_node->filename()).parent_path());
789 }
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
void paramError(const std::string &param, Args... args) const
Emits a parameter error prefixed with the parameter location and object information if available...
const hit::Node * getHitNode() const

◆ getGroupName()

std::string InputParameters::getGroupName ( const std::string &  param_name) const

This method retrieves the group name for the passed parameter name if one exists.

Otherwise an empty string is returned.

Definition at line 1074 of file InputParameters.C.

1075 {
1076  const auto param_name = checkForRename(param_name_in);
1077  auto it = _params.find(param_name);
1078  if (it != _params.end())
1079  return it->second._group;
1080  return std::string();
1081 }
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ getGroupParameters()

std::set< std::string > InputParameters::getGroupParameters ( const std::string &  group) const

Return names of parameters within a group.

Definition at line 1643 of file InputParameters.C.

1644 {
1645  std::set<std::string> names;
1646  for (auto it = _params.begin(); it != _params.end(); ++it)
1647  if (it->second._group == group)
1648  names.emplace(it->first);
1649  return names;
1650 }
std::map< std::string, Metadata > _params
The actual parameter data.

◆ getHitNode() [1/2]

const hit::Node * InputParameters::getHitNode ( const std::string &  param) const
Returns
The hit node associated with setting the parameter param, if any

Definition at line 1594 of file InputParameters.C.

Referenced by applyParameter(), applyParameters(), Action::associateWithParameter(), ActionWarehouse::getCurrentActionName(), MooseBase::getHitNode(), and Factory::initialize().

1595 {
1596  return at(param)._hit_node;
1597 }
const hit::Node * _hit_node
Original location of parameter node; used for error messages.
Metadata & at(const std::string &param_name)

◆ getHitNode() [2/2]

const hit::Node* InputParameters::getHitNode ( ) const
inline
Returns
The hit node that represents the syntax responsible for creating these parameters, if any

Definition at line 1300 of file InputParameters.h.

Referenced by applyParameters(), blockFullpath(), blockLocation(), getFileBase(), inputLocation(), paramFullpath(), paramMessageContext(), and rawParamVal().

1300 { return _hit_node; }
const hit::Node * _hit_node
The hit node representing the syntax that created these parameters, if any.

◆ getMooseType()

std::string InputParameters::getMooseType ( const std::string &  name) const

Utility functions for retrieving one of the MooseTypes variables into the common "string" base class.

Scalar and Vector versions are supplied

Definition at line 897 of file InputParameters.C.

Referenced by MooseObjectWarehouseBase< Indicator >::addObject(), BlockRestrictable::initializeBlockRestrictable(), isValid(), and varName().

898 {
899  const auto name = checkForRename(name_in);
900  std::string var;
901 
902  if (have_parameter<VariableName>(name))
903  var = get<VariableName>(name);
904  else if (have_parameter<NonlinearVariableName>(name))
905  var = get<NonlinearVariableName>(name);
906  else if (have_parameter<LinearVariableName>(name))
907  var = get<LinearVariableName>(name);
908  else if (have_parameter<AuxVariableName>(name))
909  var = get<AuxVariableName>(name);
910  else if (have_parameter<PostprocessorName>(name))
911  var = get<PostprocessorName>(name);
912  else if (have_parameter<VectorPostprocessorName>(name))
913  var = get<VectorPostprocessorName>(name);
914  else if (have_parameter<FunctionName>(name))
915  var = get<FunctionName>(name);
916  else if (have_parameter<UserObjectName>(name))
917  var = get<UserObjectName>(name);
918  else if (have_parameter<MaterialPropertyName>(name))
919  var = get<MaterialPropertyName>(name);
920  else if (have_parameter<std::string>(name))
921  var = get<std::string>(name);
922 
923  return var;
924 }
std::string name(const ElemQuality q)
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.

◆ getNewToDeprecatedVarMap()

const std::unordered_map<std::string, std::string>& InputParameters::getNewToDeprecatedVarMap ( ) const
inline

Return the new to deprecated variable name map.

Definition at line 899 of file InputParameters.h.

900  {
902  }
std::unordered_map< std::string, std::string > _new_to_deprecated_coupled_vars
A map from deprecated coupled variable names to the new blessed name.

◆ getObjectName()

const std::string & InputParameters::getObjectName ( ) const
Returns
The underlying owning object name, for MooseBase objects with parameters

Definition at line 986 of file InputParameters.C.

Referenced by FEProblemBase::addConstraint(), MooseBase::messagePrefix(), operator=(), OrientedBoxInterface::OrientedBoxInterface(), and OutputInterface::OutputInterface().

987 {
988  if (!have_parameter<std::string>(MooseBase::name_param))
989  ::mooseError("InputParameters::getObjectName(): Missing '", MooseBase::name_param, "' param");
990  return get<std::string>(MooseBase::name_param);
991 }
static const std::string name_param
The name of the parameter that contains the object name.
Definition: MooseBase.h:55
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.

◆ getObjectType()

const std::string & InputParameters::getObjectType ( ) const
Returns
The underlying owning object type, for MooseBase objects with parameters

Will error if a type does not exist

Definition at line 978 of file InputParameters.C.

Referenced by MooseBase::messagePrefix(), and operator=().

979 {
980  if (const auto type_ptr = queryObjectType())
981  return *type_ptr;
982  ::mooseError("InputParameters::getObjectType(): Missing '", MooseBase::type_param, "' param");
983 }
static const std::string type_param
The name of the parameter that contains the object type.
Definition: MooseBase.h:53
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
const std::string * queryObjectType() const

◆ getParametersList()

std::set< std::string > InputParameters::getParametersList ( ) const
Returns
list of all parameters

Definition at line 1653 of file InputParameters.C.

Referenced by MooseServer::gatherDocumentCompletionItems(), MooseServer::getFileNameTypeValues(), and MooseServer::getHoverDisplayText().

1654 {
1655  std::set<std::string> param_set;
1656  for (auto it = _params.begin(); it != _params.end(); ++it)
1657  param_set.emplace(it->first);
1658  return param_set;
1659 }
std::map< std::string, Metadata > _params
The actual parameter data.

◆ getParamHelper() [1/5]

template<typename T >
const T & InputParameters::getParamHelper ( const std::string &  name,
const InputParameters pars 
)
static

Definition at line 2281 of file InputParameters.h.

2282 {
2283  const auto name = pars.checkForRename(name_in);
2284 
2285  if (!pars.isParamValid(name))
2286  pars.mooseError("The parameter \"", name, "\" is being retrieved before being set.");
2287 
2288  return pars.get<T>(name);
2289 }
std::string name(const ElemQuality q)
std::vector< std::pair< R1, R2 > > get(const std::string &param1, const std::string &param2) const
Combine two vector parameters into a single vector of pairs.
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
bool isParamValid(const std::string &name) const
This method returns parameters that have been initialized in one fashion or another, i.e.

◆ getParamHelper() [2/5]

template<>
const MooseEnum& InputParameters::getParamHelper ( const std::string &  name_in,
const InputParameters pars 
)

Definition at line 1543 of file InputParameters.C.

1545 {
1546  const auto name = pars.checkForRename(name_in);
1547  return pars.get<MooseEnum>(name);
1548 }
std::string name(const ElemQuality q)
std::vector< std::pair< R1, R2 > > get(const std::string &param1, const std::string &param2) const
Combine two vector parameters into a single vector of pairs.
This is a "smart" enum class intended to replace many of the shortcomings in the C++ enum type It sho...
Definition: MooseEnum.h:54
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.

◆ getParamHelper() [3/5]

template<>
const MultiMooseEnum& InputParameters::getParamHelper ( const std::string &  name_in,
const InputParameters pars 
)

Definition at line 1552 of file InputParameters.C.

1554 {
1555  const auto name = pars.checkForRename(name_in);
1556  return pars.get<MultiMooseEnum>(name);
1557 }
std::string name(const ElemQuality q)
std::vector< std::pair< R1, R2 > > get(const std::string &param1, const std::string &param2) const
Combine two vector parameters into a single vector of pairs.
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
This is a "smart" enum class intended to replace many of the shortcomings in the C++ enum type...

◆ getParamHelper() [4/5]

template<>
const MooseEnum& InputParameters::getParamHelper ( const std::string &  name,
const InputParameters pars 
)

◆ getParamHelper() [5/5]

template<>
const MultiMooseEnum& InputParameters::getParamHelper ( const std::string &  name,
const InputParameters pars 
)

◆ getSystemAttributeName()

const std::string & InputParameters::getSystemAttributeName ( ) const

Get the system attribute name if it was registered.

Otherwise throw an error. See the AttribSystem object for use Attribute.h/C.

Definition at line 521 of file InputParameters.C.

Referenced by MFEMProblem::addPostprocessor(), MFEMProblem::addVectorPostprocessor(), and AttribSystem::initFrom().

522 {
523  mooseAssert(have_parameter<std::string>("_moose_warehouse_system_name"),
524  "SystemAttributeName is not available! Call 'registerSystemAttributeName' (usually "
525  "in the validParams function) before you try accessing it!");
526  return Parameters::get<std::string>("_moose_warehouse_system_name");
527 }

◆ getVecMooseType()

std::vector< std::string > InputParameters::getVecMooseType ( const std::string &  name) const

Definition at line 927 of file InputParameters.C.

Referenced by MooseObjectWarehouseBase< Indicator >::addObject(), Coupleable::Coupleable(), isValid(), ScalarCoupleable::ScalarCoupleable(), and varName().

928 {
929  const auto name = checkForRename(name_in);
930  std::vector<std::string> svars;
931 
932  if (have_parameter<std::vector<VariableName>>(name))
933  {
934  std::vector<VariableName> vars = get<std::vector<VariableName>>(name);
935  std::copy(vars.begin(), vars.end(), std::back_inserter(svars));
936  }
937  else if (have_parameter<std::vector<NonlinearVariableName>>(name))
938  {
939  std::vector<NonlinearVariableName> vars = get<std::vector<NonlinearVariableName>>(name);
940  std::copy(vars.begin(), vars.end(), std::back_inserter(svars));
941  }
942  else if (have_parameter<std::vector<AuxVariableName>>(name))
943  {
944  std::vector<AuxVariableName> vars = get<std::vector<AuxVariableName>>(name);
945  std::copy(vars.begin(), vars.end(), std::back_inserter(svars));
946  }
947  else if (have_parameter<std::vector<MaterialPropertyName>>(name))
948  {
949  std::vector<MaterialPropertyName> vars = get<std::vector<MaterialPropertyName>>(name);
950  std::copy(vars.begin(), vars.end(), std::back_inserter(svars));
951  }
952  else if (have_parameter<std::vector<std::string>>(name))
953  {
954  std::vector<std::string> vars = get<std::vector<std::string>>(name);
955  std::copy(vars.begin(), vars.end(), std::back_inserter(svars));
956  }
957 
958  return svars;
959 }
std::string name(const ElemQuality q)
char ** vars
bool have_parameter(std::string_view name) const
A wrapper around the Parameters base class method.
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.

◆ hasBase()

bool InputParameters::hasBase ( ) const
Returns
Whether or not the object has a registered base

The base is registered with registerBase()

Definition at line 499 of file InputParameters.C.

Referenced by ActionWarehouse::addActionBlock(), JsonSyntaxTree::addParameters(), MooseServer::addValuesToList(), MooseServer::getHoverDisplayText(), MooseServer::getObjectParameters(), MooseBase::hasBase(), and MooseBase::messagePrefix().

500 {
501  return have_parameter<std::string>(MooseBase::moose_base_param);
502 }
static const std::string moose_base_param
The name of the parameter that contains the moose system base.
Definition: MooseBase.h:61

◆ hasCoupledValue()

bool InputParameters::hasCoupledValue ( const std::string &  coupling_name) const

Return whether or not the coupled variable exists.

Parameters
coupling_nameThe name of the coupled variable to test for
Returns
True if the variable exists in the coupled variables for this InputParameters object

Definition at line 821 of file InputParameters.C.

Referenced by applyCoupledVar(), Coupleable::isCoupled(), ScalarCoupleable::isCoupledScalar(), and transferParam().

822 {
823  return _coupled_vars.find(coupling_name) != _coupled_vars.end();
824 }
std::set< std::string > _coupled_vars
The coupled variables set.

◆ hasDefault()

bool InputParameters::hasDefault ( const std::string &  param_name) const

Return whether a parameter has a default.

Definition at line 806 of file InputParameters.C.

Referenced by transferParam().

807 {
808  const auto name = checkForRename(param_name);
809  if (hasDefaultCoupledValue(name))
810  return true;
811  // If it has a default, it's already valid
812  else if (isParamSetByAddParam(name))
813  return true;
814  else if (isParamValid(name))
815  mooseError("No way to know if the parameter '", param_name, "' has a default");
816  else
817  return false;
818 }
std::string name(const ElemQuality q)
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
bool isParamSetByAddParam(const std::string &name) const
Returns whether or not the parameter was set due to addParam.
bool hasDefaultCoupledValue(const std::string &coupling_name) const
Return whether or not the requested parameter has a default coupled value.
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
bool isParamValid(const std::string &name) const
This method returns parameters that have been initialized in one fashion or another, i.e.

◆ hasDefaultCoupledValue()

bool InputParameters::hasDefaultCoupledValue ( const std::string &  coupling_name) const

Return whether or not the requested parameter has a default coupled value.

Parameters
coupling_nameThe name of the coupling parameter to get the default value for.

Definition at line 827 of file InputParameters.C.

Referenced by applyCoupledVar(), Coupleable::coupledComponents(), FunctionMaterialBase< is_ad >::FunctionMaterialBase(), hasDefault(), Coupleable::isCoupledConstant(), and transferParam().

828 {
829  return _params.count(coupling_name) > 0 && _params.at(coupling_name)._have_coupled_default &&
830  _coupled_vars.count(coupling_name) > 0;
831 }
std::set< std::string > _coupled_vars
The coupled variables set.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ have_parameter()

template<typename T >
bool InputParameters::have_parameter ( std::string_view  name) const

A wrapper around the Parameters base class method.

Checks for parameter rename before calling the base class method. This method tells whether a parameter with a known type is defined. If the type is unknown, use isParamDefined().

Parameters
nameThe name to query the parameter values map with
Returns
Whether there is a key in the parameter values map corresponding to the (possibly renamed) name

Definition at line 2364 of file InputParameters.h.

Referenced by FEProblemBase::addAuxScalarKernel(), FEProblemBase::addConstraint(), FEProblemBase::addDGKernel(), FEProblemBase::addDiracKernel(), FunctorMaterial::addFunctorPropertyByBlocks(), FEProblemBase::addIndicator(), FEProblemBase::addInterfaceKernel(), MooseEigenSystem::addKernel(), FEProblemBase::addMarker(), FEProblemBase::addMaterialHelper(), FEProblemBase::addMultiApp(), NonlinearSystemBase::addNodalKernel(), FEProblemBase::addNodalKernel(), FEProblemBase::addObjectParamsHelper(), FEProblemBase::addScalarKernel(), FEProblemBase::addTransfer(), MooseServer::addValuesToList(), MeshGeneratorSystem::appendMeshGenerator(), Moose::Builder::buildFullTree(), Moose::Builder::buildJsonSyntaxTree(), Coupleable::checkVar(), MaterialBase::declareADProperty(), Moose::Kokkos::MaterialBase::declareKokkosOnDemandProperty(), Moose::Kokkos::MaterialBase::declareKokkosProperty(), MaterialBase::declareProperty(), FunctorInterface::deduceFunctorName(), MooseServer::getActionParameters(), AppFactory::getAppParamsID(), MooseServer::getCompletionItemKind(), MaterialBase::getGenericZeroMaterialProperty(), MooseServer::getHoverDisplayText(), MaterialPropertyInterface::getMaterialPropertyName(), MooseServer::getObjectParameters(), MaterialOutputAction::getParams(), getVecMooseType(), MooseBase::haveParameter(), AdvancedOutput::initExecutionTypes(), AttribDisplaced::initFrom(), isParamValid(), MooseApp::outputMachineReadableData(), OutputOnWarehouse::OutputOnWarehouse(), InputParametersChecksUtils< BatchMeshGeneratorAction >::parameterConsistent(), FVRelationshipManagerInterface::parameterError(), ParsedMaterialHelper< is_ad >::ParsedMaterialHelper(), NEML2Action::printSummary(), FEProblemBase::setAuxKernelParamsAndLog(), FEProblemBase::setResidualObjectParamsAndLog(), DumpObjectsProblem::stringifyParameters(), transferParam(), MooseBase::uniqueName(), BlockRestrictable::validParams(), and Moose::Builder::walkRaw().

2365 {
2366  const auto name = checkForRename(std::string(name_in));
2367 
2368  return Parameters::have_parameter<T>(name);
2369 }
std::string name(const ElemQuality q)
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.

◆ ignoreParameter()

template<typename T >
void InputParameters::ignoreParameter ( const std::string &  name)

Informs this object that values for this parameter set from the input file or from the command line should be ignored.

Definition at line 2100 of file InputParameters.h.

Referenced by AddElementalFieldAction::validParams().

2101 {
2102  const auto name = checkForRename(name_in);
2103  suppressParameter<T>(name);
2104  _params[name]._ignore = true;
2105 }
std::string name(const ElemQuality q)
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ inputLocation()

std::string InputParameters::inputLocation ( const std::string &  param) const
Returns
A string representing the location in the input text the parameter originated from (i.e. filename,linenum) for the given param

Definition at line 1609 of file InputParameters.C.

Referenced by paramLocationPrefix().

1610 {
1611  if (const auto hit_node = getHitNode(param))
1612  return hit_node->fileLocation(/* with_column = */ false);
1613  return "";
1614 }
const hit::Node * getHitNode() const

◆ isCommandLineParameter()

bool InputParameters::isCommandLineParameter ( const std::string &  name) const
Returns
Whether or not the parameter name is a command line parameter

Definition at line 1037 of file InputParameters.C.

1038 {
1039  return at(checkForRename(name))._cl_data.has_value();
1040 }
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::optional< CommandLineMetadata > _cl_data
The data pertaining to a command line parameter (empty if not a command line param) ...
Metadata & at(const std::string &param_name)

◆ isControllable()

bool InputParameters::isControllable ( const std::string &  name) const

Returns a Boolean indicating whether the specified parameter is controllable.

Definition at line 478 of file InputParameters.C.

Referenced by transferParam().

479 {
480  const auto name = checkForRename(name_in);
481  return _params.count(name) > 0 && _params.at(name)._controllable;
482 }
std::string name(const ElemQuality q)
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ isFinalized()

bool InputParameters::isFinalized ( ) const
inline
Returns
Whether or not finalize() has been called

Definition at line 1313 of file InputParameters.h.

Referenced by finalize(), and MooseBase::MooseBase().

1313 { return _finalized; }
bool _finalized
Whether or not we&#39;ve called finalize() on these parameters yet.

◆ isFunctorNameType()

template<typename T >
constexpr bool InputParameters::isFunctorNameType ( )
staticprivate

Definition at line 2557 of file InputParameters.h.

2558 {
2559  return Moose::internal::isFunctorNameTypeHelper(Moose::internal::getNullptrExample<T>());
2560 }
constexpr bool isFunctorNameTypeHelper(T *ex)

◆ isKokkosObject()

bool InputParameters::isKokkosObject ( ) const

Returns whether this InputParameters belongs to a Kokkos object Checks whether MooseBase::kokkos_object_param is valid.

Definition at line 433 of file InputParameters.C.

Referenced by AddBCAction::act(), AddKernelAction::act(), AddVectorPostprocessorAction::act(), AddUserObjectAction::act(), AddMaterialAction::act(), AddPostprocessorAction::act(), AddNodalKernelAction::act(), AddReporterAction::act(), AddFunctionAction::act(), FEProblemBase::addMaterialHelper(), and MooseObject::isKokkosObject().

434 {
436 }
static const std::string kokkos_object_param
The name of the parameter that indicates an object is a Kokkos functor.
Definition: MooseBase.h:64
bool isParamValid(const std::string &name) const
This method returns parameters that have been initialized in one fashion or another, i.e.

◆ isMooseBaseObject()

bool InputParameters::isMooseBaseObject ( ) const
Returns
Whether or not these parameters are for a MooseBase object, that is, one with a name and type.

Needed so that we can produce richer errors from within InputParameters that have the context of the underlying object, if possible.

Definition at line 962 of file InputParameters.C.

Referenced by callMooseError(), and MooseBase::messagePrefix().

963 {
964  return have_parameter<std::string>(MooseBase::type_param) &&
965  get<std::string>(MooseBase::type_param).size() &&
966  have_parameter<std::string>(MooseBase::name_param);
967 }
static const std::string name_param
The name of the parameter that contains the object name.
Definition: MooseBase.h:55
static const std::string type_param
The name of the parameter that contains the object type.
Definition: MooseBase.h:53

◆ isParamDefined()

bool InputParameters::isParamDefined ( const std::string &  name) const

Method returns true if the parameter is defined for any type.

If the type is known, use have_parameter<T>() instead.

Parameters
nameThe parameter name

Definition at line 1277 of file InputParameters.C.

Referenced by MooseMeshUtils::copyIntoMesh().

1278 {
1279  const auto name = checkForRename(name_in);
1280  return _params.count(name) > 0;
1281 }
std::string name(const ElemQuality q)
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ isParamDeprecated()

bool InputParameters::isParamDeprecated ( const std::string &  name) const

Returns True if the parameters is deprecated.

Definition at line 425 of file InputParameters.C.

426 {
427  const auto name = checkForRename(name_in);
428  return _params.count(name) > 0 && !_params.at(name)._deprecation_message.empty();
429 }
std::string name(const ElemQuality q)
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ isParamRequired()

bool InputParameters::isParamRequired ( const std::string &  name) const

Returns a boolean indicating whether the specified parameter is required or not.

Definition at line 370 of file InputParameters.C.

Referenced by areAllRequiredParamsValid(), checkParams(), MooseServer::getCompletionItemKind(), and transferParam().

371 {
372  const auto name = checkForRename(name_in);
373  return _params.count(name) > 0 && _params.at(name)._required;
374 }
std::string name(const ElemQuality q)
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ isParamSetByAddParam()

bool InputParameters::isParamSetByAddParam ( const std::string &  name) const

Returns whether or not the parameter was set due to addParam.

If not then it was either set programmatically or was read through the input file.

Definition at line 418 of file InputParameters.C.

Referenced by MultiApp::createApp(), DefaultMultiAppFixedPointConvergence::DefaultMultiAppFixedPointConvergence(), hasDefault(), and TransientBase::TransientBase().

419 {
420  const auto name = checkForRename(name_in);
421  return _params.count(name) > 0 && _params.at(name)._set_by_add_param;
422 }
std::string name(const ElemQuality q)
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ isParamSetByUser()

bool InputParameters::isParamSetByUser ( const std::string &  name) const

Method returns true if the parameter was set by the user.

Parameters
nameThe parameter name

Definition at line 1260 of file InputParameters.C.

Referenced by CreateProblemAction::act(), MeshOnlyAction::act(), SetupMeshAction::act(), SplitMeshAction::act(), SystemBase::addVariable(), ADVectorFunctionDirichletBC::ADVectorFunctionDirichletBC(), AnnularMesh::AnnularMesh(), AnnularMeshGenerator::AnnularMeshGenerator(), BreakMeshByBlockGenerator::BreakMeshByBlockGenerator(), PiecewiseTabularInterface::buildFromFile(), Console::Console(), DumpObjectsProblem::deduceNecessaryParameters(), DefaultMultiAppFixedPointConvergence::DefaultMultiAppFixedPointConvergence(), ExamplePatchMeshGenerator::ExamplePatchMeshGenerator(), Executor::Executor(), Exodus::Exodus(), FEProblemSolve::FEProblemSolve(), FileMeshGenerator::generate(), AddVariableAction::init(), Console::initialSetup(), InterfaceDiffusiveFluxIntegralTempl< is_ad >::InterfaceDiffusiveFluxIntegralTempl(), InterfaceIntegralVariableValuePostprocessor::InterfaceIntegralVariableValuePostprocessor(), InterfaceKernelTempl< T >::InterfaceKernelTempl(), MooseBase::isParamSetByUser(), MultiApp::keepSolutionDuringRestore(), LayeredBase::LayeredBase(), LibtorchNeuralNetControl::LibtorchNeuralNetControl(), MultiApp::MultiApp(), MultiAppGeneralFieldUserObjectTransfer::MultiAppGeneralFieldUserObjectTransfer(), MultiAppTransfer::MultiAppTransfer(), MultiAppVariableValueSamplePostprocessorTransfer::MultiAppVariableValueSamplePostprocessorTransfer(), NearestPointBase< LayeredSideDiffusiveFluxAverage, SideIntegralVariableUserObject >::NearestPointBase(), paramSetByUser(), PiecewiseTabularInterface::PiecewiseTabularInterface(), MooseMesh::prepare(), PropertyReadFile::PropertyReadFile(), RandomIC::RandomIC(), MooseMesh::setCoordSystem(), TransientBase::setupTimeIntegrator(), Transfer::Transfer(), TransientBase::TransientBase(), VectorBodyForce::VectorBodyForce(), vectorFunctionDim(), VectorFunctionDirichletBC::VectorFunctionDirichletBC(), VectorFunctionIC::VectorFunctionIC(), and VectorMagnitudeFunctorMaterialTempl< is_ad >::VectorMagnitudeFunctorMaterialTempl().

1261 {
1262  const auto name = checkForRename(name_in);
1263  // Invalid; for sure not set by the user
1264  if (!isParamValid(name))
1265  return false;
1266  // Parameter is not located in the list (called Parameters::set)
1267  if (!_params.count(name))
1268  return false;
1269  // Special case for a command line option, which is a private parameter
1270  if (const auto cl_data = queryCommandLineMetadata(name))
1271  return cl_data->set_by_command_line;
1272  // Not a command line option, not set by addParam and not private
1273  return !_params.at(name)._set_by_add_param && !_params.at(name)._is_private;
1274 }
std::string name(const ElemQuality q)
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::optional< InputParameters::CommandLineMetadata > queryCommandLineMetadata(const std::string &name) const
std::map< std::string, Metadata > _params
The actual parameter data.
bool isParamValid(const std::string &name) const
This method returns parameters that have been initialized in one fashion or another, i.e.

◆ isParamValid()

bool InputParameters::isParamValid ( const std::string &  name) const

This method returns parameters that have been initialized in one fashion or another, i.e.

The value was supplied as a default argument or read and properly converted from the input file

Definition at line 386 of file InputParameters.C.

Referenced by ElementIDOutputAction::act(), ReadExecutorParamsAction::act(), CreateExecutionerAction::act(), CreateProblemDefaultAction::act(), SetupMeshAction::act(), MeshOnlyAction::act(), MaterialOutputAction::act(), FEProblemBase::addConstraint(), FEProblemBase::addDamper(), FunctorMaterial::addFunctorPropertyByBlocks(), FEProblem::addLineSearch(), MooseObjectWarehouseBase< Indicator >::addObject(), FEProblemBase::addObjectParamsHelper(), FEProblemBase::addTransfer(), AddVariableAction::addVariable(), SystemBase::addVariable(), ADInterfaceKernelTempl< T >::ADInterfaceKernelTempl(), ADPiecewiseLinearInterpolationMaterial::ADPiecewiseLinearInterpolationMaterial(), applyParameter(), areAllRequiredParamsValid(), PiecewiseTabularInterface::buildFromFile(), PiecewiseTabularInterface::buildFromJSON(), PNGOutput::calculateRescalingValues(), PostprocessorInterface::checkParam(), checkParams(), Moose::PeriodicBCHelper::checkPeriodicParams(), Coupleable::coupledMatrixTagValue(), Coupleable::coupledMatrixTagValues(), Coupleable::coupledVectorTagArrayGradient(), Coupleable::coupledVectorTagArrayGradients(), Coupleable::coupledVectorTagArrayValues(), Coupleable::coupledVectorTagDofValues(), Coupleable::coupledVectorTagGradient(), Coupleable::coupledVectorTagGradients(), Coupleable::coupledVectorTagValues(), FunctorInterface::deduceFunctorName(), ElementMaterialSampler::ElementMaterialSampler(), FileRangeBuilder::FileRangeBuilder(), GapValueAux::GapValueAux(), MooseServer::getCompletionItemKind(), MaterialPropertyInterface::getMaterialDataType(), MaterialPropertyInterface::getMaterialPropertyName(), getParamHelper(), ReporterInterface::getReporterName(), Reporter::getReporterValueName(), GhostingUserObject::GhostingUserObject(), hasDefault(), InterfaceKernelTempl< T >::InterfaceKernelTempl(), isKokkosObject(), isParamSetByUser(), MooseBase::isParamValid(), isValid(), LayeredBase::LayeredBase(), LayeredIntegralBase< ElementIntegralVariableUserObject >::LayeredIntegralBase(), LevelSetMeshingHelper::LevelSetMeshingHelper(), SubProblem::markFamilyPRefinement(), UserObjectInterface::mooseObjectError(), MultiApp::MultiApp(), NodeFaceConstraint::NodeFaceConstraint(), InputParametersChecksUtils< BatchMeshGeneratorAction >::parameterConsistent(), ParsedReporterBase::ParsedReporterBase(), ParsedScalarReporter::ParsedScalarReporter(), PenetrationAux::PenetrationAux(), PiecewiseBilinear::PiecewiseBilinear(), PiecewiseLinearInterpolationMaterial::PiecewiseLinearInterpolationMaterial(), PiecewiseTabularInterface::PiecewiseTabularInterface(), ReporterInterface::possiblyCheckHasReporter(), PseudoTimestep::PseudoTimestep(), queryParam(), rangeCheck(), ReferenceResidualConvergence::ReferenceResidualConvergence(), Moose::PetscSupport::setLineSearchFromParams(), Moose::PetscSupport::setMFFDTypeFromParams(), MooseMesh::setPartitioner(), Moose::PetscSupport::setSolveTypeFromParams(), SideSetsGeneratorBase::setup(), MeshBaseImageSampler::setupImageSampler(), ImageSampler::setupImageSampler(), SetupMeshAction::setupMesh(), Moose::PeriodicBCHelper::setupPeriodicBoundaries(), Moose::SlepcSupport::storeSolveType(), DumpObjectsProblem::stringifyParameters(), BoundaryRestrictableRequired::validParams(), MultiAppGeneralFieldTransfer::validParams(), BoundaryRestrictable::validParams(), Coupleable::vectorTagDofValueHelper(), Coupleable::vectorTagValueHelper(), MeshBaseImageSampler::vtkMagnitude(), ImageSampler::vtkMagnitude(), MeshBaseImageSampler::vtkThreshold(), and ImageSampler::vtkThreshold().

387 {
388  const auto name = checkForRename(name_in);
389  if (have_parameter<MooseEnum>(name))
390  return get<MooseEnum>(name).isValid();
391  else if (have_parameter<std::vector<MooseEnum>>(name))
392  {
393  for (auto it = get<std::vector<MooseEnum>>(name).begin();
394  it != get<std::vector<MooseEnum>>(name).end();
395  ++it)
396  if (!it->isValid())
397  return false;
398  return true;
399  }
400  else if (have_parameter<MultiMooseEnum>(name))
401  return get<MultiMooseEnum>(name).isValid();
402  else if (have_parameter<std::vector<MultiMooseEnum>>(name))
403  {
404  for (auto it = get<std::vector<MultiMooseEnum>>(name).begin();
405  it != get<std::vector<MultiMooseEnum>>(name).end();
406  ++it)
407  if (!it->isValid())
408  return false;
409  return true;
410  }
411  else if (have_parameter<ExecFlagEnum>(name))
412  return get<ExecFlagEnum>(name).isValid();
413  else
414  return _params.count(name) > 0 && _params.at(name)._valid;
415 }
std::string name(const ElemQuality q)
void isValid(MooseObject *obj)
Definition: TheWarehouse.C:294
bool have_parameter(std::string_view name) const
A wrapper around the Parameters base class method.
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ isPrivate()

bool InputParameters::isPrivate ( const std::string &  name) const

Returns a Boolean indicating whether the specified parameter is private or not.

Definition at line 449 of file InputParameters.C.

Referenced by applyParameter(), checkParams(), MultiAppGeneralFieldTransfer::MultiAppGeneralFieldTransfer(), DumpObjectsProblem::stringifyParameters(), and transferParam().

450 {
451  const auto name = checkForRename(name_in);
452  return _params.count(name) > 0 && _params.at(name)._is_private;
453 }
std::string name(const ElemQuality q)
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ isRangeChecked()

bool InputParameters::isRangeChecked ( const std::string &  param_name) const

Return whether a parameter has a range check.

Definition at line 792 of file InputParameters.C.

Referenced by MooseServer::getHoverDisplayText(), and transferParam().

793 {
794  const auto name = checkForRename(param_name);
795  return !_params.find(name)->second._range_function.empty();
796 }
std::string name(const ElemQuality q)
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ isType()

template<typename T >
bool InputParameters::isType ( const std::string &  name) const
Returns
True if the parameter with name name is of type T.

Definition at line 2344 of file InputParameters.h.

Referenced by BatchMeshGeneratorAction::checkInputParameterType(), PostprocessorInterface::checkParam(), PostprocessorInterface::coupledPostprocessors(), MeshGenerator::getMeshGeneratorNameFromParam(), MeshGenerator::getMeshGeneratorNamesFromParam(), PostprocessorInterface::getPostprocessorNameInternal(), ReporterInterface::getReporterName(), and Reporter::getReporterValueName().

2345 {
2346  const auto name = checkForRename(name_in);
2347 
2348  if (!_params.count(name))
2349  mooseError("Parameter \"", name, "\" is not valid.");
2350  return have_parameter<T>(name);
2351 }
std::string name(const ElemQuality q)
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ makeParamNotRequired() [1/2]

template<typename T >
void InputParameters::makeParamNotRequired ( const std::string &  name)

Changes the parameter to not be required.

Parameters
nameThe parameter name

Definition at line 2121 of file InputParameters.h.

Referenced by MooseServer::getObjectParameters(), ControllableInputTimes::validParams(), ExtraIDIntegralVectorPostprocessor::validParams(), and MortarConstraintBase::validParams().

2122 {
2123  const auto name = checkForRename(name_in);
2124 
2125  if (!this->have_parameter<T>(name))
2126  mooseError("Unable to un-require nonexistent parameter: ", name);
2127 
2128  _params[name]._required = false;
2129 }
std::string name(const ElemQuality q)
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ makeParamNotRequired() [2/2]

void InputParameters::makeParamNotRequired ( const std::string &  name)

Forces parameter of given name to be not required regardless of type.

Definition at line 377 of file InputParameters.C.

378 {
379  const auto name = checkForRename(name_in);
380 
381  if (_params.count(name))
382  _params[name]._required = false;
383 }
std::string name(const ElemQuality q)
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ makeParamRequired()

template<typename T >
void InputParameters::makeParamRequired ( const std::string &  name)

Changes the parameter to be required.

Parameters
nameThe parameter name

Definition at line 2109 of file InputParameters.h.

Referenced by SideSetsBetweenSubdomainsGenerator::validParams(), and SideSetsAroundSubdomainGenerator::validParams().

2110 {
2111  const auto name = checkForRename(name_in);
2112 
2113  if (!this->have_parameter<T>(name))
2114  mooseError("Unable to require nonexistent parameter: ", name);
2115 
2116  _params[name]._required = true;
2117 }
std::string name(const ElemQuality q)
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ markControlled()

void InputParameters::markControlled ( const std::string &  name)

Marker a parameter that has been changed by the Control system (this is for output purposes)

◆ mooseError()

template<typename... Args>
void InputParameters::mooseError ( Args &&...  args) const

Emits an error prefixed with the object information, if available.

Definition at line 2454 of file InputParameters.h.

Referenced by addCommandLineParamHelper(), addParamNamesToGroup(), addRequiredParam(), applyParameter(), at(), checkConsistentType(), checkParamName(), checkParams(), commandLineParamSet(), declareControllable(), defaultCoupledValue(), get(), getBase(), getCheckedPointerParam(), getCommandLineMetadata(), getDescription(), getFileBase(), getObjectName(), getObjectType(), getParamHelper(), hasDefault(), isType(), makeParamNotRequired(), makeParamRequired(), numberDefaultCoupledValues(), operator=(), renameCoupledVarInternal(), renameParamInternal(), setDeprecatedVarDocString(), setDocString(), setGlobalCommandLineParam(), shouldIgnore(), suppressParameter(), transferParam(), type(), and varName().

2455 {
2456  std::ostringstream oss;
2457  moose::internal::mooseStreamAll(oss, std::forward<Args>(args)...);
2458  callMooseError(oss.str());
2459 }
void mooseStreamAll(std::ostringstream &ss)
All of the following are not meant to be called directly - they are called by the normal macros (moos...
Definition: MooseError.C:137
void callMooseError(std::string msg, const bool with_prefix=true, const hit::Node *node=nullptr, const bool show_trace=true) const
Internal helper for calling back to mooseError(), ideally from the underlying MooseBase object if it ...

◆ mooseObjectSyntaxVisibility() [1/2]

void InputParameters::mooseObjectSyntaxVisibility ( bool  visibility)

Mutators for controlling whether or not the outermost level of syntax will be collapsed when printed.

Definition at line 572 of file InputParameters.C.

Referenced by Moose::Builder::buildFullTree(), and Moose::Builder::buildJsonSyntaxTree().

573 {
574  _moose_object_syntax_visibility = visibility;
575 }
bool _moose_object_syntax_visibility
This parameter hides derived MOOSE object types from appearing in syntax dumps.

◆ mooseObjectSyntaxVisibility() [2/2]

bool InputParameters::mooseObjectSyntaxVisibility ( ) const

Definition at line 578 of file InputParameters.C.

579 {
581 }
bool _moose_object_syntax_visibility
This parameter hides derived MOOSE object types from appearing in syntax dumps.

◆ numberDefaultCoupledValues()

unsigned int InputParameters::numberDefaultCoupledValues ( const std::string &  coupling_name) const

Get the number of defaulted coupled value entries.

Parameters
coupling_nameThe name of the coupling parameter to get the default value for.

Definition at line 860 of file InputParameters.C.

Referenced by applyCoupledVar(), Coupleable::Coupleable(), Coupleable::coupledComponents(), Coupleable::getADDefaultVectorValue(), Coupleable::getDefaultArrayValue(), Coupleable::getDefaultValue(), and transferParam().

861 {
862  auto value_it = _params.find(coupling_name);
863  if (value_it == _params.end())
864  mooseError("Attempted to retrieve default value for coupled variable '",
865  coupling_name,
866  "' when none was provided.");
867  return value_it->second._coupled_default.size();
868 }
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ operator+=()

InputParameters & InputParameters::operator+= ( const InputParameters rhs)

Definition at line 180 of file InputParameters.C.

181 {
182  Parameters::operator+=(rhs);
183 
184  // TODO: this is not a proper merge - if a particular parameter exists in both this and rhs,
185  // then we should actually smartly merge both metadata structs before storing in this.
186  for (auto it = rhs._params.begin(); it != rhs._params.end(); ++it)
187  _params[it->first] = it->second;
188 
189  _buildable_types.insert(
190  _buildable_types.end(), rhs._buildable_types.begin(), rhs._buildable_types.end());
191  _buildable_rm_types.insert(
192  _buildable_rm_types.end(), rhs._buildable_rm_types.begin(), rhs._buildable_rm_types.end());
193 
194  // Collapse nesting and moose object syntax hiding are not modified with +=
195  _coupled_vars.insert(rhs._coupled_vars.begin(), rhs._coupled_vars.end());
198 
200  rhs._old_to_new_name_and_dep.end());
201  _new_to_old_names.insert(rhs._new_to_old_names.begin(), rhs._new_to_old_names.end());
202  return *this;
203 }
std::multimap< std::string, std::string > _new_to_old_names
A map from derived-class/blessed parameter names to associated base-class/deprecated parameter names...
std::unordered_map< std::string, std::string > _new_to_deprecated_coupled_vars
A map from deprecated coupled variable names to the new blessed name.
std::set< std::string > _coupled_vars
The coupled variables set.
std::vector< std::tuple< std::string, Moose::RelationshipManagerType, Moose::RelationshipManagerInputParameterCallback > > _buildable_rm_types
The RelationshipManagers that this object may either build or require.
std::vector< std::string > _buildable_types
The parameter is used to restrict types that can be built.
std::map< std::string, Metadata > _params
The actual parameter data.
std::map< std::string, std::pair< std::string, std::string > > _old_to_new_name_and_dep
A map from base-class/deprecated parameter names to derived-class/blessed parameter names and the dep...

◆ operator=()

InputParameters & InputParameters::operator= ( const InputParameters rhs)

Definition at line 135 of file InputParameters.C.

136 {
137  // An error to help minimize the segmentation faults that occure when MooseObjects do not have the
138  // correct constructor
139  if (!rhs._allow_copy)
140  {
141  // If _allow_parameter_copy is set, these should be too (see
142  // InputParameterWarehouse::addInputParameters)
143  const std::string & name = rhs.getObjectName();
144  const std::string & type = rhs.getObjectType(); // could be empty
145  const std::string name_example = type.size() ? type : "the " + name + " object";
146  const std::string type_example = type.size() ? type : "MyObject";
147  ::mooseError(
148  "Copying of the InputParameters object for ",
149  name_example,
150  " is not allowed.\n\nThe likely cause for this error ",
151  "is having a constructor that does not use a const reference, all constructors\nfor "
152  "MooseObject based classes should be as follows:\n\n",
153  " ",
154  type_example,
155  "::",
156  type_example,
157  "(const InputParameters & parameters);");
158  }
159 
161 
162  _params = rhs._params;
163 
170  _allow_copy = rhs._allow_copy;
173  _hit_node = rhs._hit_node;
174  _finalized = false;
175 
176  return *this;
177 }
std::multimap< std::string, std::string > _new_to_old_names
A map from derived-class/blessed parameter names to associated base-class/deprecated parameter names...
std::string name(const ElemQuality q)
bool _allow_copy
A flag for toggling the error message in the copy constructor.
const std::string & getObjectName() const
std::unordered_map< std::string, std::string > _new_to_deprecated_coupled_vars
A map from deprecated coupled variable names to the new blessed name.
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
bool _collapse_nesting
This parameter collapses one level of nesting in the syntax blocks.
infix_ostream_iterator< T, charT, traits > & operator=(T const &item)
Definition: InfixIterator.h:47
const std::string & getObjectType() const
std::set< std::string > _coupled_vars
The coupled variables set.
std::vector< std::tuple< std::string, Moose::RelationshipManagerType, Moose::RelationshipManagerInputParameterCallback > > _buildable_rm_types
The RelationshipManagers that this object may either build or require.
bool _finalized
Whether or not we&#39;ve called finalize() on these parameters yet.
std::string type(const std::string &name) const
Prints the type of the requested parameter by name.
const hit::Node * _hit_node
The hit node representing the syntax that created these parameters, if any.
std::vector< std::string > _buildable_types
The parameter is used to restrict types that can be built.
bool _moose_object_syntax_visibility
This parameter hides derived MOOSE object types from appearing in syntax dumps.
std::map< std::string, Metadata > _params
The actual parameter data.
std::map< std::string, std::pair< std::string, std::string > > _old_to_new_name_and_dep
A map from base-class/deprecated parameter names to derived-class/blessed parameter names and the dep...

◆ paramAliases()

std::vector< std::string > InputParameters::paramAliases ( const std::string &  param_name) const

Return all the aliased names associated with param_name.

The returned container will always contain param_name itself. Other aliases in addition to param_name will include the base class parameter name if param_name is the derived class parameter name, or deprecated names that param_name is meant to replace.

Parameters
param_nameThe name of the parameter that we want to lookup aliases for. This parameter name must exist in our metadata and parameter names to values map, e.g. this parameter must represent the derived class parameter name if a base class parameter has been renamed or the blessed parameter name in situations where associated parameter names have been deprecated
Returns
All aliases which logically resolve-to/are-associated-with param_name, including param_name itself

Definition at line 1813 of file InputParameters.C.

1814 {
1815  mooseAssert(_values.find(param_name) != _values.end(),
1816  "The parameter we are searching for aliases for should exist in our parameter map");
1817  std::vector<std::string> aliases = {param_name};
1818 
1819  for (const auto & pr : as_range(_new_to_old_names.equal_range(param_name)))
1820  aliases.push_back(pr.second);
1821 
1822  return aliases;
1823 }
std::multimap< std::string, std::string > _new_to_old_names
A map from derived-class/blessed parameter names to associated base-class/deprecated parameter names...
SimpleRange< IndexType > as_range(const std::pair< IndexType, IndexType > &p)

◆ paramError()

template<typename... Args>
void InputParameters::paramError ( const std::string &  param,
Args...  args 
) const

Emits a parameter error prefixed with the parameter location and object information if available.

Definition at line 2472 of file InputParameters.h.

Referenced by SystemBase::addVariable(), PiecewiseTabularInterface::buildFromFile(), checkParams(), Moose::PeriodicBCHelper::checkPeriodicParams(), finalize(), get(), getFileBase(), MooseBase::paramError(), Moose::PeriodicBCHelper::setupAutoPeriodicBoundaries(), and Moose::PeriodicBCHelper::setupManualPeriodicBoundaries().

2473 {
2474  std::ostringstream oss;
2475  moose::internal::mooseStreamAll(oss, std::forward<Args>(args)...);
2476  const auto [prefix, node] = paramMessageContext(param);
2477  callMooseError(prefix + oss.str(), false, node, /* show_trace = */ false);
2478 }
void mooseStreamAll(std::ostringstream &ss)
All of the following are not meant to be called directly - they are called by the normal macros (moos...
Definition: MooseError.C:137
std::pair< std::string, const hit::Node * > paramMessageContext(const std::string &param) const
Get the context associated with a parameter for a message.
void callMooseError(std::string msg, const bool with_prefix=true, const hit::Node *node=nullptr, const bool show_trace=true) const
Internal helper for calling back to mooseError(), ideally from the underlying MooseBase object if it ...

◆ parameterRangeCheck()

std::optional< std::pair< bool, std::string > > InputParameters::parameterRangeCheck ( const Parameters::Value &  value,
const std::string &  long_name,
const std::string &  short_name,
const bool  include_param_path 
)

Performs a range check on the parameter (which must have a range check)

Parameters
valueThe parameter value
long_nameThe full path to the parameter
short_nameThe name of the parameter
include_param_pathWhether or not to include the parameter path in errors
Returns
An error, if any; first is whether or not it is a user error and second is the message

Definition at line 649 of file InputParameters.C.

Referenced by checkParams().

653 {
654 #define dynamicCastRangeCheck(type, up_type, long_name, short_name) \
655  do \
656  { \
657  if (const auto scalar_p = dynamic_cast<const InputParameters::Parameter<type> *>(&value)) \
658  return rangeCheck<type, up_type>(long_name, short_name, *scalar_p, include_param_path); \
659  if (const auto vector_p = \
660  dynamic_cast<const InputParameters::Parameter<std::vector<type>> *>(&value)) \
661  return rangeCheck<type, up_type>(long_name, short_name, *vector_p, include_param_path); \
662  } while (0)
663 
664  dynamicCastRangeCheck(Real, Real, long_name, short_name);
665  dynamicCastRangeCheck(int, long, long_name, short_name);
666  dynamicCastRangeCheck(long, long, long_name, short_name);
667  dynamicCastRangeCheck(unsigned int, long, long_name, short_name);
668 #undef dynamicCastRangeCheck
669 
670  return {};
671 }

◆ paramFullpath()

std::string InputParameters::paramFullpath ( const std::string &  param) const
Returns
A string representing the full HIT parameter path from the input file (e.g. "Mesh/foo/bar" for param "bar") for the given param.

Definition at line 1617 of file InputParameters.C.

Referenced by checkParams(), and paramLocationPrefix().

1618 {
1619  if (const auto hit_node = getHitNode(param))
1620  return hit_node->fullpath();
1621  return "";
1622 }
const hit::Node * getHitNode() const

◆ paramLocationPrefix()

std::string InputParameters::paramLocationPrefix ( const std::string &  param) const

Returns a prefix containing the parameter name and location (if available)

Definition at line 1672 of file InputParameters.C.

Referenced by MaterialPropertyInterface::checkBlockAndBoundaryCompatibility().

1673 {
1674  auto prefix = param + ":";
1675  if (!inputLocation(param).empty())
1676  prefix = inputLocation(param) + ": (" + paramFullpath(param) + ")";
1677  return prefix;
1678 }
std::string inputLocation(const std::string &param) const
std::string paramFullpath(const std::string &param) const

◆ paramMessage()

template<typename... Args>
std::string InputParameters::paramMessage ( const std::string &  param,
Args...  args 
) const
Returns
A message used as a prefix for output relating to a parameter.

Will first prefix with a path to the parameter, or the parameter that resulted in the creation of these parameters, if available. The message will then be prefixed with the block path to the parameter, if available.

Definition at line 2463 of file InputParameters.h.

Referenced by MooseBase::paramInfo(), and MooseBase::paramWarning().

2464 {
2465  std::ostringstream oss;
2466  moose::internal::mooseStreamAll(oss, std::forward<Args>(args)...);
2467  return paramMessagePrefix(param) + oss.str();
2468 }
void mooseStreamAll(std::ostringstream &ss)
All of the following are not meant to be called directly - they are called by the normal macros (moos...
Definition: MooseError.C:137
std::string paramMessagePrefix(const std::string &param) const
Get a prefix for messages associated with a parameter.

◆ paramMessageContext()

std::pair< std::string, const hit::Node * > InputParameters::paramMessageContext ( const std::string &  param) const
private

Get the context associated with a parameter for a message.

Parameters
paramThe parameter name
Returns
Pair that is the string prefix for the parameter (fullpath) and a pointer to the best hit node that can be associated with the parameter (if any)

Definition at line 1873 of file InputParameters.C.

Referenced by paramError(), and paramMessagePrefix().

1874 {
1875  const hit::Node * node = nullptr;
1876 
1877  std::string fullpath;
1878  // First try to find the parameter
1879  if (const hit::Node * param_node = getHitNode(param))
1880  {
1881  fullpath = param_node->fullpath();
1882  node = param_node;
1883  }
1884  // If no parameter node, hope for a block node
1885  else if (const hit::Node * block_node = getHitNode())
1886  {
1887  node = block_node;
1888  fullpath = block_node->fullpath() + "/" + param;
1889  }
1890  // Didn't find anything, at least use the parameter
1891  else
1892  fullpath = param;
1893 
1894  return {fullpath + ": ", node};
1895 }
const hit::Node * getHitNode() const

◆ paramMessagePrefix()

std::string InputParameters::paramMessagePrefix ( const std::string &  param) const
private

Get a prefix for messages associated with a parameter.

Will include the best file path possible for the parameter and the parameter's fullpath.

Definition at line 1898 of file InputParameters.C.

Referenced by paramMessage(), and queryDeprecatedParamMessage().

1899 {
1900  auto [prefix, node] = paramMessageContext(param);
1901  if (node)
1902  prefix = Moose::hitMessagePrefix(*node) + prefix;
1903  return prefix;
1904 }
std::pair< std::string, const hit::Node * > paramMessageContext(const std::string &param) const
Get the context associated with a parameter for a message.
std::string hitMessagePrefix(const hit::Node &node)
Get the prefix to be associated with a hit node for a message.
Definition: Moose.C:832

◆ paramSetByUser()

bool InputParameters::paramSetByUser ( const std::string &  name) const

Deprecated method.

Use isParamSetByUser() instead.

Definition at line 1253 of file InputParameters.C.

1254 {
1255  mooseDeprecated("paramSetByUser() is deprecated. Use isParamSetByUser() instead.");
1256  return isParamSetByUser(name);
1257 }
void mooseDeprecated(Args &&... args)
Emit a deprecated code/feature message with the given stringified, concatenated args.
Definition: MooseError.h:363
bool isParamSetByUser(const std::string &name) const
Method returns true if the parameter was set by the user.

◆ queryCommandLineMetadata()

std::optional< InputParameters::CommandLineMetadata > InputParameters::queryCommandLineMetadata ( const std::string &  name) const
Returns
Queries for the command line metadata for the parameter name

Will return an empty optional if the parameter is not a command line param.

Definition at line 1043 of file InputParameters.C.

Referenced by isParamSetByUser().

1044 {
1045  const auto & cl_data = at(checkForRename(name))._cl_data;
1046  if (!cl_data)
1047  return {};
1048  return *cl_data;
1049 }
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::optional< CommandLineMetadata > _cl_data
The data pertaining to a command line parameter (empty if not a command line param) ...
Metadata & at(const std::string &param_name)

◆ queryDataFileNamePath()

std::optional< Moose::DataFileUtils::Path > InputParameters::queryDataFileNamePath ( const std::string &  name) const
Returns
The DataFileName path for the parameter name (if any).

Definition at line 1826 of file InputParameters.C.

1827 {
1828  return at(checkForRename(name))._data_file_name_path;
1829 }
std::optional< Moose::DataFileUtils::Path > _data_file_name_path
The searched path information pertaining to a DataFileName parameter.
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
Metadata & at(const std::string &param_name)

◆ queryDeprecatedParamMessage()

std::optional< std::string > InputParameters::queryDeprecatedParamMessage ( const std::string &  name) const
Returns
The deprecated parameter message for the given parameter, if any

Definition at line 109 of file InputParameters.C.

110 {
111  const auto name = checkForRename(name_in);
113  {
114  auto deprecation_message = [this](const auto & name, const auto & message) -> std::string
115  { return paramMessagePrefix(name) + message; };
116 
117  if (_params.count(name) && !libmesh_map_find(_params, name)._deprecation_message.empty())
118  return deprecation_message(name,
119  "The parameter '" + name + "' is deprecated.\n" +
120  libmesh_map_find(_params, name)._deprecation_message);
121  else if (auto it = _old_to_new_name_and_dep.find(name_in);
122  it != _old_to_new_name_and_dep.end() && !it->second.second.empty())
123  return deprecation_message(name_in, it->second.second);
124  }
125  return {};
126 }
std::string name(const ElemQuality q)
bool _show_deprecated_message
Flag for disabling deprecated parameters message, this is used by applyParameters to avoid dumping me...
std::string paramMessagePrefix(const std::string &param) const
Get a prefix for messages associated with a parameter.
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.
std::map< std::string, std::pair< std::string, std::string > > _old_to_new_name_and_dep
A map from base-class/deprecated parameter names to derived-class/blessed parameter names and the dep...

◆ queryObjectType()

const std::string * InputParameters::queryObjectType ( ) const
Returns
The object type represented by these parameters, if any

Definition at line 970 of file InputParameters.C.

Referenced by getObjectType().

971 {
972  return have_parameter<std::string>(MooseBase::type_param)
973  ? &get<std::string>(MooseBase::type_param)
974  : nullptr;
975 }
static const std::string type_param
The name of the parameter that contains the object type.
Definition: MooseBase.h:53

◆ queryParam()

template<typename T >
const T * InputParameters::queryParam ( const std::string &  name) const

Query a parameter.

If the parameter is not valid, nullptr will be returned

Parameters
nameThe name of the parameter
Returns
A pointer to the parameter value, if it exists

Definition at line 2274 of file InputParameters.h.

Referenced by Moose::PeriodicBCHelper::setupManualPeriodicBoundaries().

2275 {
2276  return isParamValid(name) ? &getParamHelper<T>(name, *this) : nullptr;
2277 }
std::string name(const ElemQuality q)
bool isParamValid(const std::string &name) const
This method returns parameters that have been initialized in one fashion or another, i.e.

◆ rangeCheck() [1/2]

template<typename T , typename UP_T >
std::optional< std::pair< bool, std::string > > InputParameters::rangeCheck ( const std::string &  full_name,
const std::string &  short_name,
const InputParameters::Parameter< T > &  param,
const bool  include_param_path = true 
)

Runs a range on the supplied parameter if it exists and throws an error if that check fails.

Returns
Optional of whether or not the error is a user error (false = developer error) and the associated error

If include_param_path = true, include the parameter path in the error message

Definition at line 1707 of file InputParameters.h.

1711 {
1712  if (!isParamValid(short_name))
1713  return {};
1714 
1715  const auto & range_function = _params[short_name]._range_function;
1716  if (range_function.empty())
1717  return {};
1718 
1719  // Parse the expression
1721  if (fp.Parse(range_function, short_name) != -1) // -1 for success
1722  return {{false,
1723  "Error parsing expression '" + range_function + "'" + " for parameter " + short_name}};
1724 
1725  // ensure range-checked input file parameter comparison functions
1726  // do absolute floating point comparisons instead of using a default epsilon.
1727  auto tmp_eps = fp.epsilon();
1728  fp.setEpsilon(0);
1729  // We require a non-const value for the implicit upscaling of the parameter type
1730  std::vector<UP_T> value(1, param.get());
1731  UP_T result = fp.Eval(&value[0]);
1732  fp.setEpsilon(tmp_eps);
1733 
1734  if (fp.EvalError())
1735  return {{true,
1736  "Error evaluating expression '" + range_function + "' for parameter " + short_name +
1737  "; perhaps you used the wrong variable name?"}};
1738 
1739  if (!result)
1740  {
1741  std::ostringstream oss;
1742  oss << "Range check failed";
1743  if (include_param_path)
1744  oss << " for parameter " << full_name;
1745  oss << "; expression = '" << range_function << "', value = " << value[0];
1746  return {{true, oss.str()}};
1747  }
1748 
1749  return {};
1750 }
Real value(unsigned n, unsigned alpha, unsigned beta, Real x)
std::map< std::string, Metadata > _params
The actual parameter data.
bool isParamValid(const std::string &name) const
This method returns parameters that have been initialized in one fashion or another, i.e.

◆ rangeCheck() [2/2]

template<typename T , typename UP_T >
std::optional< std::pair< bool, std::string > > InputParameters::rangeCheck ( const std::string &  full_name,
const std::string &  short_name,
const InputParameters::Parameter< std::vector< T >> &  param,
const bool  include_param_path = true 
)

Automatically detect the variables used in the range checking expression. We allow the following variables (where snam is the short_name of the parameter)

snam : tests every component in the vector 'snam > 0' snam_size : the size of the vector 'snam_size = 5' snam_i : where i is a number from 0 to sname_size-1 tests a specific component 'snam_0 > snam_1'

Definition at line 1589 of file InputParameters.h.

1593 {
1594  if (!isParamValid(short_name))
1595  return {};
1596 
1597  const auto & range_function = _params[short_name]._range_function;
1598  if (range_function.empty())
1599  return {};
1600 
1613  std::vector<std::string> vars;
1614  if (fp.ParseAndDeduceVariables(range_function, vars) != -1) // -1 for success
1615  return {{false,
1616  "Error parsing expression '" + range_function + "' for parameter " + short_name + ""}};
1617 
1618  // Fparser parameter buffer
1619  std::vector<UP_T> parbuf(vars.size());
1620 
1621  // parameter vector
1622  const std::vector<T> & value = param.get();
1623 
1624  // iterate over all vector values (maybe ;)
1625  bool need_to_iterate = false;
1626  unsigned int i = 0;
1627  do
1628  {
1629  // set parameters
1630  for (unsigned int j = 0; j < vars.size(); j++)
1631  {
1632  if (vars[j] == short_name)
1633  {
1634  if (value.size() == 0)
1635  {
1636  std::ostringstream oss;
1637  oss << "Range checking empty vector";
1638  if (include_param_path)
1639  oss << " parameter " << full_name;
1640  oss << "; expression = '" << range_function << "'";
1641  return {{true, oss.str()}};
1642  }
1643 
1644  parbuf[j] = value[i];
1645  need_to_iterate = true;
1646  }
1647  else if (vars[j] == short_name + "_size")
1648  parbuf[j] = value.size();
1649  else
1650  {
1651  if (vars[j].substr(0, short_name.size() + 1) != short_name + "_")
1652  return {{false, "Error parsing expression '" + range_function + "'"}};
1653  std::istringstream iss(vars[j]);
1654  iss.seekg(short_name.size() + 1);
1655 
1656  size_t index;
1657  if (iss >> index && iss.eof())
1658  {
1659  if (index >= value.size())
1660  {
1661  std::ostringstream oss;
1662  oss << "Error parsing expression '" + range_function + "'";
1663  if (include_param_path)
1664  oss << " for parameter " << full_name;
1665  oss << "; out of range variable '" + vars[j] << "'";
1666  return {{true, oss.str()}};
1667  }
1668  parbuf[j] = value[index];
1669  }
1670  else
1671  return {{false,
1672  "Error parsing expression '" + range_function + "'; invalid variable '" +
1673  vars[j] + "'"}};
1674  }
1675  }
1676 
1677  // ensure range-checked input file parameter comparison functions
1678  // do absolute floating point comparisons instead of using a default epsilon.
1679  auto tmp_eps = fp.epsilon();
1680  fp.setEpsilon(0);
1681  UP_T result = fp.Eval(&parbuf[0]);
1682  fp.setEpsilon(tmp_eps);
1683 
1684  // test function using the parameters determined above
1685  if (fp.EvalError())
1686  return {{false, "Error evaluating expression '" + range_function + "'"}};
1687 
1688  if (!result)
1689  {
1690  std::ostringstream oss;
1691  oss << "Range check failed";
1692  if (include_param_path)
1693  oss << " for parameter " << full_name;
1694  oss << "; expression = '" << range_function << "'";
1695  if (need_to_iterate)
1696  oss << ", component " << i;
1697  return {{true, oss.str()}};
1698  }
1699 
1700  } while (need_to_iterate && ++i < value.size());
1701 
1702  return {};
1703 }
char ** vars
Real value(unsigned n, unsigned alpha, unsigned beta, Real x)
std::map< std::string, Metadata > _params
The actual parameter data.
bool isParamValid(const std::string &name) const
This method returns parameters that have been initialized in one fashion or another, i.e.

◆ rangeCheckedFunction()

std::string InputParameters::rangeCheckedFunction ( const std::string &  name) const

Return the range check function for any parameter (empty string if it is not range checked)

Definition at line 799 of file InputParameters.C.

Referenced by MooseServer::getHoverDisplayText(), and transferParam().

800 {
801  const auto name = checkForRename(param_name);
802  return _params.at(name)._range_function;
803 }
std::string name(const ElemQuality q)
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ rawParamVal()

std::string InputParameters::rawParamVal ( const std::string &  param) const
Returns
A string representing the raw, unmodified token text for the given param. This is only set if this parameter is parsed from hit

Definition at line 1681 of file InputParameters.C.

1682 {
1683  if (const auto hit_node = getHitNode(param))
1684  return hit_node->strVal();
1685  return "";
1686 }
const hit::Node * getHitNode() const

◆ registerBase()

void InputParameters::registerBase ( const std::string &  value)

This method must be called from every base "Moose System" to create linkage with the Action System.

See "Moose.C" for the registerMooseObjectTask() calls.

Definition at line 492 of file InputParameters.C.

Referenced by Kernel::validParams(), VectorKernel::validParams(), LineSearch::validParams(), ArrayKernel::validParams(), ActivateElementsUserObjectBase::validParams(), BoundsBase::validParams(), FVInterpolationMethod::validParams(), HDGKernel::validParams(), Distribution::validParams(), Times::validParams(), Constraint::validParams(), Problem::validParams(), ScalarKernelBase::validParams(), MFEMBoundaryCondition::validParams(), LayeredExtremumMaterialProperty::validParams(), MFEMAuxKernel::validParams(), MFEMComplexAuxKernel::validParams(), MFEMFESpace::validParams(), PointwiseRenormalizeVector::validParams(), MFEMRefinementMarker::validParams(), ADInterfaceKernelTempl< T >::validParams(), MFEMSubMesh::validParams(), MFEMSubMeshTransfer::validParams(), Positions::validParams(), ADArrayKernel::validParams(), ChainControl::validParams(), SidesetAroundSubdomainUpdater::validParams(), MFEMFunctorMaterial::validParams(), MFEMKernel::validParams(), Moose::MFEM::SolverBase::validParams(), MoosePartitioner::validParams(), ADDiracKernel::validParams(), TimeStepper::validParams(), NearestPointAverage::validParams(), NearestPointIntegralVariablePostprocessor::validParams(), MFEMIndicator::validParams(), EigenKernel::validParams(), Split::validParams(), Convergence::validParams(), Postprocessor::validParams(), RelationshipManager::validParams(), AuxKernelTempl< Real >::validParams(), Damper::validParams(), Predictor::validParams(), InterfaceKernelBase::validParams(), LinearFVKernel::validParams(), Moose::FunctionBase::validParams(), DiracKernelTempl< T >::validParams(), BoundaryCondition::validParams(), NodalKernelBase::validParams(), VectorPostprocessor::validParams(), InterfaceKernelTempl< T >::validParams(), Indicator::validParams(), FVKernel::validParams(), MoosePreconditioner::validParams(), AuxScalarKernel::validParams(), MeshDivision::validParams(), Action::validParams(), TimeIntegrator::validParams(), DGKernelBase::validParams(), MeshGenerator::validParams(), ElementSubdomainModifierBase::validParams(), MooseVariableBase::validParams(), ScalarInitialCondition::validParams(), Control::validParams(), Reporter::validParams(), FVInitialConditionBase::validParams(), Executioner::validParams(), Marker::validParams(), UserObjectBase::validParams(), Output::validParams(), Sampler::validParams(), InitialConditionBase::validParams(), AuxKernelBase::validParams(), LinearFVBoundaryCondition::validParams(), FVInterfaceKernel::validParams(), FVBoundaryCondition::validParams(), MultiApp::validParams(), Executor::validParams(), and MooseApp::validParams().

493 {
494  InputParameters::set<std::string>(MooseBase::moose_base_param) = value;
495  _params[MooseBase::moose_base_param]._is_private = true;
496 }
static const std::string moose_base_param
The name of the parameter that contains the moose system base.
Definition: MooseBase.h:61
std::map< std::string, Metadata > _params
The actual parameter data.

◆ registerBuildableTypes()

void InputParameters::registerBuildableTypes ( const std::string &  names)

This method is here to indicate which Moose types a particular Action may build.

It takes a space delimited list of registered MooseObjects. TODO: For now we aren't actually checking this list when we build objects. Since individual actions can do whatever they want it's not exactly trivial to check this without changing the user API. This function properly restricts the syntax and YAML dumps.

Definition at line 530 of file InputParameters.C.

531 {
532  _buildable_types.clear();
533  MooseUtils::tokenize(names, _buildable_types, 1, " \t\n\v\f\r"); // tokenize on whitespace
534 }
void tokenize(const std::string &str, std::vector< T > &elements, unsigned int min_len=1, const std::string &delims="/")
This function will split the passed in string on a set of delimiters appending the substrings to the ...
std::vector< std::string > _buildable_types
The parameter is used to restrict types that can be built.

◆ registerSystemAttributeName()

void InputParameters::registerSystemAttributeName ( const std::string &  value)

This method is used to define the MOOSE system name that is used by the TheWarehouse object for storing objects to be retrieved for execution.

The base class of every object class that will be called for execution (e.g., UserObject objects) should call this method.

This is different from registerBase because the name supplied to registerBase is used to associate syntax, but the objects created often go to the same objects for execution, as is the case for Postprocessor object which are executed with UserObjects.

See the AttribSystem object for use Attribute.h/C.

Definition at line 514 of file InputParameters.C.

Referenced by FVInterpolationMethod::validParams(), Distribution::validParams(), LinearFVElementalKernel::validParams(), LinearFVFluxKernel::validParams(), UserObject::validParams(), MFEMBoundaryCondition::validParams(), Constraint::validParams(), ScalarKernelBase::validParams(), MFEMFESpace::validParams(), MFEMRefinementMarker::validParams(), MFEMSubMesh::validParams(), FVDirichletBCBase::validParams(), MFEMFunctorMaterial::validParams(), MFEMKernel::validParams(), Moose::MFEM::SolverBase::validParams(), MFEMIndicator::validParams(), TimeStepper::validParams(), Split::validParams(), Damper::validParams(), AuxKernelTempl< Real >::validParams(), InterfaceKernelBase::validParams(), FVFluxBC::validParams(), FVElementalKernel::validParams(), MFEMExecutedObject::validParams(), DiracKernelBase::validParams(), BoundaryCondition::validParams(), NodalKernelBase::validParams(), FVFluxKernel::validParams(), DGKernelBase::validParams(), Sampler::validParams(), LinearFVBoundaryCondition::validParams(), and FVInterfaceKernel::validParams().

515 {
516  InputParameters::set<std::string>("_moose_warehouse_system_name") = value;
517  _params["_moose_warehouse_system_name"]._is_private = true;
518 }
std::map< std::string, Metadata > _params
The actual parameter data.

◆ renameCoupledVar()

void InputParameters::renameCoupledVar ( const std::string &  old_name,
const std::string &  new_name,
const std::string &  new_docstring 
)

Rename a coupled variable and provide a new documentation string.

Parameters
old_nameThe old name of the coupled variable
new_nameThe new name of the coupled variable
new_docstringThe new documentation string for the coupled variable

Definition at line 1780 of file InputParameters.C.

Referenced by ADPenaltyPeriodicSegmentalConstraint::validParams(), ADPeriodicSegmentalConstraint::validParams(), PeriodicSegmentalConstraint::validParams(), PenaltyPeriodicSegmentalConstraint::validParams(), and ScalarLMKernelTempl< is_ad >::validParams().

1783 {
1784  renameCoupledVarInternal(old_name, new_name, new_docstring, "");
1785 }
void renameCoupledVarInternal(const std::string &old_name, const std::string &new_name, const std::string &docstring, const std::string &removal_date)

◆ renameCoupledVarInternal()

void InputParameters::renameCoupledVarInternal ( const std::string &  old_name,
const std::string &  new_name,
const std::string &  docstring,
const std::string &  removal_date 
)
private

Definition at line 1754 of file InputParameters.C.

Referenced by deprecateCoupledVar(), and renameCoupledVar().

1758 {
1759  auto coupled_vars_it = _coupled_vars.find(old_name);
1760  if (coupled_vars_it == _coupled_vars.end())
1761  mooseError("Requested to rename coupled variable '",
1762  old_name,
1763  "' but that coupled variable name doesn't exist in the parameters object.");
1764 
1765  _coupled_vars.insert(new_name);
1766  _coupled_vars.erase(coupled_vars_it);
1767 
1768  renameParamInternal(old_name, new_name, docstring, removal_date);
1769 }
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
void renameParamInternal(const std::string &old_name, const std::string &new_name, const std::string &docstring, const std::string &removal_date)
std::string docstring(const std::string &desc)
Augment docstring if NEML2 is not enabled.
Definition: NEML2Utils.C:71
std::set< std::string > _coupled_vars
The coupled variables set.

◆ renameParam()

void InputParameters::renameParam ( const std::string &  old_name,
const std::string &  new_name,
const std::string &  new_docstring 
)

Rename a parameter and provide a new documentation string.

Parameters
old_nameThe old name of the parameter
new_nameThe new name of the parameter
new_docstringThe new documentation string for the parameter If left empty, uses the old docstring for the renamed parameter

Definition at line 1772 of file InputParameters.C.

Referenced by OrientSurfaceMeshGenerator::validParams(), ParsedSubdomainMeshGenerator::validParams(), SideSetsBetweenSubdomainsGenerator::validParams(), StitchBoundaryMeshGenerator::validParams(), XYZDelaunayGenerator::validParams(), SurfaceSubdomainsFromAllNormalsGenerator::validParams(), SidesetAroundSubdomainUpdater::validParams(), MultiAppGeneralFieldNearestLocationTransfer::validParams(), SideSetsAroundSubdomainGenerator::validParams(), and MultiAppGeneralFieldFunctorTransfer::validParams().

1775 {
1776  renameParamInternal(old_name, new_name, new_docstring, "");
1777 }
void renameParamInternal(const std::string &old_name, const std::string &new_name, const std::string &docstring, const std::string &removal_date)

◆ renameParameterGroup()

void InputParameters::renameParameterGroup ( const std::string &  old_name,
const std::string &  new_name 
)

This method renames a parameter group.

Parameters
old_nameprevious name of the parameter group
new_namenew name of the parameter group

Definition at line 1018 of file InputParameters.C.

Referenced by LevelSetMeshingHelper::validParams(), and SurfaceSubdomainsDelaunayRemesher::validParams().

1019 {
1020  for (auto & param : _params)
1021  if (param.second._group == old_name)
1022  param.second._group = new_name;
1023 }
std::map< std::string, Metadata > _params
The actual parameter data.

◆ renameParamInternal()

void InputParameters::renameParamInternal ( const std::string &  old_name,
const std::string &  new_name,
const std::string &  docstring,
const std::string &  removal_date 
)
private

Definition at line 1720 of file InputParameters.C.

Referenced by deprecateParam(), renameCoupledVarInternal(), and renameParam().

1724 {
1725  auto params_it = _params.find(old_name);
1726  if (params_it == _params.end())
1727  mooseError("Requested to rename parameter '",
1728  old_name,
1729  "' but that parameter name doesn't exist in the parameters object.");
1730  mooseAssert(params_it->second._deprecation_message.empty(),
1731  "Attempting to rename the parameter, '" << old_name << "', that is deprecated");
1732 
1733  auto new_metadata = std::move(params_it->second);
1734  if (!docstring.empty())
1735  new_metadata._doc_string = docstring;
1736  _params.emplace(new_name, std::move(new_metadata));
1737  _params.erase(params_it);
1738 
1739  auto values_it = _values.find(old_name);
1740  auto new_value = std::move(values_it->second);
1741  _values.emplace(new_name, std::move(new_value));
1742  _values.erase(values_it);
1743 
1744  std::string deprecation_message;
1745  if (!removal_date.empty())
1746  deprecation_message = "'" + old_name + "' has been deprecated and will be removed on " +
1747  removal_date + ". Please use '" + new_name + "' instead.";
1748 
1749  _old_to_new_name_and_dep.emplace(old_name, std::make_pair(new_name, deprecation_message));
1750  _new_to_old_names.emplace(new_name, old_name);
1751 }
std::multimap< std::string, std::string > _new_to_old_names
A map from derived-class/blessed parameter names to associated base-class/deprecated parameter names...
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
std::string docstring(const std::string &desc)
Augment docstring if NEML2 is not enabled.
Definition: NEML2Utils.C:71
std::map< std::string, Metadata > _params
The actual parameter data.
std::map< std::string, std::pair< std::string, std::string > > _old_to_new_name_and_dep
A map from base-class/deprecated parameter names to derived-class/blessed parameter names and the dep...

◆ reservedValues()

std::set< std::string > InputParameters::reservedValues ( const std::string &  name) const

Get a set of reserved parameter values.

Returns a set by value since we can return an empty set.

Definition at line 1568 of file InputParameters.C.

1569 {
1570  const auto name = checkForRename(name_in);
1571  auto it = _params.find(name);
1572  if (it == _params.end())
1573  return std::set<std::string>();
1574  return it->second._reserved_values;
1575 }
std::string name(const ElemQuality q)
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ set()

template<typename T >
T & InputParameters::set ( const std::string &  name,
bool  quiet_mode = false 
)

Returns a writable reference to the named parameters.

Note: This is not a virtual function! Use caution when comparing to the parent class implementation

Parameters
nameThe name of the parameter to set
quiet_modeWhen true the parameter is kept with set_by_add_param=true, this is generally not needed.

"quite_mode" returns a writable reference to the named parameter, without setting set_by_add_param to false. Using this method of set will make the parameter to continue to behave if its value where set ONLY by addParam and not by any other method.

This was added for handling parameters in the Output objects that have behavior dependent on whether the user modified the parameters.

Definition at line 1560 of file InputParameters.h.

Referenced by AB2PredictorCorrector::AB2PredictorCorrector(), ElementIDOutputAction::act(), AddFVICAction::act(), CreateExecutionerAction::act(), AddICAction::act(), PartitionerAction::act(), AutoCheckpointAction::act(), CreateProblemAction::act(), CombineComponentsMeshes::act(), AddTimeStepperAction::act(), SetupDebugAction::act(), SetupPredictorAction::act(), SetupTimeStepperAction::act(), AddActionComponentAction::act(), SetupResidualDebugAction::act(), AddAuxKernelAction::act(), CreateDisplacedProblemAction::act(), MaterialDerivativeTestAction::act(), SetAdaptivityOptionsAction::act(), DisplayGhostingAction::act(), MaterialOutputAction::act(), CommonOutputAction::act(), AddPeriodicBCAction::act(), AddNodalNormalsAction::act(), FEProblemBase::addAnyRedistributers(), FEProblemBase::addAuxArrayVariable(), FEProblemBase::addAuxScalarKernel(), FEProblemBase::addAuxScalarVariable(), FEProblemBase::addAuxVariable(), DiffusionCG::addBoundaryConditionsFromComponents(), FEProblemBase::addConstraint(), FEProblemBase::addDamper(), FEProblemBase::addDefaultMultiAppFixedPointConvergence(), ReferenceResidualProblem::addDefaultNonlinearConvergence(), FEProblemBase::addDefaultNonlinearConvergence(), FEProblemBase::addDefaultSteadyStateConvergence(), FEProblemBase::addDGKernel(), FEProblemBase::addDiracKernel(), FEProblemBase::addDistribution(), DiffusionCG::addFEBCs(), DiffusionCG::addFEKernels(), FEProblemBase::addFunction(), FEProblemBase::addFunctorMaterial(), DiffusionFV::addFVBCs(), FEProblemBase::addFVInitialCondition(), DiffusionFV::addFVKernels(), MFEMProblem::addImagComponentToBC(), MFEMProblem::addImagComponentToKernel(), FEProblemBase::addIndicator(), FEProblemBase::addInitialCondition(), DiffusionPhysicsBase::addInitialConditions(), DiffusionPhysicsBase::addInitialConditionsFromComponents(), FEProblemBase::addInterfaceKernel(), MooseEigenSystem::addKernel(), FEProblem::addLineSearch(), FEProblemBase::addMarker(), FEProblemBase::addMaterialHelper(), ComponentMaterialPropertyInterface::addMaterials(), FEProblemBase::addMeshDivision(), CylinderComponent::addMeshGenerators(), ComponentJunction::addMeshGenerators(), ComponentMeshTransformHelper::addMeshGenerators(), MeshGenerator::addMeshSubgenerator(), MFEMProblem::addMFEMFESpaceFromMOOSEVariable(), FEProblemBase::addMultiApp(), TableOutput::addMultiAppFixedPointIterationEndExecFlag(), FEProblemBase::addNodalKernel(), FEProblemBase::addObjectParamsHelper(), FEProblemBase::addOutput(), DiffusionPhysicsBase::addPostprocessors(), FEProblemBase::addPredictor(), CreateDisplacedProblemAction::addProxyRelationshipManagers(), MFEMProblem::addRealComponentToBC(), MFEMProblem::addRealComponentToKernel(), Action::addRelationshipManager(), FEProblemBase::addScalarKernel(), DiffusionCG::addSolverVariables(), DiffusionFV::addSolverVariables(), FEProblemBase::addTimeIntegrator(), SystemBase::addTimeIntegrator(), FEProblemBase::addTransfer(), SystemBase::addVariable(), FEProblemBase::addVariable(), MFEMExecutedObject::appendDependencyParam(), MeshGeneratorSystem::appendMeshGenerator(), PhysicsBase::assignBlocks(), AStableDirk4::AStableDirk4(), ActionWarehouse::buildBuildableActions(), ActionUnitTest::buildMinimalObjects(), MooseObjectUnitTest::buildObjects(), SampledOutput::cloneMesh(), BatchMeshGeneratorAction::convertAndSetCompoundRealScalarVector(), BatchMeshGeneratorAction::convertAndSetNumericVector(), BatchMeshGeneratorAction::convertAndSetStringLikeVector(), CommonOutputAction::create(), ActionFactory::create(), AppFactory::create(), MultiApp::createApp(), AppFactory::createAppShared(), AddVariableAction::createInitialConditionAction(), MooseApp::createMinimalApp(), ExtraIDIntegralReporter::ExtraIDIntegralReporter(), FEProblemBase::getFunction(), FEProblemBase::getKokkosFunction(), MaterialOutputAction::getParams(), Moose::SlepcSupport::getSlepcValidParams(), AddElementalFieldAction::init(), Factory::initialize(), SetupMeshAction::modifyParamsForUseSplit(), MooseServer::parseDocumentForDiagnostics(), FEProblemBase::setAuxKernelParamsAndLog(), MeshGenerator::setHasGenerateCSG(), MeshGenerator::setHasGenerateData(), FEProblem::setInputParametersFEProblem(), FEProblemBase::setInputParametersFEProblem(), MassMatrix::setMassMatrixParams(), FEProblemBase::setResidualObjectParamsAndLog(), FVRelationshipManagerInterface::setRMParams(), BatchMeshGeneratorAction::setScalarParams(), CreateExecutionerAction::setupAutoPreconditioning(), ReadExecutorParamsAction::setupAutoPreconditioning(), SideSetExtruderGenerator::SideSetExtruderGenerator(), FVOneVarDiffusionInterface::validParams(), AddFVICAction::validParams(), AddICAction::validParams(), InversePowerMethod::validParams(), NonlinearEigen::validParams(), FVFunctorTimeKernel::validParams(), FVTimeKernel::validParams(), GradientJumpIndicator::validParams(), ExternalProblem::validParams(), GenericConstantArray::validParams(), ADScalarTimeKernel::validParams(), JSONOutput::validParams(), DiscreteElementUserObject::validParams(), GenericConstantVectorMaterialTempl< is_ad >::validParams(), ElementQualityChecker::validParams(), CSVReaderVectorPostprocessor::validParams(), GapValueAux::validParams(), PenetrationAux::validParams(), OrientSurfaceMeshGenerator::validParams(), ElemSideNeighborLayersTester::validParams(), JSONFileReader::validParams(), ArrayTimeDerivativeNodalKernel::validParams(), ElemSideNeighborLayersGeomTester::validParams(), ParsedVectorRealReductionReporter::validParams(), NodalSum::validParams(), TimeIntervalTimes::validParams(), NodalPatchRecoveryBase::validParams(), ParsedVectorVectorRealReductionReporter::validParams(), WeightedGapAux::validParams(), BreakMeshByBlockGenerator::validParams(), InputTimes::validParams(), TransformedPositions::validParams(), ConvectiveFluxBC::validParams(), ProjectedStatefulMaterialNodalPatchRecoveryBase::validParams(), ReporterPositions::validParams(), EigenDirichletBC::validParams(), CombinedVectorPostprocessor::validParams(), MessageFromInput::validParams(), Console::validParams(), ControlOutput::validParams(), PerfGraphOutput::validParams(), ReporterDebugOutput::validParams(), PiecewiseConstantFromCSV::validParams(), VTKOutput::validParams(), ControllableInputTimes::validParams(), AddOutputAction::validParams(), MoveNodesToGeometryModifierBase::validParams(), AddAuxKernelAction::validParams(), FilePositions::validParams(), InputPositions::validParams(), MultiAppPositions::validParams(), FVMassMatrix::validParams(), PseudoTimestep::validParams(), CSVFileTimes::validParams(), ReporterTimes::validParams(), ExodusFileTimes::validParams(), GhostEverything::validParams(), SimulationTimes::validParams(), ArrayTimeKernel::validParams(), ODETimeKernel::validParams(), TimeKernel::validParams(), VectorTimeKernel::validParams(), GenericConstant2DArrayTempl< is_ad >::validParams(), MeshGeneratorMesh::validParams(), GenericConstantRealVectorValueTempl< is_ad >::validParams(), GhostLowerDElems::validParams(), AccumulateReporter::validParams(), FunctorElementalGradientAuxTempl< is_ad >::validParams(), FVAnisotropicDiffusion::validParams(), ElementCentroidPositions::validParams(), NodalL2Norm::validParams(), NearestNodeDistanceAux::validParams(), FunctorChangeFunctorMaterialTempl< is_ad >::validParams(), MFEMCGSolver::validParams(), MFEMGMRESSolver::validParams(), NodalNormalBC::validParams(), CoupledTiedValueConstraint::validParams(), NEML2PostKernel::validParams(), NEML2PreKernel::validParams(), TiedValueConstraint::validParams(), SolutionInvalidityOutput::validParams(), GenericConstantSymmetricRankTwoTensorTempl< is_ad >::validParams(), NodalNormalsEvaluator::validParams(), VectorMagnitudeFunctorMaterialTempl< is_ad >::validParams(), DistributedPositions::validParams(), ElementGroupCentroidPositions::validParams(), FunctorPositions::validParams(), GenericConstantRankTwoTensorTempl< is_ad >::validParams(), ADTimeKernelTempl< T >::validParams(), ADTimeKernelGradTempl< T >::validParams(), ADTimeKernelValueTempl< T >::validParams(), EigenArrayDirichletBC::validParams(), FunctorTimes::validParams(), InterfaceTimeKernel::validParams(), NearestNodeValueAux::validParams(), GenericFunctorGradientMaterialTempl< is_ad >::validParams(), GenericFunctorMaterialTempl< is_ad >::validParams(), VectorOfPostprocessors::validParams(), GenericConstantStdVectorMaterialTempl< is_ad >::validParams(), NEML2Assembly::validParams(), Positions::validParams(), DOFMapOutput::validParams(), MultiAppGeneralFieldUserObjectTransfer::validParams(), BlockWeightedPartitioner::validParams(), LeastSquaresFitHistory::validParams(), GenericVectorFunctorMaterialTempl< is_ad >::validParams(), NodePositions::validParams(), GenericFunctorTimeDerivativeMaterialTempl< is_ad >::validParams(), GhostingFromUOAux::validParams(), GhostHigherDLowerDPointNeighbors::validParams(), MultiAppGeneralFieldNearestLocationTransfer::validParams(), BatchMeshGeneratorAction::validParams(), ReporterPointSource::validParams(), ElementUOAux::validParams(), FVFunctorDirichletBCTempl< is_ad >::validParams(), MFEMPetscNonlinearSolver::validParams(), TagAuxBase< AuxKernel >::validParams(), QuadraturePointsPositions::validParams(), IntegratedBCBase::validParams(), GhostAllPointNeighbors::validParams(), FunctorExtremaPositions::validParams(), BlockRestrictionDebugOutput::validParams(), TimeNodalKernel::validParams(), MortarNodalAuxKernelTempl< ComputeValueType >::validParams(), ProjectionAux::validParams(), TorchScriptUserObject::validParams(), InterfaceQpUserObjectBase::validParams(), GenericConstantMaterialTempl< is_ad >::validParams(), ElementVariablesDifferenceMax::validParams(), MaterialPropertyDebugOutput::validParams(), MooseStaticCondensationPreconditioner::validParams(), EqualValueEmbeddedConstraintTempl< is_ad >::validParams(), Exodus::validParams(), ParsedDownSelectionPositions::validParams(), VariableResidualNormsDebugOutput::validParams(), FVDiffusion::validParams(), SinDirichletBC::validParams(), DistributedRectilinearMeshGenerator::validParams(), NearestRadiusLayeredAverage::validParams(), GhostingUserObject::validParams(), TwoMaterialPropertyInterface::validParams(), PropertyReadFile::validParams(), NodalBCBase::validParams(), Moose::MFEM::NonlinearSolverBase::validParams(), MultiAppUserObjectTransfer::validParams(), ThreeMaterialPropertyInterface::validParams(), TransientBase::validParams(), FVFluxBC::validParams(), KernelBase::validParams(), MFEMExecutedObject::validParams(), MultiAppTransfer::validParams(), InterfaceMaterial::validParams(), RadialAverage::validParams(), ProjectedStatefulMaterialNodalPatchRecoveryTempl< T, is_ad >::validParams(), SamplerBase::validParams(), NEML2FEInterpolation::validParams(), MortarConsumerInterface::validParams(), MultiAppGeneralFieldTransfer::validParams(), ElementSubdomainModifierBase::validParams(), MortarConstraintBase::validParams(), Control::validParams(), Marker::validParams(), UserObjectBase::validParams(), Output::validParams(), Checkpoint::validParams(), Sampler::validParams(), AuxKernelBase::validParams(), LinearFVBoundaryCondition::validParams(), FVInterfaceKernel::validParams(), TopResidualDebugOutput::validParams(), MooseLinearVariableFV< Real >::validParams(), MooseVariableFV< Real >::validParams(), MultiApp::validParams(), Moose::Builder::walkRaw(), and RelationshipManager::zeroLayerGhosting().

1561 {
1562  const auto name = checkForRename(name_in);
1563 
1564  checkParamName(name);
1565  checkConsistentType<T>(name);
1566 
1567  T & result = this->Parameters::set<T>(name);
1568 
1569  if (quiet_mode)
1570  _params[name]._set_by_add_param = true;
1571 
1572  setHelper<T>(name);
1573 
1574  return result;
1575 }
std::string name(const ElemQuality q)
void checkParamName(const std::string &name) const
Make sure the parameter name doesn&#39;t have any invalid characters.
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ set_attributes()

void InputParameters::set_attributes ( const std::string &  name,
bool  inserted_only 
)
overridevirtual

Override from libMesh to set user-defined attributes on our parameter.

"._set_by_add_param" and ".deprecated_params" are not populated until after the default value has already been set in libMesh (first callback to this method). Therefore if a variable is in/not in one of these sets, you can be assured it was put there outside of the "addParam*()" calls.

Reimplemented from libMesh::Parameters.

Definition at line 87 of file InputParameters.C.

Referenced by applyParameter().

88 {
89  const auto name = checkForRename(name_in);
90 
91  if (!inserted_only)
92  {
93  auto & metadata = _params[name];
100  metadata._set_by_add_param = false;
101 
102  // valid_params don't make sense for MooseEnums
103  if (!have_parameter<MooseEnum>(name) && !have_parameter<MultiMooseEnum>(name))
104  metadata._valid = true;
105  }
106 }
std::string name(const ElemQuality q)
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ setDeprecatedVarDocString()

void InputParameters::setDeprecatedVarDocString ( const std::string &  new_name,
const std::string &  doc_string 
)
private

Private method for setting deprecated coupled variable documentation strings.

Definition at line 206 of file InputParameters.C.

Referenced by addCoupledVar().

208 {
209  auto coupled_vars_it = _new_to_deprecated_coupled_vars.find(new_name);
210  if (coupled_vars_it != _new_to_deprecated_coupled_vars.end())
211  {
212  auto params_it = _params.find(coupled_vars_it->second);
213  if (params_it == _params.end())
214  mooseError("There must have been a mistake in the construction of the new to deprecated "
215  "coupled vars map because the old name ",
216  coupled_vars_it->second,
217  " doesn't exist in the parameters data.");
218 
219  params_it->second._doc_string = doc_string;
220  }
221 }
std::unordered_map< std::string, std::string > _new_to_deprecated_coupled_vars
A map from deprecated coupled variable names to the new blessed name.
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ setDocString()

void InputParameters::setDocString ( const std::string &  name,
const std::string &  doc 
)

Set the doc string of a parameter.

This method is generally used from within the validParams function to modify the documentation for an existing parameter, such as a parameter that is supplied from an interface class.

Definition at line 343 of file InputParameters.C.

Referenced by TableOutput::addMultiAppFixedPointIterationEndExecFlag(), Moose::SlepcSupport::getSlepcValidParams(), OrientSurfaceMeshGenerator::validParams(), FVIntegralValueConstraint::validParams(), PropertyReadFile::validParams(), FVBoundedValueConstraint::validParams(), FVPointValueConstraint::validParams(), MultiAppTransfer::validParams(), MortarConstraintBase::validParams(), Output::validParams(), AuxKernelBase::validParams(), and MultiApp::validParams().

344 {
345  const auto name = checkForRename(name_in);
346 
347  auto it = _params.find(name);
348  if (it == _params.end())
349  mooseError("Unable to set the documentation string (using setDocString) for the \"",
350  name,
351  "\" parameter, the parameter does not exist.");
352  it->second._doc_string = doc;
353 }
std::string name(const ElemQuality q)
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ setDocUnit()

void InputParameters::setDocUnit ( const std::string &  name,
const std::string &  doc_unit 
)

Set the unit string of a parameter.

This method is only used within MooseDocs and the input syntax dump in order to provide a developer-expected unit for software quality assurance purposes.

Definition at line 363 of file InputParameters.C.

Referenced by Output::validParams().

364 {
365  const auto name = checkForRename(name_in);
366  _params[name]._doc_unit = doc_unit;
367 }
std::string name(const ElemQuality q)
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ setGlobalCommandLineParam()

void InputParameters::setGlobalCommandLineParam ( const std::string &  name)

Sets the command line parameter with name as global.

Global here means that it will be passed to all child MultiApps.

Definition at line 1026 of file InputParameters.C.

Referenced by MooseApp::validParams().

1027 {
1028  auto & cl_data = at(checkForRename(name))._cl_data;
1029  if (!cl_data)
1030  mooseError("InputParameters::setGlobalCommandLineParam: The parameter '",
1031  name,
1032  "' is not a command line parameter");
1033  cl_data->global = true;
1034 }
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::optional< CommandLineMetadata > _cl_data
The data pertaining to a command line parameter (empty if not a command line param) ...
Metadata & at(const std::string &param_name)

◆ setHelper()

template<typename T >
void InputParameters::setHelper ( const std::string &  name)

This functions is called in set as a 'callback' to avoid code duplication.

Definition at line 1553 of file InputParameters.h.

1554 {
1555 }

◆ setHitNode() [1/2]

void InputParameters::setHitNode ( const std::string &  param,
const hit::Node &  node,
const SetParamHitNodeKey   
)

Sets the hit node associated with the parameter param to node.

Is protected to be called by only the Builder via the SetParamHitNodeKey.

Definition at line 1600 of file InputParameters.C.

Referenced by FEProblemBase::addAnyRedistributers(), applyParameters(), Action::associateWithParameter(), Factory::clone(), ActionFactory::create(), Factory::initialize(), and Moose::Builder::walkRaw().

1603 {
1604  mooseAssert(node.type() == hit::NodeType::Field, "Must be a field");
1605  at(param)._hit_node = &node;
1606 }
const hit::Node * _hit_node
Original location of parameter node; used for error messages.
Metadata & at(const std::string &param_name)

◆ setHitNode() [2/2]

void InputParameters::setHitNode ( const hit::Node &  node,
const SetHitNodeKey   
)
inline

Sets the hit node that represents the syntax responsible for creating these parameters.

Is protected to be called by only the ActionFactory, Builder, and Factory via the SetHitNodeKey.

Definition at line 1308 of file InputParameters.h.

1308 { _hit_node = &node; }
const hit::Node * _hit_node
The hit node representing the syntax that created these parameters, if any.

◆ setParameters() [1/2]

template<typename T , typename... Ts>
void InputParameters::setParameters ( const std::string &  name,
const T &  value,
Ts...  extra_input_parameters 
)

Given a series of parameters names and values, sets each name to the corresponding value.

Any number of name, value pairs can be supplied.

Note that each value must be of the correct type for the parameter of that name, not merely of a type convertible to the correct type.

Parameters
nameThe name of the first parameter to set

Definition at line 1579 of file InputParameters.h.

Referenced by MeshGenerator::addMeshSubgenerator(), SideSetsFromNormalsGenerator::validParams(), SideSetsFromPointsGenerator::validParams(), and SideSetsFromAllNormalsGenerator::validParams().

1582 {
1583  this->set<T>(name) = value;
1584  this->setParameters(extra_input_parameters...);
1585 }
std::string name(const ElemQuality q)
void setParameters()
Method to terminate the recursive setParameters definition.

◆ setParameters() [2/2]

void InputParameters::setParameters ( )
inlineprivate

Method to terminate the recursive setParameters definition.

Definition at line 1339 of file InputParameters.h.

Referenced by setParameters().

1339 {}

◆ setParamHelper() [1/17]

template<>
void InputParameters::setParamHelper ( const std::string &  ,
PostprocessorName &  l_value,
const Real r_value 
)
private

Definition at line 1447 of file InputParameters.C.

1450 {
1451  // Assign the default value so that it appears in the dump
1452  std::ostringstream oss;
1453  oss << r_value;
1454  l_value = oss.str();
1455 }

◆ setParamHelper() [2/17]

template<>
void InputParameters::setParamHelper ( const std::string &  ,
PostprocessorName &  l_value,
const int r_value 
)
private

Definition at line 1459 of file InputParameters.C.

1462 {
1463  // Assign the default value so that it appears in the dump
1464  std::ostringstream oss;
1465  oss << r_value;
1466  l_value = oss.str();
1467 }

◆ setParamHelper() [3/17]

template<typename T , typename S >
void InputParameters::setParamHelper ( const std::string &  name,
T &  l_value,
const S &  r_value 
)
private

This method is called when adding a Parameter with a default value, can be specialized for non-matching types.

Definition at line 1833 of file InputParameters.h.

Referenced by addParam().

1834 {
1835  l_value = r_value;
1836 }

◆ setParamHelper() [4/17]

template<>
void InputParameters::setParamHelper ( const std::string &  ,
FunctionName &  l_value,
const Real r_value 
)
private

Definition at line 1471 of file InputParameters.C.

1474 {
1475  // Assign the default value so that it appears in the dump
1476  std::ostringstream oss;
1477  oss << r_value;
1478  l_value = oss.str();
1479 }

◆ setParamHelper() [5/17]

template<>
void InputParameters::setParamHelper ( const std::string &  ,
FunctionName &  l_value,
const int r_value 
)
private

Definition at line 1483 of file InputParameters.C.

1486 {
1487  // Assign the default value so that it appears in the dump
1488  std::ostringstream oss;
1489  oss << r_value;
1490  l_value = oss.str();
1491 }

◆ setParamHelper() [6/17]

template<>
void InputParameters::setParamHelper ( const std::string &  ,
MaterialPropertyName &  l_value,
const Real r_value 
)
private

Definition at line 1495 of file InputParameters.C.

1498 {
1499  // Assign the default value so that it appears in the dump
1500  std::ostringstream oss;
1501  oss << r_value;
1502  l_value = oss.str();
1503 }

◆ setParamHelper() [7/17]

template<>
void InputParameters::setParamHelper ( const std::string &  ,
MaterialPropertyName &  l_value,
const int r_value 
)
private

Definition at line 1507 of file InputParameters.C.

1510 {
1511  // Assign the default value so that it appears in the dump
1512  std::ostringstream oss;
1513  oss << r_value;
1514  l_value = oss.str();
1515 }

◆ setParamHelper() [8/17]

template<>
void InputParameters::setParamHelper ( const std::string &  ,
MooseFunctorName &  l_value,
const Real r_value 
)
private

Definition at line 1519 of file InputParameters.C.

1522 {
1523  // Assign the default value so that it appears in the dump
1524  std::ostringstream oss;
1525  oss << r_value;
1526  l_value = oss.str();
1527 }

◆ setParamHelper() [9/17]

template<>
void InputParameters::setParamHelper ( const std::string &  ,
MooseFunctorName &  l_value,
const int r_value 
)
private

Definition at line 1531 of file InputParameters.C.

1534 {
1535  // Assign the default value so that it appears in the dump
1536  std::ostringstream oss;
1537  oss << r_value;
1538  l_value = oss.str();
1539 }

◆ setParamHelper() [10/17]

template<>
void InputParameters::setParamHelper ( const std::string &  name,
PostprocessorName &  l_value,
const Real r_value 
)
private

◆ setParamHelper() [11/17]

template<>
void InputParameters::setParamHelper ( const std::string &  name,
PostprocessorName &  l_value,
const int r_value 
)
private

◆ setParamHelper() [12/17]

template<>
void InputParameters::setParamHelper ( const std::string &  ,
FunctionName &  l_value,
const Real r_value 
)
private

◆ setParamHelper() [13/17]

template<>
void InputParameters::setParamHelper ( const std::string &  ,
FunctionName &  l_value,
const int r_value 
)
private

◆ setParamHelper() [14/17]

template<>
void InputParameters::setParamHelper ( const std::string &  ,
MaterialPropertyName &  l_value,
const Real r_value 
)
private

◆ setParamHelper() [15/17]

template<>
void InputParameters::setParamHelper ( const std::string &  ,
MaterialPropertyName &  l_value,
const int r_value 
)
private

◆ setParamHelper() [16/17]

template<>
void InputParameters::setParamHelper ( const std::string &  ,
MooseFunctorName &  l_value,
const Real r_value 
)
private

◆ setParamHelper() [17/17]

template<>
void InputParameters::setParamHelper ( const std::string &  ,
MooseFunctorName &  l_value,
const int r_value 
)
private

◆ setReservedValues()

void InputParameters::setReservedValues ( const std::string &  name,
const std::set< std::string > &  reserved 
)

Provide a set of reserved values for a parameter.

These are values that are in addition to the normal set of values the parameter can take.

Definition at line 1560 of file InputParameters.C.

Referenced by OutputInterface::validParams().

1562 {
1563  const auto name = checkForRename(name_in);
1564  _params[name]._reserved_values = reserved;
1565 }
std::string name(const ElemQuality q)
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ setupVariableNames()

std::optional< std::string > InputParameters::setupVariableNames ( std::vector< VariableName > &  names,
const hit::Node &  node,
const Moose::PassKey< Moose::Builder  
)

Entrypoint for the Builder to setup a std::vector<VariableName> parameter, which will setup the default variable names if appropriate.

Parameters
namesThe variable names
nodeThe hit node that produced this parameter
Returns
An error message, if any

Definition at line 1832 of file InputParameters.C.

1835 {
1836  // Whether or not a name was found
1837  bool has_name = false;
1838  // Whether or not a default value (real) was found
1839  bool has_default = false;
1840 
1841  // Search through the names for values that convert to Real values,
1842  // which are default values. If defaults are found, set appropriately
1843  // in the InputParameters object. Keep track of if names or defaults
1844  // were found because we don't allow having both
1845  for (const auto i : index_range(names))
1846  {
1847  auto & name = names[i];
1848  Real real_value;
1849  if (MooseUtils::convert<Real>(name, real_value, false))
1850  {
1851  has_default = true;
1852  defaultCoupledValue(node.path(), real_value, i);
1853  }
1854  else
1855  has_name = true;
1856  }
1857 
1858  if (has_default)
1859  {
1860  if (has_name)
1861  return {"invalid value for '" + node.fullpath() +
1862  "': coupled vectors where some parameters are reals and others are variables are not "
1863  "supported"};
1864 
1865  // Don't actually use the names if these don't represent names
1866  names.clear();
1867  }
1868 
1869  return {};
1870 }
std::string name(const ElemQuality q)
Real defaultCoupledValue(const std::string &coupling_name, unsigned int i=0) const
Get the default value for an optionally coupled variable.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
auto index_range(const T &sizable)

◆ shouldIgnore()

bool InputParameters::shouldIgnore ( const std::string &  name)

Whether to ignore the value of an input parameter set in the input file or from the command line.

Definition at line 1633 of file InputParameters.C.

1634 {
1635  const auto name = checkForRename(name_in);
1636  auto it = _params.find(name);
1637  if (it != _params.end())
1638  return it->second._ignore;
1639  mooseError("Parameter ", name, " does not exist");
1640 }
std::string name(const ElemQuality q)
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ suppressParameter()

template<typename T >
void InputParameters::suppressParameter ( const std::string &  name)

This method suppresses an inherited parameter so that it isn't required or valid in the derived class.

The parameter is added to the private parameter list. Suppressing a parameter can have dire consequences. Use at your own risk!

Definition at line 2086 of file InputParameters.h.

Referenced by MassMatrix::setMassMatrixParams(), TimestepSize::validParams(), ExternalProblem::validParams(), DiscreteElementUserObject::validParams(), MooseObjectAction::validParams(), CSVReaderVectorPostprocessor::validParams(), SideSetsFromNormalsGenerator::validParams(), ParsedScalarReporter::validParams(), ParsedVectorRealReductionReporter::validParams(), ParsedVectorVectorRealReductionReporter::validParams(), OrientSurfaceMeshGenerator::validParams(), SideSetsBetweenSubdomainsGenerator::validParams(), DiffusionFV::validParams(), NumNonlinearIterations::validParams(), PseudoTimestep::validParams(), FVMassMatrix::validParams(), SideSetsFromPointsGenerator::validParams(), AccumulateReporter::validParams(), Times::validParams(), MultiAppCloneReporterTransfer::validParams(), CentroidMultiApp::validParams(), QuadraturePointMultiApp::validParams(), ElementHCurlSemiError::validParams(), ElementHDivSemiError::validParams(), SideSetsFromBoundingBoxGenerator::validParams(), SideSetsFromAllNormalsGenerator::validParams(), SurfaceSubdomainsFromAllNormalsGenerator::validParams(), SolutionInvalidityReporter::validParams(), MultiAppGeneralFieldShapeEvaluationTransfer::validParams(), ParsedGenerateNodeset::validParams(), NEML2PostKernel::validParams(), NEML2PreKernel::validParams(), CSV::validParams(), NodePositions::validParams(), MultiAppGeneralFieldUserObjectTransfer::validParams(), NEML2Assembly::validParams(), TagAuxBase< AuxKernel >::validParams(), MultiAppGeneralFieldNearestLocationTransfer::validParams(), Moose::MFEM::EigensolverBase::validParams(), ReporterPointSource::validParams(), MortarNodalAuxKernelTempl< ComputeValueType >::validParams(), FunctorExtremaPositions::validParams(), SideSetsAroundSubdomainGenerator::validParams(), ParsedGenerateSideset::validParams(), MooseStaticCondensationPreconditioner::validParams(), MultiAppGeneralFieldFunctorTransfer::validParams(), VariableResidualNormsDebugOutput::validParams(), Convergence::validParams(), ActionComponent::validParams(), NearestRadiusLayeredAverage::validParams(), MultiAppUserObjectTransfer::validParams(), Moose::FunctionBase::validParams(), NEML2FEInterpolation::validParams(), MeshGenerator::validParams(), ElementSubdomainModifierBase::validParams(), Executioner::validParams(), and Marker::validParams().

2087 {
2088  const auto name = checkForRename(name_in);
2089  if (!this->have_parameter<T>(name))
2090  mooseError("Unable to suppress nonexistent parameter: ", name);
2091 
2092  auto & metadata = _params[name];
2093  metadata._required = false;
2094  metadata._is_private = true;
2095  metadata._controllable = false;
2096 }
std::string name(const ElemQuality q)
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ transferParam()

template<typename T >
void InputParameters::transferParam ( const InputParameters source_param,
const std::string &  name,
const std::string &  new_name = "",
const std::string &  new_description = "" 
)

A routine to transfer a parameter from one class' validParams to another.

Parameters
source_paramThe parameters list holding the param we would like to transfer
nameThe name of the parameter to transfer
new_descriptionA new description of the parameter. If unspecified, uses the source_params'

Definition at line 2373 of file InputParameters.h.

Referenced by DiffusionCG::validParams(), and MooseVariableBase::validParams().

2377 {
2378  const auto name = source_params.checkForRename(std::string(name_in));
2379  const auto p_name = new_name.empty() ? name_in : new_name;
2380  if (!source_params.have_parameter<T>(name) && !source_params.hasCoupledValue(name))
2381  mooseError("The '",
2382  name_in,
2383  "' parameter could not be transferred because it does not exist with type '",
2384  MooseUtils::prettyCppType<T>(),
2385  "' in the source parameters");
2386  if (name != name_in)
2387  mooseWarning("The transferred parameter " + name_in + " is deprecated in favor of " + name +
2388  " in the source parameters. The new name should likely be used for the parameter "
2389  "transfer instead.");
2390  const std::string description =
2391  new_description.empty() ? source_params.getDescription(name) : new_description;
2392 
2393  if (source_params.isParamRequired(name))
2394  {
2395  // Check for a variable parameter
2396  if (source_params.hasCoupledValue(name))
2397  addRequiredCoupledVar(p_name, description);
2398  // Enums parameters have a default list of options
2399  else if constexpr (std::is_same_v<MooseEnum, T> || std::is_same_v<MultiMooseEnum, T>)
2400  addRequiredParam<T>(p_name, source_params.get<T>(name), description);
2401  else if (source_params.isRangeChecked(name))
2402  addRequiredRangeCheckedParam<T>(
2403  p_name, source_params.rangeCheckedFunction(name), description);
2404  else
2405  addRequiredParam<T>(p_name, description);
2406  }
2407  else
2408  {
2409  // Check for a variable parameter
2410  if (source_params.hasCoupledValue(name))
2411  {
2412  if (!source_params.hasDefaultCoupledValue(name))
2413  addCoupledVar(p_name, description);
2414  else if (source_params.numberDefaultCoupledValues(name) == 1)
2415  addCoupledVar(p_name, source_params.defaultCoupledValue(name), description);
2416  else
2417  {
2418  std::vector<Real> coupled_values;
2419  for (const auto i : libMesh::make_range(source_params.numberDefaultCoupledValues(name)))
2420  coupled_values.push_back(source_params.defaultCoupledValue(name, i));
2421  addCoupledVar(p_name, coupled_values, description);
2422  }
2423  }
2424  else if (source_params.isRangeChecked(name))
2425  {
2426  if (source_params.hasDefault(name))
2427  addRangeCheckedParam<T>(p_name,
2428  source_params.get<T>(name),
2429  source_params.rangeCheckedFunction(name),
2430  description);
2431  else
2432  addRangeCheckedParam<T>(p_name, source_params.rangeCheckedFunction(name), description);
2433  }
2434  else if constexpr (std::is_same_v<MooseEnum, T> || std::is_same_v<MultiMooseEnum, T>)
2435  addParam<T>(p_name, source_params.get<T>(name), description);
2436  else
2437  {
2438  if (source_params.hasDefault(name))
2439  addParam<T>(p_name, source_params.get<T>(name), description);
2440  else
2441  addParam<T>(p_name, description);
2442  }
2443  }
2444 
2445  // Copy other attributes
2446  if (source_params.isPrivate(name))
2447  _params[p_name]._is_private = true;
2448  if (source_params.isControllable(name))
2449  _params[p_name]._controllable = true;
2450 }
std::string name(const ElemQuality q)
void mooseWarning(Args &&... args)
Emit a warning message with the given stringified, concatenated args.
Definition: MooseError.h:345
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
void addCoupledVar(const std::string &name, const std::string &doc_string)
This method adds a coupled variable name pair.
void addRequiredCoupledVar(const std::string &name, const std::string &doc_string)
This method adds a coupled variable name pair.
IntRange< T > make_range(T beg, T end)
std::map< std::string, Metadata > _params
The actual parameter data.

◆ type()

std::string InputParameters::type ( const std::string &  name) const

Prints the type of the requested parameter by name.

Definition at line 883 of file InputParameters.C.

Referenced by MooseServer::addValuesToList(), BatchMeshGeneratorAction::checkInputParameterType(), PostprocessorInterface::checkParam(), MooseServer::getFileNameTypeValues(), MeshGenerator::getMeshGeneratorNameFromParam(), MeshGenerator::getMeshGeneratorNamesFromParam(), MooseServer::getNodesByValueAndTypes(), ReporterInterface::getReporterName(), Reporter::getReporterValueName(), and operator=().

884 {
885  const auto name = checkForRename(name_in);
886  if (!_values.count(name))
887  mooseError("Parameter \"", name, "\" not found.\n\n", *this);
888 
889  if (_coupled_vars.find(name) != _coupled_vars.end())
890  return "std::vector<VariableName>";
891  else if (_params.count(name) > 0 && !_params.at(name)._custom_type.empty())
892  return _params.at(name)._custom_type;
893  return _values.at(name)->type();
894 }
std::string name(const ElemQuality q)
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
std::set< std::string > _coupled_vars
The coupled variables set.
std::string checkForRename(const std::string &name) const
Checks whether the provided name is a renamed parameter name.
std::map< std::string, Metadata > _params
The actual parameter data.

◆ varName()

std::string InputParameters::varName ( const std::string &  var_param_name,
const std::string &  moose_object_with_var_param_name 
) const

Determine the actual variable name from the given variable parameter name.

Parameters
var_param_namethe name of the variable parameter, e.g. 'variable'
moose_object_with_var_param_namethe name of the moose object holding the variable parameter. Used for potential error messaging

Definition at line 1689 of file InputParameters.C.

Referenced by FEProblemBase::addBoundaryCondition(), FEProblemBase::addConstraint(), FEProblemBase::addDamper(), FEProblemBase::addDGKernel(), FEProblemBase::addDiracKernel(), FEProblemBase::addHDGKernel(), FEProblemBase::addInterfaceKernel(), FEProblemBase::addKernel(), FEProblemBase::addNodalKernel(), FEProblemBase::addObjectParamsHelper(), FEProblemBase::addScalarKernel(), and MooseVariableInterface< Real >::MooseVariableInterface().

1691 {
1692  // Try the scalar version first
1693  std::string variable_name = getMooseType(var_param_name);
1694  if (variable_name == "")
1695  {
1696  auto vec = getVecMooseType(var_param_name);
1697 
1698  // Catch the (very unlikely) case where a user specifies
1699  // variable = '' (the empty string)
1700  // in their input file. This could happen if e.g. something goes
1701  // wrong with dollar bracket expression expansion.
1702  if (vec.empty())
1703  mooseError("Error constructing object '",
1704  moose_object_with_var_param_name,
1705  "' while retrieving value for '",
1706  var_param_name,
1707  "' parameter! Did you forget to set '",
1708  var_param_name,
1709  "' or set it to '' (empty string) by accident?");
1710 
1711  // When using vector variables, we are only going to use the first one in the list at the
1712  // interface level...
1713  variable_name = vec[0];
1714  }
1715 
1716  return variable_name;
1717 }
std::string getMooseType(const std::string &name) const
Utility functions for retrieving one of the MooseTypes variables into the common "string" base class...
void mooseError(Args &&... args) const
Emits an error prefixed with the object information, if available.
std::vector< std::string > getVecMooseType(const std::string &name) const

Friends And Related Function Documentation

◆ ActionWarehouse

friend class ActionWarehouse
friend

Definition at line 1548 of file InputParameters.h.

◆ emptyInputParameters

InputParameters emptyInputParameters ( )
friend

Definition at line 31 of file InputParameters.C.

32 {
33  InputParameters params;
34  return params;
35 }
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...

◆ InputParameterWarehouse

friend class InputParameterWarehouse
friend

Definition at line 1545 of file InputParameters.h.

◆ Parser

friend class Parser
friend

Definition at line 1546 of file InputParameters.h.

Member Data Documentation

◆ _allow_copy

bool InputParameters::_allow_copy
private

A flag for toggling the error message in the copy constructor.

Definition at line 1522 of file InputParameters.h.

Referenced by allowCopy(), clear(), and operator=().

◆ _buildable_rm_types

std::vector<std::tuple<std::string, Moose::RelationshipManagerType, Moose::RelationshipManagerInputParameterCallback> > InputParameters::_buildable_rm_types
private

The RelationshipManagers that this object may either build or require.

The optional second argument may be supplied to "downgrade" the functionality of the corresponding relationship manager (e.g. An AlgebraicRelationshipManager could be only used as a GeometricRelationshipManager for a given simulation).

Definition at line 1508 of file InputParameters.h.

Referenced by addRelationshipManager(), clearRelationshipManagers(), getBuildableRelationshipManagerTypes(), operator+=(), and operator=().

◆ _buildable_types

std::vector<std::string> InputParameters::_buildable_types
private

The parameter is used to restrict types that can be built.

Typically this is used for MooseObjectAction derived Actions.

Definition at line 1499 of file InputParameters.h.

Referenced by getBuildableTypes(), operator+=(), operator=(), and registerBuildableTypes().

◆ _class_description

std::string InputParameters::_class_description
private

The class description for the owning object.

This string is used in many places including mouse-over events, and external documentation produced from the source code.

Definition at line 1495 of file InputParameters.h.

Referenced by addClassDescription(), and getClassDescription().

◆ _collapse_nesting

bool InputParameters::_collapse_nesting
private

This parameter collapses one level of nesting in the syntax blocks.

It is used in conjunction with MooseObjectAction derived Actions.

Definition at line 1512 of file InputParameters.h.

Referenced by clear(), collapseSyntaxNesting(), InputParameters(), and operator=().

◆ _coupled_vars

std::set<std::string> InputParameters::_coupled_vars
private

◆ _finalized

bool InputParameters::_finalized
private

Whether or not we've called finalize() on these parameters yet.

Definition at line 1541 of file InputParameters.h.

Referenced by clear(), finalize(), isFinalized(), and operator=().

◆ _hit_node

const hit::Node* InputParameters::_hit_node
private

The hit node representing the syntax that created these parameters, if any.

Definition at line 1538 of file InputParameters.h.

Referenced by clear(), getHitNode(), operator=(), and setHitNode().

◆ _moose_object_syntax_visibility

bool InputParameters::_moose_object_syntax_visibility
private

This parameter hides derived MOOSE object types from appearing in syntax dumps.

Definition at line 1515 of file InputParameters.h.

Referenced by clear(), InputParameters(), mooseObjectSyntaxVisibility(), and operator=().

◆ _new_to_deprecated_coupled_vars

std::unordered_map<std::string, std::string> InputParameters::_new_to_deprecated_coupled_vars
private

A map from deprecated coupled variable names to the new blessed name.

Definition at line 1525 of file InputParameters.h.

Referenced by addDeprecatedCoupledVar(), checkParams(), clear(), getNewToDeprecatedVarMap(), operator+=(), operator=(), and setDeprecatedVarDocString().

◆ _new_to_old_names

std::multimap<std::string, std::string> InputParameters::_new_to_old_names
private

A map from derived-class/blessed parameter names to associated base-class/deprecated parameter names.

Definition at line 1535 of file InputParameters.h.

Referenced by clear(), operator+=(), operator=(), paramAliases(), and renameParamInternal().

◆ _old_to_new_name_and_dep

std::map<std::string, std::pair<std::string, std::string> > InputParameters::_old_to_new_name_and_dep
private

A map from base-class/deprecated parameter names to derived-class/blessed parameter names and the deprecation messages in the case that the "old" parameter name is a deprecated parameter name.

The deprecation message will be empty if the "old" parameter name represents a base class parameter name

Definition at line 1531 of file InputParameters.h.

Referenced by addDeprecatedParam(), checkForRename(), clear(), operator+=(), operator=(), queryDeprecatedParamMessage(), and renameParamInternal().

◆ _params

std::map<std::string, Metadata> InputParameters::_params
private

◆ _show_deprecated_message

bool InputParameters::_show_deprecated_message
private

Flag for disabling deprecated parameters message, this is used by applyParameters to avoid dumping messages.

Definition at line 1519 of file InputParameters.h.

Referenced by addDeprecatedCoupledVar(), addDeprecatedCustomTypeParam(), addDeprecatedParam(), applyCoupledVar(), applyParameter(), clear(), and queryDeprecatedParamMessage().


The documentation for this class was generated from the following files: