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

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.159",
4
4
  "engines": {
5
5
  "node": "20.19.4",
6
6
  "npm": "10.8.2"
@@ -0,0 +1,30 @@
1
+ /**
2
+ * @defgroup gas_cooling_heat_loss_calculator Gas Cooling Heat Loss Calculator
3
+ * @ingroup heat_loss_calculators
4
+ * @brief Calculates heat loss due to gas (including air) cooling in process heating equipment.
5
+ * @details This calculator estimates the heat removed by gas cooling systems, using flow rate, gas 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 gases including air.
6
+ * @heading{Total Gas Cooling Heat Loss}
7
+ * @copydoc gas_cooling_heat_loss_formula
8
+ *
9
+ * @note For heat losses due to liquid cooling see @ref liquid_cooling_heat_loss_calculator or for water see @ref water_cooling_heat_loss_calculator.
10
+ *
11
+ *
12
+ * @see Perry’s Chemical Engineers’ Handbook; NIST Engineering Statistics
13
+ */
14
+
15
+ /**
16
+ * @defgroup gas_cooling_heat_loss_formula Gas Cooling Heat Loss Formula
17
+ * @ingroup gas_cooling_heat_loss_calculator
18
+ * @formula{gas-cooling-heat-loss; Q_\text{cool} = FR \cdot 60 \cdot \rho_{g,lb/ft^3} \cdot SH \cdot \Delta T \cdot CF}
19
+ * @subheading{Symbols}
20
+ * @symtable
21
+ * @symrow{Q_\text{cool}; Gas cooling heat loss; \btu\per\hour}
22
+ * @symrow{FR; Gas flow rate; \foot\cubed\per\minute}
23
+ * @symrow{60; Minutes per hour (SCFM to SCFH conversion); \unitless}
24
+ * @symrow{\rho_{g,lb/ft^3}; Gas density; \pound\per\cubic\foot}
25
+ * @symrow{SH; Specific heat of gas; \btu\per\scf\per\degreeFahrenheit}
26
+ * @symrow{\Delta T; Temperature rise (outlet - inlet); \degreeFahrenheit}
27
+ * @symrow{CF; Correction factor; \unitless}
28
+ * @endsymtable
29
+ * @details The formula multiplies flow rate (SCFM), minutes per hour, gas density, specific heat, temperature rise, and correction factor to obtain total heat loss.
30
+ */
@@ -0,0 +1,32 @@
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
+ *
12
+ * @note For heat losses due to gas cooling see @ref gas_cooling_heat_loss_calculator.
13
+ *
14
+ * @see Perry’s Chemical Engineers’ Handbook; NIST Engineering Statistics
15
+ */
16
+
17
+ /**
18
+ * @defgroup liquid_cooling_heat_loss_formula Liquid Cooling Heat Loss Formula
19
+ * @ingroup liquid_cooling_heat_loss_calculator
20
+ * @formula{liquid-cooling-heat-loss; Q_\text{cool} = FR \cdot 60 \cdot \rho_{l,lb/ft^3} \cdot SH \cdot \Delta T \cdot CF}
21
+ * @subheading{Symbols}
22
+ * @symtable
23
+ * @symrow{Q_\text{cool}; Liquid cooling heat loss; \btu\per\hour}
24
+ * @symrow{FR; Liquid flow rate; \gallon\per\minute}
25
+ * @symrow{60; Minutes per hour (GPM to GPH conversion); \unitless}
26
+ * @symrow{\rho_{l,lb/ft^3}; Liquid density; \pound\per\cubic\foot}
27
+ * @symrow{SH; Specific heat of liquid; \btu\per\pound\per\degreeFahrenheit}
28
+ * @symrow{\Delta T; Temperature rise (outlet - inlet); \degreeFahrenheit}
29
+ * @symrow{CF; Correction factor; \unitless}
30
+ * @endsymtable
31
+ * @details The formula multiplies flow rate (GPM), minutes per hour, liquid density, specific heat, temperature rise, and correction factor to obtain total heat loss.
32
+ */
@@ -7,8 +7,7 @@
7
7
  * of process heating equipment to the surrounding environment. This can occur via convection and radiation. Wall losses
8
8
  * are high for systems that are poorly insulated or use poorly designed materials or surfaces. The calculator computes
9
9
  * the total heat loss as the sum of convective and radiative heat losses, adjusted by a correction factor. Relevant
10
- * formulas and factors are documented below. Heat losses due to openings in the unit are covered by the
11
- * @ref opening_heat_loss_calculator, @ref leakage_heat_loss_calculator, or @ref atmosphere_heat_loss_calculator.
10
+ * formulas and factors are documented below.
12
11
  *
13
12
  * @heading{Total Heat Loss}
14
13
  * @copydoc wall_total_heat_loss_formula
@@ -10,6 +10,9 @@
10
10
  * @heading{Water Density Calculation}
11
11
  * @copydoc water_density_formula
12
12
  *
13
+ * @note For heat losses due to liquid cooling see @ref liquid_cooling_heat_loss_calculator or for gas cooling see @ref gas_cooling_heat_loss_calculator.
14
+ *
15
+ *
13
16
  * @see Perry’s Chemical Engineers’ Handbook; NIST Engineering Statistics; Tanaka et al. (2001)
14
17
  */
15
18
 
package/docs/mainpage.dox CHANGED
@@ -15,16 +15,16 @@
15
15
  * analysis alongside simple equipment and property calculators. Both the system assessment tools and the simple
16
16
  * calculators can be used as stand-alone tools for more focused analysis.
17
17
  *
18
+ * - @ref process_heating_assessments
19
+ * - @ref heat_loss_calculators
18
20
  * - @ref compressed_air_assessments
19
21
  * - @ref fan_system_assessments
20
22
  * - @ref process_cooling_assessments
21
- * - @ref process_heating_assessments
22
23
  * - @ref pumping_system_assessments
23
24
  * - @ref steam_system_assessments
24
25
  * - @ref water_assessments
25
26
  * - @ref waste_water_assessments
26
27
  * - @ref treasure_hunt_calculators
27
- * - @ref heat_loss_calculators
28
28
  *
29
29
  * @defgroup compressed_air_assessments Compressed Air Assessments
30
30
  *
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.159",
4
4
  "engines": {
5
5
  "node": "20.19.4",
6
6
  "npm": "10.8.2"