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
compressedAir
leak_survey
estimate_method.h
Go to the documentation of this file.
1
#pragma once
2
26
namespace
estimate_method
{
27
28
// ============================================================
29
// Estimate Method
30
// ============================================================
31
37
struct
Input
{
38
double
operating_time
= 0.0;
39
double
leak_rate_estimate
= 0.0;
40
};
41
47
struct
Result
{
48
double
annual_consumption
= 0.0;
49
};
50
76
Result
calculate
(
const
Input
& input);
77
78
}
// namespace estimate_method
estimate_method
Compressed air leak estimation using visual and audible assessment.
estimate_method::calculate
Result calculate(const Input &input)
Estimates annual compressed air consumption from a leak using the estimate method.
estimate_method::Input
Input parameters for the estimate method compressed air leak calculation.
Definition
estimate_method.h:37
estimate_method::Input::leak_rate_estimate
double leak_rate_estimate
Estimated leak rate from visual/audible assessment .
Definition
estimate_method.h:39
estimate_method::Input::operating_time
double operating_time
Annual system operating time .
Definition
estimate_method.h:38
estimate_method::Result
Result of the estimate method leak annual consumption calculation.
Definition
estimate_method.h:47
estimate_method::Result::annual_consumption
double annual_consumption
Estimated annual air loss from the leak .
Definition
estimate_method.h:48
Generated by
1.9.8