measur-tools-suite 1.0.14-beta.224 → 1.0.14-beta.225

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/client.wasm CHANGED
Binary file
package/bin/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "measur-tools-suite",
3
- "version": "1.0.14-beta.224",
3
+ "version": "1.0.14-beta.225",
4
4
  "engines": {
5
5
  "node": "20.19.4",
6
6
  "npm": "10.8.2"
@@ -0,0 +1,169 @@
1
+ /**
2
+ * @defgroup process_heat_efficiency_improvement_calculator Process Heat Efficiency Improvement Calculator
3
+ * @ingroup process_heat_calculators
4
+ * @brief Calculates efficiency improvement and fuel savings for a fuel-fired furnace.
5
+ * @details This calculator estimates the benefit of efficiency improvements in a fuel-fired furnace by computing excess air, heat input, air properties, available heat, fuel savings, and new energy input. The calculation is based on standard thermodynamic relationships and is implemented in the @ref processHeatEfficiencyImprovement function.
6
+ *
7
+ * The calculation follows a top-down approach:
8
+ * 1. **Excess Air Calculation**: Compute current and new excess air from flue gas oxygen and air multipliers.
9
+ * 2. **Heat Input Calculation**: Compute current and new heat input from flue gas temperature and coefficients.
10
+ * 3. **Air Specific Heat Calculation**: Compute current and new air specific heat from combustion air temperature and coefficients.
11
+ * 4. **Air Correction Calculation**: Compute current and new air correction using air specific heat, flue gas temperature, and excess air.
12
+ * 5. **Combustion Air Correction Calculation**: Compute current and new combustion air correction using air specific heat, combustion air temperature, and excess air.
13
+ * 6. **Available Heat Calculation**: Compute current and new available heat as the sum of heat input, air correction, and combustion air correction.
14
+ * 7. **Fuel Savings Calculation**: Compute new fuel savings as the percent improvement in available heat.
15
+ * 8. **New Energy Input Calculation**: Compute new energy input based on current energy input and fuel savings.
16
+ *
17
+ * @heading{Excess Air Calculation}
18
+ * @copydoc pheic_excess_air_step
19
+ *
20
+ * @heading{Heat Input Calculation}
21
+ * @copydoc pheic_heat_input_step
22
+ *
23
+ * @heading{Air Specific Heat Calculation}
24
+ * @copydoc pheic_air_specific_heat_step
25
+ *
26
+ * @heading{Air Correction Calculation}
27
+ * @copydoc pheic_air_correction_step
28
+ *
29
+ * @heading{Combustion Air Correction Calculation}
30
+ * @copydoc pheic_combustion_air_correction_step
31
+ *
32
+ * @heading{Available Heat Calculation}
33
+ * @copydoc pheic_available_heat_step
34
+ *
35
+ * @heading{Fuel Savings Calculation}
36
+ * @copydoc pheic_fuel_savings_step
37
+ *
38
+ * @heading{New Energy Input Calculation}
39
+ * @copydoc pheic_new_energy_input_step
40
+ */
41
+
42
+ /**
43
+ * @defgroup pheic_excess_air_step Excess Air Calculation
44
+ * @ingroup process_heat_efficiency_improvement_calculator
45
+ * @brief Calculates current and new excess air.
46
+ * @details Computes the excess air percentage for both current and improved conditions based on measured flue gas oxygen and process-specific multipliers. Excess air is a key indicator of combustion efficiency and impacts fuel usage.
47
+ *
48
+ * @formula{pheic-excess-air; EA = \frac{100 \cdot S_A \cdot (\frac{O_2}{100})}{D_B - O_2M \cdot (\frac{O_2}{100})}}
49
+ *
50
+ * @symtable
51
+ * @symrow{EA; Excess air; \percent}
52
+ * @symrow{S_A; Stoichiometric air multiplier (8.52381); \unitless}
53
+ * @symrow{O_2; Flue gas oxygen (dry); \percent}
54
+ * @symrow{D_B; Denominator base (2.0); \unitless}
55
+ * @symrow{O_2M; O2 denominator multiplier (9.52381); \unitless}
56
+ * @endsymtable
57
+ */
58
+
59
+ /**
60
+ * @defgroup pheic_heat_input_step Heat Input Calculation
61
+ * @ingroup process_heat_efficiency_improvement_calculator
62
+ * @brief Calculates current and new heat input.
63
+ * @details Calculates the effective heat input to the process for both current and improved conditions, using flue gas temperature and empirical coefficients. Heat input reflects the energy delivered to the system.
64
+ *
65
+ * @formula{pheic-heat-input; HI = H_B + H_C \cdot T_{FG}}
66
+ *
67
+ * @symtable
68
+ * @symrow{HI; Heat input; \degreeFahrenheit}
69
+ * @symrow{H_B; Heat input base (95.0); \degreeFahrenheit}
70
+ * @symrow{H_C; Heat input temp coeff (-0.025); \degreeFahrenheit}
71
+ * @symrow{T_{FG}; Flue gas temperature; \degreeFahrenheit}
72
+ * @endsymtable
73
+ */
74
+
75
+ /**
76
+ * @defgroup pheic_air_specific_heat_step Air Specific Heat Calculation
77
+ * @ingroup process_heat_efficiency_improvement_calculator
78
+ * @brief Calculates current and new air specific heat.
79
+ * @details Determines the specific heat capacity of combustion air for both current and improved conditions, as a function of air temperature. This value is important for quantifying the energy required to heat the combustion air.
80
+ *
81
+ * @formula{pheic-air-specific-heat; C_{p,air} = C_B + C_C \cdot T_{CA}}
82
+ *
83
+ * @symtable
84
+ * @symrow{C_{p,air}; Air specific heat; \btu\per\pound\degreeFahrenheit}
85
+ * @symrow{C_B; Air specific heat base (0.017828518); \btu\per\pound\degreeFahrenheit}
86
+ * @symrow{C_C; Air specific heat temp coeff (0.000002556); \btu\per\pound\degreeFahrenheit}
87
+ * @symrow{T_{CA}; Combustion air temperature; \degreeFahrenheit}
88
+ * @endsymtable
89
+ */
90
+
91
+ /**
92
+ * @defgroup pheic_air_correction_step Air Correction Calculation
93
+ * @ingroup process_heat_efficiency_improvement_calculator
94
+ * @brief Calculates current and new air correction.
95
+ * @details Calculates the energy correction associated with heating excess air, for both current and improved conditions. This correction accounts for the energy lost to heating air that does not participate in combustion.
96
+ *
97
+ * @formula{pheic-air-correction; AC = -\left(A_B + C_{p,air} \cdot T_{FG}\right) \cdot \frac{EA}{100}}
98
+ *
99
+ * @symtable
100
+ * @symrow{AC; Air correction; \btu}
101
+ * @symrow{A_B; Air correction base (-1.07891327); \btu}
102
+ * @symrow{C_{p,air}; Air specific heat; \btu\per\pound\degreeFahrenheit}
103
+ * @symrow{T_{FG}; Flue gas temperature; \degreeFahrenheit}
104
+ * @symrow{EA; Excess air; \percent}
105
+ * @endsymtable
106
+ */
107
+
108
+ /**
109
+ * @defgroup pheic_combustion_air_correction_step Combustion Air Correction Calculation
110
+ * @ingroup process_heat_efficiency_improvement_calculator
111
+ * @brief Calculates current and new combustion air correction.
112
+ * @details Computes the energy correction for heating the total combustion air (including excess air), for both current and improved conditions. This step quantifies the energy required to bring all combustion air to the desired temperature.
113
+ *
114
+ * @formula{pheic-combustion-air-correction; CAC = \left(CA_B + C_{p,air} \cdot T_{CA}\right) \cdot \left(1 + \frac{EA}{100}\right)}
115
+ *
116
+ * @symtable
117
+ * @symrow{CAC; Combustion air correction; \btu}
118
+ * @symrow{CA_B; Combustion air correction base (-1.078913827); \btu}
119
+ * @symrow{C_{p,air}; Air specific heat; \btu\per\pound\degreeFahrenheit}
120
+ * @symrow{T_{CA}; Combustion air temperature; \degreeFahrenheit}
121
+ * @symrow{EA; Excess air; \percent}
122
+ * @endsymtable
123
+ */
124
+
125
+ /**
126
+ * @defgroup pheic_available_heat_step Available Heat Calculation
127
+ * @ingroup process_heat_efficiency_improvement_calculator
128
+ * @brief Calculates current and new available heat.
129
+ * @details Sums the heat input and both air corrections to determine the available heat for the process, for both current and improved conditions. Available heat represents the fraction of input energy that is actually usable for the process.
130
+ *
131
+ * @formula{pheic-available-heat; AH = HI + AC + CAC}
132
+ *
133
+ * @symtable
134
+ * @symrow{AH; Available heat; \percent}
135
+ * @symrow{HI; Heat input; \degreeFahrenheit}
136
+ * @symrow{AC; Air correction; \btu}
137
+ * @symrow{CAC; Combustion air correction; \btu}
138
+ * @endsymtable
139
+ */
140
+
141
+ /**
142
+ * @defgroup pheic_fuel_savings_step Fuel Savings Calculation
143
+ * @ingroup process_heat_efficiency_improvement_calculator
144
+ * @brief Calculates new fuel savings.
145
+ * @details Calculates the percentage of fuel saved by implementing the efficiency improvement, based on the increase in available heat. This value quantifies the benefit of the improvement in terms of reduced fuel consumption.
146
+ *
147
+ * @formula{pheic-fuel-savings; FS = \frac{AH_{new} - AH_{current}}{AH_{new}} \cdot 100}
148
+ *
149
+ * @symtable
150
+ * @symrow{FS; Fuel savings; \percent}
151
+ * @symrow{AH_{new}; New available heat; \percent}
152
+ * @symrow{AH_{current}; Current available heat; \percent}
153
+ * @endsymtable
154
+ */
155
+
156
+ /**
157
+ * @defgroup pheic_new_energy_input_step New Energy Input Calculation
158
+ * @ingroup process_heat_efficiency_improvement_calculator
159
+ * @brief Calculates new energy input.
160
+ * @details Determines the new required energy input to the process after efficiency improvements, accounting for the calculated fuel savings. This step provides the expected reduction in energy demand.
161
+ *
162
+ * @formula{pheic-new-energy-input; EI_{new} = EI_{current} \cdot \left(1 - \frac{FS}{100}\right)}
163
+ *
164
+ * @symtable
165
+ * @symrow{EI_{new}; New energy input; \MMBtu\per\hour}
166
+ * @symrow{EI_{current}; Current energy input; \MMBtu\per\hour}
167
+ * @symrow{FS; Fuel savings; \percent}
168
+ * @endsymtable
169
+ */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "measur-tools-suite",
3
- "version": "1.0.14-beta.224",
3
+ "version": "1.0.14-beta.225",
4
4
  "engines": {
5
5
  "node": "20.19.4",
6
6
  "npm": "10.8.2"