measur-tools-suite 1.0.14-rc.19 → 1.0.14-rc.21
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
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @defgroup energy_input_electric_arc_furnace_calculator Energy Input Electric Arc Furnace Calculator
|
|
3
|
+
* @ingroup heat_loss_calculators
|
|
4
|
+
* @brief Calculates total energy input and heat delivered for electric arc furnaces (EAF).
|
|
5
|
+
* @details This calculator estimates the total chemical energy input and total heat delivered to an EAF, including contributions from natural gas, coal/carbon injection, electrodes, other fuels, and electricity. It uses standard unit conversions and accounts for all major energy sources supplied to the furnace. Relevant formulas are documented below.
|
|
6
|
+
*
|
|
7
|
+
* @heading{Total Chemical Energy Input}
|
|
8
|
+
* @copydoc energy_input_electric_arc_furnace_formula
|
|
9
|
+
*
|
|
10
|
+
* @heading{Total Heat Delivered}
|
|
11
|
+
* @copydoc energy_input_electric_arc_furnace_heat_delivered_formula
|
|
12
|
+
*/
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* @defgroup energy_input_electric_arc_furnace_formula Energy Input Electric Arc Furnace Formula
|
|
16
|
+
* @ingroup energy_input_electric_arc_furnace_calculator
|
|
17
|
+
* @formula{eaf-chemical-energy-input; Q_\text{chem} = Q_\text{ng} + m_\text{coal} c_\text{coal} + m_\text{elec} c_\text{elec} + Q_\text{other}}
|
|
18
|
+
* @subheading{Symbols}
|
|
19
|
+
* @symtable
|
|
20
|
+
* @symrow{Q_\text{chem}; Total chemical energy input; \btu\per\hour}
|
|
21
|
+
* @symrow{Q_\text{ng}; Natural gas heat input; \btu\per\hour}
|
|
22
|
+
* @symrow{m_\text{coal}; Mass of coal/carbon injection; \pound\per\hour}
|
|
23
|
+
* @symrow{c_\text{coal}; Heating value of coal/carbon; \btu\per\pound}
|
|
24
|
+
* @symrow{m_\text{elec}; Electrode use; \pound\per\hour}
|
|
25
|
+
* @symrow{c_\text{elec}; Electrode heating value; \btu\per\pound}
|
|
26
|
+
* @symrow{Q_\text{other}; Other fuel heat input; \btu\per\hour}
|
|
27
|
+
* @endsymtable
|
|
28
|
+
*/
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* @defgroup energy_input_electric_arc_furnace_heat_delivered_formula Energy Input Electric Arc Furnace Heat Delivered Formula
|
|
32
|
+
* @ingroup energy_input_electric_arc_furnace_calculator
|
|
33
|
+
* @formula{eaf-heat-delivered; Q_\text{delivered} = Q_\text{chem} + Q_\text{elec}}
|
|
34
|
+
* @subheading{Symbols}
|
|
35
|
+
* @symtable
|
|
36
|
+
* @symrow{Q_\text{delivered}; Total heat delivered to EAF; \btu\per\hour}
|
|
37
|
+
* @symrow{Q_\text{chem}; Total chemical energy input; \btu\per\hour}
|
|
38
|
+
* @symrow{Q_\text{elec}; Electric power supplied; \kilowatt\hour\per\hour}
|
|
39
|
+
* @endsymtable
|
|
40
|
+
*/
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @defgroup slag_other_material_heat_loss_calculator Slag/Other Material Heat Loss Calculator
|
|
3
|
+
* @ingroup heat_loss_calculators
|
|
4
|
+
* @brief Calculates heat losses from slag and other waste materials in process heating equipment.
|
|
5
|
+
* @details This calculator estimates the heat required to heat slag or other combustion byproducts in a furnace. It uses the discharged weight, specific heat, initial and final temperatures, and a correction factor. Assumes majority of slag is silicon and specific heat does not change with temperature. Glass structures in slag may significantly affect results. The calculation is relevant for electrotechnologies and does not account for melting or phase change. Relevant formulas are documented below.
|
|
6
|
+
*
|
|
7
|
+
* @heading{Heat Loss}
|
|
8
|
+
* @copydoc slag_other_material_heat_loss_formula
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* @defgroup slag_other_material_heat_loss_formula Slag/Other Material Heat Loss Formula
|
|
13
|
+
* @ingroup slag_other_material_heat_loss_calculator
|
|
14
|
+
* @formula{slag-other-material-heat-loss; Q = m \cdot c_p \cdot (T_\text{outlet} - T_\text{inlet}) \cdot f_\text{corr}}
|
|
15
|
+
* @subheading{Symbols}
|
|
16
|
+
* @symtable
|
|
17
|
+
* @symrow{Q; Heat loss; \btu}
|
|
18
|
+
* @symrow{m; Weight discharged; \pound}
|
|
19
|
+
* @symrow{c_p; Specific heat of material; \btu\per\pound\degreeFahrenheit}
|
|
20
|
+
* @symrow{T_\text{outlet}; Outlet temperature; \degreeFahrenheit}
|
|
21
|
+
* @symrow{T_\text{inlet}; Inlet temperature; \degreeFahrenheit}
|
|
22
|
+
* @symrow{f_\text{corr}; Correction factor; \unitless}
|
|
23
|
+
* @endsymtable
|
|
24
|
+
*/
|