https://mooseframework.inl.gov
Loading...
Searching...
No Matches
INSFVScalarFieldSeparatorBC.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 "FVFluxBC.h"
14
15class InputParameters;
16
23{
24public:
27
28 bool checkVariableBoundaryIntegrity() const override { return false; }
29
30 void computeResidual(const FaceInfo & /*fi*/) override {}
31 void computeJacobian(const FaceInfo & /*fi*/) override {}
32 void computeResidualAndJacobian(const FaceInfo & /*fi*/) override {}
33
34 ADReal computeQpResidual() override final
35 {
36 mooseError("Scalar field separators are not supposed to contribute to anything!");
37 }
38};
DualNumber< Real, DNDerivativeType, true > ADReal
A base class which serves as a tag for hydraulic separators.
Class describing a separator (no diffusive or advective flux) for a scalar field (pressure,...
ADReal computeQpResidual() override final
void computeResidualAndJacobian(const FaceInfo &) override
bool checkVariableBoundaryIntegrity() const override
void computeJacobian(const FaceInfo &) override
void computeResidual(const FaceInfo &) override
void mooseError(Args &&... args) const