measur-tools-suite 1.0.14-rc.24 → 1.0.14-rc.25

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.24",
3
+ "version": "1.0.14-rc.25",
4
4
  "engines": {
5
5
  "node": "20.19.4",
6
6
  "npm": "10.8.2"
@@ -0,0 +1,90 @@
1
+ /**
2
+ * @defgroup liquid_load_charge_material_heat_required_calculator Liquid Load Charge Material Heat Required Calculator
3
+ * @ingroup heat_loss_calculators
4
+ * @brief Calculates total heat required for a liquid load/charge material.
5
+ * @details The following formulas describe the calculation of total heat required for a liquid load/charge material, including sensible heat, latent heat, vaporization, reaction heat, and additional heat. Each step is documented with its own formula and symbol table.
6
+ *
7
+ * @heading{Total Heat Required}
8
+ * @copydoc liquid_load_charge_material_total_heat_required_cpp_formula
9
+ *
10
+ * @heading{Sensible Heat (Below Vaporizing Temp)}
11
+ * @copydoc liquid_load_charge_material_sensible_heat_cpp_formula
12
+ *
13
+ * @heading{Full Heating (Above Vaporizing Temp)}
14
+ * @copydoc liquid_load_charge_material_full_heat_cpp_formula
15
+ *
16
+ * @heading{Heat of Reaction}
17
+ * @copydoc liquid_load_charge_material_heat_of_reaction_cpp_formula
18
+ *
19
+ * @see liquid_load_charge_material_data_database
20
+ */
21
+
22
+ /**
23
+ * @defgroup liquid_load_charge_material_total_heat_required_cpp_formula Total Heat Required Formula
24
+ * @ingroup liquid_load_charge_material_heat_required_calculator
25
+ * @formula{liquid-load-charge-material-total-heat-required-cpp; Q_{total} = Q_{liq} + Q_{reaction} + Q_{additional}}
26
+ * @subheading{Symbols}
27
+ * @symtable
28
+ * @symrow{Q_{total}; Total heat required; \btu\per\hour}
29
+ * @symrow{Q_{liq}; Heat required for liquid heating/vaporization; \btu\per\hour}
30
+ * @symrow{Q_{reaction}; Heat of reaction; \btu\per\hour}
31
+ * @symrow{Q_{additional}; Additional heat required; \btu\per\hour}
32
+ * @endsymtable
33
+ */
34
+
35
+ /**
36
+ * @defgroup liquid_load_charge_material_sensible_heat_cpp_formula Sensible Heat (Below Vaporizing Temp) Formula
37
+ * @ingroup liquid_load_charge_material_heat_required_calculator
38
+ * @details The total heat required when discharge temperature is below vaporizing temperature.
39
+ * @formula{liquid-load-charge-material-sensible-heat-cpp; Q_{liq} = m_{feed} \cdot C_{p,liq} \cdot (T_{discharge} - T_{initial})}
40
+ * @subheading{Symbols}
41
+ * @symtable
42
+ * @symrow{Q_{liq}; Heat required for liquid heating; \btu\per\hour}
43
+ * @symrow{m_{feed}; Charge (liquid) feed rate; \pound\per\hour}
44
+ * @symrow{C_{p,liq}; Specific heat of liquid; \btu\per\pound\degreeFahrenheit}
45
+ * @symrow{T_{discharge}; Discharge temperature; \degreeFahrenheit}
46
+ * @symrow{T_{initial}; Initial temperature; \degreeFahrenheit}
47
+ * @endsymtable
48
+ */
49
+
50
+ /**
51
+ * @defgroup liquid_load_charge_material_full_heat_cpp_formula Full Heating (Above Vaporizing Temp) Formula
52
+ * @ingroup liquid_load_charge_material_heat_required_calculator
53
+ * @details The total heat required when discharge temperature is above vaporizing temperature.
54
+ *
55
+ * @formula{liquid-load-charge-material-full-heat-cpp; Q_{liq} = Q_{sens,liq} + Q_{vap} + Q_{sens,vapor} + Q_{sens,remliq}}
56
+ * @formula{liquid-load-charge-material-sensible-heat-to-vaporizing-cpp; Q_{sens,liq} = m_{feed} \cdot C_{p,liq} \cdot (T_{vaporizing} - T_{initial})}
57
+ * @formula{liquid-load-charge-material-vaporization-heat-cpp; Q_{vap} = m_{feed} \cdot f_{vaporized} \cdot H_{latent}}
58
+ * @formula{liquid-load-charge-material-sensible-heat-vapor-cpp; Q_{sens,vapor} = m_{feed} \cdot f_{vaporized} \cdot C_{p,vapor} \cdot (T_{discharge} - T_{vaporizing})}
59
+ * @formula{liquid-load-charge-material-sensible-heat-remaining-liq-cpp; Q_{sens,remliq} = m_{feed} \cdot (1-f_{vaporized}) \cdot C_{p,liq} \cdot (T_{discharge} - T_{vaporizing})}
60
+ *
61
+ * @subheading{Symbols}
62
+ * @symtable
63
+ * @symrow{Q_{liq}; Heat required for liquid heating/vaporization; \btu\per\hour}
64
+ * @symrow{Q_{sens,liq}; Sensible heat to vaporizing temperature; \btu\per\hour}
65
+ * @symrow{Q_{vap}; Vaporization heat; \btu\per\hour}
66
+ * @symrow{Q_{sens,vapor}; Sensible heat for vaporized fraction; \btu\per\hour}
67
+ * @symrow{Q_{sens,remliq}; Sensible heat for remaining liquid; \btu\per\hour}
68
+ * @symrow{m_{feed}; Charge (liquid) feed rate; \pound\per\hour}
69
+ * @symrow{C_{p,liq}; Specific heat of liquid; \btu\per\pound\degreeFahrenheit}
70
+ * @symrow{T_{vaporizing}; Vaporizing temperature; \degreeFahrenheit}
71
+ * @symrow{T_{initial}; Initial temperature; \degreeFahrenheit}
72
+ * @symrow{f_{vaporized}; Fraction of charge vaporized; \unitless}
73
+ * @symrow{H_{latent}; Latent heat of vaporization; \btu\per\pound}
74
+ * @symrow{C_{p,vapor}; Specific heat of vapor; \btu\per\pound\degreeFahrenheit}
75
+ * @symrow{T_{discharge}; Discharge temperature; \degreeFahrenheit}
76
+ * @endsymtable
77
+ */
78
+
79
+ /**
80
+ * @defgroup liquid_load_charge_material_heat_of_reaction_cpp_formula Heat of Reaction Formula
81
+ * @ingroup liquid_load_charge_material_heat_required_calculator
82
+ * @formula{liquid-load-charge-material-heat-of-reaction-cpp; Q_{reaction} = \begin{cases} m_{feed} \cdot f_{reacted} \cdot H_{reaction} & \text{if endothermic} \\ 0 & \text{if exothermic or none} \end{cases}}
83
+ * @subheading{Symbols}
84
+ * @symtable
85
+ * @symrow{Q_{reaction}; Heat of reaction; \btu\per\hour}
86
+ * @symrow{m_{feed}; Charge (liquid) feed rate; \pound\per\hour}
87
+ * @symrow{f_{reacted}; Fraction of charge reacted; \unitless}
88
+ * @symrow{H_{reaction}; Heat of reaction; \btu\per\pound}
89
+ * @endsymtable
90
+ */
@@ -0,0 +1,35 @@
1
+ /**
2
+ * @defgroup liquid_load_charge_material_data_database Liquid Load Charge Material Database
3
+ * @ingroup databases
4
+ * @brief Contains default data for liquid load/charge materials used in heat loss calculations.
5
+ * @details This database provides default values for the specific heat, latent heat, vapor specific heat, and boiling point for common liquid load/charge materials. The data is used in heat loss calculations for process heating systems.
6
+ *
7
+ * @heading{Default Liquid Load/Charge Material Data}
8
+ * @copydoc liquid_load_charge_material_data
9
+ */
10
+
11
+ /**
12
+ * @defgroup liquid_load_charge_material_data Default Liquid Load/Charge Material Data
13
+ * @ingroup liquid_load_charge_material_data_database
14
+ * The following table lists the default substances and their properties:
15
+ *
16
+ * | Substance | Specific Heat @unitb{\btu\per\pound\degreeFahrenheit} | Latent Heat @unitb{\btu\per\pound} | Vapor Specific Heat @unitb{\btu\per\pound\degreeFahrenheit} | Boiling Point @unitb{\degreeFahrenheit} |
17
+ * |-----------------------------------|--------------------------------------------------------|--------------------------------------|----------------------------------------------------------------|-----------------------------------------|
18
+ * | Crude | 0.6501 | 105 | 0.55 | 900 |
19
+ * | Water - Std. Atms. Pressure | 1 | 970.3 | 0.47 | 212 |
20
+ * | Water - 150 PSIG | 1.0499 | 868 | 0.54 | 365 |
21
+ * | Acetic Acid | 0.5099 | 174 | 0.4 | 244 |
22
+ * | Acetone | 0.347 | 239 | 0.4 | 130 |
23
+ * | Alcohol - Ethyl | 0.648 | 369 | 0.45 | 172 |
24
+ * | Alcohol - Methyl | 0.6009 | 481 | 0.3301 | 151 |
25
+ * | Benzene | 0.423 | 170 | 0.3301 | 176 |
26
+ * | Bromine | 0.107 | 82 | 0.0549 | 142 |
27
+ * | Carbon Tetrachloride | 0.215 | 83.5 | 0.2501 | 170 |
28
+ * | Fuel Oil No. 2 (Average) | 0.5701 | 105 | 0.55 | 375 |
29
+ * | Fuel Oil No. 6 (Average) | 0.5799 | 108 | 0.55 | 600 |
30
+ * | Kerosene | 0.5701 | 260 | 0.62 | 260 |
31
+ *
32
+ * @note Values are representative and may vary with pressure and temperature.
33
+ *
34
+ * @see liquid_load_charge_material_heat_required_calculator
35
+ */
package/docs/mainpage.dox CHANGED
@@ -61,6 +61,12 @@
61
61
  * @defgroup heat_loss_calculators Heat Loss Calculators
62
62
  * @ingroup process_heating_assessments
63
63
  *
64
+ * The heat loss calculators for process heating estimate energy losses from various components and operations in industrial heating systems.
65
+ * These calculators help users quantify heat lost through fixtures, walls, exhaust gases, openings, liquid and gas load/charge materials,
66
+ * and other sources. By modeling these losses, users can identify opportunities for energy savings, improve system efficiency, and optimize process conditions.
67
+ * Each calculator is based on established engineering formulas and provides detailed documentation of calculation steps, required inputs, and physical principles.
68
+ *
69
+ *
64
70
  * @defgroup pumping_system_assessments Pumping System Assessments
65
71
  *
66
72
  * This portion of MEASUR includes tools such as the Pump System Assessment Tool (PSAT) and related calculators.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "measur-tools-suite",
3
- "version": "1.0.14-rc.24",
3
+ "version": "1.0.14-rc.25",
4
4
  "engines": {
5
5
  "node": "20.19.4",
6
6
  "npm": "10.8.2"