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 "ElementH1Error.h" 11 : #include "Function.h" 12 : 13 : registerMooseObject("MooseApp", ElementH1Error); 14 : 15 : InputParameters 16 15135 : ElementH1Error::validParams() 17 : { 18 15135 : InputParameters params = ElementW1pError::validParams(); 19 15135 : params.addClassDescription("Computes the H1 error between a variable and a function"); 20 15135 : return params; 21 0 : } 22 : 23 451 : ElementH1Error::ElementH1Error(const InputParameters & parameters) : ElementW1pError(parameters) {}