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

multi-speed and fan power

asked 2015-09-30 09:59:01 -0500

Rohini's avatar

updated 2015-11-08 12:42:17 -0500

How is the fan power being calculated when using a multi-speed coil and Fan:OnOff? In the multi-speed example files, I do not see a fan power curve being used.

edit retag flag offensive close merge delete

2 Answers

Sort by » oldest newest most voted
4

answered 2015-09-30 13:12:47 -0500

updated 2015-09-30 13:15:08 -0500

The fundamental fan power calculation resides in the fan object and is based on user inputs for total efficiency, pressure rise, maximum flow rate, motor efficiency and motor in air stream fraction. These inputs, along with the flow rate entering the fan, and the flow ratio based on fan maximum flow rate, are used to calculate fan power.

PartLoadRatio = MassFlow / MaxAirMassFlowRate
FanRuntimeFration = PartLoadRatio / OnOffFanPartLoadFraction
FanPower = MaxAirMassFlowRate * FanRuntimeFraction * DeltaPress / ( FanEff * RhoAir )

As noted in the previous answer, there is additional information available to the Fan:OnOff object that can be passed from specific parent objects (namely the AirloopHVAC:Unitary*, and AirloopHVAC:UnitarySystems) which can account for fan curves (power vs speed ratio).

When the speed ratio curves are used with Fan:OnOff then:

PartLoadRatio = MassFlow / MaxAirMassFlowRate
FanRuntimeFration = PartLoadRatio / OnOffFanPartLoadFraction

FanRuntimeFraction = FanRuntimeFraction / SpeedRatio
SpeedRaisedToPower = FanPowerRatioAtSpeedRatio = f(SpeedRatio)
EffRatioAtSpeedRatio =FanEfficiencyRatioAtSpeedRatio = f(SpeedRatio)

FanPower = MaxAirMassFlowRate * FanRuntimeFraction * DeltaPress / ( FanEff * RhoAir )
FanPower *= SpeedRaisedToPower / EffRatioAtSpeedRatio
edit flag offensive delete link more
2

answered 2015-09-30 12:02:08 -0500

The documentation for the Fan:OnOff object in E+ shows that it models a constant volume fan that cycles on and off and would calculate power using efficiency, air flow rate, and pressure drop. However, if this object is used as part of multi-speed compound objects (like the AirLoopHVAC:Unitary:Furnace:HeatCool object that combines a fan, cooling coil, and heating coil), then E+ calculates fan power slightly differently. Instead, the ratio of the compound (Unitary) object air flow rate to the fan’s (Fan:OnOff) maximum air flow rate is used to determine the power at alternate fan speeds. Below the last minimum input field for the Fan:OnOff object (Air Outlet Node Name) is an optional input field for Fan Power Ratio Function of Speed Ratio Curve Name. This field must be used to model multi-speed fan operation. An optional fan total efficiency ratio curve is also available to model efficiency differences at alternate fan speeds.

In the MultiSpeedACFurnace.idf example file, the fan's max flow rate is 1.7 m3/s. If you look at the last 8 input fields of the unitary object, they list air flow rates for the four stages of heating and cooling (illustrated below). Heating has just the same 1.7 m3/s for single-stage operation, while cooling has four separate air flow rates (one for each stage).

AirLoopHVAC:UnitaryHeatPump:AirToAir:MultiSpeed,
  DXAC Heat Pump 1,        !- Name
  .... 
  1,                       !- Number of Speeds for Heating
  4,                       !- Number of Speeds for Cooling
  1.7,                     !- Speed 1 Supply Air Flow Rate During Heating Operation {m3/s}
  ,                        !- Speed 2 Supply Air Flow Rate During Heating Operation {m3/s}
  ,                        !- Speed 3 Supply Air Flow Rate During Heating Operation {m3/s}
  ,                        !- Speed 4 Supply Air Flow Rate During Heating Operation {m3/s}
  0.4,                     !- Speed 1 Supply Air Flow Rate During Cooling Operation {m3/s}
  0.8,                     !- Speed 2 Supply Air Flow Rate During Cooling Operation {m3/s}
  1.2,                     !- Speed 3 Supply Air Flow Rate During Cooling Operation {m3/s}
  1.7;                     !- Speed 4 Supply Air Flow Rate During Cooling Operation {m3/s}

I hope this helps!

edit flag offensive delete link more

Comments

The optional power/efficiency curves are not being used in the example files for multi-speed. In this case, is there a default function being assumed for the power-flow relationship?

Rohini's avatar Rohini  ( 2015-09-30 12:38:02 -0500 )edit

Your Answer

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

Add Answer

Careers

Question Tools

1 follower

Stats

Asked: 2015-09-30 09:59:01 -0500

Seen: 232 times

Last updated: Sep 30 '15