https://mooseframework.inl.gov
FreeBoundary.C
Go to the documentation of this file.
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 
16 {
18  params.addClassDescription(
19  "Component to create a free flow boundary for 1D flow. This component is deprecated.");
20  return params;
21 }
22 
23 FreeBoundary::FreeBoundary(const InputParameters & parameters) : FlowBoundary(parameters)
24 {
25  logError("Deprecated component. Use FreeBoundary1Phase or FreeBoundary2Phase instead.");
26 }
registerMooseObject("ThermalHydraulicsApp", FreeBoundary)
static InputParameters validParams()
Definition: FlowBoundary.C:14
static InputParameters validParams()
Definition: FreeBoundary.C:15
Adds the boundary terms resulting from an integration by parts of the advection terms, using no external boundary data.
Definition: FreeBoundary.h:20
Base class for components that connect to flow channel boundaries.
Definition: FlowBoundary.h:17
void logError(Args &&... args) const
Logs an error.
Definition: Component.h:215
FreeBoundary(const InputParameters &parameters)
Definition: FreeBoundary.C:23
void addClassDescription(const std::string &doc_string)