www.mooseframework.org
NSNoPenetrationBC.C
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
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 "NSNoPenetrationBC.h"
11 
12 registerMooseObject("NavierStokesApp", NSNoPenetrationBC);
13 
14 template <>
15 InputParameters
17 {
18  InputParameters params = validParams<MooseObject>();
19  params.addClassDescription(
20  "This class facilitates adding solid wall 'no penetration' BCs for the Euler equations.");
21  params.addRequiredParam<std::vector<BoundaryName>>(
22  "boundary", "The list of boundary IDs from the mesh where this boundary condition applies");
23  params.addRequiredParam<UserObjectName>("fluid_properties",
24  "The name of the user object for fluid properties");
25 
26  // Must be called from every base MOOSE system to create linkage with the Action system.
27  params.registerBase("NSNoPenetrationBC");
28 
29  return params;
30 }
31 
32 NSNoPenetrationBC::NSNoPenetrationBC(const InputParameters & parameters) : MooseObject(parameters)
33 {
34 }
35 
NSNoPenetrationBC::NSNoPenetrationBC
NSNoPenetrationBC(const InputParameters &parameters)
Definition: NSNoPenetrationBC.C:32
validParams< NSNoPenetrationBC >
InputParameters validParams< NSNoPenetrationBC >()
Definition: NSNoPenetrationBC.C:16
NSNoPenetrationBC::~NSNoPenetrationBC
virtual ~NSNoPenetrationBC()
Definition: NSNoPenetrationBC.C:36
NSNoPenetrationBC.h
NSNoPenetrationBC
This class facilitates adding solid wall "no penetration" BCs for the Euler equations.
Definition: NSNoPenetrationBC.h:23
registerMooseObject
registerMooseObject("NavierStokesApp", NSNoPenetrationBC)