Latching in PLC with Practical Ladder Logic Example

Latching in PLC (Programmable Logic Controller) is a commonly used control logic technique where an output remains energized even after the initiating input signal is removed. This behavior is essential in industrial automation systems where momentary inputs, such as push buttons, must control continuous operations like motors, pumps, and conveyors.

Latching logic is also known as:

  • Holding circuit
  • Seal-in circuit
  • Self-maintaining circuit

In real industrial environments:

  • Start push buttons are momentary
  • Operators do not keep buttons pressed
  • Equipment must continue running safely

Latching allows the PLC to remember the output state until a defined stop or reset condition occurs. This improves operational reliability, safety, and ease of control.

Latching in PLC 1

Figure  shows the basic PLC latching principle using generic inputs and output.

  • Input A → Start command (Normally Open contact)
  • Input B → Stop command (Normally Closed contact)
  • Output → Controlled device (motor, relay, etc.)
  1. When Input A is momentarily energized, the output coil turns ON.
  2. The output’s own auxiliary contact closes in parallel with Input A.
  3. This creates an OR logic path, allowing the output to remain ON even after Input A is released.
  4. When Input B is activated, the normally closed contact opens.
  5. The circuit breaks, and the output turns OFF.

Even if Input A is no longer active, the output remains energized until Input B is operated. This is the fundamental principle of PLC latching.

Latching in PLC 2

Figure  illustrates a real industrial application of latching using a motor, start/stop push buttons, and status indication lamps.

  • X400 → Start push button (NO)
  • X401 → Stop push button (NC)
  • Y430 → Motor output
  • Y431 → Lamp for power NOT applied
  • Y432 → Lamp for power applied
  1. Pressing Start (X400) energizes output Y430.
  2. The output contact Y430 closes in parallel with the Start button.
  3. The motor continues running even after the Start button is released.
  4. Pressing Stop (X401) opens the NC contact.
  5. Output Y430 de-energizes, stopping the motor.

This rung forms a classic PLC holding circuit used in almost every industrial motor control application.

  • The normally closed contact of Y430 is used.
  • When the motor is OFF, Y430 is de-energized.
  • The contact remains closed, energizing lamp Y431.
  • This lamp indicates power not applied to the motor.

This ensures clear visual feedback for operators and maintenance staff.

  • A normally open contact of Y430 is used.
  • When the motor runs, Y430 energizes.
  • The contact closes and turns ON lamp Y432.
  • This lamp indicates motor running / power applied.

Using separate ON and OFF indication lamps is a standard industrial practice for safety and diagnostics.

  • Allows control using momentary push buttons
  • Prevents accidental shutdowns
  • Improves operator safety
  • Easy to implement and troubleshoot
  • Essential for motors, pumps, compressors, and conveyors
  • Widely accepted in IEC and industrial standards
  • Motor control circuits
  • Pump start/stop systems
  • Conveyor belts
  • Process plant equipment
  • Machine automation panels
  • Control room operations

PLC latching is a fundamental ladder logic concept that enables an output to stay energized even after the initiating input is removed. By using the output’s own contact as a feedback path and a normally closed stop contact for reset, latching provides safe, reliable, and industry-proven control logic.

Read More

Recent