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
OptimalPrePumpEff.h
1
11#ifndef TOOLS_SUITE_OPTIMALPREPUMPEFF_H
12#define TOOLS_SUITE_OPTIMALPREPUMPEFF_H
13
15
17 public:
23 OptimalPrePumpEff(const Pump::Style style, const double flowRate) : style(style), flowRate(flowRate) {};
24
29 double calculate();
30
31 private:
32 const Pump::Style style;
33 const double flowRate;
34};
35
36#endif // TOOLS_SUITE_OPTIMALPREPUMPEFF_H
Function prototypes for the Pump result fields.
Header file for OptimalPrePumpEff class.
OptimalPrePumpEff(const Pump::Style style, const double flowRate)