https://mooseframework.inl.gov
FVInterpolationMethodInterface.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 "MooseTypes.h"
13 #include "MooseObject.h"
14 #include "InputParameters.h"
15 
16 class FEProblemBase;
19 
24 {
25 public:
26  FVInterpolationMethodInterface(const MooseObject * moose_object);
27 
29 
31  getFVFaceInterpolationMethod(const InterpolationMethodName & name) const;
32 
34  getFVAdvectedInterpolationMethod(const InterpolationMethodName & name) const;
35 
36  bool hasFVInterpolationMethod(const InterpolationMethodName & name) const;
37 
38 protected:
42 };
std::string name(const ElemQuality q)
const FVFaceInterpolationMethod & getFVFaceInterpolationMethod(const InterpolationMethodName &name) const
Interface for interpolation methods that provide matrix and RHS contributions for advected face value...
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
bool hasFVInterpolationMethod(const InterpolationMethodName &name) const
const FVAdvectedInterpolationMethod & getFVAdvectedInterpolationMethod(const InterpolationMethodName &name) const
Specialization of SubProblem for solving nonlinear equations plus auxiliary equations.
Every object that can be built by the factory should be derived from this class.
Definition: MooseObject.h:28
FVInterpolationMethodInterface(const MooseObject *moose_object)
Helper interface for objects that need access to FVInterpolationMethod instances. ...
Abstract base class for interpolation methods that produce a scalar face value from adjacent cell val...
unsigned int THREAD_ID
Definition: MooseTypes.h:237