www.mooseframework.org
Functions
SurfaceRadiationVectorPostprocessor.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("HeatConductionApp", SurfaceRadiationVectorPostprocessor)
 
template<>
InputParameters validParams< SurfaceRadiationVectorPostprocessor > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "HeatConductionApp"  ,
SurfaceRadiationVectorPostprocessor   
)

◆ validParams< SurfaceRadiationVectorPostprocessor >()

template<>
InputParameters validParams< SurfaceRadiationVectorPostprocessor > ( )

Definition at line 19 of file SurfaceRadiationVectorPostprocessor.C.

20 {
21  InputParameters params = validParams<GeneralVectorPostprocessor>();
22  params.addClassDescription(
23  "VectorPostprocessor for accessing information stored in surface radiation user object");
24  params.addRequiredParam<UserObjectName>("surface_radiation_object_name",
25  "Name of the GrayLambertSurfaceRadiationBase UO");
26  MultiMooseEnum information_type("temperature=0 heat_flux_density=1 radiosity=2 emissivity=3",
27  "temperature");
28  params.addParam<MultiMooseEnum>(
29  "information",
30  information_type,
31  "The type of information to obtain from surface radiation user object");
32  return params;
33 }