Revision history [back]
The methods fanEfficiency
and fanTotalEfficiency
are the same. See the Pull Request and associated issue below for background. Impeller efficiency is not an explicit input in EnergyPlus for fans (or pumps), thus OpenStudio does not have a method for it.
https://github.com/NREL/OpenStudio/pull/3204
So, this code should work...
fan_tot_eff = fan.fanTotalEfficiency
fan_mtr_eff = fan.motorEfficiency
fan_imp_eff = fan_tot_eff / fan_mtr_eff
For pumps, I believe EnergyPlus assumes a constant impeller efficiency of 0.78.
https://bigladdersoftware.com/epx/docs/9-6/engineering-reference/component-sizing.html#design-power-consumption
The methods fanEfficiency
and fanTotalEfficiency
are the same. See the Pull Request and associated issue below for background. Impeller efficiency is not an explicit input in EnergyPlus for fans (or pumps), or pumps, thus OpenStudio does not have a method for it.
https://github.com/NREL/OpenStudio/pull/3204
So, this code should work...
fan_tot_eff = fan.fanTotalEfficiency
fan_mtr_eff = fan.motorEfficiency
fan_imp_eff = fan_tot_eff / fan_mtr_eff
For pumps, I believe EnergyPlus assumes a constant impeller efficiency of 0.78.
https://bigladdersoftware.com/epx/docs/9-6/engineering-reference/component-sizing.html#design-power-consumption
The methods fanEfficiency
and fanTotalEfficiency
are the same. See this PR and the Pull Request and associated issue below for background. Impeller efficiency is not an explicit input in EnergyPlus for fans or pumps, thus OpenStudio does not have a method for it.
https://github.com/NREL/OpenStudio/pull/3204
So, this code should work...
fan_tot_eff = fan.fanTotalEfficiency
fan_mtr_eff = fan.motorEfficiency
fan_imp_eff = fan_tot_eff / fan_mtr_eff
The methods fanEfficiency
and fanTotalEfficiency
are the same. See this PR and the associated issue for background.
https://github.com/NREL/OpenStudio/pull/3204
So, this code should work...
fan_tot_eff = fan.fanTotalEfficiency
fan_mtr_eff = fan.motorEfficiency
fan_imp_eff = fan_tot_eff / fan_mtr_eff
The methods fanEfficiency
and fanTotalEfficiency
are the same. See this PR and the associated issue for background.
https://github.com/NREL/OpenStudio/pull/3204
The methods fanEfficiency
and fanTotalEfficiency
are the same. See this PR and the associated issue for background.
https://github.com/NREL/OpenStudio/pull/3204
fan_tot_eff = fan.fanTotalEfficiency fan_mtr_eff = fan.motorEfficiency fan_imp_eff = fan_tot_eff / fan_mtr_eff
The methods fanEfficiency
and fanTotalEfficiency
are the same. See this PR and the associated issue for background.
https://github.com/NREL/OpenStudio/pull/3204
fan_tot_eff = fan.fanTotalEfficiency fan_mtr_eff = fan.motorEfficiency fan_imp_eff = fan_tot_eff / fan_mtr_eff
The methods fanEfficiency
and fanTotalEfficiency
are the same. See this PR and the associated issue for background.
- https://github.com/NREL/OpenStudio/pull/3204
https://github.com/NREL/OpenStudio/pull/3204```
fan_tot_eff = fan.fanTotalEfficiency
fan_mtr_eff = fan.motorEfficiency
fan_imp_eff = fan_tot_eff / ```