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
wall_type_data.h
1
2#pragma once
3#include <string>
4#include <vector>
5
10namespace wall_type_data {
11
18struct WallType {
19 std::string wall_description;
20 double shape_factor;
21};
22
27inline std::vector<WallType> get_default_wall_types() {
28 return {
29 {"Horizontal cylinders", 1.016},
30 {"Longer vertical cylinders", 1.235},
31 {"Vertical plates", 1.394},
32 {"Horizontal plate facing up, warmer than air", 1.79},
33 {"Horizontal plate facing down, warmer than air", 0.89},
34 {"Horizontal plate facing up, cooler than air", 0.89},
35 {"Horizontal plate facing down, cooler than air", 1.79}
36 };
37}
38
39} // namespace wall_type_data
Contains default data for wall types used in wall heat loss calculations.
std::vector< WallType > get_default_wall_types()
Returns a vector of default wall types.
Struct to hold default wall type data.