18 FanShaftPower(
const double motorShaftPower,
const double efficiencyMotor,
const double efficiencyVFD,
19 const double efficiencyBelt,
const double sumSEF)
20 : efficiencyMotor(efficiencyMotor / 100), efficiencyVFD(efficiencyVFD / 100),
21 efficiencyBelt(efficiencyBelt / 100), sumSEF(sumSEF) {
22 motorPowerOutput = motorShaftPower * this->efficiencyMotor * this->efficiencyVFD;
23 fanPowerInput = motorPowerOutput * this->efficiencyBelt;