https://mooseframework.inl.gov
Loading...
Searching...
No Matches
MooseVariableBase.C
Go to the documentation of this file.
1//* This file is part of the MOOSE framework
2//* https://mooseframework.inl.gov
3//*
4//* All rights reserved, see COPYRIGHT for full restrictions
5//* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6//*
7//* Licensed under LGPL 2.1, please see LICENSE for details
8//* https://www.gnu.org/licenses/lgpl-2.1.html
9
10#include "MooseVariableBase.h"
11
12#include "AddVariableAction.h"
13#include "SubProblem.h"
14#include "SystemBase.h"
15#include "MooseMesh.h"
16#include "MooseApp.h"
18#include "BlockRestrictable.h"
19
20#include "libmesh/variable.h"
21#include "libmesh/dof_map.h"
22#include "libmesh/system.h"
23#include "libmesh/fe_type.h"
24#include "libmesh/string_to_enum.h"
25
26// Users should never actually create this object
28
31{
35
38
39 // ArrayVariable capability
40 params.addRangeCheckedParam<unsigned int>(
41 "components", 1, "components>0", "Number of components for an array variable");
42
43 // Advanced input options
44 params.transferParam<std::vector<Real>>(AddVariableAction::validParams(), "scaling");
45 params.addParam<bool>("eigen", false, "True to make this variable an eigen variable");
46 params.addParam<bool>("fv", false, "True to make this variable a finite volume variable");
47 params.addParam<bool>("array",
48 false,
49 "True to make this variable a array variable regardless of number of "
50 "components. If 'components' > 1, this will automatically be set to true.");
51
52 params.addParam<std::vector<std::string>>(
53 "array_var_component_names",
54 "Only for use with array variables, allows setting custom names for each array variable "
55 "component. If this not set, the default name for each array variable componenet is "
56 "`base_name`+'_'+component number. If used, a name must be provided for each component and "
57 "the values are used to name the components as `base_name`+'_'+ "
58 "`array_var_component_names[component]`.");
59
60 params.addParam<SolverSystemName>("solver_sys",
61 "nl0",
62 "If this variable is a solver variable, this is the "
63 "solver system to which it should be added.");
64 params.addParam<bool>(
65 "disable_p_refinement",
66 "True to disable p-refinement for this variable. Note that because this happens on the "
67 "family basis, users need to have this flag consistently set for all variables in the same "
68 "family. Currently MOOSE disables p-refinement for variables in the following families by "
69 "default: LAGRANGE NEDELEC_ONE RAVIART_THOMAS LAGRANGE_VEC CLOUGH BERNSTEIN and "
70 "RATIONAL_BERNSTEIN.");
71
72 params.addParamNamesToGroup("scaling eigen", "Advanced");
73
74 params.addParam<bool>("use_dual", false, "True to use dual basis for Lagrange multipliers");
75 params.transferParam<std::vector<Real>>(AddVariableAction::validParams(), "initial_condition");
76 params.transferParam<std::string>(AddVariableAction::validParams(), "initial_from_file_var");
77 params.addParamNamesToGroup("scaling eigen use_dual", "Advanced");
78
79 params.registerBase("MooseVariableBase");
80 params.addPrivateParam<SystemBase *>("_system_base");
81 params.addPrivateParam<FEProblemBase *>("_fe_problem_base");
82 params.addPrivateParam<Moose::VarKindType>("_var_kind");
83 params.addPrivateParam<unsigned int>("_var_num");
84 params.addPrivateParam<THREAD_ID>("tid");
85
87 "Base class for Moose variables. This should never be the terminal object type");
88 return params;
89}
90
92 : MooseObject(parameters),
94 OutputInterface(parameters),
95 SetupInterface(this),
96 _sys(*getParam<SystemBase *>("_system_base")), // TODO: get from _fe_problem_base
97 _fe_type(Utility::string_to_enum<Order>(getParam<MooseEnum>("order")),
98 Utility::string_to_enum<FEFamily>(getParam<MooseEnum>("family"))),
99 _var_num(getParam<unsigned int>("_var_num")),
100 _is_eigen(getParam<bool>("eigen")),
101 _var_kind(getParam<Moose::VarKindType>("_var_kind")),
102 _subproblem(_sys.subproblem()),
103 _variable(_sys.system().variable(_var_num)),
104 _assembly(_subproblem.assembly(getParam<THREAD_ID>("_tid"),
105 (_var_kind == Moose::VAR_SOLVER) ? _sys.number() : 0)),
106 _dof_map(_sys.dofMap()),
107 _mesh(_subproblem.mesh()),
108 _tid(getParam<THREAD_ID>("tid")),
109 _count(getParam<unsigned int>("components")),
110 _scaling_factor(_count, 1.0),
111 _use_dual(getParam<bool>("use_dual"))
112{
113 scalingFactor(isParamValid("scaling") ? getParam<std::vector<Real>>("scaling")
114 : std::vector<Real>(_count, 1.));
115 if (getParam<bool>("fv") && getParam<bool>("eigen"))
116 paramError("eigen", "finite volume (fv=true) variables do not have eigen support");
117 if (getParam<bool>("fv") && _fe_type.family != MONOMIAL)
118 paramError("family", "finite volume (fv=true) variables must be have MONOMIAL family");
119 if (getParam<bool>("fv") && _fe_type.order != 0)
120 paramError("order", "finite volume (fv=true) variables currently support CONST order only");
121
122 if (isParamValid("array_var_component_names"))
123 {
124 auto name0 = _sys.system().variable(_var_num).name();
125 std::size_t found = name0.find_last_of("_");
126 if (found == std::string::npos)
127 mooseError("Error creating ArrayMooseVariable name with base name ", name0);
128 const auto name_base = name0.substr(0, found);
129 const auto & name_endings = getParam<std::vector<std::string>>("array_var_component_names");
130 for (const auto & name : name_endings)
131 _array_var_component_names.push_back(name_base + '_' + name);
132 }
133 else if (_count != 1)
134 mooseError("Component size of normal variable (_count) must be one; equals " +
135 std::to_string(_count) + "");
136
137 // check parameters set automatically by SystemBase related to array variables
138 mooseAssert(
139 isArray() ? _count == _array_var_component_names.size() : true,
140 "An inconsistent numer of names or no names were provided for array variable components");
141 if (_count > 1)
142 mooseAssert(isArray(), "Must be true with component > 1");
143}
144
145const std::string &
147{
148 mooseAssert(
150 "Requested array variable component number is greater than the number of component names.");
152}
153
154const std::vector<dof_id_type> &
156{
157 const auto it = _sys.subproblem()._var_dof_map.find(name());
158 if (it != _sys.subproblem()._var_dof_map.end())
159 return it->second;
160 else
161 mooseError("VariableAllDoFMap not prepared for ",
162 name(),
163 " . Check nonlocal coupling requirement for the variable.");
164}
165
166Order
168{
169 return _fe_type.order;
170}
171
172std::vector<dof_id_type>
173MooseVariableBase::componentDofIndices(const std::vector<dof_id_type> & dof_indices,
174 unsigned int component) const
175{
176 mooseAssert(dof_indices.size() % this->count() == 0,
177 "The dof indices container must be a multiple of count");
178 std::vector<dof_id_type> new_dof_indices(dof_indices.size() / this->count());
179 for (const auto i : index_range(new_dof_indices))
180 new_dof_indices[i] = dof_indices[component * new_dof_indices.size() + i];
181 return new_dof_indices;
182}
183
184void
185MooseVariableBase::scalingFactor(const std::vector<Real> & factor)
186{
187 mooseAssert(factor.size() == _count, "Inconsistent scaling factor size");
188 for (const auto i : make_range(_count))
189 _scaling_factor[i] = factor[i];
190}
191
192void
194{
195 // Currently the scaling vector is only used through AD residual computing objects
198 (std::find_if(_scaling_factor.begin(),
199 _scaling_factor.end(),
200 [](const Real element)
201 { return !MooseUtils::absoluteFuzzyEqual(element, 1.); }) !=
202 _scaling_factor.end())))
203
205}
206
207const NumericVector<Number> &
209{
210 // It's not safe to use solutionState(0) because it returns the libMesh System solution member
211 // which is wrong during things like finite difference Jacobian evaluation, e.g. when PETSc
212 // perturbs the solution vector we feed these perturbations into the current_local_solution
213 // while the libMesh solution is frozen in the non-perturbed state
214 return (state.state == 0) ? *this->_sys.currentSolution()
215 : this->_sys.solutionState(state.state, state.iteration_type);
216}
217
218bool
220{
221 mooseAssert(false,
222 "Base class should not assume anything regarding this. In an ideal world this would "
223 "be pure virtual but we can't do that because we register MooseVariableBase as an "
224 "available variable type for the user");
225 return {};
226}
227
228bool
230{
231 mooseAssert(false,
232 "Base class should not assume anything regarding this. In an ideal world this would "
233 "be pure virtual but we can't do that because we register MooseVariableBase as an "
234 "available variable type for the user");
235 return {};
236}
unsigned int THREAD_ID
Definition MooseTypes.h:237
registerMooseObject("MooseApp", MooseVariableBase)
void ErrorVector unsigned int
static InputParameters validParams()
An interface that restricts an object to subdomains via the 'blocks' input parameter.
static InputParameters validParams()
Specialization of SubProblem for solving nonlinear equations plus auxiliary equations.
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system.
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...
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.
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.
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 para...
void registerBase(const std::string &value)
This method must be called from every base "Moose System" to create linkage with the Action System.
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.
void addRangeCheckedParam(const std::string &name, const T &value, const std::string &parsed_function, const std::string &doc_string)
const std::string & name() const
Get the name of the class.
Definition MooseBase.h:103
void paramError(const std::string &param, Args... args) const
Emits an error prefixed with the file and line number of the given param (from the input file) along ...
Definition MooseBase.h:457
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...
Definition MooseBase.h:271
const T & getParam(const std::string &name) const
Retrieve a parameter for the object.
Definition MooseBase.h:406
bool isParamValid(const std::string &name) const
Test if the supplied parameter is valid.
Definition MooseBase.h:199
This is a "smart" enum class intended to replace many of the shortcomings in the C++ enum type It sho...
Definition MooseEnum.h:55
Every object that can be built by the factory should be derived from this class.
Definition MooseObject.h:31
static InputParameters validParams()
Definition MooseObject.C:25
Base variable class.
Moose::VarKindType _var_kind
Variable type (see MooseTypes.h)
virtual bool supportsGeometricInfoBasedLoops() const
Whether this variable supports geometric-info-based loops, such as ElemInfo/FaceInfo loops.
unsigned int _var_num
variable number (from libMesh)
std::vector< dof_id_type > componentDofIndices(const std::vector< dof_id_type > &dof_indices, unsigned int component) const
Obtain DoF indices of a component with the indices of the 0th component.
std::vector< std::string > _array_var_component_names
Array variable names when the variable is an array variable.
Real scalingFactor() const
Get the scaling factor for this variable.
virtual bool isArray() const
SubProblem & _subproblem
Problem this variable is part of.
libMesh::FEType _fe_type
The FEType associated with this variable.
static InputParameters validParams()
MooseVariableBase(const InputParameters &parameters)
void initialSetup() override
Gets called at the beginning of the simulation before this object is asked to do its job.
const libMesh::NumericVector< libMesh::Number > & getSolution(const Moose::StateArg &state) const
Get the solution corresponding to the provided state.
const std::string & arrayVariableComponent(const unsigned int i) const
Returns the variable name of a component of an array variable.
const std::vector< dof_id_type > & allDofIndices() const
Get all global dofindices for the variable.
std::vector< Real > _scaling_factor
scaling factor for this variable
const unsigned int _count
Number of variables in the array.
libMesh::Order order() const
Get the order of this variable Note: Order enum can be implicitly converted to unsigned int.
SystemBase & _sys
System this variable is part of.
virtual bool supportsQpBasedLoops() const
Whether this variable supports QP-indexed loops.
A class to provide an common interface to objects requiring "outputs" option.
static InputParameters validParams()
std::map< std::string, std::vector< dof_id_type > > _var_dof_map
Definition SubProblem.h:682
virtual void haveADObjects(bool have_ad_objects)
Method for setting whether we have any ad objects.
Definition SubProblem.h:775
virtual void automaticScaling(bool automatic_scaling)
Automatic scaling setter.
Base class for a system (of equations)
Definition SystemBase.h:87
virtual const NumericVector< Number > *const & currentSolution() const =0
The solution vector that is currently being operated on.
SubProblem & subproblem()
Definition SystemBase.h:102
void addScalingVector()
Add the scaling factor vector to the system.
virtual NumericVector< Number > & solutionState(const unsigned int state, Moose::SolutionIterationType iteration_type=Moose::SolutionIterationType::Time)
Get a state of the solution (0 = current, 1 = old, 2 = older, etc).
virtual libMesh::System & system()=0
Get the reference to the libMesh system.
OrderWrapper order
const Variable & variable(unsigned int var) const
const std::string & name() const
MeshBase & mesh
MOOSE now contains C++17 code, so give a reasonable error message stating what the user can do to add...
VarKindType
Framework-wide stuff.
Definition MooseTypes.h:769
@ VAR_SOLVER
Definition MooseTypes.h:770
State argument for evaluating functors.
SolutionIterationType iteration_type
The solution iteration type, e.g. time or nonlinear.
unsigned int state
The state.