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

Go to the source code of this file.

Classes

class  GrainTextureVectorPostprocessor
 GrainTextureVectorPostprocessor is a VectorPostprocessor that outputs the the coordinates, grain number, and Euler Angles associated with each element. More...
 

Functions

template<>
InputParameters validParams< GrainTextureVectorPostprocessor > ()
 

Function Documentation

◆ validParams< GrainTextureVectorPostprocessor >()

template<>
InputParameters validParams< GrainTextureVectorPostprocessor > ( )

Definition at line 18 of file GrainTextureVectorPostprocessor.C.

19 {
20  InputParameters params = validParams<ElementVectorPostprocessor>();
21  params += validParams<SamplerBase>();
22  params.addClassDescription("Gives out info on the grain boundary properties");
23  params.addRequiredParam<UserObjectName>("euler_angle_provider",
24  "The EulerAngleProvider User object");
25  params.addRequiredCoupledVar("unique_grains", "The grain number");
26  params.addRequiredParam<unsigned int>("grain_num", "the number of grains");
27  return params;
28 }