www.mooseframework.org
AreaPostprocessor.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
3 //*
4 //* All rights reserved, see COPYRIGHT for full restrictions
5 //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6 //*
7 //* Licensed under LGPL 2.1, please see LICENSE for details
8 //* https://www.gnu.org/licenses/lgpl-2.1.html
9 
10 #pragma once
11 
13 
14 // Forward Declarations
15 class AreaPostprocessor;
16 
17 template <>
19 
24 {
25 public:
27 
29 
30  virtual void threadJoin(const UserObject & y) override;
31 
32 protected:
33  virtual Real computeQpIntegral() override;
34 };
35 
MooseObject::parameters
const InputParameters & parameters() const
Get the parameters of the object.
Definition: MooseObject.h:76
AreaPostprocessor::computeQpIntegral
virtual Real computeQpIntegral() override
Definition: AreaPostprocessor.C:39
validParams< AreaPostprocessor >
InputParameters validParams< AreaPostprocessor >()
InputParameters
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system.
Definition: InputParameters.h:53
UserObject
Base class for user-specific data.
Definition: UserObject.h:38
AreaPostprocessor::AreaPostprocessor
AreaPostprocessor(const InputParameters &parameters)
Definition: AreaPostprocessor.C:26
SideIntegralPostprocessor
This postprocessor computes a volume integral of the specified variable.
Definition: SideIntegralPostprocessor.h:26
AreaPostprocessor::threadJoin
virtual void threadJoin(const UserObject &y) override
Must override.
Definition: AreaPostprocessor.C:32
AreaPostprocessor::validParams
static InputParameters validParams()
Definition: AreaPostprocessor.C:17
AreaPostprocessor
This postprocessor computes the area of a specified block.
Definition: AreaPostprocessor.h:23
SideIntegralPostprocessor.h