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