In PLC i need motor runtime

aravindhcute

Member
Join Date
Jan 2010
Location
india
Posts
15
Hello friends i want to the blower/motor runtime so i want to show in scada blower/motor runtime(how many days it will working).i done the logic but it not exact logic could u send the plc logic so i can rectifying soon
 
Best -
Generate a one shot pulse every second off of the real time clock (RTC) in the PLC (if it has one).

Second-best - Use an external device, to generate a one second clock pulse, feed it to the PLC as an input, use that input to generate a one-shot pulse every second.

Third-best - Use the most accurate timer in the PLC to generate a 1 second pulse.

COMMON LOGIC TO ALL OF THE ABOVE:
Whenever the motor is running, and you get that pulse, add 1 to a register.
Do the math to break down the total seconds count into minutes, hours, days, whatever.
Deal properly with rollover's in the accumulator register.
Do NOT use a Floating point or 'Real' type register to maintain the seconds count.

Look up "Totalizers".

See the links in my sig as well.
 

Similar Topics

I intend to use a clickPLC to turn a motor on and off for predetermined times. I am still very new to this and not sure exactly how I wire...
Replies
3
Views
1,544
Im currently doing a project to control a speed of an ac motor..after designing the circuit i noticed that the PLC must me a dc input n...
Replies
125
Views
48,688
I have an old Sentry Palletizer (S/O Number 3007 / Serial Number 1172) that has lost its program as the backup battery died years ago. I can...
Replies
0
Views
108
Hi all Trying to remotely connect to a TIA Portal PLC. I can ping it without a problem but can't get my software to connect. I've opened port...
Replies
8
Views
355
See code at the bottom. Hi all. For the story, this is my first complete project using a Rockwell PLC, I've been mostly working with Unity Pro...
Replies
7
Views
811
Back
Top Bottom