Line data Source code
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 : 14 : /** 15 : * A class for free slip boundary conditions for the velocity. 16 : */ 17 : class INSFVNaturalFreeSlipBC : public INSFVSlipWallBC 18 : { 19 : public: 20 : static InputParameters validParams(); 21 : INSFVNaturalFreeSlipBC(const InputParameters & params); 22 : 23 : using INSFVSlipWallBC::gatherRCData; 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 592530 : void gatherRCData(const FaceInfo &) override {} 28 : 29 252000 : ADReal computeSegregatedContribution() override { return 0.0; } 30 : };