First time here? Check out the Help page!

Question-and-Answer Resource for the Building Energy Modeling Community
Get started with the Help page
Ask Your Question
3

fan efficiency vs. fan total efficiency issue?

asked 3 years ago

mattkoch's avatar

updated 3 years ago

So, in the OpenStudio 1.2.1 Application (with OpenStudio 3.2.1), for an OS:Fan:VariableVolume, I just entered 0.65 for "Fan Total Efficiency", 5.37 for "Pressure Rise" and 0.93 for "Motor Efficiency". Then I did a model_run_sizing_run() and looked at various outputs, which look plausible.

However, I was also curious to see what the fan outputs would be, so I used the following:

  fan_volume_flow_rate = supply_fan.autosizedMaximumFlowRate().get
  fan_eta = supply_fan.fanEfficiency()
  motor_eta = supply_fan.motorEfficiency()
  total_eta = supply_fan.fanTotalEfficiency()
  runner.registerInfo("#{supply_fan_name} has SA = #{fan_volume_flow_rate/0.3048**3*60.0} [cfm], FE = #{fan_eta}, ME = #{motor_eta} ,TE = #{total_eta}.")

Much to my surprise, both fan_eta and total_eta report as 0.65, when I would have expected fan_eta to report as 0.65/0.93 = 0.698925, so that 0.93*0.698925 = 0.65. Am I missing something? Shouldn't total_eta = motor_eta * fan_eta?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
6

answered 3 years ago

updated 3 years ago

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/pu...

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/doc...

Preview: (hide)
link

Comments

1

Thank you Matthew!

mattkoch's avatar mattkoch  ( 3 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Training Workshops

Careers

Question Tools

1 follower

Stats

Asked: 3 years ago

Seen: 240 times

Last updated: Dec 30 '21