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 "KokkosVectorDiffusion.h" 11 : 12 455576 : registerKokkosResidualObject("MooseApp", KokkosVectorDiffusion); 13 : 14 : InputParameters 15 2416 : KokkosVectorDiffusion::validParams() 16 : { 17 2416 : InputParameters params = Moose::Kokkos::VectorKernelGrad::validParams(); 18 2416 : params.addClassDescription( 19 : "The Laplacian operator ($-\\nabla \\cdot \\nabla \\vec{u}$), with the weak " 20 : "form of $(\\nabla \\vec{\\phi_i}, \\nabla \\vec{u_h})$."); 21 2416 : return params; 22 0 : } 23 : 24 143 : KokkosVectorDiffusion::KokkosVectorDiffusion(const InputParameters & parameters) 25 75 : : Moose::Kokkos::VectorKernelGrad(parameters) 26 : { 27 143 : }