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

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.22",
4
4
  "engines": {
5
5
  "node": "20.19.4",
6
6
  "npm": "10.8.2"
@@ -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.22",
4
4
  "engines": {
5
5
  "node": "20.19.4",
6
6
  "npm": "10.8.2"