https://mooseframework.inl.gov
Loading...
Searching...
No Matches
FVInfiniteCylinderRadiativeBC.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
11#include "MathUtils.h"
12
14
17{
19 params.addRequiredParam<Real>("boundary_emissivity", "Emissivity of the boundary.");
20 params.addParam<Real>("cylinder_emissivity",
21 1,
22 "Emissivity of the cylinder in radiative heat transfer with the boundary.");
23 params.addRequiredParam<Real>("boundary_radius",
24 "Radius of the boundary approximated as cylinder.");
25 params.addRequiredParam<Real>("cylinder_radius",
26 "Radius of the cylinder on the outside of the boundary.");
27 params.addClassDescription("Boundary condition for radiative heat exchange with a cylinder "
28 "where the boundary is approximated as a cylinder as well.");
29 return params;
30}
31
33 : FVRadiativeHeatFluxBCBase(parameters),
34 _eps_boundary(getParam<Real>("boundary_emissivity")),
35 _eps_cylinder(getParam<Real>("cylinder_emissivity")),
36 _boundary_radius(getParam<Real>("boundary_radius")),
37 _cylinder_radius(getParam<Real>("cylinder_radius"))
38{
42}
43
44Real
registerMooseObject("HeatTransferApp", FVInfiniteCylinderRadiativeBC)
Boundary condition for radiative heat exchange with a cylinder, the outer surface of the domain is as...
Real _coefficient
coefficients are constant and pre-computed
const Real _boundary_radius
radius of the boundary
const Real _eps_cylinder
emissivity of the cylinder in radiative heat transfer with the boundary
const Real _cylinder_radius
radius of the cylinder around the boundary
virtual Real coefficient() const override
qdot = sigma * coeff * (T^4 - Tinf^4 ) sigma: _sigma_stefan_boltzmann coeff: coefficient() coefficien...
const Real _eps_boundary
Emissivity of the boundary.
FVInfiniteCylinderRadiativeBC(const InputParameters &parameters)
Boundary condition for radiative heat flux where temperature and the temperature of a body in radiati...
static InputParameters validParams()
void addRequiredParam(const std::string &name, const std::string &doc_string)
void addParam(const std::string &name, const std::initializer_list< typename T::value_type > &value, const std::string &doc_string)
void addClassDescription(const std::string &doc_string)