Skip to main content

Posts

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...
Recent posts

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...

Advanced FBD programming

 Level Up Your FBD Skills – Building Reusable Function Blocks (UDFBs) Like a Pro Let me ask you something. Have you ever copied and pasted the same logic over and over again—just for different motors, valves, or pumps? I have. And I'll be honest—it feels fine at first. A quick Ctrl+C, Ctrl+V, change a few tag names, and you're done. But then you realize you need to change the timer from 5 seconds to 10 seconds. And now you're updating it in 17 different places. One mistake, one missed update, and your machine behaves differently on Line A versus Line B. That's not engineering. That's chaos. Today, we're going to fix that permanently. We're going to turn our humble motor control logic from the last article into a reusable, parameterized Function Block—a UDFB (User-Defined Function Block) that you can drag, drop, and configure in seconds. Think of it like this: instead of writing the same recipe from scratch every time, you're creating a template where you...

Plc programming languages

 PLC Programming Languages Unlocked – Why FBD is Your Visual Superpower Ever stared at a screen full of code and wished you could just see what your logic is doing? You're not alone. If you're new to PLC programming—or even if you've been around for a while—you've probably heard terms like LAD, FBD, and SCL thrown around. And maybe you've wondered: Which one should I actually use? Let me walk you through the landscape of PLC programming languages, and more importantly, why Function Block Diagram (FBD) might just be the visual superpower you didn't know you needed. The Big Picture: What is IEC 61131-3? Before we dive into the languages themselves, let's talk about the standard that governs them all: IEC 61131-3. This international standard defines the programming languages for programmable controllers [1†L4-L8]. Think of it as the rulebook that ensures no matter which PLC manufacturer you're working with, the languages follow consistent rules [1†L4-L8]. T...

Timers Explained — TON, TOF, RTO in PLC Ladder Logic

 Timers Explained — TON, TOF, RTO in PLC Ladder Logic Sooner or later, every rung you write needs to wait for something. A pump that shouldn't stop the instant its command drops, a damper that needs a few seconds to actually reach position before the fan is allowed to start, an alarm that shouldn't scream the moment a reading blips for half a second. Every one of those situations comes down to the same three instructions: TON, TOF, and RTO. Learn these three cold, and you've covered probably ninety percent of the timing logic you'll ever write on a real plant. Why Timers Exist in the First Place A plain contact and coil only know two states: on or off, right now, with no memory of how long anything has been true. Most real equipment doesn't behave that cleanly. A conveyor needs a few seconds of run-up before a downstream sensor is believed. A trip condition might need to persist for a second or two before it's treated as real, so a single noisy pulse from a sens...

Latching in ladder logic plc programming

What Is Ladder Logic? PLC Programming Basics Explained Anyone who's wired a motor starter with a start button, a stop button, and a seal-in contact already understands most of ladder logic — it just hasn't been seen drawn this way yet. Here's an explanation the way it would be given to a new technician on the floor: no jargon, just the four building blocks used for the rest of a career in this field. Why It's Called "Ladder" Logic Before PLCs existed, plants ran on relay panels — actual electromechanical relays, wired point to point. When an electrician designed one of these panels, the circuit was drawn on paper first: two vertical power rails running down the sides, with horizontal lines connecting them, each representing a control circuit. Because the drawing resembled the rails and rungs of a ladder, the name stuck. When PLCs arrived in the 1970s, manufacturers faced a choice: invent an entirely new symbol language, or keep what electricians already under...

What is ladder logic

  What Is Ladder Logic? PLC Programming Basics Explained Anyone who's wired a motor starter with a start button, a stop button, and a seal-in contact already understands most of ladder logic — it just hasn't been seen drawn this way yet. Here's an explanation the way it would be given to a new technician on the floor: no jargon, just the four building blocks used for the rest of a career in this field. Why It's Called "Ladder" Logic Before PLCs existed, plants ran on relay panels — actual electromechanical relays, wired point to point. When an electrician designed one of these panels, the circuit was drawn on paper first: two vertical power rails running down the sides, with horizontal lines connecting them, each representing a control circuit. Because the drawing resembled the rails and rungs of a ladder, the name stuck. When PLCs arrived in the 1970s, manufacturers faced a choice: invent an entirely new symbol language, or keep what electricians already ...