www.mooseframework.org
ALEKernel.h
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 #pragma once
11 
12 #include "Kernel.h"
13 #include "Assembly.h"
15 
16 class ALEKernel : public DerivativeMaterialInterface<Kernel>
17 {
18 public:
20 
21  ALEKernel(const InputParameters & parameters);
22 
23  virtual void computeJacobian() override;
24  virtual void computeOffDiagJacobian(unsigned int jvar) override;
25 
26 protected:
29 
32 
37 };
const VariableTestGradient & _grad_test_undisplaced
Definition: ALEKernel.h:35
ALEKernel(const InputParameters &parameters)
Definition: ALEKernel.C:23
virtual void computeOffDiagJacobian(unsigned int jvar) override
Definition: ALEKernel.C:41
OutputTools< Real >::VariablePhiGradient VariablePhiGradient
Assembly & _assembly_undisplaced
undisplaced problem
Definition: ALEKernel.h:28
MooseVariable & _var_undisplaced
Reference to this Kernel&#39;s undisplaced MooseVariable object.
Definition: ALEKernel.h:31
const VariablePhiGradient & _grad_phi_undisplaced
Shape and test functions on the undisplaced mesh.
Definition: ALEKernel.h:34
static InputParameters validParams()
Definition: ALEKernel.C:16
OutputTools< Real >::VariableTestGradient VariableTestGradient
virtual void computeJacobian() override
Definition: ALEKernel.C:34