https://mooseframework.inl.gov
Loading...
Searching...
No Matches
KKSACBulkF.h
Go to the documentation of this file.
1//* This file is part of the MOOSE framework
2//* https://mooseframework.inl.gov
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
24{
25public:
27
28 KKSACBulkF(const InputParameters & parameters);
29
30protected:
31 virtual Real computeDFDOP(PFFunctionType type);
32 virtual Real computeQpOffDiagJacobian(unsigned int jvar);
33
35 Real _w;
36
39
42
45
48};
ACBulk child class that takes all the necessary data from a KKSBaseMaterial and sets up the Allen-Cah...
KKSACBulkBase child class for the free energy difference term in the the Allen-Cahn bulk residual.
Definition KKSACBulkF.h:24
virtual Real computeQpOffDiagJacobian(unsigned int jvar)
Definition KKSACBulkF.C:56
Real _w
double well height parameter
Definition KKSACBulkF.h:35
const MaterialProperty< Real > & _prop_d2g
Second derivative of the double well function .
Definition KKSACBulkF.h:41
const MaterialProperty< Real > & _prop_dg
Derivative of the double well function .
Definition KKSACBulkF.h:38
const MaterialProperty< Real > & _prop_dFb
Derivative of the free energy function .
Definition KKSACBulkF.h:47
const MaterialProperty< Real > & _prop_Fb
Value of the free energy function .
Definition KKSACBulkF.h:44
static InputParameters validParams()
Definition KKSACBulkF.C:15
virtual Real computeDFDOP(PFFunctionType type)
Definition KKSACBulkF.C:40