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 "FreeBoundary.h" 11 : 12 : registerMooseObject("ThermalHydraulicsApp", FreeBoundary); 13 : 14 : InputParameters 15 16 : FreeBoundary::validParams() 16 : { 17 16 : InputParameters params = FlowBoundary::validParams(); 18 16 : params.addClassDescription( 19 : "Component to create a free flow boundary for 1D flow. This component is deprecated."); 20 16 : return params; 21 0 : } 22 : 23 8 : FreeBoundary::FreeBoundary(const InputParameters & parameters) : FlowBoundary(parameters) 24 : { 25 8 : logError("Deprecated component. Use FreeBoundary1Phase or FreeBoundary2Phase instead."); 26 8 : }