MEASUR-Tools-Suite v1.2.4
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
air_velocity.h
Go to the documentation of this file.
1#pragma once
2
14
21namespace air_velocity {
22
28struct Input {
29 double airflow = 0.0;
30 double pipe_pressure = 0.0;
31 double atmospheric_pressure = 0.0;
32};
33
40
41} // namespace air_velocity
Compressed air velocity calculator.
pipe_data::PipeData calculate(const Input &input)
Calculates compressed air velocities by nominal pipe size.
Shared pipe-size data shape for compressed air capacity and velocity calculations.
Input parameters for the air velocity calculation.
double pipe_pressure
Pipe gauge pressure .
double atmospheric_pressure
Atmospheric absolute pressure .
double airflow
Volumetric free-air flow rate .
Per-size values for standard compressed air pipe sizes.
Definition pipe_data.h:31