https://mooseframework.inl.gov
Loading...
Searching...
No Matches
InterfacePostprocessor.C
Go to the documentation of this file.
1//* This file is part of the MOOSE framework
2//* https://mooseframework.inl.gov
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
11
14{
18 "Basic class for Interface Postprocessors. All InterfacePostprocessors "
19 "should be derived from this class.");
20 return params;
21}
22
24 : InterfaceUserObject(parameters), Postprocessor(this), _interface_primary_area(0.)
25{
26}
27
28void
34
35void
41
42void
44{
45 const auto & pps = static_cast<const InterfacePostprocessor &>(y);
47}
48
49void
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system.
void addClassDescription(const std::string &doc_string)
This method adds a description of the class that will be displayed in the input file syntax dump.
BASE CLASS FOR IMPLEMENTING INTERFACE POSTRPOCESSOR ALL INTERFACE POSTPROCESOR SHOULD DERIVE FROM THI...
virtual void threadJoin(const UserObject &y) override
Must override.
static InputParameters validParams()
virtual void initialize() override
Called before execute() is ever called so that data can be cleared.
Real _interface_primary_area
the area of the primary side of the interface
virtual void execute() override
Execute method.
virtual void finalize() override
Finalize.
InterfacePostprocessor(const InputParameters &parameters)
const Real & _current_side_volume
current side volume
Base class for implementing interface user objects.
static InputParameters validParams()
virtual void initialize() override
Called before execute() is ever called so that data can be cleared.
virtual void execute() override
Execute method.
Base class for all Postprocessors.
static InputParameters validParams()
void gatherSum(T &value)
Gather the parallel sum of the variable passed in.
Base class for user-specific data.
Definition UserObject.h:20