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
include
databases
wall_type_data.h
1
2
#pragma once
3
#include <string>
4
#include <vector>
5
10
namespace
wall_type_data
{
11
18
struct
WallType
{
19
std::string wall_description;
20
double
shape_factor;
21
};
22
27
inline
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
wall_type_data
Contains default data for wall types used in wall heat loss calculations.
wall_type_data::get_default_wall_types
std::vector< WallType > get_default_wall_types()
Returns a vector of default wall types.
Definition
wall_type_data.h:27
wall_type_data::WallType
Struct to hold default wall type data.
Definition
wall_type_data.h:18
Generated by
1.9.8