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

Revision history [back]

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.