Stop and Start process

iconoclast

Member
Join Date
Dec 2013
Location
Roma
Posts
2
There all I am currently having some trouble with a program and I would appreciate some ideas and help.

The main program is based on tank filling process and I have inserted the heating and mixing of the fluid in a sub routine once the tank is filled.

Would you suggest a way I could stop the process upon the pressing of the stop button anywhere during the process and when the start is pressed the problem will continue where it left off?

Somewhat of a pause button situation if you will

Thanks

Iconoclast :)
 
Would you suggest a way I could stop the process upon the pressing of the stop button anywhere during the process and when the start is pressed the problem will continue where it left off?
Yes, all you need to do is create a "System Run" relay. Use the Stop and Start Pushbuttons, and also the Auto-Stop flag relay (if you have got to Exercise 3) to control the new System Run relay. Then use this relay in every rung that has an Output (except not for the indicator lights). When System Run is OFF, all your motor Outputs will turn off. When System Run is ON, the process should start and run normally. (See picture).

PS: If you are doing the LogixPro Batch Mix problem, then there are some other steps necessary to make it restart where it left off. For example, use a RTO timer instead of a TON.

LogixPro Batch Mix Start-Stop.jpg
 
Last edited:
Exactly i am trying out the batch mix problem.

I am trying to attach a picture but cannot seem to do so (Maybe i can send an email with the rsl program?)...I have used a subroutine with TONs and their respective TT and DN to produce the desired output.

I did not quite understand what you meant with RTO instead of TON

REALLY appreciate your help guys!
 
Exactly i am trying out the batch mix problem.

I am trying to attach a picture but cannot seem to do so (Maybe i can send an email with the rsl program?)...I have used a subroutine with TONs and their respective TT and DN to produce the desired output.

I did not quite understand what you meant with RTO instead of TON

REALLY appreciate your help guys!

An RTO timer is different from a TON timer in that the accumulator ACC does not reset should the input go low. It continues to time where it left off from when the input goes back high again. To reset if you can either write directly to the ACC (unusual) or by using a reset coil with the timers address (most common). I am certain you can see just by this description why this timer would be helpful with your application.

Depending on exactly what your process is, you might achieve the same using counters as well. Especially if you are using prox switches or such to count auger revolutions or similar.
 
I have used a subroutine with TONs and their respective TT and DN to produce the desired output.
You only need one Retentive Timer On Delay (RTO) to run the mixer for 8 seconds. If you used any other timers for the Batch Mix Exercise 3, your solution is inefficient, and probably does not work very well. You do not need a subroutine for this short program. You should be able to do the entire problem with about 11 rungs of logic (including a Count Up and Count Down counter to record the flowrate from Flowmeter #1 and Flowmeter #3). A subroutine will only complicate the program for no good reason. However I found it useful to use two B3 Step (Flag) relays, one for "Mixing Cycle" and another for "Drain Cycle".

Depending on exactly what your process is, you might achieve the same using counters as well.
This is a link for the description of the LogixPro Batch Mix Exercise 3 "Continuous Operation".

http://www.thelearningpit.com/plc/psim/doc/batchlab.html
 
Last edited:

Similar Topics

Hello I am trying to make a program work with a sqo instruction .The process has 5 steps ,and a starting step of zero.There should be 8 sec...
Replies
17
Views
1,052
Good morning to everyone on the forum and happy new year. I'm trying to use the following functions in sysmac studio, because I need to enable one...
Replies
1
Views
327
Good Morning , I would like to start a Powerflex 525 with a N.O. Start Pushbutton , and when the N.O. Start Pushbutton is released I would...
Replies
3
Views
1,667
Hello, I am trying to detect when the PLC changes from STOP to START mode. This can be considered an edge case scenario, but I would to analyze...
Replies
4
Views
1,566
Hello Everyone! It has been a while since I used the method of drawing a state diagram, converting that to Boolean algebra, and translating that...
Replies
13
Views
2,967
Back
Top Bottom