moltres
Loading...
Searching...
No Matches
ElementL2Diff.h
Go to the documentation of this file.
1#pragma once
2
3#include "ElementIntegralVariablePostprocessor.h"
4
5class ElementL2Diff : public ElementIntegralVariablePostprocessor
6{
7public:
8 ElementL2Diff(const InputParameters & parameters);
9
10 static InputParameters validParams();
11
12 using Postprocessor::getValue;
13 virtual Real getValue() const override;
14
15protected:
16 virtual Real computeQpIntegral() override;
17
18 const VariableValue & _u_old;
19};
Definition ElementL2Diff.h:6
const VariableValue & _u_old
Definition ElementL2Diff.h:18
virtual Real getValue() const override
Definition ElementL2Diff.C:18
static InputParameters validParams()
Definition ElementL2Diff.C:6
virtual Real computeQpIntegral() override
Definition ElementL2Diff.C:24