This article about “PLC programming to control the level in the tank using three point conductive level switches for motor start & stop logic”.
The level measurement plays a vital role in every industry from small scale sectors to complex oil and gas industries. Different types of sensors available for level measurement like ultrasonic, radar, differential pressure based sensors, etc. These sensors are used for continous level measurment which scales from 0% to 100% of level.
In some applications, we may need to establish a level control loop with less investment and there will be only need to maintain or control specific levels in the vessels or tanks. In these cases, we can use simple level switches for controlling the level at fixed points like Low, Medium, and High levels.
Here in our example, we are using a three probes type conductive level switches for point level detection. A Programmable logic controller (PLC) is used to control the motor based on the level switches status. These level witches are inexpensiive and needs less maintenance. Three lamps are used to indicate the level switches status.
PLC Programming using Level Switches
- When the level is low then the motor (pump) will remain ON till high level reaches, lamp L1 also turns ON and gives an indication of the low level, It will remain ON till it reaches a half level (medium level).
- When the level reaches half (medium level) then the L2 lamp will turn ON & give an indication of half level. L1 goes OFF and the pump will remain ON.
- When the level reaches to high level then the pump goes OFF and lamp L3 will turn ON.
- Low Level Switch – S1_LL (I0.0),
- Medium or Half Level Switch – S2_HL (I0.2),
- High Level Switch – S3_HL (I0.3)
- PUMP (Q4.0),
- Low Level Lamp Indication (L1) – LL_LAMP1 (Q4.1),
- Medium or Half Level Lamp Indication (L2) – HL_LAMP2 (Q4.2),
- High Level Lamp Indication (L3) – HL_LAMP3 (Q4.3)
Comments
Post a Comment