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