Line data Source code
1 : //* This file is part of the MOOSE framework 2 : //* https://www.mooseframework.org 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 "KokkosLinearFVKernel.h" 11 : 12 : namespace Moose::Kokkos 13 : { 14 : 15 : InputParameters 16 7178 : LinearFVKernel::validParams() 17 : { 18 7178 : auto params = LinearSystemContributionObject::validParams(); 19 7178 : params += BlockRestrictable::validParams(); 20 7178 : params.registerBase("LinearFVKernel"); 21 7178 : return params; 22 0 : } 23 : 24 400 : LinearFVKernel::LinearFVKernel(const InputParameters & parameters) 25 202 : : LinearSystemContributionObject(parameters), BlockRestrictable(this) 26 : { 27 400 : } 28 : 29 2027 : LinearFVKernel::LinearFVKernel(const LinearFVKernel & object) 30 1037 : : LinearSystemContributionObject(object), BlockRestrictable(object, {}) 31 : { 32 2027 : } 33 : 34 : } // namespace Moose::Kokkos