measur-tools-suite 1.0.13-beta.148 → 1.0.13-beta.149

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.13-beta.148",
3
+ "version": "1.0.13-beta.149",
4
4
  "engines": {
5
5
  "node": "20.19.4",
6
6
  "npm": "10.8.2"
@@ -1,4 +1,37 @@
1
1
  /**
2
2
  * @defgroup leakage_heat_loss_calculator Leakage Heat Loss Calculator
3
3
  * @ingroup heat_loss_calculators
4
+ * @brief Calculates heat losses from hot gas leakage in process heating equipment.
5
+ * @details This calculator estimates the heat loss due to hot gases escaping from a furnace through openings other than the flue, under positive pressure conditions. The calculation uses furnace draft pressure, opening area, gas and ambient temperatures, a coefficient of discharge, specific gravity, and a correction factor. The method is based on standard industrial practice and is suitable for furnaces operating at positive pressure. Relevant formulas and symbol definitions are documented below.
6
+ *
7
+ * @heading{Leakage Heat Loss}
8
+ * @copydoc leakage_heat_loss_formula
9
+ */
10
+
11
+ /**
12
+ * @defgroup leakage_heat_loss_formula Leakage Heat Loss Formula
13
+ * @ingroup leakage_heat_loss_calculator
14
+ * @formula{leakage-heat-loss; Q = c_{psv} \cdot \text{SCFH} \cdot (T_{\text{leak}} - T_{\text{amb}})}
15
+ * @formula{leakage-cpsv; c_{psv} = 0.0793 \cdot c_{pm}}
16
+ * @formula{leakage-cpm; c_{pm} = 0.2371 - 9 \times 10^{-6} \cdot T_{\text{midpoint}} + 7 \times 10^{-8} \cdot T_{\text{midpoint}}^2 - 3 \times 10^{-11} \cdot T_{\text{midpoint}}^3}
17
+ * @formula{leakage-midpoint; T_{\text{midpoint}} = \frac{T_{\text{leak}} + T_{\text{amb}}}{2}}
18
+ * @formula{leakage-scfh; \text{SCFH} = \text{CFH} \cdot \sqrt{\frac{520}{460 + T_{\text{leak}}}}}
19
+ * @formula{leakage-cfh; \text{CFH} = 1655 \cdot C_{d} \cdot f_{\text{corr}} \cdot (A \cdot 144) \cdot \sqrt{\frac{P}{SG}}}
20
+ * @subheading{Where:}
21
+ * @symtable
22
+ * @symrow{Q; Heat loss; \btu\per\hour}
23
+ * @symrow{c_{psv}; Specific heat of gas at average temperature; \btu\per\cubicFoot\degreeFahrenheit}
24
+ * @symrow{c_{pm}; Specific heat of gas at midpoint temperature; \btu\per\pound\degreeFahrenheit}
25
+ * @symrow{T_{\text{midpoint}}; Midpoint temperature; \degreeFahrenheit}
26
+ * @symrow{T_{\text{amb}}; Ambient temperature; \degreeFahrenheit}
27
+ * @symrow{T_{\text{leak}}; Temperature of leaking gases; \degreeFahrenheit}
28
+ * @symrow{\text{SCFH}; Standard cubic feet per hour of leakage; \cubicFoot\per\hour}
29
+ * @symrow{SG; Specific gravity of gas; \unitless}
30
+ * @symrow{P; Furnace draft pressure; \inchWaterColumn}
31
+ * @symrow{A; Opening area; \foot\squared}
32
+ * @symrow{f_{\text{corr}}; Correction factor; \unitless}
33
+ * @symrow{C_{d}; Coefficient of discharge or flow coefficient; \unitless}
34
+ * @symrow{\text{CFH}; Volumetric flow rate of leakage; \cubicFoot\per\hour}
35
+ * @endsymtable
36
+ * @note The coefficient of discharge depends on the angle of convergence in degrees. (Source: Eclipse Combustion Engineering Guide, 1986, Chapter 1, Page #6) [PDF link](https://www.mathscinotes.com/wp-content/uploads/2014/12/Eclipse-Engineering-Guide.pdf)
4
37
  */
@@ -83,6 +83,8 @@ window.MathJax = {
83
83
 
84
84
  \DeclareSIUnit{\standardCubicFeet}{scf}
85
85
  \DeclareSIUnit{\scf}{scf}
86
+ \DeclareSIUnit{\cubicFoot}{ft^3}
87
+ \DeclareSIUnit{\inchWaterColumn}{in\,WC}
86
88
  `);
87
89
  }
88
90
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "measur-tools-suite",
3
- "version": "1.0.13-beta.148",
3
+ "version": "1.0.13-beta.149",
4
4
  "engines": {
5
5
  "node": "20.19.4",
6
6
  "npm": "10.8.2"