MEASUR-Tools-Suite v1.0.11
The MEASUR Tools Suite is a collection of industrial efficiency calculations written in C++ and with bindings for compilation to WebAssembly.
Loading...
Searching...
No Matches
opening_heat_loss.h
Go to the documentation of this file.
1#pragma once
2
16namespace opening_heat_loss {
17
34double totalHeatLoss(double area, double emissivity, double insideTemperature, double ambientTemperature,
35 double viewFactor, double percentTimeOpen);
36
51double totalHeatLossQuad(double emissivity, double length, double width, double ambientTemperature,
52 double insideTemperature, double percentTimeOpen, double viewFactor);
53
67double totalHeatLossCircular(double emissivity, double diameter, double ambientTemperature, double insideTemperature,
68 double percentTimeOpen, double viewFactor);
69
79double calculateViewFactorCircular(double thickness, double diameter);
80
91double calculateViewFactorQuad(double thickness, double length, double height);
92
93} // namespace opening_heat_loss
double totalHeatLossCircular(double emissivity, double diameter, double ambientTemperature, double insideTemperature, double percentTimeOpen, double viewFactor)
Calculates total heat loss for a circlular opening.
double calculateViewFactorCircular(double thickness, double diameter)
Calculates the view factor for a circular opening.
double totalHeatLoss(double area, double emissivity, double insideTemperature, double ambientTemperature, double viewFactor, double percentTimeOpen)
Calculates the total heat loss for a process heating equipment opening with a given area.
double calculateViewFactorQuad(double thickness, double length, double height)
Calculates the view factor for a rectangular opening.
double totalHeatLossQuad(double emissivity, double length, double width, double ambientTemperature, double insideTemperature, double percentTimeOpen, double viewFactor)
Calculates total heat loss for a rectangular opening.
Calculates heat losses from process heating equipment openings to the ambient.