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 "KokkosParsedAux.h" 11 : 12 201775 : registerKokkosAuxKernel("MooseApp", KokkosParsedAux); 13 : 14 : InputParameters 15 2302 : KokkosParsedAux::validParams() 16 : { 17 2302 : InputParameters params = AuxKernel::validParams(); 18 2302 : params += ParsedObjectBase::validParams(); 19 2302 : params.addClassDescription( 20 : "Sets a field variable value to the evaluation of a parsed expression."); 21 2302 : return params; 22 0 : } 23 : 24 102 : KokkosParsedAux::KokkosParsedAux(const InputParameters & parameters) 25 54 : : AuxKernel(parameters), ParsedObjectBase(this) 26 : { 27 204 : initParsed(this, coupledNames("coupled_variables")); 28 102 : }