measur-tools-suite 1.0.14-rc.15 → 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.15",
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,28 @@
1
+ /**
2
+ * @defgroup auxiliary_power_used_calculator Auxiliary Power Used Calculator
3
+ * @ingroup heat_loss_calculators
4
+ * @brief Calculates auxiliary power usage for electrical systems in process heating equipment.
5
+ * @details This calculator estimates the energy use of motors and auxiliary systems associated with process heating equipment. It uses electrical parameters and operating time to compute total power consumption, converting electrical power from kW to BTU/hr using a physical constant. The algorithm is suitable for modeling auxiliary energy losses in industrial furnaces, ovens, and similar systems.
6
+ *
7
+ * @heading{Total Auxiliary Power Used}
8
+ * @copydoc auxiliary_power_used_formula
9
+ *
10
+ * @see Perry’s Chemical Engineers’ Handbook; NIST Engineering Statistics; ASHRAE Handbook
11
+ */
12
+
13
+ /**
14
+ * @defgroup auxiliary_power_used_formula Auxiliary Power Used Formula
15
+ * @ingroup auxiliary_power_used_calculator
16
+ * @formula{aux-power-used; Q_\text{aux} = \sqrt{P} \cdot V \cdot I \cdot PF \cdot OT \cdot \frac{1}{1000} \cdot k_{\text{kW}\to\text{BTU/hr}}}
17
+ * @subheading{Symbols}
18
+ * @symtable
19
+ * @symrow{Q_\text{aux}; Auxiliary power used; \btu\per\hour}
20
+ * @symrow{P; Motor phase; \unitless}
21
+ * @symrow{V; Supply voltage; \volt}
22
+ * @symrow{I; Average current; \ampere}
23
+ * @symrow{PF; Power factor; \unitless}
24
+ * @symrow{OT; Operating time (fraction, 0-1); \unitless}
25
+ * @symrow{k_{\text{kW}\to\text{BTU/hr}}; Conversion factor; \btu\per\hour\per\kilowatt}
26
+ * @endsymtable
27
+ * @details The formula first computes electrical power in kW, then converts to BTU/hr using the physical constant @ref physics::conversions::kKilowattToBtuPerHour.
28
+ */
@@ -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
+ */
@@ -85,6 +85,7 @@ window.MathJax = {
85
85
  \DeclareSIUnit{\scf}{scf}
86
86
  \DeclareSIUnit{\cubicFoot}{ft^3}
87
87
  \DeclareSIUnit{\inchWaterColumn}{in\,WC}
88
+ \DeclareSIUnit{\kilowatt}{kW}
88
89
  `);
89
90
  }
90
91
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "measur-tools-suite",
3
- "version": "1.0.14-rc.15",
3
+ "version": "1.0.14-rc.17",
4
4
  "engines": {
5
5
  "node": "20.19.4",
6
6
  "npm": "10.8.2"