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

Revision history [back]

You could a deadband, which could be something like:

If (Num_People > 0) && (Sensor_CO2 >=800 + deadband/2), SET Window = 1, ELSIF (Sensor_CO2 <= 800 - deadband/2), SET Window = 0, ENDIF

click to hide/show revision 2
No.2 Revision

You could a deadband, which could be something like:


If IF (Num_People > 0) && (Sensor_CO2 >=800 + deadband/2),
 SET Window = 1,
ELSIF (Sensor_CO2 <= 800 - deadband/2),
 SET Window = 0,
ENDIF

click to hide/show revision 3
No.3 Revision

You could a deadband, deadband, which could be something like:

IF (Num_People > 0) && (Sensor_CO2 >=800 + deadband/2),
  SET Window = 1,
ELSIF (Sensor_CO2 <= 800 - deadband/2),
  SET Window = 0,
ENDIF
click to hide/show revision 4
No.4 Revision

You could a deadband, which could be something like:

IF (Num_People > 0) && (Sensor_CO2 >=800 + deadband/2),
  SET Window = 1,
ELSIF (Sensor_CO2 <= 800 - deadband/2),
  SET Window = 0,
ENDIF

Or you could use trend variables and add hysteresis.

click to hide/show revision 5
No.5 Revision

You could add a deadband, to the program, which could be something like:

IF (Num_People > 0) && (Sensor_CO2 >=800 + deadband/2),
  SET Window = 1,
ELSIF (Sensor_CO2 <= 800 - deadband/2),
  SET Window = 0,
ENDIF

Or you could use trend variables and add hysteresis.