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