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
vfd_compressor.h
Go to the documentation of this file.
1#pragma once
2
10
12
18 public:
19 VariableFrequencyDriveCompressor(double full_load_power, double mid_turndown_power, double turndown_power,
20 double no_load_power, double full_load_airflow,
21 double mid_turndown_airflow, double turndown_airflow);
22
23 CompressorPerformanceResult calculateFromPowerFraction(double power_fraction);
24 CompressorPerformanceResult calculateFromCapacityFraction(double airflow_fraction);
25 CompressorPerformanceResult calculateFromMeasuredPower(double power);
26 CompressorPerformanceResult calculateFromMeasuredCapacity(double airflow);
27 CompressorPerformanceResult calculateFromElectrical(double voltage, double current, double power_factor);
28
29 private:
30 double turndown_power_fraction_;
31 double no_load_power_fraction_;
32 double mid_turndown_power_fraction_;
33 double turndown_airflow_fraction_;
34 double mid_turndown_airflow_fraction_;
35 double no_load_power_;
36};
37
38} // namespace compressed_air::assessment
Base utilities shared by compressor assessment control models.
Definition compressor.h:106
Compressor model for variable frequency drive control.
Shared compressor assessment enums, result objects, and base utilities.
Compressor assessment performance models and supporting calculations.