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

Go to the source code of this file.

Classes

class  PolycrystalElasticDrivingForceAction
 Action that adds the elastic driving force for each order parameter. More...
 

Functions

template<>
InputParameters validParams< PolycrystalElasticDrivingForceAction > ()
 

Function Documentation

◆ validParams< PolycrystalElasticDrivingForceAction >()

template<>
InputParameters validParams< PolycrystalElasticDrivingForceAction > ( )

Definition at line 19 of file PolycrystalElasticDrivingForceAction.C.

20 {
21  InputParameters params = validParams<Action>();
22  params.addClassDescription(
23  "Action that addes the elastic driving force for each order parameter");
24  params.addRequiredParam<unsigned int>("op_num", "specifies the number of grains to create");
25  params.addRequiredParam<std::string>("var_name_base", "specifies the base name of the variables");
26  params.addParam<bool>(
27  "use_displaced_mesh", false, "Whether to use displaced mesh in the kernels");
28  params.addParam<std::string>("base_name",
29  "Optional parameter that allows the user to define "
30  "multiple mechanics material systems on the same "
31  "block, i.e. for multiple phases");
32  return params;
33 }