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

Go to the source code of this file.

Classes

class  ComputePolycrystalElasticityTensor
 Compute an evolving elasticity tensor coupled to a grain growth phase field model. More...
 

Functions

template<>
InputParameters validParams< ComputePolycrystalElasticityTensor > ()
 

Function Documentation

◆ validParams< ComputePolycrystalElasticityTensor >()

template<>
InputParameters validParams< ComputePolycrystalElasticityTensor > ( )

Definition at line 17 of file ComputePolycrystalElasticityTensor.C.

18 {
19  InputParameters params = validParams<ComputeElasticityTensorBase>();
20  params.addClassDescription(
21  "Compute an evolving elasticity tensor coupled to a grain growth phase field model.");
22  params.addRequiredParam<UserObjectName>(
23  "grain_tracker", "Name of GrainTracker user object that provides RankFourTensors");
24  params.addParam<Real>("length_scale", 1.0e-9, "Length scale of the problem, in meters");
25  params.addParam<Real>("pressure_scale", 1.0e6, "Pressure scale of the problem, in pa");
26  params.addRequiredCoupledVarWithAutoBuild(
27  "v", "var_name_base", "op_num", "Array of coupled variables");
28  return params;
29 }
validParams< ComputeElasticityTensorBase >
InputParameters validParams< ComputeElasticityTensorBase >()