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
air_heating_using_exhaust.h
Go to the documentation of this file.
1#pragma once
4
18
32
51 double flue_temperature,
52 double excess_air,
53 double fire_rate,
54 double airflow,
55 double inlet_temperature,
56 double heater_efficiency,
57 double hx_efficiency,
58 double operating_hours
59);
60
79 double flue_temperature,
80 double excess_air,
81 double fire_rate,
82 double airflow,
83 double inlet_temperature,
84 double heater_efficiency,
85 double hx_efficiency,
86 double operating_hours
87);
88
106 double stoich_air,
107 double fuel_heating_value,
108 double flue_temperature,
109 double excess_air,
110 double fire_rate,
111 double airflow,
112 double inlet_temperature,
113 double heater_efficiency,
114 double hx_efficiency,
115 double operating_hours
116);
117
118} // namespace air_heating_using_exhaust
119
Represents a fuel gas mixture and its properties for process heat calculations.
AirHeatingUsingExhaustResults airHeatingUsingExhaustWithSolidLiquidFlueGasMaterial(const solid_liquid_flue_gas_material_data::SolidLiquidFlueGasMaterial &material, double flue_temperature, double excess_air, double fire_rate, double airflow, double inlet_temperature, double heater_efficiency, double hx_efficiency, double operating_hours)
Calculates air heating using exhaust for solid/liquid fuels.
AirHeatingUsingExhaustResults airHeatingUsingExhaustWithGasComposition(const gas_composition::GasComposition &gas_composition, double flue_temperature, double excess_air, double fire_rate, double airflow, double inlet_temperature, double heater_efficiency, double hx_efficiency, double operating_hours)
Calculates air heating using exhaust for gaseous fuels.
Air heating using exhaust calculations for process heating systems.
AirHeatingUsingExhaustResults airHeatingUsingExhaust(double stoich_air, double fuel_heating_value, double flue_temperature, double excess_air, double fire_rate, double airflow, double inlet_temperature, double heater_efficiency, double hx_efficiency, double operating_hours)
Internal calculation for air heating using exhaust, given stoichiometric air and fuel heating value.
Contains functions for gas composition calculations.
Defines default solid/liquid flue gas material data for process heat calculations.
Results of the air heating using exhaust calculation.
Struct to hold default solid/liquid flue gas material data.