Skip to main content

Posts

Interlocks in Ladder Logic: Protecting Your Equipment and People

 Interlocks in Ladder Logic: Protecting Your Equipment and People Of everything you'll ever touch in a ladder program, interlock logic deserves the most respect. Everything else in this series — timers, counters, seal-in circuits — is about making equipment do what you want. Interlocks are about stopping equipment from doing what could hurt someone or destroy a machine. Get this part wrong, and the consequences aren't "the conveyor didn't start." They're injuries, fires, and six-figure equipment damage. What an Interlock Actually Is At the logic level, an interlock is nothing exotic — it's a permissive contact, often several of them in series, that has to be true before an output is allowed to energize. The complexity isn't in the instruction set; it's in getting the conditions right, and making sure nothing can bypass them. Real example:  A raw mill can't start unless the mill fan is already running, the separator is up to speed, and no E-stop...

Understanding Contacts and Coils: The Building Blocks of Ladder Logic

 Understanding Contacts and Coils: The Building Blocks of Ladder Logic In the last post, we covered the basic idea behind ladder logic — rungs, rails, contacts, and coils. Now let's slow down and really understand contacts and coils, because this is the single most common place I see junior technicians get confused, especially when a rung isn't doing what they expect. Normally Open vs. Normally Closed  The Confusion Starts Here A normally open (NO) contact, symbol -| |-, is closed (passes power) when its associated bit is TRUE. Simple enough. A normally closed (NC) contact, symbol -|/|-, is closed (passes power) when its associated bit is FALSE. This is where people trip up. The contact's physical state on your screen doesn't describe the wiring in the field — it describes the software logic. If you've got an NC contact referencing a Stop pushbutton wired normally closed (which is standard safety practice), that contact is "closed" logically when the pushb...

Counters in Ladder Logic: Practical Applications in Cement Plants

 Counters in Ladder Logic: Practical Applications in Cement Plants If timers measure "how long," counters measure "how many." That sounds simple, and the basic instruction is simple — but counters show up in more places on a cement plant than most technicians realize, from batch tracking to bag counting to fault-frequency monitoring. Let's go through how they work and where you'll actually use them. CTU — Count Up The workhorse counter. Every time its input transitions from false to true (a rising edge — not while it's held true), the accumulated value increases by one. Once the accumulator reaches the preset, the done bit sets. It keeps counting past the preset too, if you let it, and the done bit stays set until reset. Real example: Counting bag discharge pulses from a rotary packer to track bags filled per shift, or counting pulses from a proximity sensor on a bucket elevator to detect bucket loss over time. CTD — Count Down The mirror image — starts ...

Seal-In (Latching) Circuits Explained with Real Plant Examples

 Seal-In (Latching) Circuits Explained with Real Plant Examples Here's a question I still ask trainees during their first week: "Your Start pushbutton is momentary — you press it, it springs back. So how does the motor keep running after you let go?" Most give me a blank look at first. The answer is one of the oldest tricks in control logic, and once it clicks, half of every ladder program you'll ever read suddenly makes sense. The Problem Seal-In Solves A pushbutton, by nature, only holds its state while your finger is on it. If your motor start rung was just: Start contact → Motor coil, the motor would only run while you physically held the button down. Obviously not practical for a conveyor that needs to run for hours. The Trick: Feed the Output Back Into Its Own Rung The solution is to add a second contact in parallel with the Start pushbutton — but this contact references the motor coil's own output bit, not a physical input. So the rung logic becomes: (Start...

Flow Measurement in Cement Plants

 Flow Measurement in Cement Plants: Choosing and Troubleshooting the Right Technology Flow measurement in a cement plant isn't one technology doing one job — it's four or five different technologies, each solving a different problem, and each with its own failure modes. Cooling water, compressed air, fuel oil, slurry lines, and coal dust conveying all need flow data, but the instrument that works beautifully on clean cooling water will fail within weeks on abrasive slurry. This article covers the main flow technologies you'll encounter on a cement plant and how to actually troubleshoot them when they misbehave. The Main Technologies and Where They Belong Electromagnetic flow meters (mag meters) measure the voltage induced in a conductive fluid as it passes through a magnetic field, per Faraday's law. They need a conductive liquid — this rules out compressed air, steam, and hydrocarbon fuels entirely. In a cement plant they're the workhorse for water lines, cooling c...

Belt Weigh Feeders in Cement Plants

 Belt Weigh Feeders in Cement Plants: Working Principle, Calibration, and Field-Proven Fault Tracing If you've spent any time in a cement plant control room, you already know the belt weigh feeder is one of the most argued-about instruments on the site. Production wants accurate raw mix proportioning. Process wants stable kiln feed. Maintenance wants it to just stop drifting. And somewhere in between sits the I&C technician, staring at a load cell reading that doesn't match what's actually on the belt. This article is written from twenty-five years of hands-on troubleshooting on Schenck and Hasler feeders across raw mill, coal mill, and additive dosing lines. The goal isn't to repeat the theory you'll find in a vendor manual — it's to walk through how the system actually behaves in the field, where it fails, and how to fix it without guesswork. How a Belt Weigh Feeder Actually Works A belt weigh feeder combines three measurements into one continuous mass flo...