measur-tools-suite 1.0.14-rc.20 → 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
|
+
*/
|