measur-tools-suite 1.0.14-rc.16 → 1.0.14-rc.17

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.16",
3
+ "version": "1.0.14-rc.17",
4
4
  "engines": {
5
5
  "node": "20.19.4",
6
6
  "npm": "10.8.2"
@@ -0,0 +1,42 @@
1
+ /**
2
+ * @defgroup water_cooling_heat_loss_calculator Water Cooling Heat Loss Calculator
3
+ * @ingroup heat_loss_calculators
4
+ * @brief Calculates heat loss due to water cooling in process heating equipment.
5
+ * @details This calculator estimates the heat removed by water cooling systems, using flow rate, inlet and outlet temperatures, and a correction factor. It accounts for water density variation with temperature and converts between SI and U.S. Customary units as needed. The algorithm is suitable for modeling cooling losses in industrial furnaces, ovens, and similar systems.
6
+ *
7
+ * @heading{Total Water Cooling Heat Loss}
8
+ * @copydoc water_cooling_heat_loss_formula
9
+ *
10
+ * @heading{Water Density Calculation}
11
+ * @copydoc water_density_formula
12
+ *
13
+ * @see Perry’s Chemical Engineers’ Handbook; NIST Engineering Statistics; Tanaka et al. (2001)
14
+ */
15
+
16
+ /**
17
+ * @defgroup water_cooling_heat_loss_formula Water Cooling Heat Loss Formula
18
+ * @ingroup water_cooling_heat_loss_calculator
19
+ * @formula{water-cooling-heat-loss; Q_\text{cool} = FR \cdot 60 \cdot \rho_{w,lb/gal} \cdot \Delta T \cdot CF}
20
+ * @subheading{Symbols}
21
+ * @symtable
22
+ * @symrow{Q_\text{cool}; Water cooling heat loss; \btu\per\hour}
23
+ * @symrow{FR; Water flow rate; \gallon\per\minute}
24
+ * @symrow{60; Minutes per hour (GPM to GPH conversion); \unitless}
25
+ * @symrow{\rho_{w,lb/gal}; Water density; \pound\per\gallon}
26
+ * @symrow{\Delta T; Temperature rise (outlet - inlet); \degreeFahrenheit}
27
+ * @symrow{CF; Correction factor; \unitless}
28
+ * @endsymtable
29
+ * @details Water density is calculated using Tanaka et al. (2001) empirical formula, then converted to lb/gal. The formula multiplies flow rate (GPM), minutes per hour, water density, temperature rise, and correction factor to obtain total heat loss.
30
+ */
31
+
32
+ /**
33
+ * @defgroup water_density_formula Water Density Calculation Formula
34
+ * @ingroup water_cooling_heat_loss_calculator
35
+ * @formula{water-density-tanaka; \rho_w = 1000 \left[1 - \frac{(T_C + 288.9414)}{508929.2 (T_C + 68.12963)} (T_C - 3.9863)^2 \right]}
36
+ * @subheading{Symbols}
37
+ * @symtable
38
+ * @symrow{\rho_w; Water density; \kilogram\per\meter\cubed}
39
+ * @symrow{T_C; Average water temperature; \degreeCelsius}
40
+ * @endsymtable
41
+ * @details This formula is from Tanaka et al. (2001) and is used to calculate the density of water as a function of temperature in degrees Celsius.
42
+ */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "measur-tools-suite",
3
- "version": "1.0.14-rc.16",
3
+ "version": "1.0.14-rc.17",
4
4
  "engines": {
5
5
  "node": "20.19.4",
6
6
  "npm": "10.8.2"