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
Modules | Files | Namespaces | Classes
Decibels Method Calculator

Detailed Description

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:

  1. Obtain the detector manufacturer's calibration table, which lists flow rates at two reference pressures (P₁ and P₂) for two reference decibel ratings (L₁ and L₂).
  2. Hold the ultrasonic detector near the suspected leak and record the decibel reading.
  3. Record the compressed air line pressure at the leak location.
  4. Enter the four reference flow values and the two reference pressures and decibel ratings, along with the measured values and annual operating time.

The calculation methods are:

  1. Leak Rate Estimate – applies bilinear interpolation to the 2×2 reference grid to obtain the instantaneous leak flow rate in scfm.
  2. Annual Consumption – scales the leak flow rate by annual operating hours and converts to kiloscf.

Relevant formulas are documented below.

Leak Rate Estimate


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:

The 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}

Symbols
\(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}]\)

Annual Consumption


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}

Symbols
\(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}]\)
Note
The result is in kiloscf (kscf), where 1 kscf = 1000 standard cubic feet. This unit is conventional for annual compressed air volumes in industrial energy assessments.

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...