www.mooseframework.org
KKSACBulkF.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 "KKSACBulkBase.h"
13 
14 // Forward Declarations
15 class KKSACBulkF;
16 
17 template <>
18 InputParameters validParams<KKSACBulkF>();
19 
27 class KKSACBulkF : public KKSACBulkBase
28 {
29 public:
30  KKSACBulkF(const InputParameters & parameters);
31 
32 protected:
33  virtual Real computeDFDOP(PFFunctionType type);
34  virtual Real computeQpOffDiagJacobian(unsigned int jvar);
35 
37  Real _w;
38 
40  const MaterialProperty<Real> & _prop_dg;
41 
43  const MaterialProperty<Real> & _prop_d2g;
44 
46  const MaterialProperty<Real> & _prop_Fb;
47 
49  const MaterialProperty<Real> & _prop_dFb;
50 };
KKSACBulkF::_prop_dg
const MaterialProperty< Real > & _prop_dg
Derivative of the double well function .
Definition: KKSACBulkF.h:40
KKSACBulkF::computeDFDOP
virtual Real computeDFDOP(PFFunctionType type)
Definition: KKSACBulkF.C:41
KKSACBulkF::computeQpOffDiagJacobian
virtual Real computeQpOffDiagJacobian(unsigned int jvar)
Definition: KKSACBulkF.C:57
KKSACBulkF::_prop_d2g
const MaterialProperty< Real > & _prop_d2g
Second derivative of the double well function .
Definition: KKSACBulkF.h:43
KKSACBulkF
KKSACBulkBase child class for the free energy difference term in the the Allen-Cahn bulk residual.
Definition: KKSACBulkF.h:27
KKSACBulkF::KKSACBulkF
KKSACBulkF(const InputParameters &parameters)
Definition: KKSACBulkF.C:30
validParams< KKSACBulkF >
InputParameters validParams< KKSACBulkF >()
Definition: KKSACBulkF.C:16
KKSACBulkBase.h
KKSACBulkF::_prop_Fb
const MaterialProperty< Real > & _prop_Fb
Value of the free energy function .
Definition: KKSACBulkF.h:46
KKSACBulkF::_w
Real _w
double well height parameter
Definition: KKSACBulkF.h:37
KKSACBulkF::_prop_dFb
const MaterialProperty< Real > & _prop_dFb
Derivative of the free energy function .
Definition: KKSACBulkF.h:49
ACBulk< Real >::PFFunctionType
PFFunctionType
Definition: ACBulk.h:37
KKSACBulkBase
ACBulk child class that takes all the necessary data from a KKSBaseMaterial and sets up the Allen-Cah...
Definition: KKSACBulkBase.h:26