First time here? Check our help page!
1

How to enforce Duty Cycle for Fan:OnOff object

Hi, I am using a fan:onoff object within a Zone:HVAC:TerminalUnit:VariableRefrigerantFlow object, and for some reason even though my runtime fractions for the heating and cooling coils within the object are often between 0 and 1 (i.e. 0.5), the runtime fraction for the Fan:OnOff only bounces from 0 to 1, 1 if there is any load, and 0 if there is no load. The engineering and I/O reference seem to suggest that the fan power and runtime fraction should calculate as if the fan cycles with the coils, but in my model this is clearly not the case. I would appreciate any help. Is there a specific input to force the fan to behave the way I want?

EplusNewb's avatar
41
EplusNewb
asked 2016-11-04 15:29:19 -0500
__AmirRoth__'s avatar
4.4k
__AmirRoth__
updated 2016-11-10 11:04:36 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

3

Look at the VRF terminal unit object and check whether the fan operating mode schedule is cycling (0) or constant (anything other than 0). What you describe sounds like constant fan operating mode.

ZoneHVAC:TerminalUnit:VariableRefrigerantFlow,
  VRFFanSchedule,          !- Supply Air Fan Operating Mode Schedule Name

Schedule:Compact,
  VRFFanSchedule,          !- Name
  Any Number,              !- Schedule Type Limits Name
  Through: 12/31,          !- Field 1
  For: AllDays,            !- Field 2
  Until: 7:00,0.0,         !- Field 3
  Until: 18:00,1.0,        !- Field 5
  Until: 24:00,0.0;        !- Field 7
rraustad's avatar
13.8k
rraustad
answered 2016-11-07 07:57:43 -0500
edit flag offensive 0 remove flag delete link

Comments

Thank you, in the schedule I had designated it does appear to cycle between the 2 modes (0 and 1). I did not previously realize that the schedule in the compound object is where I can select the mode. I appreciate the help!

EplusNewb's avatar EplusNewb (2016-11-07 12:56:40 -0500) edit
add a comment see more comments