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
energy_input_exhaust_gas_heat_loss.h
Go to the documentation of this file.
1
2
3#pragma once
4
19
32double availableHeat(double excess_air, double combustion_air_temp, double exhaust_gas_temp,
33 double total_heat_input = 1);
34
44double heatDelivered(double available_heat, double total_heat_input);
45
55double totalHeatLoss(double heat_delivered, double available_heat);
56
69
81EnergyInputExhaustGasResult calculate(double excess_air, double combustion_air_temp, double exhaust_gas_temp,
82 double total_heat_input = 1);
83
84} // namespace energy_input_exhaust_gas_heat_loss
double availableHeat(double excess_air, double combustion_air_temp, double exhaust_gas_temp, double total_heat_input=1)
Calculates available heat for a non-EAF electric furnace.
double totalHeatLoss(double heat_delivered, double available_heat)
Calculates exhaust gas losses for a non-EAF electric furnace.
EnergyInputExhaustGasResult calculate(double excess_air, double combustion_air_temp, double exhaust_gas_temp, double total_heat_input=1)
Calculates available heat, heat delivered, and exhaust gas losses for a non-EAF electric furnace.
double heatDelivered(double available_heat, double total_heat_input)
Calculates heat delivered for a non-EAF electric furnace.
Calculates available heat, heat delivered, and exhaust gas losses for non-EAF electric furnaces.
Result struct for energy input exhaust gas heat loss calculations.