Learn PLC programming,Free SCADA programming, Download free PLC books, Free manuals,PLC tutorials,PLC presentation.
July 29, 2018
July 27, 2018
PLC Level Control of Two Tanks
The Art of Balance: PLC Level Control for Two Tanks
In many industrial processes, maintaining a consistent liquid level in a tank is critical. Whether it's for mixing chemicals, ensuring a continuous supply to a production line, or managing wastewater, a simple overflow or dry-run can lead to costly downtime and safety hazards. A Programmable Logic Controller (PLC) is the perfect tool for this job, using a simple and reliable logic to automate the process. This article explains how a PLC system can be configured to control the liquid level in not one, but two interconnected tanks.
The Challenge: Keeping Two Tanks in Sync
Imagine a system with two tanks, Tank A and Tank B, where Tank A fills Tank B. If Tank B is allowed to overflow, it creates a spill, but if it runs empty, the downstream process stops. The goal is to design a control system that uses a pump and a valve to maintain the liquid level within a safe operating range in both tanks. The complexity lies in managing the flow between the tanks to prevent either a dry-run or an overflow condition.
Key Components of the System
A PLC-based level control system relies on a few core components to function:
Level Sensors: These are the "eyes" of the system. For a two-tank setup, you would typically use two sensors per tank.
For example:
High-Level Sensor (HLS): A sensor placed at the top of the tank to detect when the liquid has reached the maximum safe level.
Low-Level Sensor (LLS): A sensor placed near the bottom of the tank to detect when the liquid is running low.
Actuators: These are the devices that perform the physical work. In our example, this would be a pump and a valve.
Pump (P1): Fills Tank A from a source.
Valve (V1): Controls the flow from Tank A to Tank B.
Programmable Logic Controller (PLC): The "brain" of the system. It receives signals from the level sensors and sends commands to the pump and valve based on its programmed logic.
The Control Logic: A Simple But Effective Solution
The logic for this system is designed to be fail-safe and efficient. It can be broken down into a few simple rules:
Rule 1: Filling Tank A
The PLC continuously monitors the low-level sensor in Tank A.
IF the Tank A Low-Level Sensor (LS1) is OFF (meaning the tank is not low), THEN the PLC keeps the pump (P1) OFF.
IF the Tank A Low-Level Sensor (LS1) is ON (meaning the tank is low), THEN the PLC turns the pump (P1) ON to start filling the tank.
The pump will continue to run until the Tank A High-Level Sensor (HS1) turns ON. When this happens, the PLC turns the pump OFF.
Rule 2: Filling Tank B
The PLC monitors the level sensors in Tank B and also checks the level in Tank A to ensure there is enough liquid to transfer.
IF the Tank A Low-Level Sensor (LS1) is OFF AND the Tank B Low-Level Sensor (LS2) is ON, THEN the PLC opens the valve (V1). This allows liquid to flow from Tank A to Tank B.
IF the Tank B High-Level Sensor (HS2) turns ON, THEN the PLC closes the valve (V1) to prevent overflow.
By programming these simple conditional statements, the PLC creates an automated system that keeps both tanks at a stable level. The logic ensures that Tank A always has enough liquid to supply Tank B and that Tank B never overflows.
July 22, 2018
Example:-ON/OFF PLC Output with Switch
July 19, 2018
July 12, 2018
Automatic light blinking on 2s interval using PLC.
Program Description