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

Go to the source code of this file.

Classes

class  InterfaceOrientationMaterial
 Material to compute the angular orientation of order parameter interfaces. More...
 

Functions

template<>
InputParameters validParams< InterfaceOrientationMaterial > ()
 

Function Documentation

◆ validParams< InterfaceOrientationMaterial >()

template<>
InputParameters validParams< InterfaceOrientationMaterial > ( )

Definition at line 18 of file InterfaceOrientationMaterial.C.

19 {
20  InputParameters params = validParams<Material>();
21  params.addParam<Real>(
22  "anisotropy_strength", 0.04, "Strength of the anisotropy (typically < 0.05)");
23  params.addParam<unsigned int>("mode_number", 6, "Mode number for anisotropy");
24  params.addParam<Real>(
25  "reference_angle", 90, "Reference angle for defining anisotropy in degrees");
26  params.addParam<Real>("eps_bar", 0.01, "Average value of the interface parameter epsilon");
27  params.addRequiredCoupledVar("op", "Order parameter defining the solid phase");
28  return params;
29 }