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 "SolidWall.h" 11 : 12 : registerMooseObject("ThermalHydraulicsApp", SolidWall); 13 : 14 : InputParameters 15 70 : SolidWall::validParams() 16 : { 17 70 : InputParameters params = FlowBoundary::validParams(); 18 70 : params.addClassDescription( 19 : "Adds the boundary condition for a wall. This component is deprecated."); 20 70 : return params; 21 0 : } 22 : 23 35 : SolidWall::SolidWall(const InputParameters & params) : FlowBoundary(params) 24 : { 25 35 : logError("Deprecated component. Use SolidWall1Phase or SolidWall2Phase instead."); 26 35 : }