forked from arfc/moltres
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
223 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
include/postprocessors/SideFunctionWeightedIntegralPostprocessor.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#pragma once | ||
|
||
#include "SideIntegralVariablePostprocessor.h" | ||
|
||
/** | ||
* This postprocessor computes the weighted integral of a | ||
* variable along a boundary, weighted by the user-provided function. | ||
*/ | ||
class SideFunctionWeightedIntegralPostprocessor : public SideIntegralVariablePostprocessor | ||
{ | ||
public: | ||
SideFunctionWeightedIntegralPostprocessor(const InputParameters & parameters); | ||
|
||
static InputParameters validParams(); | ||
|
||
protected: | ||
virtual Real computeQpIntegral() override; | ||
|
||
// Weight function | ||
const Function & _weight_func; | ||
}; |
Oops, something went wrong.