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#pragma once
2
15
17 public:
23 OptimalSpecificSpeedCorrection(const Pump::Style style, const double specificSpeed)
24 : specificSpeed(specificSpeed), style(style) {};
25
30 double calculate();
31
32 private:
33 const double specificSpeed;
34 const Pump::Style style;
35};
36
Function prototypes for the Pump result fields.
Header file for OptimalSpecificSpeedCorrection class.
OptimalSpecificSpeedCorrection(const Pump::Style style, const double specificSpeed)