https://mooseframework.inl.gov
Loading...
Searching...
No Matches
MassLumpedTimeDerivative.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
11
12// MOOSE includes
13#include "Assembly.h"
14#include "MooseVariableFE.h"
15
16#include "libmesh/quadrature.h"
17
19
22{
25 "Lumped formulation of the time derivative $\\frac{\\partial u}{\\partial t}$. Its "
26 "corresponding weak form is $\\dot{u_i}(\\psi_i, 1)$ where $\\dot{u_i}$ denotes the time "
27 "derivative of the solution coefficient associated with node $i$.");
28 return params;
29}
30
32 : TimeKernel(parameters), _u_dot_nodal(_var.dofValuesDot())
33{
34}
35
36Real
41
42Real
47
48void
registerMooseObject("MooseApp", MassLumpedTimeDerivative)
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE 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.
const MooseArray< Real > & _coord
The scaling factor to convert from cartesian to another coordinate system (e.g rz,...
Definition KernelBase.h:55
unsigned int _qp
The current quadrature point index.
Definition KernelBase.h:43
const MooseArray< Real > & _JxW
The current quadrature point weight value.
Definition KernelBase.h:52
unsigned int _i
current index for the test function
Definition KernelBase.h:58
const QBase *const & _qrule
active quadrature rule
Definition KernelBase.h:49
MooseVariable & _var
This is a regular kernel so we cast to a regular MooseVariable.
Definition Kernel.h:72
const VariableTestValue & _test
the current test function
Definition Kernel.h:75
const VariableValue & _u_dot_nodal
virtual Real computeQpJacobian() override
Compute this Kernel's contribution to the Jacobian at the current quadrature point.
static InputParameters validParams()
virtual void computeJacobian() override
Compute this Kernel's contribution to the diagonal Jacobian entries.
MassLumpedTimeDerivative(const InputParameters &parameters)
virtual Real computeQpResidual() override
Compute this Kernel's contribution to the residual at the current quadrature point.
unsigned int number() const
Get variable number coming from libMesh.
Assembly & _assembly
Reference to this Kernel's assembly object.
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.
void prepareMatrixTag(Assembly &assembly, unsigned int ivar, unsigned int jvar)
Prepare data for computing element jacobian according to the active tags.
All time kernels should inherit from this class.
Definition TimeKernel.h:19
const VariableValue & _du_dot_du
Derivative of u_dot with respect to u.
Definition TimeKernel.h:40
static InputParameters validParams()
Definition TimeKernel.C:20