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