https://mooseframework.inl.gov
Loading...
Searching...
No Matches
INSFVNaturalFreeSlipBC.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 "INSFVSlipWallBC.h"
13
18{
19public:
22
24
25 // A free slip wall boundary condition does not allow any outflow nor does it impose any viscous
26 // stress so there is no data to contribute from this object
27 void gatherRCData(const FaceInfo &) override {}
28
29 ADReal computeSegregatedContribution() override { return 0.0; }
30};
DualNumber< Real, DNDerivativeType, true > ADReal
virtual void gatherRCData(const Elem &elem)=0
Should be a non-empty implementation if the residual object is a FVElementalKernel and introduces res...
A class for free slip boundary conditions for the velocity.
static InputParameters validParams()
ADReal computeSegregatedContribution() override
Compute the contribution which goes into the residual of the segregated system.
void gatherRCData(const FaceInfo &) override
Should be a non-empty implementation if the residual object is a FVFluxKernel and introduces residual...
A parent class for slip/no-slip wall boundary conditions.