20#include "libmesh/string_to_enum.h"
21#include "libmesh/fe_interface.h"
29 params.addClassDescription(
"Add a non-linear variable to the simulation.");
33 params.set<std::string>(
"type") =
"MooseVariableBase";
38 "Specifies the family of FE shape functions to use for this variable");
41 "Specifies the order of the FE shape function to use for this "
42 "variable (additional orders not listed are allowed)");
43 params.addParam<std::vector<Real>>(
"scaling",
44 "Specifies a scaling factor to apply to this variable");
45 params.addParam<std::vector<Real>>(
"initial_condition",
46 "Specifies a constant initial condition for this variable");
53 _fe_type(feType(params)),
54 _scalar_var(_fe_type.family == SCALAR),
63 return MooseEnum(
"LAGRANGE MONOMIAL HERMITE SCALAR HIERARCHIC CLOUGH XYZ SZABAB BERNSTEIN "
64 "L2_LAGRANGE L2_HIERARCHIC NEDELEC_ONE LAGRANGE_VEC MONOMIAL_VEC "
65 "RAVIART_THOMAS RATIONAL_BERNSTEIN SIDE_HIERARCHIC L2_HIERARCHIC_VEC "
66 "L2_LAGRANGE_VEC L2_RAVIART_THOMAS",
74 "CONSTANT FIRST SECOND THIRD FOURTH FIFTH SIXTH SEVENTH EIGHTH NINTH TENTH ELEVENTH TWELFTH "
75 "THIRTEENTH FOURTEENTH FIFTEENTH SIXTEENTH SEVENTEENTH EIGHTTEENTH NINETEENTH TWENTIETH "
76 "TWENTYFIRST TWENTYSECOND TWENTYTHIRD TWENTYFOURTH TWENTYFIFTH TWENTYSIXTH TWENTYSEVENTH "
77 "TWENTYEIGHTH TWENTYNINTH THIRTIETH THIRTYFIRST THIRTYSECOND THIRTYTHIRD THIRTYFOURTH "
78 "THIRTYFIFTH THIRTYSIXTH THIRTYSEVENTH THIRTYEIGHTH THIRTYNINTH FORTIETH FORTYFIRST "
79 "FORTYSECOND FORTYTHIRD",
87 return {Utility::string_to_enum<Order>(params.
get<
MooseEnum>(
"order")),
88 Utility::string_to_enum<FEFamily>(params.
get<
MooseEnum>(
"family"))};
96 mooseError(
"There must be at least one variable component, but somehow 0 has been specified");
109 mooseError(
"Both the MooseVariable* and Add*VariableAction parameters objects have had the "
110 "`family` parameter set, and they are different values: ",
113 getParam<MooseEnum>(
"family"),
114 " respectively. I don't know how you achieved this, but you need to rectify it.");
118 mooseError(
"Both the MooseVariable* and Add*VariableAction parameters objects have had the "
119 "`order` parameter set, and they are different values: ",
122 getParam<MooseEnum>(
"order"),
123 " respectively. I don't know how you achieved this, but you need to rectify it.");
126 getParam<std::vector<Real>>(
"scaling") !=
128 mooseError(
"Both the MooseVariable* and Add*VariableAction parameters objects have had the "
129 "`scaling` parameter set, and they are different values. I don't know how you "
130 "achieved this, but you need to rectify it.");
134 "Two initial conditions have been provided for the variable ",
136 " using the 'initial_condition' and 'initial_from_file_var' parameters. Please "
137 "remove one of them.");
144 if (
_type ==
"MooseVariableBase")
161 const auto var_name =
varName();
167 const auto & value = getParam<std::vector<Real>>(
"initial_condition");
176 const auto var_name =
varName();
179 std::string long_name(
"");
180 long_name += var_name;
181 long_name +=
"_moose";
190 const auto fe_field_type = FEInterface::field_type(
_fe_type);
195 action_params.
set<std::string>(
"type") =
"ScalarConstantIC";
199 action_params.
set<std::string>(
"type") =
"VectorConstantIC";
203 action_params.
set<std::string>(
"type") =
"FVConstantIC";
205 action_params.
set<std::string>(
"type") =
"ConstantIC";
210 action_params.
set<std::string>(
"type") =
"ArrayConstantIC";
212 mooseError(
"Size of 'initial_condition' is not consistent");
216 std::shared_ptr<MooseObjectAction> action;
218 action = std::static_pointer_cast<MooseObjectAction>(
221 action = std::static_pointer_cast<MooseObjectAction>(
225 action->getObjectParams().set<VariableName>(
"variable") = var_name;
231 action->getObjectParams().set<RealEigenVector>(
"value") = v;
235 action->getObjectParams().set<Real>(
"x_value") = value[0];
236 if (value.size() > 0)
237 action->getObjectParams().set<Real>(
"y_value") = value[1];
238 if (value.size() > 1)
239 action->getObjectParams().set<Real>(
"z_value") = value[2];
242 action->getObjectParams().set<Real>(
"value") = value[0];
252 "AddVariableAction::variableType() instead.");
260 return "MooseVariableFVReal";
262 const auto fe_field_type = FEInterface::field_type(fe_type);
267 ::mooseError(
"Vector finite element families do not currently have ArrayVariable support");
269 return "ArrayMooseVariable";
271 else if (fe_type == FEType(0, MONOMIAL))
272 return "MooseVariableConstMonomial";
273 else if (fe_type.family == SCALAR)
274 return "MooseVariableScalar";
276 return "VectorMooseVariable";
278 return "MooseVariable";
289 mooseError(
"Size of 'scaling' is not consistent");
309 std::set<SubdomainID>
blocks;
310 std::vector<SubdomainName> block_param =
312 for (
const auto & subdomain_name : block_param)
registerMooseAction("MooseApp", AddVariableAction, "add_variable")
subdomain_id_type SubdomainID
std::shared_ptr< Action > create(const std::string &action, const std::string &action_name, InputParameters ¶meters)
InputParameters getValidParams(const std::string &name)
Storage for action instances.
void addActionBlock(std::shared_ptr< Action > blk)
This method add an Action instance to the warehouse.
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...
std::shared_ptr< FEProblemBase > & _problem
Convenience reference to a problem this action works on.
ActionWarehouse & _awh
Reference to ActionWarehouse where we store object build by actions.
virtual void act() override
Method to add objects to the simulation or perform other setup tasks.
void createInitialConditionAction(const std::vector< Real > &value)
Create the action to generate the InitialCondition object.
static MooseEnum getNonlinearVariableFamilies()
Get the possible variable families.
std::function< void(FEProblemBase &, const std::string &, const std::string &, InputParameters &)> _problem_add_var_method
libMesh::FEType _fe_type
FEType for the variable being created.
static libMesh::FEType feType(const InputParameters ¶ms)
determine the FEType by examining family and order in the provided parameters
static MooseEnum getNonlinearVariableOrders()
Get the possible variable orders.
AddVariableAction(const InputParameters ¶ms)
static std::string determineType(const libMesh::FEType &fe_type, unsigned int components, bool is_fv=false)
DEPRECATED: Use variableType instead.
static std::string variableType(const libMesh::FEType &fe_type, const bool is_fv=false, const bool is_array=false)
Determines a variable type.
unsigned int _components
Number of components for an array variable.
virtual std::string varName() const
Return the name of the nonlinear variable to be created.
std::set< SubdomainID > getSubdomainIDs()
Get the block ids from the input parameters.
bool _fv_var
True if the variable being created is finite volume.
static InputParameters validParams()
bool _scalar_var
True if the variable being created is a scalar.
virtual void init()
Initialize the action's member variables.
void addVariable(const std::string &var_name)
Adds a nonlinear variable to the system.
static InputParameters validParams()
Specialization of SubProblem for solving nonlinear equations plus auxiliary equations.
virtual void addVariable(const std::string &var_type, const std::string &var_name, InputParameters ¶ms)
Canonical method for adding a non-linear variable.
const std::string & name() const
Get the name of the class.
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 ...
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.
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...
const InputParameters & _pars
The object's parameters.
const T & getParam(const std::string &name) const
Retrieve a parameter for the object.
bool isParamValid(const std::string &name) const
Test if the supplied parameter is valid.
virtual void markEigenVariable(const VariableName &var_name)
Mark a variable as a variable of the eigen system.
This is a "smart" enum class intended to replace many of the shortcomings in the C++ enum type It sho...
InputParameters _moose_object_pars
The parameters for the object to be created.
static InputParameters validParams()
std::string _type
The Object type that is being created.
ActionFactory & _action_factory
Builds Actions.
void mooseDeprecated(Args &&... args) const