measur-tools-suite 1.0.14-rc.37 → 1.0.14-rc.39

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.37",
3
+ "version": "1.0.14-rc.39",
4
4
  "engines": {
5
5
  "node": "20.19.4",
6
6
  "npm": "10.8.2"
@@ -21,6 +21,9 @@
21
21
  * @heading{Available Heat}
22
22
  * @copydoc energy_input_exhaust_gas_available_heat_cpp_formula
23
23
  *
24
+ * @heading{Base Heat}
25
+ * @copydoc energy_input_exhaust_gas_base_heat_cpp_formula
26
+ *
24
27
  * @heading{Air Correction}
25
28
  * @copydoc energy_input_exhaust_gas_air_correction_cpp_formula
26
29
  *
@@ -78,19 +81,38 @@
78
81
  * @details The available heat represents the fraction of input energy that remains available for useful work
79
82
  * after accounting for exhaust gas temperature, excess air, and combustion air preheat.
80
83
  *
81
- * @formula{energy-input-exhaust-gas-available-heat-cpp; AH = 95 - 0.025 \cdot T_{exh} + AC + CAC}
84
+ * @formula{energy-input-exhaust-gas-available-heat-cpp; AH = BH + AC + CAC}
82
85
  *
83
86
  * @subheading{Symbols}
84
87
  * @symtable
85
88
  * @symrow{AH; Available heat percent; \percent}
89
+ * @symrow{BH; Base heat percentage; \percent}
90
+ * @symrow{AC; Air correction; \percent}
91
+ * @symrow{CAC; Combustion air correction; \percent}
92
+ * @endsymtable
93
+ */
94
+
95
+
96
+ /**
97
+ * @defgroup energy_input_exhaust_gas_base_heat_cpp_formula Base Heat Formula
98
+ * @ingroup energy_input_exhaust_gas_heat_loss_calculator
99
+ * @brief Base available heat before corrections.
100
+ * @details The base heat formula calculates the starting percentage of input heat available for useful work, before accounting for losses due to excess air and combustion air preheat.
101
+ * It is determined by subtracting the exhaust temperature loss from a model-specific base value (95%).
102
+ * This step isolates the effect of exhaust gas temperature on available heat, prior to applying air corrections.
103
+ *
104
+ * @formula{energy-input-exhaust-gas-base-heat-cpp; BH = 95 - 0.025 \cdot T_{exh}}
105
+ *
106
+ * @subheading{Symbols}
107
+ * @symtable
108
+ * @symrow{BH; Base heat percentage; \percent}
86
109
  * @symrow{95; Base available heat at zero exhaust temperature; \percent}
87
110
  * @symrow{0.025; Exhaust temperature loss coefficient; \percent\per\degreeFahrenheit}
88
111
  * @symrow{T_{exh}; Exhaust gas temperature; \degreeFahrenheit}
89
- * @symrow{AC; Air correction; \percent}
90
- * @symrow{CAC; Combustion air correction; \percent}
91
112
  * @endsymtable
92
113
  */
93
114
 
115
+
94
116
  /**
95
117
  * @defgroup energy_input_exhaust_gas_air_correction_cpp_formula Air Correction Formula
96
118
  * @ingroup energy_input_exhaust_gas_heat_loss_calculator
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "measur-tools-suite",
3
- "version": "1.0.14-rc.37",
3
+ "version": "1.0.14-rc.39",
4
4
  "engines": {
5
5
  "node": "20.19.4",
6
6
  "npm": "10.8.2"