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 "JunctionOneToOne.h" 11 : 12 : registerMooseObject("ThermalHydraulicsApp", JunctionOneToOne); 13 : 14 : InputParameters 15 4 : JunctionOneToOne::validParams() 16 : { 17 4 : InputParameters params = FlowJunction::validParams(); 18 : 19 4 : params.addClassDescription("Junction connecting one flow channel to one other flow channel"); 20 : 21 4 : return params; 22 0 : } 23 : 24 2 : JunctionOneToOne::JunctionOneToOne(const InputParameters & params) : FlowJunction(params) 25 : { 26 2 : logError("Deprecated component. Use JunctionOneToOne1Phase or JunctionOneToOne2Phase instead."); 27 2 : }