https://mooseframework.inl.gov
Loading...
Searching...
No Matches
Component1DBoundary.h
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#pragma once
11
13
18{
19public:
21
22protected:
23 virtual void setupMesh() override;
24 virtual void check() const override;
25 virtual Convergence * getNonlinearConvergence() const override { return nullptr; }
26
31
33 const Elem * _elem;
35 unsigned short int _side;
37 dof_id_type _node;
39 Real _normal;
41 BoundaryName _input;
42
43public:
45};
Base class for boundary components connected to 1D components.
std::string _connected_component_name
Name of the connected component.
virtual void check() const override
Check the component integrity.
BoundaryName _input
Name of the boundary this component attaches to.
unsigned short int _side
Side ID.
virtual void setupMesh() override
Performs mesh setup such as creating mesh or naming mesh sets.
EEndType _connected_component_end_type
End type of the connected component.
static InputParameters validParams()
Real _normal
Outward normal on this boundary.
dof_id_type _node
Node ID.
const Elem * _elem
Element.
virtual Convergence * getNonlinearConvergence() const override
Gets the Component's nonlinear Convergence object if it has one.
Base class for 1D component junctions and boundaries.