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 : #include "INSFVNoSlipWallBC.h" 11 : #include "Function.h" 12 : #include "SubProblem.h" 13 : #include "MooseMesh.h" 14 : #include "FaceInfo.h" 15 : 16 : #include "libmesh/vector_value.h" 17 : 18 : registerMooseObject("NavierStokesApp", INSFVNoSlipWallBC); 19 : 20 : InputParameters 21 28542 : INSFVNoSlipWallBC::validParams() 22 : { 23 28542 : InputParameters params = FVFunctionDirichletBC::validParams(); 24 28542 : params.addClassDescription("Implements a no slip boundary condition."); 25 28542 : return params; 26 0 : } 27 : 28 16067 : INSFVNoSlipWallBC::INSFVNoSlipWallBC(const InputParameters & params) : FVFunctionDirichletBC(params) 29 : { 30 16067 : }