www.mooseframework.org
Functions
HomogenizationKernel.C File Reference

Go to the source code of this file.

Functions

 registerMooseObjectDeprecated ("SolidMechanicsApp", HomogenizationKernel, "07/30/2020 24:00")
 
template<>
InputParameters validParams< HomogenizationKernel > ()
 

Function Documentation

◆ registerMooseObjectDeprecated()

registerMooseObjectDeprecated ( "SolidMechanicsApp"  ,
HomogenizationKernel  ,
"07/30/2020 24:00"   
)

◆ validParams< HomogenizationKernel >()

template<>
InputParameters validParams< HomogenizationKernel > ( )

Definition at line 18 of file HomogenizationKernel.C.

19 {
20  InputParameters params = validParams<Kernel>();
21  params.addRequiredRangeCheckedParam<unsigned int>("component",
22  "component >= 0 & component < 3",
23  "An integer corresponding to the direction "
24  "the variable this kernel acts in. (0 for x, "
25  "1 for y, 2 for z)");
26  params.addRequiredRangeCheckedParam<unsigned int>(
27  "column",
28  "column >= 0 & column < 6",
29  "An integer corresponding to the direction the "
30  "variable this kernel acts in. (0 for xx, 1 for yy, 2 "
31  "for zz, 3 for xy, 4 for yz, 5 for zx)");
32  params.addParam<std::string>(
33  "appended_property_name", "", "Name appended to material properties to make them unique");
34 
35  return params;
36 }