20 MooseEnum return_type(
"RADIOSITY HEAT_FLUX_DENSITY TEMPERATURE",
"HEAT_FLUX_DENSITY");
21 params.addParam<MooseEnum>(
"return_type",
23 "Requested return type: RADIOSITY | HEAT_FLUX_DENSITY | TEMPERATURE");
24 params.addRequiredParam<UserObjectName>(
"surface_radiation_object_name",
25 "Name of the GrayLambertSurfaceRadiationBase UO");
26 params.addRequiredParam<BoundaryName>(
"boundary",
"The boundary of interest.");
27 params.addClassDescription(
"This postprocessor allows to extract radiosity, heat flux density, "
28 "and temperature from the GrayLambertSurfaceRadiationBase object.");
33 : GeneralPostprocessor(parameters),
35 _return_type(getParam<MooseEnum>(
"return_type")),
36 _bnd_id(_fe_problem.mesh().getBoundaryID(getParam<BoundaryName>(
"boundary")))