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
OptimalMotorSize.h
1
12#ifndef TOOLS_SUITE_OPTIMALMOTORSIZE_H
13#define TOOLS_SUITE_OPTIMALMOTORSIZE_H
14
16 public:
22 OptimalMotorSize(double optimalMotorShaftPower, double sizeMargin)
23 : optimalMotorShaftPower(optimalMotorShaftPower), sizeMargin(sizeMargin / 100.0) {};
24
29 double calculate();
30
31 private:
32 double optimalMotorShaftPower;
33 double sizeMargin;
34 double optimalMotorRatedPower;
35};
36
37#endif // TOOLS_SUITE_OPTIMALMOTORSIZE_H
Header file for OptimalMotorSize class.
double calculate()
OptimalMotorSize(double optimalMotorShaftPower, double sizeMargin)