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

Go to the source code of this file.

Classes

class  PolycrystalRandomIC
 Random initial condition for a polycrystalline material. More...
 

Functions

template<>
InputParameters validParams< PolycrystalRandomIC > ()
 

Function Documentation

◆ validParams< PolycrystalRandomIC >()

template<>
InputParameters validParams< PolycrystalRandomIC > ( )

Definition at line 17 of file PolycrystalRandomIC.C.

18 {
19  InputParameters params = validParams<RandomICBase>();
20  params.addClassDescription("Random initial condition for a polycrystalline material");
21  params.addRequiredParam<unsigned int>("op_num", "Number of order parameters");
22  params.addRequiredParam<unsigned int>("op_index", "The index for the current order parameter");
23  params.addRequiredParam<unsigned int>("random_type", "Type of random grain structure");
24  return params;
25 }