https://mooseframework.inl.gov
AverageWallTemperature3EqnMaterial.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 "Material.h"
13 
21 {
22 public:
24 
25 protected:
26  virtual void computeQpProperties();
27 
31  const unsigned int _n_values;
33  std::vector<const VariableValue *> _T_wall_sources;
35  std::vector<const MaterialProperty<Real> *> _Hw_sources;
37  std::vector<const VariableValue *> _P_hf_sources;
42 
43 public:
45 };
std::vector< const VariableValue * > _T_wall_sources
Wall temperature values from the individual sources to average.
AverageWallTemperature3EqnMaterial(const InputParameters &parameters)
std::vector< const VariableValue * > _P_hf_sources
Heated perimeter values from the individual sources to average.
OutputTools< Real >::VariableValue VariableValue
MaterialProperty< Real > & _T_wall
Average wall temperature.
const unsigned int _n_values
Number of values to average.
Weighted average of wall temperature between multiple heat sources to preserve total wall heat...
const InputParameters & parameters() const
const VariableValue & _T_fluid
Fluid temperature.
std::vector< const MaterialProperty< Real > * > _Hw_sources
Wall heat transfer coefficient values from the individual sources to average.
const VariableValue & _P_hf_total
Total heated perimeter.