www.mooseframework.org
SurfaceRadiationVectorPostprocessor.h
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 
10 #pragma once
11 
12 #include "GeneralVectorPostprocessor.h"
13 
14 // Forward Declarations
17 
18 template <>
20 
21 class SurfaceRadiationVectorPostprocessor : public GeneralVectorPostprocessor
22 {
23 public:
24  SurfaceRadiationVectorPostprocessor(const InputParameters & parameters);
25 
26  void execute() override;
27  void initialize() override;
28 
29 protected:
32 
34  MultiMooseEnum _information_types;
35 
37  unsigned int _n_data;
38 
40  std::vector<VectorPostprocessorValue *> _data;
41 
43  VectorPostprocessorValue & _surface_ids;
44 };
SurfaceRadiationVectorPostprocessor::_surface_ids
VectorPostprocessorValue & _surface_ids
The surface ids of the data.
Definition: SurfaceRadiationVectorPostprocessor.h:43
SurfaceRadiationVectorPostprocessor::_n_data
unsigned int _n_data
number of data types
Definition: SurfaceRadiationVectorPostprocessor.h:37
SurfaceRadiationVectorPostprocessor::_data
std::vector< VectorPostprocessorValue * > _data
The data that this VPP harvests off the surface radiation userobject.
Definition: SurfaceRadiationVectorPostprocessor.h:40
validParams< SurfaceRadiationVectorPostprocessor >
InputParameters validParams< SurfaceRadiationVectorPostprocessor >()
Definition: SurfaceRadiationVectorPostprocessor.C:19
SurfaceRadiationVectorPostprocessor::initialize
void initialize() override
Definition: SurfaceRadiationVectorPostprocessor.C:49
SurfaceRadiationVectorPostprocessor::_information_types
MultiMooseEnum _information_types
Type of information that is retrieved.
Definition: SurfaceRadiationVectorPostprocessor.h:34
SurfaceRadiationVectorPostprocessor
Definition: SurfaceRadiationVectorPostprocessor.h:21
SurfaceRadiationVectorPostprocessor::SurfaceRadiationVectorPostprocessor
SurfaceRadiationVectorPostprocessor(const InputParameters &parameters)
Definition: SurfaceRadiationVectorPostprocessor.C:35
SurfaceRadiationVectorPostprocessor::execute
void execute() override
Definition: SurfaceRadiationVectorPostprocessor.C:64
SurfaceRadiationVectorPostprocessor::_glsr_uo
const GrayLambertSurfaceRadiationBase & _glsr_uo
the surface radiation user object
Definition: SurfaceRadiationVectorPostprocessor.h:31
GrayLambertSurfaceRadiationBase
GrayLambertSurfaceRadiationBase computes the heat flux on a set of surfaces in radiative heat transfe...
Definition: GrayLambertSurfaceRadiationBase.h:25