MEASUR-Tools-Suite v1.0.11
The MEASUR Tools Suite is a collection of industrial efficiency calculations written in C++ and with bindings for compilation to WebAssembly.
Loading...
Searching...
No Matches
GasFlueGasMaterialData.h
1#pragma once
2
3#include "default_data.h"
4
6
7std::vector<GasCompositions> DefaultData::get_default_gas_flue_gas_materials() {
8 return {
9 /* {"Natural Gas Pennsylvania", 83.4, 15.8, 0.8, 0, 0, 0, 0, 0, 0, 0, 0},
10 {"Natural Gas South Carolina", 84.0, 14.8, 0.5, 0, 0, 0, 0, 0, 0.7, 0, 0},
11 {"Natural Gas Ohio", 93.33, 0.25, 3.4, 1.82, 0, 0, 0, 0.45, 0.22, 0, 0.35},
12 {"Natural Gas Louisiana", 90.0, 5.0, 5.0, 0, 0, 0, 0, 0, 0, 0, 0},
13 {"Natural Gas Oklahoma", 84.1, 6.7, 8.4, 0, 0, 0, 0, 0, 0.8, 0, 0},
14 */
15 {"Typical Natural Gas - US", 87, 8.5, 3.6, 0.4, 0, 0, 0, 0, 0.4, 0, 0.1, 22030.67089880065, 1032.445,
16 0.6571206283343215},
17 {"Coke Oven Gas", 33.9, 5.2, 3.7, 47.9, 0, 0, 0, 6.1, 2.6, 0, 0.6, 19185.932389233436, 610.52,
18 0.44638781861292243},
19 {"Blast Furnace Gas", 0.1, 0, 56.4, 2.4, 0, 0, 3.4, 23.3, 14.4, 0, 0, 1080.6848266529887, 83.605,
20 1.0870540901007706},
21 {"Hydrogen", 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 61095.0, 325, .0746887967},
22 };
23}