Simple PLC Replacement

rajy2r

Member
Join Date
Nov 2006
Location
Canada
Posts
167
Trying to do a real simple job, where i have 8 inputs coming in (Auxiliary for 8 Fans). Need to confirm at least 5 are running, and turn an output on if they are.

Just need something basic, but reliable enough. Any suggestions ?
 
You could use a click PLC for $69. from Automation Direct. Software is free. I have used enough of their PLCs to say that if it works the 1st time, it should continue on for years. Personally, i would spend a few pennies more and use a Micrologix 1100. for me, it would be easier and faster since I would already know the software. Both of them have enough I & O for your application.
 
If the logic is as simple as you mentioned, I'd just use a smart relay. You wouldn't even need programming software; just configure the logic on the LCD. Allen-Bradley Pico, Telemecanique Zelio, Omron ZEN just to name a few.
 
How about clearing a register, 8 conditional adds of '1' and a test of register greater than or equal to 5. Thus evaluated every scan.
 
Last edited:
Thanks for the help guys. Appreciate the help. Not quite sure how you would program that with a smart relay but i will look into it.

Yea i have used logic just as bernie suggested. Have used it in AB PLC in the past, but the example for Click makes learning the instruction set simpler.
 
Appreciate the help. Not quite sure how you would program that with a smart relay but i will look into it.
I can't see how Eric and Bernie's great logic could be made to work with a smart relay (which normally has no available memory storage registers, move, copy, or math instructions).

But my version will fit nicely into a Omron ZEN smart relay, like the attached file. Running the ZEN simulator, the Output Q1 stays on if 5 of the 8 fan inputs are on. If there had been 9 fan inputs, then the ZEN could not handle the job because it only has 16 comparison "relays" P0 to P9 and Pa to Pf. I could see no way to do each timer value comparsion with only one <= or >= (the only two comparison instructions available). Each input pulse must have some time between it and the previous one, so that the pulse relay will go off, then back on, causing Counter 1 to count from 0 to 5.

I used 2 ZEN expansion modules to get the 8 fan X inputs, but you could use the remaining 4 built-in inputs and 1 expansion module. The ZIP file is the actual ZEN program.
 
Last edited:
Lancie1,
I've been trying to figure out a solution using only relays and contacts programming but it gets too confusing.
 
Last edited:
Instead of using a timer could you use false for the Counter on every other rung?

Siemens implementation example:

fanxuax.jpg
 

Similar Topics

MELSEC A RS422 (25pin) <> iQR C24 Serial RS232 (9pin) - Simple PLC Communication Communication from a MELSEC-A Series CPU (RS-422 – DB 25 Pin)...
Replies
4
Views
1,037
Hi, I have setup the Simple PLC communication in RJ71C24 (Channel 2) for communication between Mitsubishi IQ-R series PLC (Mosbus RTU Master) and...
Replies
4
Views
2,494
Hello everyone, I am a newbie in automation stuff and i wanted to do a simple thing with just a sensor, a blade and a plc. My aim is this - The...
Replies
14
Views
3,968
Hi, I am currently working on a little project and I am wanting to control a fans speed with some PLC digital outputs / anolog output but unsure...
Replies
7
Views
3,411
I have two AB MicroLogix 1500s that I want to be able to communicate with each other via two Transnet 900 radios (one master, one remote). Using...
Replies
2
Views
1,586
Back
Top Bottom