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
include
motorDriven
motor
OptimalMotorSize.h
1
12
#ifndef TOOLS_SUITE_OPTIMALMOTORSIZE_H
13
#define TOOLS_SUITE_OPTIMALMOTORSIZE_H
14
15
class
OptimalMotorSize
{
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
OptimalMotorSize
Header file for OptimalMotorSize class.
Definition
OptimalMotorSize.h:15
OptimalMotorSize::calculate
double calculate()
OptimalMotorSize::OptimalMotorSize
OptimalMotorSize(double optimalMotorShaftPower, double sizeMargin)
Definition
OptimalMotorSize.h:22
Generated by
1.9.8