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 "LinearFVExtrapolatedPressureBC.h" 11 : 12 : registerMooseObject("NavierStokesApp", LinearFVExtrapolatedPressureBC); 13 : 14 : InputParameters 15 1004 : LinearFVExtrapolatedPressureBC::validParams() 16 : { 17 1004 : InputParameters params = LinearFVAdvectionDiffusionExtrapolatedBC::validParams(); 18 1004 : params.addClassDescription( 19 : "Adds a boundary condition which can be used to extrapolate pressure values to the boundary " 20 : "using either a two-term or a one-term expansion."); 21 1004 : return params; 22 0 : } 23 : 24 502 : LinearFVExtrapolatedPressureBC::LinearFVExtrapolatedPressureBC(const InputParameters & parameters) 25 502 : : LinearFVAdvectionDiffusionExtrapolatedBC(parameters) 26 : { 27 502 : } 28 : 29 : Real 30 3279266 : LinearFVExtrapolatedPressureBC::computeBoundaryGradientMatrixContribution() const 31 : { 32 3279266 : return 0; 33 : } 34 : 35 : Real 36 3279266 : LinearFVExtrapolatedPressureBC::computeBoundaryGradientRHSContribution() const 37 : { 38 3279266 : return 0; 39 : }