29 virtual void execute()
override;
31 virtual Real
getValue()
const override;
38 mooseError(
"Integral over faces have not been implemented for this postprocessor");
47 mooseError(
"Face info integration was specified, but the mesh contains no face info objects.");
void mooseError(Args &&... args)
Emit an error message with the given stringified, concatenated args and terminate the application.
This data structure is used to store geometric and variable related metadata about each cell face in ...
const InputParameters & parameters() const
Get the parameters of the object.
This postprocessor computes a surface integral of the specified variable on a sideset on the boundary...
bool _qp_integration
Whether to integrate over quadrature points or FaceInfos.
virtual void threadJoin(const UserObject &y) override
Must override.
static InputParameters validParams()
virtual Real computeIntegral()
virtual void initialize() override
Called before execute() is ever called so that data can be cleared.
virtual void errorNoFaceInfo() const
Error method to call when face info is needed but not available.
Real _integral_value
Holds the postprocessor result, the integral.
virtual Real computeQpIntegral()=0
virtual Real computeFaceInfoIntegral(const FaceInfo *)
virtual void initialSetup() override
Gets called at the beginning of the simulation before this object is asked to do its job.
virtual void execute() override
Execute method.
unsigned int _qp
The local quadrature point index when computing an integral over quadrature points.
virtual void finalize() override
This is called after execute() and after threadJoin()! This is probably where you want to do MPI comm...
virtual Real getValue() const override
This will get called to actually grab the final value the postprocessor has calculated.
Base class for postprocessors executed on one or more sidesets.
Base class for user-specific data.