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
#pragma once
2
13
class
MotorPower
{
14
public
:
21
MotorPower
(
double
ratedVoltage
,
double
motorCurrent
,
double
powerFactor
)
22
:
ratedVoltage
(
ratedVoltage
),
motorCurrent
(
motorCurrent
),
powerFactor
(
powerFactor
) {};
23
28
double
calculate
();
29
30
private
:
34
double
ratedVoltage
;
38
double
motorCurrent
;
42
double
powerFactor
;
43
};
44
MotorPower
Contains the declaration of MotorPower class including the getters and setters as well as the calcula...
Definition
MotorPower.h:13
MotorPower::calculate
double calculate()
MotorPower::MotorPower
MotorPower(double ratedVoltage, double motorCurrent, double powerFactor)
Definition
MotorPower.h:21
MotorPower::powerFactor
double powerFactor
Definition
MotorPower.h:42
MotorPower::ratedVoltage
double ratedVoltage
Definition
MotorPower.h:34
MotorPower::motorCurrent
double motorCurrent
Definition
MotorPower.h:38
Generated by
1.9.8