https://mooseframework.inl.gov
Loading...
Searching...
No Matches
FVFunctorRadiativeBC.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
13
16{
18 params.addClassDescription("Boundary condition for radiative heat exchange where the emissivity "
19 "function is supplied by a Function.");
20 params.addRequiredParam<MooseFunctorName>(
21 "emissivity", "Functor describing emissivity for radiative boundary condition");
22 return params;
23}
24
26 : FVRadiativeHeatFluxBCBase(parameters), _emissivity(getFunctor<Real>("emissivity"))
27{
28}
29
30Real
registerMooseObject("HeatTransferApp", FVFunctorRadiativeBC)
Moose::FaceArg singleSidedFaceArg(const FaceInfo *fi=nullptr, Moose::FV::LimiterType limiter_type=Moose::FV::LimiterType::CentralDifference, bool correct_skewness=false, const Moose::StateArg *state_limiter=nullptr) const
Boundary condition for radiative heat flux where temperature and the temperature of a body in radiati...
FVFunctorRadiativeBC(const InputParameters &parameters)
const Moose::Functor< Real > & _emissivity
emissivity
virtual Real coefficient() const override
qdot = sigma * coeff * (T^4 - Tinf^4 ) sigma: _sigma_stefan_boltzmann coeff: coefficient() coefficien...
static InputParameters validParams()
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 addClassDescription(const std::string &doc_string)
Moose::StateArg determineState() const