https://mooseframework.inl.gov
ADAverageWallTemperature3EqnMaterial.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 ADVariableValue *> _T_wall_sources;
35  std::vector<const ADMaterialProperty<Real> *> _Hw_sources;
37  std::vector<const ADVariableValue *> _P_hf_sources;
42 
43 public:
45 };
ADAverageWallTemperature3EqnMaterial(const InputParameters &parameters)
std::vector< const ADMaterialProperty< Real > * > _Hw_sources
Wall heat transfer coefficient values from the individual sources to average.
ADMaterialProperty< Real > & _T_wall
Average wall temperature.
const ADVariableValue & _P_hf_total
Total heated perimeter.
std::vector< const ADVariableValue * > _P_hf_sources
Heated perimeter values from the individual sources to average.
Weighted average of wall temperature between multiple heat sources to preserve total wall heat...
const ADVariableValue & _T_fluid
Fluid temperature.
const unsigned int _n_values
Number of values to average.
std::vector< const ADVariableValue * > _T_wall_sources
Wall temperature values from the individual sources to average.
const InputParameters & parameters() const