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 "LinearFVAdvectionDiffusionOutflowBC.h" 11 : 12 : registerMooseObject("MooseApp", LinearFVAdvectionDiffusionOutflowBC); 13 : 14 : InputParameters 15 15021 : LinearFVAdvectionDiffusionOutflowBC::validParams() 16 : { 17 15021 : InputParameters params = LinearFVAdvectionDiffusionExtrapolatedBC::validParams(); 18 15021 : params.addClassDescription("Adds a boundary condition which represents a surface with outflowing " 19 : "material with a constant velocity. This kernel is only compatible " 20 : "with advection-diffusion problems."); 21 15021 : return params; 22 0 : } 23 : 24 378 : LinearFVAdvectionDiffusionOutflowBC::LinearFVAdvectionDiffusionOutflowBC( 25 378 : const InputParameters & parameters) 26 378 : : LinearFVAdvectionDiffusionExtrapolatedBC(parameters) 27 : { 28 378 : } 29 : 30 : Real 31 0 : LinearFVAdvectionDiffusionOutflowBC::computeBoundaryNormalGradient() const 32 : { 33 0 : return 0; 34 : } 35 : 36 : Real 37 966 : LinearFVAdvectionDiffusionOutflowBC::computeBoundaryGradientMatrixContribution() const 38 : { 39 966 : return 0; 40 : } 41 : 42 : Real 43 966 : LinearFVAdvectionDiffusionOutflowBC::computeBoundaryGradientRHSContribution() const 44 : { 45 966 : return 0; 46 : }