www.mooseframework.org
Classes | Functions
KKSACBulkF.h File Reference

Go to the source code of this file.

Classes

class  KKSACBulkF
 KKSACBulkBase child class for the free energy difference term \( -\frac{dh}{d\eta}(F_a-F_b)+w\frac{dg}{d\eta} \) in the the Allen-Cahn bulk residual. More...
 

Functions

template<>
InputParameters validParams< KKSACBulkF > ()
 

Function Documentation

◆ validParams< KKSACBulkF >()

template<>
InputParameters validParams< KKSACBulkF > ( )

Definition at line 16 of file KKSACBulkF.C.

17 {
18  InputParameters params = validParams<KKSACBulkBase>();
19  params.addClassDescription("KKS model kernel (part 1 of 2) for the Bulk Allen-Cahn. This "
20  "includes all terms NOT dependent on chemical potential.");
21  params.addRequiredParam<Real>("w", "Double well height parameter");
22  params.addParam<MaterialPropertyName>(
23  "g_name", "g", "Base name for the double well function g(eta)");
24  params.addRequiredParam<MaterialPropertyName>(
25  "fb_name",
26  "Base name of the free energy function F (f_base in the corresponding KKSBaseMaterial)");
27  return params;
28 }
validParams< KKSACBulkBase >
InputParameters validParams< KKSACBulkBase >()
Definition: KKSACBulkBase.C:14