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 "INSFVFluxBC.h" 13 : #include "INSFVHydraulicSeparatorInterface.h" 14 : 15 : class InputParameters; 16 : 17 : /** 18 : * Class describing a hydraulic separator for the velocity in the 19 : * Navier Stokes equations. There is no cross flow and this should also 20 : * ensure that the cell gradients are decoupled on the two sides of the boundary. 21 : */ 22 : class INSFVVelocityHydraulicSeparatorBC : public INSFVFluxBC, 23 : public INSFVHydraulicSeparatorInterface 24 : { 25 : public: 26 : static InputParameters validParams(); 27 : INSFVVelocityHydraulicSeparatorBC(const InputParameters & params); 28 : 29 : using INSFVFluxBC::gatherRCData; 30 : // The flow separator does not allow any outflow nor does it impose any viscous 31 : // stress so there is no data to contribute from this object 32 24384 : void gatherRCData(const FaceInfo &) override {} 33 : };