20#include "libmesh/threads.h"
21#include "libmesh/quadrature.h"
36 Moose::VarKindType::VAR_SOLVER,
37 Moose::VarFieldType::VAR_FIELD_STANDARD),
38 _var(*mooseVariable()),
40 _grad_test(_var.gradPhi()),
41 _phi(_assembly.phi(_var)),
42 _grad_phi(_assembly.gradPhi(_var)),
43 _u(_is_implicit ? _var.sln() : _var.slnOld()),
44 _grad_u(_is_implicit ? _var.gradSln() : _var.gradSlnOld())
55 paramError(
"save_in",
"cannot use solution variable as save-in variable");
60 "saved-in auxiliary variable is incompatible with the object's nonlinear variable: ",
75 paramError(
"diag_save_in",
"cannot use solution variable as diag save-in variable");
80 "saved-in auxiliary variable is incompatible with the object's nonlinear variable: ",
108 var->sys().solution().add_vector(
_local_re, var->dofIndices());
128 var->sys().solution().add_vector(diag, var->dofIndices());
145 if (jvar.dofIndices().empty())
149 const auto phi_size = jvar.phiSize();
152 "The size of the phi container does not match the number of local Jacobian columns");
155 "If these are not the same, then we shouldn't even be calling this method");
158 if (jvar.count() == 1)
161 for (
_j = 0;
_j < phi_size;
_j++)
167 const auto n = cast_int<unsigned int>(phi_size);
169 for (
_j = 0;
_j < phi_size;
_j++)
172 const RealEigenVector v =
176 for (
unsigned int k = 0; k < v.size(); ++k)
206 const unsigned int ivar = ivariable->number();
207 const unsigned int jvar = jvariable->number();
DenseVector< Real > getJacobianDiagonal(const DenseMatrix< Number > &ke)
std::vector< std::pair< MooseVariableFieldBase *, MooseVariableFieldBase * > > & couplingEntries(const THREAD_ID tid, const unsigned int nl_sys_num)
NonlinearSystemBase & getNonlinearSystemBase(const unsigned int sys_num)
This is the common base class for the three main kernel types implemented in MOOSE,...
std::vector< MooseVariableFEBase * > _save_in
bool _has_diag_save_in
The aux variables to save the diagonal Jacobian contributions to.
std::vector< AuxVariableName > _save_in_strings
static InputParameters validParams()
const MooseArray< Real > & _coord
The scaling factor to convert from cartesian to another coordinate system (e.g rz,...
unsigned int _qp
The current quadrature point index.
bool _has_save_in
The aux variables to save the residual contributions to.
const MooseArray< Real > & _JxW
The current quadrature point weight value.
unsigned int _j
current index for the shape function
std::vector< MooseVariableFEBase * > _diag_save_in
std::vector< AuxVariableName > _diag_save_in_strings
unsigned int _i
current index for the test function
const QBase *const & _qrule
active quadrature rule
virtual void computeResidual() override
Compute this Kernel's contribution to the residual.
Kernel(const InputParameters ¶meters)
virtual Real computeQpResidual()=0
Compute this Kernel's contribution to the residual at the current quadrature point.
virtual void computeOffDiagJacobianScalar(unsigned int jvar) override
Computes jacobian block with respect to a scalar variable.
virtual void computeResidualAndJacobian() override
Compute the residual and Jacobian together.
virtual void computeOffDiagJacobian(unsigned int jvar) override
Computes d-residual / d-jvar... storing the result in Ke.
MooseVariable & _var
This is a regular kernel so we cast to a regular MooseVariable.
const VariablePhiValue & _phi
the current shape functions
virtual RealEigenVector computeQpOffDiagJacobianArray(const ArrayMooseVariable &jvar)
For coupling array variables.
virtual Real computeQpOffDiagJacobian(unsigned int)
For coupling standard variables.
virtual void computeJacobian() override
Compute this Kernel's contribution to the diagonal Jacobian entries.
const VariableTestValue & _test
the current test function
static InputParameters validParams()
virtual Real computeQpJacobian()
Compute this Kernel's contribution to the Jacobian at the current quadrature point.
virtual Real computeQpOffDiagJacobianScalar(unsigned int)
For coupling scalar variables.
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 ...
const libMesh::FEType & feType() const
Get the type of finite element object.
SystemBase & sys()
Get the system this variable is part of.
libMesh::Order order() const
Get the order of this variable Note: Order enum can be implicitly converted to unsigned int.
unsigned int number() const
Get variable number coming from libMesh.
void addMooseVariableDependency(MooseVariableFieldBase *var)
Call this function to add the passed in MooseVariableFieldBase as a variable that this object depends...
This class provides an interface for common operations on field variables of both FE and FV types wit...
Interface for objects that need to get values of MooseVariables.
MooseVariableFE< Real > * mooseVariable() const
Return the MooseVariableFE object that this interface acts on.
Class for scalar variables (they are different).
THREAD_ID _tid
The thread ID for this kernel.
virtual void prepareShapes(unsigned int var_num)
Prepare shape functions.
virtual void precalculateJacobian()
Assembly & _assembly
Reference to this Kernel's assembly object.
const MooseVariableFieldBase & getVariable(unsigned int jvar_num) const
Retrieve the variable object from our system associated with jvar_num.
SubProblem & _subproblem
Reference to this kernel's SubProblem.
SystemBase & _sys
Reference to the EquationSystem object.
virtual void precalculateOffDiagJacobian(unsigned int)
virtual void precalculateResidual()
FEProblemBase & _fe_problem
Reference to this kernel's FEProblemBase.
virtual MooseVariable & getStandardVariable(const THREAD_ID tid, const std::string &var_name)=0
Returns the variable reference for requested MooseVariable which may be in any system.
virtual void addVariableToZeroOnJacobian(std::string var_name)
Adds this variable to the list of variables to be zeroed during each Jacobian evaluation.
virtual void addVariableToZeroOnResidual(std::string var_name)
Adds this variable to the list of variables to be zeroed during each residual evaluation.
unsigned int number() const
Gets the number of this system.
bool computingScalingJacobian() const
Whether we are computing an initial Jacobian for automatic variable scaling.
virtual MooseVariableScalar & getScalarVariable(THREAD_ID tid, const std::string &var_name) const
Gets a reference to a scalar variable with specified number.
virtual bool hasVariable(const std::string &var_name) const
Query a system for a variable.
DenseMatrix< Number > _local_ke
Holds local Jacobian entries as they are accumulated by this Kernel.
void accumulateTaggedLocalMatrix()
Local Jacobian blocks will be appended by adding the current local kernel Jacobian.
bool hasVectorTags() const
void prepareMatrixTag(Assembly &assembly, unsigned int ivar, unsigned int jvar)
Prepare data for computing element jacobian according to the active tags.
void accumulateTaggedLocalResidual()
Local residual blocks will be appended by adding the current local kernel residual.
void prepareVectorTag(Assembly &assembly, unsigned int ivar)
Prepare data for computing element residual according to active tags.
DenseVector< Number > _local_re
Holds local residual entries as they are accumulated by this Kernel.
bool _is_implicit
If the object is using implicit or explicit form.
MOOSE now contains C++17 code, so give a reasonable error message stating what the user can do to add...
std::string incompatVarMsg(MooseVariableFieldBase &var1, MooseVariableFieldBase &var2)
Builds and returns a string of the form: