measur-tools-suite 1.0.14-rc.21 → 1.0.14-rc.23

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-rc.21",
3
+ "version": "1.0.14-rc.23",
4
4
  "engines": {
5
5
  "node": "20.19.4",
6
6
  "npm": "10.8.2"
@@ -0,0 +1,102 @@
1
+ /**
2
+ * @defgroup energy_input_exhaust_gas_heat_loss_calculator Energy Input Exhaust Gas Heat Loss Calculation
3
+ * @ingroup heat_loss_calculators
4
+ * @brief Calculates available heat, heat delivered, and exhaust gas losses for non-EAF electric furnaces.
5
+ * @details The following formulas describe the calculation of available heat, heat delivered, exhaust gas losses, and all intermediate steps. Each step is documented with its own formula and symbol table.
6
+ *
7
+ * @heading{Exhaust Gas Losses}
8
+ * @copydoc energy_input_exhaust_gas_total_heat_loss_cpp_formula
9
+ *
10
+ * @heading{Heat Delivered}
11
+ * @copydoc energy_input_exhaust_gas_heat_delivered_cpp_formula
12
+ *
13
+ * @heading{Available Heat}
14
+ * @copydoc energy_input_exhaust_gas_available_heat_cpp_formula
15
+ *
16
+ * @heading{Specific Heat of Air}
17
+ * @copydoc energy_input_exhaust_gas_specific_heat_air_cpp_formula
18
+ *
19
+ * @heading{Air Correction}
20
+ * @copydoc energy_input_exhaust_gas_air_correction_cpp_formula
21
+ *
22
+ * @heading{Combustion Air Correction}
23
+ * @copydoc energy_input_exhaust_gas_combustion_air_correction_cpp_formula
24
+ */
25
+
26
+ /**
27
+ * @defgroup energy_input_exhaust_gas_available_heat_cpp_formula Available Heat Formula
28
+ * @ingroup energy_input_exhaust_gas_heat_loss_calculator
29
+ * @formula{energy-input-exhaust-gas-available-heat-cpp; AH = 95 - 0.025 \cdot T_{exh} + AC + CAC}
30
+ * @subheading{Symbols}
31
+ * @symtable
32
+ * @symrow{AH; Available heat percent; \percent}
33
+ * @symrow{T_{exh}; Exhaust gas temperature; \degreeFahrenheit}
34
+ * @symrow{AC; Air correction; \percent}
35
+ * @symrow{CAC; Combustion air correction; \percent}
36
+ * @endsymtable
37
+ */
38
+
39
+ /**
40
+ * @defgroup energy_input_exhaust_gas_specific_heat_air_cpp_formula Specific Heat of Air Formula
41
+ * @ingroup energy_input_exhaust_gas_heat_loss_calculator
42
+ * @formula{energy-input-exhaust-gas-specific-heat-air-cpp; SH_{air} = 0.01783 + 0.00000256 \cdot T_{air}}
43
+ * @subheading{Symbols}
44
+ * @symtable
45
+ * @symrow{SH_{air}; Specific heat of air; \btu\per\pound\degreeFahrenheit}
46
+ * @symrow{T_{air}; Combustion air temperature; \degreeFahrenheit}
47
+ * @symrow{.01783; Base specific heat of air; \unitless}
48
+ * @symrow{0.00000256; Specific heat air coefficient; \unitless}
49
+ * @endsymtable
50
+ */
51
+
52
+ /**
53
+ * @defgroup energy_input_exhaust_gas_air_correction_cpp_formula Air Correction Formula
54
+ * @ingroup energy_input_exhaust_gas_heat_loss_calculator
55
+ * @formula{energy-input-exhaust-gas-air-correction-cpp; AC = -[(-1.078913827 + SH_{air} \cdot T_{exh})] \cdot EA/100}
56
+ * @subheading{Symbols}
57
+ * @symtable
58
+ * @symrow{AC; Air correction; \percent}
59
+ * @symrow{T_{exh}; Exhaust gas temperature; \degreeFahrenheit}
60
+ * @symrow{SH_{air}; Specific heat of air; \btu\per\pound\degreeFahrenheit}
61
+ * @symrow{-1.078913827; Air correction base; \unitless}
62
+ * @symrow{EA; Excess air as percent; \percent}
63
+ * @endsymtable
64
+ */
65
+
66
+ /**
67
+ * @defgroup energy_input_exhaust_gas_combustion_air_correction_cpp_formula Combustion Air Correction Formula
68
+ * @ingroup energy_input_exhaust_gas_heat_loss_calculator
69
+ * @formula{energy-input-exhaust-gas-combustion-air-correction-cpp; CAC = (-1.078913827 + SH_{air} \cdot T_{air}) \cdot (1 + EA/100)}
70
+ * @subheading{Symbols}
71
+ * @symtable
72
+ * @symrow{CAC; Combustion air correction; \percent}
73
+ * @symrow{SH_{air}; Specific heat of air; \btu\per\pound\degreeFahrenheit}
74
+ * @symrow{-1.078913827; Air correction base; \unitless}
75
+ * @symrow{T_{air}; Combustion air temperature; \degreeFahrenheit}
76
+ * @symrow{EA; Excess air as percent; \percent}
77
+ * @endsymtable
78
+ */
79
+
80
+ /**
81
+ * @defgroup energy_input_exhaust_gas_heat_delivered_cpp_formula Heat Delivered Formula
82
+ * @ingroup energy_input_exhaust_gas_heat_loss_calculator
83
+ * @formula{energy-input-exhaust-gas-heat-delivered-cpp; Q_{delivered} = Q_{input} \cdot \frac{AH}{100}}
84
+ * @subheading{Symbols}
85
+ * @symtable
86
+ * @symrow{Q_{delivered}; Heat delivered; \btu\per\hour}
87
+ * @symrow{Q_{input}; Total heat input; \btu\per\hour}
88
+ * @symrow{AH; Available heat percent; \percent}
89
+ * @endsymtable
90
+ */
91
+
92
+ /**
93
+ * @defgroup energy_input_exhaust_gas_total_heat_loss_cpp_formula Exhaust Gas Losses Formula
94
+ * @ingroup energy_input_exhaust_gas_heat_loss_calculator
95
+ * @formula{energy-input-exhaust-gas-total-heat-loss-cpp; Q_{loss} = Q_{delivered} \cdot \frac{100 - AH}{AH}}
96
+ * @subheading{Symbols}
97
+ * @symtable
98
+ * @symrow{Q_{loss}; Exhaust gas losses; \btu\per\hour}
99
+ * @symrow{Q_{delivered}; Heat delivered; \btu\per\hour}
100
+ * @symrow{AH; Available heat percent; \percent}
101
+ * @endsymtable
102
+ */
@@ -0,0 +1,77 @@
1
+ /**
2
+ * @defgroup exhaust_gas_heat_loss_electric_arc_furnace_calculator Exhaust Gas Heat Loss Calculation (Electric Arc Furnace)
3
+ * @ingroup heat_loss_calculators
4
+ * @brief Calculates total heat loss from exhaust gas in electric arc furnaces (EAF).
5
+ * @details The following formulas describe the calculation of heat loss from exhaust gases, including chemical heat, total heat value per unit volume, corrected volume flow rate, and total heat loss. Each step is documented with its own formula and symbol table.
6
+ *
7
+ * @heading{Total Heat Loss}
8
+ * @copydoc exhaust_gas_total_heat_loss_cpp_formula
9
+ *
10
+ * @heading{Corrected Volume Flow Rate}
11
+ * @copydoc exhaust_gas_total_vfr_cpp_formula
12
+ *
13
+ * @heading{Total Heat Value per Unit Volume}
14
+ * @copydoc exhaust_gas_total_heat_value_cpp_formula
15
+ *
16
+ * @heading{Chemical Heat}
17
+ * @copydoc exhaust_gas_chemical_heat_cpp_formula
18
+ *
19
+ */
20
+
21
+ /**
22
+ * @defgroup exhaust_gas_chemical_heat_cpp_formula Chemical Heat Formula
23
+ * @ingroup exhaust_gas_heat_loss_electric_arc_furnace_calculator
24
+ * @formula{exhaust-gas-chemical-heat-cpp; Q_{chem} = \frac{CO \cdot 321 + H_{2} \cdot 325 + Combustibles \cdot 1020}{100}}
25
+ * @subheading{Symbols}
26
+ * @symtable
27
+ * @symrow{Q_{chem}; Chemical heat per unit volume; \btu}
28
+ * @symrow{CO; Percent CO in exhaust gas; \percent}
29
+ * @symrow{H_{2}; Percent @math{H_2} in exhaust gas; \percent}
30
+ * @symrow{Combustibles; Percent other combustibles in exhaust gas; \percent}
31
+ * @symrow{321; Heating value for CO; \btu\per\percent}
32
+ * @symrow{325; Heating value for @math{H_2}; \btu\per\percent}
33
+ * @symrow{1020; Heating value for other combustibles; \btu\per\percent}
34
+ * @endsymtable
35
+ */
36
+
37
+ /**
38
+ * @defgroup exhaust_gas_total_heat_value_cpp_formula Total Heat Value per Unit Volume Formula
39
+ * @ingroup exhaust_gas_heat_loss_electric_arc_furnace_calculator
40
+ * @formula{exhaust-gas-total-heat-value-cpp; Q_{flue} = Q_{chem} + 0.0225 \cdot (T_{gas} - T_{ambient}) + Dust_{loading} \cdot 0.25 \cdot (T_{gas} - T_{ambient})}
41
+ * @subheading{Symbols}
42
+ * @symtable
43
+ * @symrow{Q_{flue}; Total heat value per unit volume; \btu}
44
+ * @symrow{Q_{chem}; Chemical heat per unit volume; \btu}
45
+ * @symrow{0.0225; Sensible heat factor; \btu\per\degreeFahrenheit}
46
+ * @symrow{T_{gas}; Exhaust gas temperature; \degreeFahrenheit}
47
+ * @symrow{T_{ambient}; Ambient/reference temperature; \degreeFahrenheit}
48
+ * @symrow{Dust_{loading}; Dust loading in exhaust gas; \pound\per\cubic\foot}
49
+ * @symrow{0.25; Dust heat factor; \btu\per\degreeFahrenheit}
50
+ * @endsymtable
51
+ */
52
+
53
+ /**
54
+ * @defgroup exhaust_gas_total_vfr_cpp_formula Corrected Volume Flow Rate Formula
55
+ * @ingroup exhaust_gas_heat_loss_electric_arc_furnace_calculator
56
+ * @formula{exhaust-gas-total-vfr-cpp; VFR_{total} = VFR_{measured} \cdot \frac{T_{std}}{460 + T_{gas}}}
57
+ * @subheading{Symbols}
58
+ * @symtable
59
+ * @symrow{VFR_{total}; Corrected volume flow rate; \ft\cubed\per\minute}
60
+ * @symrow{VFR_{measured}; Measured volume flow rate; \ft\cubed\per\minute}
61
+ * @symrow{T_{std}; Standard gas temperature (520 °F); \degreeFahrenheit}
62
+ * @symrow{T_{gas}; Exhaust gas temperature; \degreeFahrenheit}
63
+ * @endsymtable
64
+ */
65
+
66
+ /**
67
+ * @defgroup exhaust_gas_total_heat_loss_cpp_formula Total Heat Loss Formula
68
+ * @ingroup exhaust_gas_heat_loss_electric_arc_furnace_calculator
69
+ * @formula{exhaust-gas-total-heat-loss-cpp; Q_{total} = VFR_{total} \cdot Q_{flue} \cdot 60}
70
+ * @subheading{Symbols}
71
+ * @symtable
72
+ * @symrow{Q_{total}; Total heat loss; \btu\per\hour}
73
+ * @symrow{VFR_{total}; Corrected volume flow rate; \ft\cubed\per\minute}
74
+ * @symrow{Q_{flue}; Total heat value per unit volume; \btu}
75
+ * @symrow{60; Minutes per hour; \minute\per\hour}
76
+ * @endsymtable
77
+ */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "measur-tools-suite",
3
- "version": "1.0.14-rc.21",
3
+ "version": "1.0.14-rc.23",
4
4
  "engines": {
5
5
  "node": "20.19.4",
6
6
  "npm": "10.8.2"