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
OptimalPrePumpEff.h
1#pragma once
2
14
16 public:
22 OptimalPrePumpEff(const Pump::Style style, const double flowRate) : style(style), flowRate(flowRate) {};
23
28 double calculate();
29
30 private:
31 const Pump::Style style;
32 const double flowRate;
33};
34
Function prototypes for the Pump result fields.
Header file for OptimalPrePumpEff class.
OptimalPrePumpEff(const Pump::Style style, const double flowRate)