Go to the source code of this file.
◆ registerMooseObject()
◆ validParams< LevelSetVolume >()
Definition at line 16 of file LevelSetVolume.C.
18 InputParameters params = validParams<ElementVariablePostprocessor>();
19 params.addClassDescription(
20 "Compute the area or volume of the region inside or outside of a level set contour.");
21 params.addParam<Real>(
22 "threshold", 0.0,
"The level set threshold to consider for computing area/volume.");
24 MooseEnum loc(
"inside=0 outside=1",
"inside");
25 params.addParam<MooseEnum>(
"location", loc,
"The location of the area/volume to be computed.");