www.mooseframework.org
TimeDerivative.C
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
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 "TimeDerivative.h"
11 
12 // MOOSE includes
13 #include "Assembly.h"
14 #include "MooseVariableFE.h"
15 
16 #include "libmesh/quadrature.h"
17 
19 
22 {
24  params.addClassDescription("The time derivative operator with the weak form of $(\\psi_i, "
25  "\\frac{\\partial u_h}{\\partial t})$.");
26  params.addParam<bool>("lumping", false, "True for mass matrix lumping, false otherwise");
27 
28  return params;
29 }
30 
32  : TimeKernel(parameters), _lumping(getParam<bool>("lumping"))
33 {
34 }
35 
36 Real
38 {
39  return _test[_i][_qp] * _u_dot[_qp];
40 }
41 
42 Real
44 {
45  return _test[_i][_qp] * _phi[_j][_qp] * _du_dot_du[_qp];
46 }
47 
48 void
50 {
51  if (_lumping)
52  {
54 
56  for (_i = 0; _i < _test.size(); _i++)
57  for (_j = 0; _j < _phi.size(); _j++)
58  for (_qp = 0; _qp < _qrule->n_points(); _qp++)
60 
62  }
63  else
65 }
const VariableValue & _u_dot
Time derivative of u.
Definition: TimeKernel.h:37
virtual Real computeQpResidual() override
Compute this Kernel&#39;s contribution to the residual at the current quadrature point.
TimeDerivative(const InputParameters &parameters)
MooseVariable & _var
This is a regular kernel so we cast to a regular MooseVariable.
Definition: Kernel.h:72
const MooseArray< Real > & _JxW
The current quadrature point weight value.
Definition: KernelBase.h:51
unsigned int number() const
Get variable number coming from libMesh.
registerMooseObject("MooseApp", TimeDerivative)
static InputParameters validParams()
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
DenseMatrix< Number > _local_ke
Holds local Jacobian entries as they are accumulated by this Kernel.
unsigned int size() const
The number of elements that can currently be stored in the array.
Definition: MooseArray.h:256
const VariableTestValue & _test
the current test function
Definition: Kernel.h:75
virtual void precalculateJacobian()
virtual Real computeQpJacobian() override
Compute this Kernel&#39;s contribution to the Jacobian at the current quadrature point.
const QBase *const & _qrule
active quadrature rule
Definition: KernelBase.h:48
unsigned int _i
current index for the test function
Definition: KernelBase.h:57
void accumulateTaggedLocalMatrix()
Local Jacobian blocks will be appended by adding the current local kernel Jacobian.
const MooseArray< Real > & _coord
The scaling factor to convert from cartesian to another coordinate system (e.g rz, spherical, etc.)
Definition: KernelBase.h:54
Assembly & _assembly
Reference to this Kernel&#39;s assembly object.
virtual void computeJacobian() override
Compute this Kernel&#39;s contribution to the diagonal Jacobian entries.
Definition: Kernel.C:114
unsigned int _j
current index for the shape function
Definition: KernelBase.h:60
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
All time kernels should inherit from this class.
Definition: TimeKernel.h:18
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 addParam(const std::string &name, const S &value, const std::string &doc_string)
These methods add an option parameter and a documentation string to the InputParameters object...
virtual void computeJacobian() override
Compute this Kernel&#39;s contribution to the diagonal Jacobian entries.
void prepareMatrixTag(Assembly &assembly, unsigned int ivar, unsigned int jvar)
Prepare data for computing element jacobian according to the active tags.
const VariablePhiValue & _phi
the current shape functions
Definition: Kernel.h:81
static InputParameters validParams()
Definition: TimeKernel.C:20
const VariableValue & _du_dot_du
Derivative of u_dot with respect to u.
Definition: TimeKernel.h:40
unsigned int _qp
The current quadrature point index.
Definition: KernelBase.h:42