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
Classes | Namespaces | Functions

Efficiency improvement calculations for process heating systems. More...

Go to the source code of this file.

Classes

struct  process_heat_efficiency_improvement::ProcessHeatEfficiencyImprovementResults
 Results of the process heat efficiency improvement calculation. More...
 

Namespaces

namespace  process_heat_efficiency_improvement
 Efficiency improvement calculations for process heating systems.
 

Functions

ProcessHeatEfficiencyImprovementResults process_heat_efficiency_improvement::processHeatEfficiencyImprovement (double current_flue_gas_oxygen, double new_flue_gas_oxygen, double current_flue_gas_temp, double new_flue_gas_temp, double current_combustion_air_temp, double new_combustion_air_temp, double current_energy_input)
 Calculates the efficiency improvement for a fuel fired furnace.
 
double process_heat_efficiency_improvement::calculateExcessAir (double flue_gas_oxygen, double stoich_air_multiplier, double excess_air_denominator_base, double excess_air_o2_multiplier)
 Calculates excess air percentage.
 
double process_heat_efficiency_improvement::calculateHeatInput (double flue_gas_temp, double heat_input_base, double heat_input_temp_coeff)
 Calculates heat input.
 
double process_heat_efficiency_improvement::calculateAirSpecificHeat (double combustion_air_temp, double air_specific_heat_base, double air_specific_heat_coeff)
 Calculates air specific heat.
 
double process_heat_efficiency_improvement::calculateAirCorrection (double air_correction_base, double air_specific_heat, double flue_gas_temp, double excess_air)
 Calculates air correction.
 
double process_heat_efficiency_improvement::calculateCombustionAirCorrection (double combustion_air_correction_base, double air_specific_heat, double combustion_air_temp, double excess_air)
 Calculates combustion air correction.
 
double process_heat_efficiency_improvement::calculateAvailableHeat (double heat_input, double air_correction, double combustion_air_correction)
 Calculates available heat.
 
double process_heat_efficiency_improvement::calculateFuelSavings (double new_available_heat, double current_available_heat)
 Calculates new fuel savings.
 
double process_heat_efficiency_improvement::calculateNewEnergyInput (double current_energy_input, double new_fuel_savings)
 Calculates new energy input.