www.mooseframework.org
InfiniteCylinderRadiativeBC.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 
11 #include "MathUtils.h"
12 
14 
16 
17 InputParameters
19 {
20  InputParameters params = RadiativeHeatFluxBCBase::validParams();
21  params.addParam<Real>("cylinder_emissivity",
22  1,
23  "Emissivity of the cylinder in radiative heat transfer with the boundary.");
24  params.addRequiredParam<Real>("boundary_radius",
25  "Radius of the boundary approximated as cylinder.");
26  params.addRequiredParam<Real>("cylinder_radius",
27  "Radius of the cylinder on the outside of the boundary.");
28  params.addClassDescription("Boundary condition for radiative heat exchange with a cylinder"
29  "where the boundary is approximated as a cylinder as well.");
30  return params;
31 }
32 
34  : RadiativeHeatFluxBCBase(parameters),
35  _eps_cylinder(getParam<Real>("cylinder_emissivity")),
36  _boundary_radius(getParam<Real>("boundary_radius")),
37  _cylinder_radius(getParam<Real>("cylinder_radius"))
38 {
39  _coefficient =
42 }
43 
44 Real
46 {
47  return _coefficient;
48 }
InfiniteCylinderRadiativeBC::_coefficient
Real _coefficient
coefficients are constant and pre-computed
Definition: InfiniteCylinderRadiativeBC.h:43
InfiniteCylinderRadiativeBC.h
RadiativeHeatFluxBCBase
Boundary condition for radiative heat flux where temperature and the temperature of a body in radiati...
Definition: RadiativeHeatFluxBCBase.h:23
InfiniteCylinderRadiativeBC::_cylinder_radius
const Real _cylinder_radius
radius of the cylinder around the boundary
Definition: InfiniteCylinderRadiativeBC.h:40
InfiniteCylinderRadiativeBC
Boundary condition for radiative heat exchange with a cylinder, the outer surface of the domain is as...
Definition: InfiniteCylinderRadiativeBC.h:23
InfiniteCylinderRadiativeBC::_eps_cylinder
const Real _eps_cylinder
emissivity of the cylinder irht with the boundary
Definition: InfiniteCylinderRadiativeBC.h:34
RadiativeHeatFluxBCBase::validParams
static InputParameters validParams()
Definition: RadiativeHeatFluxBCBase.C:17
InfiniteCylinderRadiativeBC::coefficient
virtual Real coefficient() const override
qdot = sigma * coeff * (T^4 - Tinf^4 ) sigma: _sigma_stefan_boltzmann coeff: coefficient() coefficien...
Definition: InfiniteCylinderRadiativeBC.C:45
RadiativeHeatFluxBCBase::_eps_boundary
const Real _eps_boundary
Emissivity of the boundary.
Definition: RadiativeHeatFluxBCBase.h:50
InfiniteCylinderRadiativeBC::InfiniteCylinderRadiativeBC
InfiniteCylinderRadiativeBC(const InputParameters &parameters)
Definition: InfiniteCylinderRadiativeBC.C:33
registerMooseObject
registerMooseObject("HeatConductionApp", InfiniteCylinderRadiativeBC)
defineLegacyParams
defineLegacyParams(InfiniteCylinderRadiativeBC)
InfiniteCylinderRadiativeBC::validParams
static InputParameters validParams()
Definition: InfiniteCylinderRadiativeBC.C:18
InfiniteCylinderRadiativeBC::_boundary_radius
const Real _boundary_radius
radius of the boundary
Definition: InfiniteCylinderRadiativeBC.h:37