https://mooseframework.inl.gov
ValueJumpIndicator.h
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 
10 #pragma once
11 
12 #include "InternalSideIndicator.h"
13 
14 // forward declarations
15 template <typename ComputeValueType>
17 
20 
21 template <typename ComputeValueType>
22 class ValueJumpIndicatorTempl : public InternalSideIndicatorTempl<ComputeValueType>
23 {
24 public:
26 
28 
29 protected:
30  virtual Real computeQpIntegral() override;
31 };
32 
33 template <>
35 
36 template <>
38 
39 // Prevent implicit instantiation in other translation units where these classes are used
40 extern template class ValueJumpIndicatorTempl<Real>;
41 extern template class ValueJumpIndicatorTempl<RealVectorValue>;
virtual Real computeQpIntegral() override
The virtual function you will want to override to compute error contributions.
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
The InternalSideIndicator class is responsible for calculating the residuals for various physics on i...
ValueJumpIndicatorTempl(const InputParameters &parameters)
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
ValueJumpIndicatorTempl< RealVectorValue > VectorValueJumpIndicator
ValueJumpIndicatorTempl< Real > ValueJumpIndicator
const InputParameters & parameters() const
Get the parameters of the object.
static InputParameters validParams()