|
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.
|
This calculator implements the decibels method, a non-contact field technique for estimating compressed air leak flow rate. An ultrasonic detector measures the sound pressure level (in decibels) at the leak location while the compressed air line pressure is recorded. Two calibration reference points bracket the measured values: each reference point is defined by a decibel rating and supplies flow rate values at two known pressures, forming a 2×2 grid of reference flow values. Standard bilinear interpolation over the pressure and decibel axes yields the leak flow rate at the measured conditions.
The decibels method is particularly useful when physical access to the leak is restricted, since no bag or orifice fixture is required. The ultrasonic detector can locate and quantify leaks from a distance, making it well suited for pressurized systems where shutdown is not feasible. Accuracy depends on the quality and range of the calibration reference data supplied by the detector manufacturer.
Procedure:
The calculation methods are:
Relevant formulas are documented below.
Compressed air leak flow rate estimated by bilinear interpolation.
The leak flow rate is determined by bilinear interpolation over a 2×2 grid of reference flow values supplied by the ultrasonic detector manufacturer. The grid axes are line pressure (P) and ultrasonic decibel level (L). Two reference pressures (P₁ and P₂) and two reference decibel ratings (L₁ and L₂) define the grid corners; the measured line pressure P and decibel level L are interpolated within this grid.
The four reference flow values at the grid corners are:
first_flow_asecond_flow_afirst_flow_bsecond_flow_bThe formula reduces to the known corner value when the measured point falls exactly on a reference corner, and to linear interpolation when the measured point lies on a reference edge.
\begin{equation}\label{eq:decibels-method-leak-rate} Q_{leak} = \frac{ (P_2 - P)(L_2 - L)\,Q_{11} + (P - P_1)(L_2 - L)\,Q_{21} + (P_2 - P)(L - L_1)\,Q_{12} + (P - P_1)(L - L_1)\,Q_{22} }{(P_2 - P_1)(L_2 - L_1)} \end{equation}
| \(Q_{leak}\) | Estimated compressed air leak flow rate \([\unit{ \scfm}]\) |
| \(P\) | Measured line pressure \([\unit{ \psig}]\) |
| \(L\) | Measured ultrasonic decibel level at the leak \([\unit{ \decibel}]\) |
| \(P_1\) | Reference pressure (pressure_a) \([\unit{ \psig}]\) |
| \(P_2\) | Reference pressure (pressure_b) \([\unit{ \psig}]\) |
| \(L_1\) | Lower reference decibel rating (decibel_rating_a) \([\unit{ \decibel}]\) |
| \(L_2\) | Upper reference decibel rating (decibel_rating_b) \([\unit{ \decibel}]\) |
| \(Q_{11}\) | Reference flow at (P_1,\, L_1) — first_flow_a \([\unit{ \scfm}]\) |
| \(Q_{21}\) | Reference flow at (P_2,\, L_1) — second_flow_a \([\unit{ \scfm}]\) |
| \(Q_{12}\) | Reference flow at (P_1,\, L_2) — first_flow_b \([\unit{ \scfm}]\) |
| \(Q_{22}\) | Reference flow at (P_2,\, L_2) — second_flow_b \([\unit{ \scfm}]\) |
Estimated annual air consumption from a compressed air leak measured by the decibels method.
Annual air loss is computed by scaling the instantaneous leak flow rate by the annual system operating time and converting from standard cubic feet to kiloscf. The factor of 60 converts operating hours to minutes so the units are consistent with the flow rate in scfm. The factor of 1000 converts standard cubic feet to kiloscf, a more practical unit for annual volumes.
\begin{equation}\label{eq:decibels-method-annual-consumption} C_{annual} = \frac{Q_{leak} \cdot t_{op} \cdot 60}{1000} \end{equation}
| \(C_{annual}\) | Estimated annual air loss from the leak \([\unit{ \kscf}]\) |
| \(Q_{leak}\) | Compressed air leak flow rate \([\unit{ \scfm}]\) |
| \(t_{op}\) | Annual system operating time \([\unit{ \hour}]\) |
| \(60\) | Minutes per hour conversion \([\unit{ \minute\per\hour}]\) |
| \(1000\) | Standard cubic feet per kiloscf \([\unit{ \unitless}]\) |
Modules | |
| Decibels Method Leak Rate Formula | |
| Compressed air leak flow rate estimated by bilinear interpolation. | |
| Decibels Method Annual Consumption Formula | |
| Estimated annual air consumption from a compressed air leak measured by the decibels method. | |
Files | |
| file | decibels_method.h |
| Declarations for the decibels method compressed air leak flow rate estimation. | |
Namespaces | |
| namespace | decibels_method |
| Compressed air leak flow estimation using ultrasonic decibel measurements. | |
Classes | |
| struct | decibels_method::Input |
| Input parameters for the decibels method compressed air leak calculation. More... | |
| struct | decibels_method::Result |
| Result of the decibels method leak flow rate calculation. More... | |