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
OptimalSpecificSpeed.h
1
13#ifndef TOOLS_SUITE_OPTIMALSPECIFICSPEED_H
14#define TOOLS_SUITE_OPTIMALSPECIFICSPEED_H
15
17 public:
25 OptimalSpecificSpeed(double rpm, double flowRate, double head, double stageCount)
26 : stageCount(stageCount), flowRate(flowRate), head(head), rpm(rpm) {};
27
32 double calculate();
33
34 private:
35 double stageCount;
36 double flowRate;
37 double head;
38 double rpm;
39};
40
41#endif // TOOLS_SUITE_OPTIMALSPECIFICSPEED_H
Header file for OptimalSpecificSpeed class.
OptimalSpecificSpeed(double rpm, double flowRate, double head, double stageCount)