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
MotorPower.h
1
11#ifndef TOOLS_SUITE_MOTORPOWER_H
12#define TOOLS_SUITE_MOTORPOWER_H
13
15 public:
24
29 double calculate();
30
31 private:
44};
45
46#endif // TOOLS_SUITE_MOTORPOWER_H
Contains the declaration of MotorPower class including the getters and setters as well as the calcula...
Definition MotorPower.h:14
double calculate()
MotorPower(double ratedVoltage, double motorCurrent, double powerFactor)
Definition MotorPower.h:22
double powerFactor
Definition MotorPower.h:43
double ratedVoltage
Definition MotorPower.h:35
double motorCurrent
Definition MotorPower.h:39