Logic Gates — AND, OR, NOT
Copied to clipboard ✓
AND Gate — அனைத்து Conditions-ம் True-ஆக இருக்க வேண்டும்
வீட்டு geyser example:
Geyser, இவை அனைத்தும் true-ஆக இருக்கும்போது மட்டுமே ON ஆக வேண்டும்:
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)மூன்றும் true-ஆக இருக்க வேண்டும். ஏதாவது ஒன்று false என்றால் → geyser 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 — ஏதாவது ஒரு Condition போதும்
வீட்டு alarm example:
இவற்றில் ஏதாவது ஒன்று நடந்தால் alarm ஒலிக்கும்:
Front door opens OR
Back door opens OR
Window sensor triggers OR
Motion sensor detects movementஏதாவது ஒன்று போதும். அனைத்தும் false என்றால் → alarm இல்லை. ஏதாவது ஒன்று true என்றால் → alarm ஒலிக்கும்.
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 — Signal-ஐ தலைகீழாக மாற்றுகிறது
தோட்ட light example:
Light sensor TRUE என்று கொடுத்தால் = daylight இருக்கிறது.
Garden light ON ஆக இருக்க வேண்டும், DARK ஆக இருக்கும்போது = sensor FALSE ஆக இருக்கும்போது.
NOT gate, signal-ஐ flip செய்கிறது:
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
Was this answer helpful?
✓ Thanks — your feedback was recorded.