www.mooseframework.org
ACInterfaceKobayashi2.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 "KernelGrad.h"
13 #include "JvarMapInterface.h"
14 #include "DerivativeMaterialInterface.h"
15 
17 
18 template <>
19 InputParameters validParams<ACInterfaceKobayashi2>();
20 
27 class ACInterfaceKobayashi2 : public DerivativeMaterialInterface<JvarMapKernelInterface<KernelGrad>>
28 {
29 public:
30  ACInterfaceKobayashi2(const InputParameters & parameters);
31 
32 protected:
35  virtual Real computeQpOffDiagJacobian(unsigned int jvar);
36 
38  const MaterialProperty<Real> & _L;
39  const MaterialProperty<Real> & _dLdop;
40 
42  const MaterialProperty<Real> & _eps;
43  const MaterialProperty<RealGradient> & _depsdgrad_op;
44 
46  std::vector<const MaterialProperty<Real> *> _dLdarg;
47  std::vector<const MaterialProperty<Real> *> _depsdarg;
48 };
49 
ACInterfaceKobayashi2::precomputeQpJacobian
virtual RealGradient precomputeQpJacobian()
Definition: ACInterfaceKobayashi2.C:61
ACInterfaceKobayashi2::_depsdarg
std::vector< const MaterialProperty< Real > * > _depsdarg
Definition: ACInterfaceKobayashi2.h:47
libMesh::RealGradient
VectorValue< Real > RealGradient
Definition: GrainForceAndTorqueInterface.h:17
ACInterfaceKobayashi2::computeQpOffDiagJacobian
virtual Real computeQpOffDiagJacobian(unsigned int jvar)
Definition: ACInterfaceKobayashi2.C:72
validParams< ACInterfaceKobayashi2 >
InputParameters validParams< ACInterfaceKobayashi2 >()
Definition: ACInterfaceKobayashi2.C:16
ACInterfaceKobayashi2::ACInterfaceKobayashi2
ACInterfaceKobayashi2(const InputParameters &parameters)
Definition: ACInterfaceKobayashi2.C:30
ACInterfaceKobayashi2::precomputeQpResidual
virtual RealGradient precomputeQpResidual()
Definition: ACInterfaceKobayashi2.C:54
ACInterfaceKobayashi2::_eps
const MaterialProperty< Real > & _eps
Interfacial parameter.
Definition: ACInterfaceKobayashi2.h:42
ACInterfaceKobayashi2::_dLdop
const MaterialProperty< Real > & _dLdop
Definition: ACInterfaceKobayashi2.h:39
ACInterfaceKobayashi2
Kernel 2 of 2 for interfacial energy anisotropy in the Allen-Cahn equation as implemented in R.
Definition: ACInterfaceKobayashi2.h:27
ACInterfaceKobayashi2::_L
const MaterialProperty< Real > & _L
Mobility.
Definition: ACInterfaceKobayashi2.h:38
ACInterfaceKobayashi2::_depsdgrad_op
const MaterialProperty< RealGradient > & _depsdgrad_op
Definition: ACInterfaceKobayashi2.h:43
ACInterfaceKobayashi2::_dLdarg
std::vector< const MaterialProperty< Real > * > _dLdarg
Mobility derivative w.r.t. other coupled variables.
Definition: ACInterfaceKobayashi2.h:46