https://mooseframework.inl.gov
Loading...
Searching...
No Matches
FVFaceResidualObject.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
12class FaceInfo;
13
18{
19public:
23 virtual void computeResidual(const FaceInfo & fi) = 0;
24
28 virtual void computeJacobian(const FaceInfo & fi) = 0;
29
33 virtual void computeResidualAndJacobian(const FaceInfo & fi) = 0;
34};
Interface class for a finite volume residual object whose residuals are based on faces.
virtual void computeResidualAndJacobian(const FaceInfo &fi)=0
Compute the residual and Jacobian on the supplied face.
virtual void computeJacobian(const FaceInfo &fi)=0
Compute the jacobian on the supplied face.
virtual void computeResidual(const FaceInfo &fi)=0
Compute the residual on the supplied face.
This data structure is used to store geometric and variable related metadata about each cell face in ...
Definition FaceInfo.h:38