Logic Gates — AND, OR, NOT
Copied to clipboard ✓
AND Gate — All Conditions Must Be True
Home geyser example:
Geyser should turn ON only when ALL of these are true:
Someone is in bathroom (occupancy = TRUE)
AND water tank is not full (level = FALSE / space available)
AND time is between 5AM and 11PM (schedule = TRUE)All three must be true. Any one false → geyser stays off.
BMS example — AHU start:
Fire alarm = Normal (TRUE)
AND Smoke detector = Clear (TRUE)
AND Schedule = Active (TRUE)
AND Emergency stop = Not pressed (TRUE)
────────────────────────────────────
All TRUE → Fan starts
Any FALSE → Fan does not start
OR Gate — Any One Condition Is Enough
Home alarm example:
Alarm sounds if ANY of these happen:
Front door opens OR
Back door opens OR
Window sensor triggers OR
Motion sensor detects movementAny ONE is enough. All false → no alarm. Any one true → alarm sounds.
BMS example — general fault alarm:
Chiller 1 trips OR
Chiller 2 trips OR
Primary pump fails OR
Cooling tower fan faults
────────────────────────
Any one → Alert to engineer immediately
NOT Gate — Reverses the Signal
Garden light example:
Light sensor gives TRUE = daylight present.
Garden light should be ON when it is DARK = sensor is FALSE.
NOT gate flips the signal:
Sensor TRUE (daylight) → NOT → FALSE (light stays off)
Sensor FALSE (dark) → NOT → TRUE (light turns on)
BMS example:
Valve closed feedback = TRUE
NOT gate → Valve open = TRUE (valve is NOT closed)
Used constantly to match signal polarity with control intent
Related Topics
- What is BMS integration? — how a BMS connects with VFDs, energy meters, BACnet/Modbus devices and other building systems
- How to design a BMS system step by step — the complete BMS design methodology covering site survey, IO list, controller selection, sequence of operations
- What is a Building Management System (BMS)? — fundamentals of BMS controls and architecture for HVAC, lighting, energy and access
- What is BMS commissioning? — the disciplined commissioning process that turns a BMS install into a working building brain
- Browse all Control Loops & FBD topics — more from this section of the EnSmart BMS Library
Was this answer helpful?
✓ Thanks — your feedback was recorded.