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

Go to the source code of this file.

Classes

class  GrainCentersPostprocessor
 GrainCentersPostprocessor is a type of VectorPostprocessor that outputs center and volume of grains calculated in GrainCenterUserObject. More...
 

Functions

template<>
InputParameters validParams< GrainCentersPostprocessor > ()
 

Function Documentation

◆ validParams< GrainCentersPostprocessor >()

template<>
InputParameters validParams< GrainCentersPostprocessor > ( )

Definition at line 15 of file GrainCentersPostprocessor.C.

16 {
17  InputParameters params = validParams<VectorPostprocessor>();
18  params.addClassDescription("Outputs the values from ComputeGrainCenterUserObject");
19  params.addParam<UserObjectName>(
20  "grain_data", "Specify user object that gives center of mass and volume of grains");
21  return params;
22 }