www.mooseframework.org
Functions
RegularSolutionFreeEnergy.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("PhaseFieldApp", RegularSolutionFreeEnergy)
 
template<>
InputParameters validParams< RegularSolutionFreeEnergy > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "PhaseFieldApp"  ,
RegularSolutionFreeEnergy   
)

◆ validParams< RegularSolutionFreeEnergy >()

template<>
InputParameters validParams< RegularSolutionFreeEnergy > ( )

Definition at line 16 of file RegularSolutionFreeEnergy.C.

17 {
18  InputParameters params = validParams<DerivativeParsedMaterialHelper>();
19  params.addClassDescription("Material that implements the free energy of a regular solution");
20  params.addRequiredCoupledVar("c", "Concentration variable");
21  params.addCoupledVar("T", 300, "Temperature variable");
22  params.addParam<Real>("omega", 0.1, "Regular solution parameter");
23  params.addParam<Real>("kB", 8.6173324e-5, "Boltzmann constant");
24  params.addParam<Real>(
25  "log_tol", "If specified logarithms are evaluated using a Taylor expansion below this value");
26  return params;
27 }