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