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 : // Fluid density base class. 11 : // 12 : #include "RichardsDensity.h" 13 : 14 : InputParameters 15 917 : RichardsDensity::validParams() 16 : { 17 917 : InputParameters params = GeneralUserObject::validParams(); 18 917 : params.addClassDescription( 19 : "Fluid density base class. Override density, ddensity and d2density in your class"); 20 917 : return params; 21 0 : } 22 : 23 456 : RichardsDensity::RichardsDensity(const InputParameters & parameters) : GeneralUserObject(parameters) 24 : { 25 456 : } 26 : 27 : void 28 5837 : RichardsDensity::initialize() 29 : { 30 5837 : } 31 : 32 : void 33 5837 : RichardsDensity::execute() 34 : { 35 5837 : } 36 : 37 : void 38 5837 : RichardsDensity::finalize() 39 : { 40 5837 : }