www.mooseframework.org
ACInterfaceKobayashi1.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<ACInterfaceKobayashi1>();
20 
27 class ACInterfaceKobayashi1 : public DerivativeMaterialInterface<JvarMapKernelInterface<KernelGrad>>
28 {
29 public:
30  ACInterfaceKobayashi1(const InputParameters & parameters);
31 
32 protected:
36  virtual Real computeQpOffDiagJacobian(unsigned int jvar);
37 
39  const MaterialProperty<Real> & _L;
40  const MaterialProperty<Real> & _dLdop;
41  const MaterialProperty<Real> & _eps;
42  const MaterialProperty<Real> & _deps;
43  const MaterialProperty<RealGradient> & _depsdgrad_op;
44  const MaterialProperty<RealGradient> & _ddepsdgrad_op;
45 
47  std::vector<const MaterialProperty<Real> *> _dLdarg;
48  std::vector<const MaterialProperty<Real> *> _depsdarg;
49  std::vector<const MaterialProperty<Real> *> _ddepsdarg;
50 };
51 
libMesh::RealGradient
VectorValue< Real > RealGradient
Definition: GrainForceAndTorqueInterface.h:17
validParams< ACInterfaceKobayashi1 >
InputParameters validParams< ACInterfaceKobayashi1 >()
Definition: ACInterfaceKobayashi1.C:16
ACInterfaceKobayashi1::computeQpOffDiagJacobian
virtual Real computeQpOffDiagJacobian(unsigned int jvar)
Definition: ACInterfaceKobayashi1.C:96
ACInterfaceKobayashi1::_ddepsdgrad_op
const MaterialProperty< RealGradient > & _ddepsdgrad_op
Definition: ACInterfaceKobayashi1.h:44
ACInterfaceKobayashi1::_ddepsdarg
std::vector< const MaterialProperty< Real > * > _ddepsdarg
Definition: ACInterfaceKobayashi1.h:49
ACInterfaceKobayashi1::_dLdarg
std::vector< const MaterialProperty< Real > * > _dLdarg
Mobility derivative w.r.t. other coupled variables.
Definition: ACInterfaceKobayashi1.h:47
ACInterfaceKobayashi1
Kernel 1 of 2 for interfacial energy anisotropy in the Allen-Cahn equation as implemented in R.
Definition: ACInterfaceKobayashi1.h:27
ACInterfaceKobayashi1::_L
const MaterialProperty< Real > & _L
Mobility.
Definition: ACInterfaceKobayashi1.h:39
ACInterfaceKobayashi1::_depsdarg
std::vector< const MaterialProperty< Real > * > _depsdarg
Definition: ACInterfaceKobayashi1.h:48
ACInterfaceKobayashi1::precomputeQpJacobian
virtual RealGradient precomputeQpJacobian()
Definition: ACInterfaceKobayashi1.C:74
ACInterfaceKobayashi1::_dLdop
const MaterialProperty< Real > & _dLdop
Definition: ACInterfaceKobayashi1.h:40
ACInterfaceKobayashi1::_depsdgrad_op
const MaterialProperty< RealGradient > & _depsdgrad_op
Definition: ACInterfaceKobayashi1.h:43
ACInterfaceKobayashi1::_eps
const MaterialProperty< Real > & _eps
Definition: ACInterfaceKobayashi1.h:41
ACInterfaceKobayashi1::_deps
const MaterialProperty< Real > & _deps
Definition: ACInterfaceKobayashi1.h:42
ACInterfaceKobayashi1::precomputeQpResidual
virtual RealGradient precomputeQpResidual()
Enum of computeDFDOP inputs.
Definition: ACInterfaceKobayashi1.C:64
ACInterfaceKobayashi1::ACInterfaceKobayashi1
ACInterfaceKobayashi1(const InputParameters &parameters)
Definition: ACInterfaceKobayashi1.C:36