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

EMS sensor for HVAC system availability status

asked 2019-02-08 09:02:30 -0500

antoineg's avatar

updated 2019-02-08 09:08:07 -0500

Hi,

Is there a way to define a sensor that would output HVAC system status, related to its operations schedule?

For instance with this schedule:

Schedule:Compact,
HVACOperationSchd,       !- Name
On/Off,                  !- Schedule Type Limits Name
Through: 12/31,          !- Field 1
For: Weekdays SummerDesignDay, !- Field 2
Until: 06:00,0.0,        !- Field 3
Until: 22:00,1.0,        !- Field 5
Until: 24:00,0.0,        !- Field 7
For: Saturday WinterDesignDay, !- Field 9
Until: 06:00,0.0,        !- Field 10
Until: 18:00,1.0,        !- Field 12
Until: 24:00,0.0,        !- Field 14
For: AllOtherDays,       !- Field 16
Until: 24:00,0.0;        !- Field 17

Then the sensor would return 0 until 6am on week days and Saturday, then 1, etc.

Thanks

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2019-02-10 19:41:25 -0500

You could also add the Schedule Value for this HVACOperationSchd as a normal Output Variable to see it's value reported in a CSV file generated by EnergyPlus. However, this seems to be for determining when an HVAC system is available to operate if a cooling or heating load occurs -- it does not necessarily force the HVAC system to operate during those hours. If you want to see when the HVAC system operates, then add a Output Variable for Air System Electric Energy -- if this output is > 0 , the system is on.

If your air system can cycle, or have different "levels" of availability, then use the Air System Simulation Cycle On Off Status

For more on Output Variables, see this Unmet Hours post.

If these aren't useful, and you really want to create an EMS sensor for HVACOperationSchd, it would look like this:

EnergyManagementSystem:Sensor,
  HVAC_Sched_Sensor, !- Name
  HVACOperationSchd, !- Output:Variable or Output:Meter Index Key Name
  Schedule Value;    !- Output:Variable or Output:Meter Name

Then, in an EMS Program, you would define your custom logic for how to use HVAC_Sched_Sensor.

edit flag offensive delete link more

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

2 followers

Stats

Asked: 2019-02-08 09:02:30 -0500

Seen: 245 times

Last updated: Feb 10 '19