https://mooseframework.inl.gov
FVKernel.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 "ResidualObject.h"
13 #include "BlockRestrictable.h"
14 #include "Assembly.h"
15 #include "ADFunctorInterface.h"
17 
18 class SubProblem;
19 
31 
32 class FVKernel : public ResidualObject,
33  public BlockRestrictable,
34  public ADFunctorInterface,
36 {
37 public:
39  FVKernel(const InputParameters & params);
40 };
This class is responsible for adding relationship managers that describe geometric, algebraic and coupling ghosting for finite volume computations.
static InputParameters validParams()
Definition: FVKernel.C:15
FVKernel(const InputParameters &params)
Definition: FVKernel.C:26
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system...
An interface for accessing Moose::Functors for systems that care about automatic differentiation, e.g.
FVKernel is a base class for all finite volume method kernels.
Definition: FVKernel.h:32
This is the common base class for objects that give residual contributions.
Generic class for solving transient nonlinear problems.
Definition: SubProblem.h:78
An interface that restricts an object to subdomains via the 'blocks' input parameter.