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
gas_flue_gas_material.h
Go to the documentation of this file.
1#pragma once
3using namespace gas_composition;
4
18namespace gas_flue_gas_material {
19
32 double stoich_air;
33 double excess_air;
34 double available_heat;
35 double specific_heat;
36 double total_generated;
37 double heat_value_fuel;
38 double flue_gas_o2;
39};
40
54ProcessHeatProperties processHeatProperties(const GasComposition compositions, const double flue_gas_temp,
55 const double flue_gas_o2, const double comb_air_temp,
56 const double fuel_temp, const double ambient_air_temp = 60,
57 const double comb_air_moisture = 0, const double excess_air = 0);
58
69double totalHeatLoss(double flue_gas_temperature, double excess_air_percentage, double combustion_air_temperature,
70 const GasComposition& compositions, double fuel_temperature);
71
72} // namespace gas_flue_gas_material
Represents a fuel gas mixture and its properties for process heat calculations.
ProcessHeatProperties processHeatProperties(const GasComposition compositions, const double flue_gas_temp, const double flue_gas_o2, const double comb_air_temp, const double fuel_temp, const double ambient_air_temp=60, const double comb_air_moisture=0, const double excess_air=0)
Calculates process heat properties for the fuel gas mixture and operating conditions.
double totalHeatLoss(double flue_gas_temperature, double excess_air_percentage, double combustion_air_temperature, const GasComposition &compositions, double fuel_temperature)
Calculates the total heat loss for flue gas using the provided parameters.
Contains functions for gas composition calculations.
Contains functions for flue gas material calculations.
Calculates the total heat loss for flue gas using the provided parameters.