measur-tools-suite 1.0.14-beta.156 → 1.0.14-beta.157

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-beta.156",
3
+ "version": "1.0.14-beta.157",
4
4
  "engines": {
5
5
  "node": "20.19.4",
6
6
  "npm": "10.8.2"
@@ -0,0 +1,29 @@
1
+ /**
2
+ * @defgroup liquid_cooling_heat_loss_calculator Liquid Cooling Heat Loss Calculator
3
+ * @ingroup heat_loss_calculators
4
+ * @brief Calculates heat loss due to liquid cooling in process heating equipment.
5
+ * @details This calculator estimates the heat removed by liquid cooling systems, using flow rate, liquid density, inlet and outlet temperatures, specific heat, and a correction factor. The algorithm is suitable for modeling cooling losses in industrial furnaces, ovens, and similar systems, for liquids other than water.
6
+ * @note If the cooling liquid is water, use the @ref water_cooling_heat_loss_calculator instead for more accurate water property calculations.
7
+ *
8
+ * @heading{Total Liquid Cooling Heat Loss}
9
+ * @copydoc liquid_cooling_heat_loss_formula
10
+ *
11
+ * @see Perry’s Chemical Engineers’ Handbook; NIST Engineering Statistics
12
+ */
13
+
14
+ /**
15
+ * @defgroup liquid_cooling_heat_loss_formula Liquid Cooling Heat Loss Formula
16
+ * @ingroup liquid_cooling_heat_loss_calculator
17
+ * @formula{liquid-cooling-heat-loss; Q_\text{cool} = FR \cdot 60 \cdot \rho_{l,lb/ft^3} \cdot SH \cdot \Delta T \cdot CF}
18
+ * @subheading{Symbols}
19
+ * @symtable
20
+ * @symrow{Q_\text{cool}; Liquid cooling heat loss; \btu\per\hour}
21
+ * @symrow{FR; Liquid flow rate; \gallon\per\minute}
22
+ * @symrow{60; Minutes per hour (GPM to GPH conversion); \unitless}
23
+ * @symrow{\rho_{l,lb/ft^3}; Liquid density; \pound\per\cubic\foot}
24
+ * @symrow{SH; Specific heat of liquid; \btu\per\pound\per\degreeFahrenheit}
25
+ * @symrow{\Delta T; Temperature rise (outlet - inlet); \degreeFahrenheit}
26
+ * @symrow{CF; Correction factor; \unitless}
27
+ * @endsymtable
28
+ * @details The formula multiplies flow rate (GPM), minutes per hour, liquid density, specific heat, temperature rise, and correction factor to obtain total heat loss.
29
+ */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "measur-tools-suite",
3
- "version": "1.0.14-beta.156",
3
+ "version": "1.0.14-beta.157",
4
4
  "engines": {
5
5
  "node": "20.19.4",
6
6
  "npm": "10.8.2"