https://mooseframework.inl.gov
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 
15 class InputParameters;
16 
23 {
24 public:
27 
28  void computeResidual(const FaceInfo & /*fi*/) override {}
29  void computeJacobian(const FaceInfo & /*fi*/) override {}
30  void computeResidualAndJacobian(const FaceInfo & /*fi*/) override {}
31 
32  ADReal computeQpResidual() override final
33  {
34  mooseError("Scalar field separators are not supposed to contribute to anything!");
35  }
36 };
Class describing a separator (no diffusive or advective flux) for a scalar field (pressure, energy, passive scalar) associated with the Navier Stokes equations.
void computeResidualAndJacobian(const FaceInfo &) override
DualNumber< Real, DNDerivativeType, true > ADReal
INSFVScalarFieldSeparatorBC(const InputParameters &params)
ADReal computeQpResidual() override final
A base class which serves as a tag for hydraulic separators.
void mooseError(Args &&... args) const
void computeResidual(const FaceInfo &) override
void computeJacobian(const FaceInfo &) override
static InputParameters validParams()