measur-tools-suite 1.0.14-rc.22 → 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.22",
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
+ */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "measur-tools-suite",
3
- "version": "1.0.14-rc.22",
3
+ "version": "1.0.14-rc.23",
4
4
  "engines": {
5
5
  "node": "20.19.4",
6
6
  "npm": "10.8.2"