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
OptimalSpecificSpeedCorrection.h
1
12#ifndef TOOLS_SUITE_OPTIMALSPECIFICSPEEDCORRECTION_H
13#define TOOLS_SUITE_OPTIMALSPECIFICSPEEDCORRECTION_H
14
16
18 public:
24 OptimalSpecificSpeedCorrection(const Pump::Style style, const double specificSpeed)
25 : specificSpeed(specificSpeed), style(style) {};
26
31 double calculate();
32
33 private:
34 const double specificSpeed;
35 const Pump::Style style;
36};
37
38#endif // TOOLS_SUITE_OPTIMALSPECIFICSPEEDCORRECTION_H
Function prototypes for the Pump result fields.
Header file for OptimalSpecificSpeedCorrection class.
OptimalSpecificSpeedCorrection(const Pump::Style style, const double specificSpeed)