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#pragma once
2
16 public:
24 OptimalSpecificSpeed(double rpm, double flowRate, double head, double stageCount)
25 : stageCount(stageCount), flowRate(flowRate), head(head), rpm(rpm) {};
26
31 double calculate();
32
33 private:
34 double stageCount;
35 double flowRate;
36 double head;
37 double rpm;
38};
39
Header file for OptimalSpecificSpeed class.
OptimalSpecificSpeed(double rpm, double flowRate, double head, double stageCount)