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 "NearestPointLayeredSideIntegral.h" 11 : #include "LayeredSideIntegral.h" 12 : 13 : registerMooseObject("MooseApp", NearestPointLayeredSideIntegral); 14 : 15 : InputParameters 16 14457 : NearestPointLayeredSideIntegral::validParams() 17 : { 18 : InputParameters params = 19 14457 : NearestPointBase<LayeredSideIntegral, SideIntegralVariableUserObject>::validParams(); 20 : 21 14457 : params.addClassDescription("Compute layered side integrals for nearest-point based sidesets"); 22 : 23 14457 : return params; 24 0 : } 25 : 26 100 : NearestPointLayeredSideIntegral::NearestPointLayeredSideIntegral(const InputParameters & parameters) 27 100 : : NearestPointBase<LayeredSideIntegral, SideIntegralVariableUserObject>(parameters) 28 : { 29 100 : }