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
solid_liquid_flue_gas_material_data.h
Go to the documentation of this file.
1#pragma once
8#include <string>
9#include <vector>
10
21 std::string substance;
22 double carbon;
23 double hydrogen;
24 double sulphur;
25 double oxygen;
26 double nitrogen;
27 double moisture;
28 double inert_ash;
29};
30
35inline std::vector<SolidLiquidFlueGasMaterial> get_default_solid_liquid_flue_gas_materials() {
36 return {{"Typical Bituminous Coal - US", 70.3, 4.9, 2.2, 8.7, 7.5, 4.9, 1.5},
37 {"Typical Anthracite - US", 77.7, 1.8, 0.7, 9.8, 2.1, 7.1, 0.8},
38 {"Typical Lignite - US", 47.5, 3.4, 0.8, 8.3, 14.2, 25, 0.8},
39 {"Fuel Oil #2", 86.6, 12.8, 0.5, 0, 0, 0, 0.1},
40 {"Fuel Oil #6", 87.1, 10.6, 2.1, 0.2, 0, 0, 0},
41 {"Typical Wood", 51.7, 5.4, 0.1, 3.1, 39.5, 0, 0.2}};
42}
43} // namespace solid_liquid_flue_gas_material_data
Contains default solid/liquid flue gas material data.
std::vector< SolidLiquidFlueGasMaterial > get_default_solid_liquid_flue_gas_materials()
Returns a vector of default solid/liquid flue gas materials.
Struct to hold default solid/liquid flue gas material data.