https://mooseframework.inl.gov
RadiationTransferAction.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 
12 #include "Action.h"
13 
14 #include "MooseEnum.h"
15 
17 {
18 public:
20 
22 
23  virtual void act() override;
24 
25 protected:
26  void addMeshGenerator();
27  void addRadiationObject() const;
28  void addViewFactorObject() const;
29  void addRadiationBCs() const;
30  void addRayStudyObject() const;
31  void addRayBCs() const;
32 
33  std::vector<std::vector<std::string>> radiationPatchNames() const;
34  std::vector<std::vector<std::string>> bcRadiationPatchNames() const;
35  UserObjectName viewFactorObjectName() const;
36  UserObjectName radiationObjectName() const;
37  UserObjectName rayStudyName() const;
38  std::string rayBCName() const;
39  std::string symmetryRayBCName() const;
40  MeshGeneratorName meshGeneratorName(unsigned int j) const;
41 
43  unsigned int nPatch(unsigned int j) const;
44 
46  const std::vector<BoundaryName> _boundary_names;
47 
50 };
const std::vector< BoundaryName > _boundary_names
the boundary names participating in the radiative heat transfer
UserObjectName rayStudyName() const
std::vector< std::vector< std::string > > radiationPatchNames() const
static InputParameters validParams()
MeshGeneratorName meshGeneratorName(unsigned int j) const
std::vector< std::vector< std::string > > bcRadiationPatchNames() const
UserObjectName viewFactorObjectName() const
virtual void act() override
const MooseEnum _view_factor_calculator
the type of view factor calculation being performed
unsigned int nPatch(unsigned int j) const
provides the updated number of patches for this boundary
UserObjectName radiationObjectName() const
static const std::complex< double > j(0, 1)
Complex number "j" (also known as "i")
std::string symmetryRayBCName() const
RadiationTransferAction(const InputParameters &params)