www.mooseframework.org
PhaseFieldFractureMechanicsOffDiag.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 "RankTwoTensor.h"
15 
23 {
24 public:
26 
28 
29 protected:
30  Real computeQpResidual() override { return 0.0; }
31 
32  Real computeQpJacobian() override { return 0.0; }
33 
34  virtual Real computeQpOffDiagJacobian(unsigned int jvar) override;
35 
37  const std::string _base_name;
38 
40  const unsigned int _component;
41 
42  const bool _c_coupled;
43  const unsigned int _c_var;
45 };
const MaterialProperty< RankTwoTensor > & _d_stress_dc
This class computes the off-diagonal Jacobian component of stress divergence residual system Contribu...
const unsigned int _component
An integer corresponding to the direction this kernel acts in.
PhaseFieldFractureMechanicsOffDiag(const InputParameters &parameters)
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
const std::string _base_name
Base name of the material system that this kernel applies to.
virtual Real computeQpOffDiagJacobian(unsigned int jvar) override