AMO-Tools-Suite  v.0.9.0
Set of tools for calculating energy efficiency in industrial equipment
All Classes Namespaces Files Functions Variables Enumerations Friends Macros Pages
OptimalSpecificSpeed.h
1 
12 #ifndef AMO_LIBRARY_OPTIMALSPECIFICSPEED_H
13 #define AMO_LIBRARY_OPTIMALSPECIFICSPEED_H
14 
16 public:
25  double rpm,
26  double flowRate,
27  double head,
28  double stageCount
29  ):
30  stageCount(stageCount),
31  flowRate(flowRate),
32  head(head),
33  rpm(rpm)
34  {};
35 
40  double calculate();
41 
42 private:
43  double stageCount;
44  double flowRate;
45  double head;
46  double rpm;
47 };
48 
49 
50 #endif //AMO_LIBRARY_OPTIMALSPECIFICSPEED_H
Header file for OptimalSpecificSpeed class.
double calculate()
Contains the definition of functions of OptimalSpecificSpeed class. calculate(): Calculates the Optim...
OptimalSpecificSpeed(double rpm, double flowRate, double head, double stageCount)