1 / 17

PLC Counters

PLC Counters. Introduction. We use timers to measure the elapsed time between two events. With retentive timers the “run” signal can be turned on and off again until the preset time is reached. Counters

hamlin
Télécharger la présentation

PLC Counters

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. PLC Counters

  2. Introduction We use timers to measure the elapsed time between two events. With retentive timers the “run” signal can be turned on and off again until the preset time is reached. Counters don’t care how long the activation signal is on, but rather each off to on transition. This is also called “positive edge” or “rising edge” triggered.

  3. Types Up counter Down counter If your going to count five events, it doesn’t matter if you count up to five from zero or down to zero from five.

  4. Counter Up

  5. Counter Down

  6. Counter - internal structure

  7. High speed counter Can count events up to 8 kHz, like shaft encoders NOT available for us. Only on the Micrologix PLCs

  8. Counter example

  9. Response time If we assume that a PLC had a 10 mSec scan time, the period = 1 / time or 100 Hz. That means to detect a low to high transition would require the PLC to see the input low on one scan then high on the next. The counter then could count no faster than once every two scans. At 10 mSec a scan, 20 mSec or 50 Hz is the fastest that we could expect the counter to respond.

  10. Devices Most times the PLC counter is required to count the number of times a limit switch, or photoeye has activated. These events are slow enough for the PLC to keep up. However, there are other devices that the PLC cannot track. Incremental shaft encoders, which provide position information, often send thousands of pulses per second. A flow meter used in a process control system may send out hundreds of pulses per second.

  11. Coal mine example

  12. Coal mine Often times the mine is owned by one party while another company will do the actual mining. The company doing the mining will pay for the coal removed from the mine. Therefore the owner installs a measuring system to constantly keep a running total of the coal removed. The coal mine uses a conveyor to continuously remove coal from the mine. In this case a nuclear gamma radiation gage is used to measure the mass of the coal. The gamma gage is a popular choice since the measurement can be made without physical contact of the coal or conveyor. The mass signal from the gage is sent to the PLC along with the conveyor speed (usually a frequency 0-20Hz). The PLC multiplies these numbers together and calculates the amount of coal coming out. The PLC then keeps a running total.

  13. Coal mine problem At a mine in South Africa, the PLC being used sent a series of pulses to an electronic counter that displayed the totalized product removed from the mine. The environment was rather harsh and the counters kept failing. Electro-mechanical counters were then installed. However, the reading on the electro-mechanical counters did not match the PLC. How could the simple replacement of an electronic counter with an electro-mechanical counter cause problems? The counters were installed properly and nothing had been tampered with.

  14. Solution The electronic counter can count pulses down to 50 uSec or 20 kHz. The electro- mechanical counter had a maximum frequency of 20 Hz and required an activation signal of 20 mSec minimum (since time is required to the electromagnetic field to build up enough for the solenoid to physically move the counter mechanism). The PLC was using a one-shot in the logic to pulse the counter. The scan time was around 14 mSec, which means the one-shot is only on for 12 mSec which was long enough only about 30% of the time to activate the electro-mechanical counter. Moral of the story: Don’t use one-shots in logic that drives outputs directly. Homework: Add the logic necessary to stretch a one-shot pulse into a 25 mSec pulse.

  15. Parking garage A parking garage is an example where an up and down counter can be used together to track both garage utilization and to turn on the garage “Full” indicator when no more parking spots are available.

  16. Up/Down example Note how both counters use the same structure C5

  17. Exercises Build a program that will count 100 transitions on input #1 then 15 seconds later turn on output #2

More Related