21 params.addRequiredParam<UserObjectName>(
"view_factor_object_name",
22 "Name of the ViewFactor userobjects.");
23 params.addRequiredParam<BoundaryName>(
"from_boundary",
24 "The boundary from which to compute the view factor.");
25 params.addRequiredParam<BoundaryName>(
"to_boundary",
26 "The boundary from which to compute the view factor.");
27 params.addClassDescription(
28 "This postprocessor allows to extract view factors from ViewFactor userobjects.");
33 : GeneralPostprocessor(parameters),
35 _from_bnd_id(_fe_problem.mesh().getBoundaryID(getParam<BoundaryName>(
"from_boundary"))),
36 _to_bnd_id(_fe_problem.mesh().getBoundaryID(getParam<BoundaryName>(
"to_boundary")))