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
GasLoadChargeMaterialData.h
1#pragma once
2
3#include "default_data.h"
4
6
7std::vector<GasLoadChargeMaterial> DefaultData::get_default_gas_load_charge_materials() {
8 return {{"Water vapor - Near Atm. Pressure", 0.47},
9 {"Steam - 50 PSIG, 400 degrees F", 0.4901},
10 {"Steam - 150 PSIG, 500 degrees F", 0.5099},
11 {"Steam - 600 PSIG, 700 degrees F", 0.5899},
12 {"Air - Low Pressure", 0.245},
13 {"Nitrogen - Low Pressure", 0.2501},
14 {"Oxygen - Low Pressure", 0.23},
15 {"Carbon Dioxide - Low Pressure", 0.24},
16 {"Carbon Monoxide - Low Pressure", 0.2501},
17 {"Hydrogen - Low Pressure", 3.45}};
18}