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 : // Base class for Richards SUPG 11 : // 12 : #include "RichardsSUPG.h" 13 : 14 : InputParameters 15 806 : RichardsSUPG::validParams() 16 : { 17 806 : InputParameters params = GeneralUserObject::validParams(); 18 806 : params.addClassDescription("Richards SUPG base class. Override tauSUPG, etc"); 19 806 : return params; 20 0 : } 21 : 22 399 : RichardsSUPG::RichardsSUPG(const InputParameters & parameters) : GeneralUserObject(parameters) {} 23 : 24 : void 25 5533 : RichardsSUPG::initialize() 26 : { 27 5533 : } 28 : 29 : void 30 5533 : RichardsSUPG::execute() 31 : { 32 5533 : } 33 : 34 : void 35 5533 : RichardsSUPG::finalize() 36 : { 37 5533 : }