20 #include "libmesh/string_to_enum.h" 21 #include "libmesh/fe_interface.h" 31 params.addClassDescription(
"Add a non-linear variable to the simulation.");
35 params.set<std::string>(
"type") =
"MooseVariableBase";
40 "Specifies the family of FE shape functions to use for this variable");
43 "Specifies the order of the FE shape function to use for this " 44 "variable (additional orders not listed are allowed)");
45 params.addParam<std::vector<Real>>(
"scaling",
46 "Specifies a scaling factor to apply to this variable");
47 params.addParam<std::vector<Real>>(
"initial_condition",
48 "Specifies a constant initial condition for this variable");
55 _fe_type(feType(params)),
56 _scalar_var(_fe_type.family ==
SCALAR),
65 return MooseEnum(
"LAGRANGE MONOMIAL HERMITE SCALAR HIERARCHIC CLOUGH XYZ SZABAB BERNSTEIN " 66 "L2_LAGRANGE L2_HIERARCHIC NEDELEC_ONE LAGRANGE_VEC MONOMIAL_VEC " 67 "RAVIART_THOMAS RATIONAL_BERNSTEIN SIDE_HIERARCHIC L2_HIERARCHIC_VEC " 68 "L2_LAGRANGE_VEC L2_RAVIART_THOMAS",
76 "CONSTANT FIRST SECOND THIRD FOURTH FIFTH SIXTH SEVENTH EIGHTH NINTH TENTH ELEVENTH TWELFTH " 77 "THIRTEENTH FOURTEENTH FIFTEENTH SIXTEENTH SEVENTEENTH EIGHTTEENTH NINETEENTH TWENTIETH " 78 "TWENTYFIRST TWENTYSECOND TWENTYTHIRD TWENTYFOURTH TWENTYFIFTH TWENTYSIXTH TWENTYSEVENTH " 79 "TWENTYEIGHTH TWENTYNINTH THIRTIETH THIRTYFIRST THIRTYSECOND THIRTYTHIRD THIRTYFOURTH " 80 "THIRTYFIFTH THIRTYSIXTH THIRTYSEVENTH THIRTYEIGHTH THIRTYNINTH FORTIETH FORTYFIRST " 81 "FORTYSECOND FORTYTHIRD",
89 return {Utility::string_to_enum<Order>(params.
get<
MooseEnum>(
"order")),
90 Utility::string_to_enum<FEFamily>(params.
get<
MooseEnum>(
"family"))};
98 mooseError(
"There must be at least one variable component, but somehow 0 has been specified");
111 mooseError(
"Both the MooseVariable* and Add*VariableAction parameters objects have had the " 112 "`family` parameter set, and they are different values: ",
115 getParam<MooseEnum>(
"family"),
116 " respectively. I don't know how you achieved this, but you need to rectify it.");
120 mooseError(
"Both the MooseVariable* and Add*VariableAction parameters objects have had the " 121 "`order` parameter set, and they are different values: ",
124 getParam<MooseEnum>(
"order"),
125 " respectively. I don't know how you achieved this, but you need to rectify it.");
128 getParam<std::vector<Real>>(
"scaling") !=
130 mooseError(
"Both the MooseVariable* and Add*VariableAction parameters objects have had the " 131 "`scaling` parameter set, and they are different values. I don't know how you " 132 "achieved this, but you need to rectify it.");
136 "Two initial conditions have been provided for the variable ",
138 " using the 'initial_condition' and 'initial_from_file_var' parameters. Please " 139 "remove one of them.");
146 if (
_type ==
"MooseVariableBase")
163 const auto var_name =
varName();
169 const auto &
value = getParam<std::vector<Real>>(
"initial_condition");
178 const auto var_name =
varName();
181 std::string long_name(
"");
182 long_name += var_name;
183 long_name +=
"_moose";
192 const auto fe_field_type = FEInterface::field_type(
_fe_type);
193 const bool is_vector = fe_field_type ==
TYPE_VECTOR;
197 action_params.
set<std::string>(
"type") =
"ScalarConstantIC";
201 action_params.
set<std::string>(
"type") =
"VectorConstantIC";
205 action_params.
set<std::string>(
"type") =
"FVConstantIC";
207 action_params.
set<std::string>(
"type") =
"ConstantIC";
212 action_params.
set<std::string>(
"type") =
"ArrayConstantIC";
214 mooseError(
"Size of 'initial_condition' is not consistent");
218 std::shared_ptr<MooseObjectAction> action;
237 action->getObjectParams().set<
Real>(
"x_value") =
value[0];
238 if (
value.size() > 0)
239 action->getObjectParams().set<
Real>(
"y_value") =
value[1];
240 if (
value.size() > 1)
241 action->getObjectParams().set<
Real>(
"z_value") =
value[2];
244 action->getObjectParams().set<
Real>(
"value") =
value[0];
254 "AddVariableAction::variableType() instead.");
262 return "MooseVariableFVReal";
264 const auto fe_field_type = FEInterface::field_type(fe_type);
269 ::mooseError(
"Vector finite element families do not currently have ArrayVariable support");
271 return "ArrayMooseVariable";
274 return "MooseVariableConstMonomial";
276 return "MooseVariableScalar";
278 return "VectorMooseVariable";
280 return "MooseVariable";
291 mooseError(
"Size of 'scaling' is not consistent");
307 std::set<SubdomainID>
311 std::set<SubdomainID>
blocks;
312 std::vector<SubdomainName> block_param =
314 for (
const auto & subdomain_name : block_param)
static InputParameters validParams()
std::set< SubdomainID > getSubdomainIDs()
Get the block ids from the input parameters.
virtual std::string varName() const
Return the name of the nonlinear variable to be created.
bool _scalar_var
True if the variable being created is a scalar.
const InputParameters & _pars
The object's parameters.
virtual void act() override
Method to add objects to the simulation or perform other setup tasks.
ActionWarehouse & _awh
Reference to ActionWarehouse where we store object build by actions.
void paramError(const std::string ¶m, Args... args) const
Emits an error prefixed with the file and line number of the given param (from the input file) along ...
InputParameters getValidParams(const std::string &name)
static InputParameters validParams()
ActionFactory & _action_factory
Builds Actions.
Storage for action instances.
void addActionBlock(std::shared_ptr< Action > blk)
This method add an Action instance to the warehouse.
static InputParameters validParams()
registerMooseAction("MooseApp", AddVariableAction, "add_variable")
The following methods are specializations for using the libMesh::Parallel::packed_range_* routines fo...
Specialization of SubProblem for solving nonlinear equations plus auxiliary equations.
std::shared_ptr< Action > create(const std::string &action, const std::string &action_name, InputParameters ¶meters)
static MooseEnum getNonlinearVariableFamilies()
Get the possible variable families.
libMesh::FEType _fe_type
FEType for the variable being created.
bool _fv_var
True if the variable being created is finite volume.
const std::string & name() const
Get the name of the class.
InputParameters & getObjectParams()
Retrieve the parameters of the object to be created by this action.
static MooseEnum getNonlinearVariableOrders()
Get the possible variable orders.
unsigned int _components
Number of components for an array variable.
Real value(unsigned n, unsigned alpha, unsigned beta, Real x)
void createInitialConditionAction(const std::vector< Real > &value)
Create the action to generate the InitialCondition object.
void mooseDeprecated(Args &&... args) const
This is a "smart" enum class intended to replace many of the shortcomings in the C++ enum type It sho...
static std::string variableType(const libMesh::FEType &fe_type, const bool is_fv=false, const bool is_array=false)
Determines a variable type.
virtual void markEigenVariable(const VariableName &var_name)
Mark a variable as a variable of the eigen system.
virtual void addVariable(const std::string &var_type, const std::string &var_name, InputParameters ¶ms)
Canonical method for adding a non-linear variable.
static libMesh::FEType feType(const InputParameters ¶ms)
determine the FEType by examining family and order in the provided parameters
std::string _type
The Object type that is being created.
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
InputParameters _moose_object_pars
The parameters for the object to be created.
virtual void init()
Initialize the action's member variables.
void associateWithParameter(const std::string ¶m_name, InputParameters ¶ms) const
Associates the object's parameters params with the input location from this Action's parameter with t...
void mooseError(Args &&... args) const
Emits an error prefixed with object name and type and optionally a file path to the top-level block p...
std::shared_ptr< FEProblemBase > & _problem
Convenience reference to a problem this action works on.
void addVariable(const std::string &var_name)
Adds a nonlinear variable to the system.
Eigen::Matrix< Real, Eigen::Dynamic, 1 > RealEigenVector
AddVariableAction(const InputParameters ¶ms)
bool isParamValid(const std::string &name) const
Test if the supplied parameter is valid.
static std::string determineType(const libMesh::FEType &fe_type, unsigned int components, bool is_fv=false)
DEPRECATED: Use variableType instead.
bool isParamSetByUser(const std::string &name) const
Test if the supplied parameter is set by a user, as opposed to not set or set to default.
std::function< void(FEProblemBase &, const std::string &, const std::string &, InputParameters &)> _problem_add_var_method