Ladder Logic Problem

austinjjcm

Member
Join Date
Apr 2006
Location
Portland, Maine
Posts
3
First time on this site.
I am writing a program on a GE Fanuc 90/30 PLC. I can do the basics, but have run into a problem.
Pump control. Have 2 product pumps to be started from eight spots. Pump 1 to start with the first call and pump 2 starts with the third call. Pump 2 needs to shut down when calls drop to two.
What is available in logic to solve this problem?
Thanks,
John in Maine.
 
Assuming that the eight "calls" remain on as long as there is a need for product: Have each off-to-on transition of a call increment a counter. Have each on-to-off transition decrement the same counter. When the counter's accumulated value is 1 or two, turn on pump 1 only, when it's 3 or greater, turn on both pumps, when it's zero, turn both pumps off.
 
Here's how to do it for two calls. Note that I left out the reset line for the up counter and down counters. The two counters should be addressed to the same %R address. The 'P' coil is a positive displacement coil (On-going one shot). The 'N' coil is a negative displacement coile (Off-going one shot). This could get out of whack if two calls ever happen at exactly the same time.


Call1 Call1_On
--] [----------------(P)-

Call1 Call1_Off
--] [----------------(N)-

Call2 Call2_On
--] [----------------(P)-

Call2 Call2_Off
--] [----------------(N)-

Call1_On _____
--] [----+-------|UPCTR|
| | |
Call2_On | | |
--] [----+ |_____|

Call1_Off _____
--] [----+-------|DNCTR|
| | |
Call2_Off| | |
--] [----+ |_____|

 
Last edited:

Similar Topics

please help i didn't solve this problem with rslogix. I counted but i am not using timer. How i will fix this situation? Please anyone solve this...
Replies
18
Views
4,915
It would be awesome if someone could help me out with this problem. We can only use basic XIC XIO OTE OTL and OTU instructions. I'm not sure on...
Replies
33
Views
9,061
I'm using MotionWorks IEC Pro to write a Function Block program. There is also an HMI that needs to interact with this bit of programming. This is...
Replies
3
Views
4,552
Good evening to everyone, here is my question.. I have typed a software in ladder using a plc dl05 and interfacing it with a Cmore micro lcd...
Replies
5
Views
3,919
We are asked to program a conveyor to carry two boxes along it and seperate the long from the short by the means of a kicker at end of...
Replies
53
Views
23,316
Back
Top Bottom