Anwar Automation Technology

Anwar Automation Technology "Welcome to Anwar Automation Technology, a hub for PLC knowledge and programming .

Created by Anwar Shahadat, passionate about automation, this page simplifies PLC concepts, offers practical guides, and empowers you to excel in industrial automation.

πŸ”Ή Distributed Control System (DCS) with Analog I/O ArchitectureThis schematic demonstrates the working principle of a Di...
16/08/2025

πŸ”Ή Distributed Control System (DCS) with Analog I/O Architecture

This schematic demonstrates the working principle of a Distributed Control System (DCS) in industrial automation, focusing on analog signal communication (4–20 mA) between the control cabinet and field devices.

πŸ–₯️ Control Cabinet (DCS Panel)

PID Controllers: Perform closed-loop control by comparing process variables with setpoints and adjusting outputs accordingly.

Analog Input (AI) Modules: Receive continuous 4–20 mA signals from field transmitters that measure process variables such as pressure, temperature, flow, or level.

Analog Output (AO) Modules: Transmit control signals (4–20 mA) from the DCS to actuators in the field.

Red dashed lines in the schematic represent internal communication between PID, AI, and AO modules inside the DCS panel.

βš™οΈ Field Devices

Transmitters (Sensors): Convert physical process parameters (flow, pressure, temperature, etc.) into analog signals for the DCS.

Control Valve: Receives 4–20 mA signal from the AO module to adjust fluid flow according to process requirements.

Variable Frequency Drive (VFD): Takes 4–20 mA control signal from the DCS to regulate motor speed, ensuring energy-efficient operation.

Induction Motor: Powered by 480 VAC supply, the motor drives mechanical equipment, with speed controlled by the VFD.

πŸ”„ Signal Flow

Measurement β†’ Transmitters send analog feedback signals (4–20 mA) to AI modules in the DCS.

Processing β†’ The DCS, through PID control, compares inputs with setpoints and computes corrective actions.

Control Output β†’ AO modules deliver analog signals to actuators (valves, VFD).

Final Control Action β†’ The motor and valve adjust operations, maintaining process stability.

πŸ“Œ Importance

This configuration highlights the integration of instrumentation and control systems in industrial plants. By using analog I/O loops, industries achieve:

Accurate monitoring of process variables.

Precise control of actuators and drives.

Enhanced operational efficiency, safety, and reliability.

Motor Power: 20 HPVoltage: 420 V (three-phase supply)Power Factor (P.F): 0.7Conversion: 1 HP = 746 WTotal power in watts...
12/08/2025

Motor Power: 20 HP

Voltage: 420 V (three-phase supply)

Power Factor (P.F): 0.7

Conversion: 1 HP = 746 W

Total power in watts: 20Γ—746=14,920W

P(W)
Formula used: I = -------------------
√3 Γ—VΓ—cosΟ•
Where:
P = Power in watts
V = Voltage in volts
cosΟ• = Power factor
√3 = 1.732 (constant for 3-phase calculation)

Step-by-step:

Power in watts: 14,920 W

Denominator: 1.732Γ—420Γ—0.7=509.208

14920
Current: I = -------------- = 29.30A
509.208

The motor will draw approximately 29.3 amps under the given conditions.

Clamp Meter Symbols GuideA clamp meter is an essential tool for electrical measurement, allowing safe and accurate readi...
08/08/2025

Clamp Meter Symbols Guide
A clamp meter is an essential tool for electrical measurement, allowing safe and accurate readings without direct contact with live wires. Understanding its symbols is crucial for efficient use:

V~ – AC Voltage measurement

A~ – AC Current measurement

VβŽ“ – DC Voltage measurement

AβŽ“ – DC Current measurement

πŸ”Š – Continuity test (checks circuit connections)

Ξ© – Resistance measurement (Ohms)

HOLD – Locks the displayed reading

SELECT – Switches between measurement modes

Diode symbol – Diode testing

OFF – Power off the device

NCV – Non-contact voltage detection

Β°C / Β°F – Temperature measurement

Capacitor symbol – Capacitance measurement

Hz – Frequency measurement

Max/Min – Captures maximum or minimum readings

Happy to share that I’ve officially received my BC License.Looking forward to applying my skills professionally with mor...
07/08/2025

Happy to share that I’ve officially received my BC License.

Looking forward to applying my skills professionally with more credibility and confidence. Thank you to everyone who supported this journey.

🚦 How I Designed a PLC-Based Traffic Light Ladder DiagramLet me walk you through how I created this ladder logic to auto...
28/07/2025

🚦 How I Designed a PLC-Based Traffic Light Ladder Diagram
Let me walk you through how I created this ladder logic to automate a standard traffic light sequence using three colors (Green, Yellow, Red):

🧱 Step 1: Start/Stop Control
Inputs:

%I0.0 = Start Push Button

%I0.1 = Stop Push Button

Logic:

I used a latching memory coil %M0.0 ("M") to maintain the ON/OFF state using the start/stop buttons.

This allows the system to run continuously until manually stopped.

⏱ Step 2: Create Timer Sequence
I used 3 TON (On-delay) timers to switch between lights automatically.

%DB4 = T_1 β†’ For Green Light

%DB5 = T_2 β†’ For Yellow Light

%DB6 = T_3 β†’ For Red Light

Each timer starts after the previous one completes:

T_1 starts immediately when %M0.0 is ON.

T_2 starts after T_1.Q is TRUE.

T_3 starts after T_2.Q is TRUE.

πŸ’‘ Step 3: Output Control
I assigned outputs to each light using Q addresses:

%Q0.0 = Green Light (🟒)

%Q0.1 = Yellow Light (🟑)

%Q0.2 = Red Light (πŸ”΄)

Conditions:

Green turns ON when T_1.Q is TRUE.

Yellow turns ON when T_1.Q and T_2.Q are TRUE.

Red turns ON when T_2.Q and T_3.Q are TRUE.

Each light turns OFF automatically before the next one turns ON, creating a smooth traffic cycle.

πŸ”„ Step 4: Looping the Sequence
After T_3 finishes, the cycle restarts from T_1, repeating as long as %M0.0 remains ON (start button is active).

πŸ”§ Tools I Used:
Timers (TON)

Memory bits (M)

Start/Stop logic

Output coils (Q)

Sequential timing logic

working on an automation system, control panel, or DIY electronics project, choosing the right type of switch is essenti...
17/07/2025

working on an automation system, control panel, or DIY electronics project, choosing the right type of switch is essential. Here's a quick guide to 12 commonly used switches:

🟒 SPST (Single Pole Single Throw)

Simple ON/OFF switch

Controls one circuit only

🟒 SPDT (Single Pole Double Throw)

One input, switches between two outputs

Useful for selecting between two circuits

🟒 DPST (Double Pole Single Throw)

Two simultaneous ON/OFF switches in one

Often used in 240V appliances

🟒 DPDT (Double Pole Double Throw)

Can control two separate circuits

Works like two SPDTs together

🟒 Toggle Switch

Flips between ON and OFF positions

Common in machinery and lighting

🟒 Tactile Switch (2P)

Small, momentary switch

Found in electronics like calculators or remotes

🟒 Push Button

Momentary contact, returns after pressing

Used in control panels, start/stop systems

🟒 Rotary Switch

Selects multiple outputs by rotating

Ideal for fan speeds or mode selection

🟒 Timer Switch

Activates or deactivates circuits on a time schedule

Energy-saving and automation use

🟒 Joystick Switch

Controls movement in multiple directions

Used in cranes, robots, and gaming

🟒 Slide Switch

Slides back and forth to open/close circuits

Common in small electronics

🟒 Float Switch

Activates based on liquid level

Used in tanks and water pumps

PLC-Based Traffic Light Control PanelThis diagram represents a PLC-controlled automation circuit for a traffic light sys...
04/07/2025

PLC-Based Traffic Light Control Panel

This diagram represents a PLC-controlled automation circuit for a traffic light system. The main controller is a Siemens S7-1200 PLC, powered by a 24V DC power supply, and controlling a three-lamp (Red, Yellow, Green) signal light using digital outputs.

πŸ”Œ 1. Power Supply Section

Disyuntor (Circuit Breaker):

Located on the far left, this is the main protection device.

It receives 220V AC from the mains and protects the AC input of the power supply.

Fuente AC-DC (Power Supply - EDR-120-24):

Converts 220V AC to 24V DC.

Its outputs are:

+24VDC (Brown wire)

0VDC (Blue wire)

CHINT Circuit Breaker:

Provides additional protection for the 24V DC output circuit.

🧠 2. PLC Controller – Siemens S7-1200

This is the brain of the system.

Connected directly to:

+24VDC and 0VDC for powering the controller.

Inputs (I0.0, I0.1) – to receive digital input signals.

Outputs (Q0.0, Q0.1, Q0.2) – to control external devices (lights).

πŸ”„ 3. Terminal Block Section

Located at the center of the diagram.

Used to distribute power and signals cleanly and safely.

Labeled rows for:

TIERRA (Earth Ground)

+24VDC

0VDC

Digital Inputs (I0.0, I0.1)

Digital Outputs (Q0.0, Q0.1, Q0.2)

Ensures organized wiring, easy maintenance, and safety compliance.

🚦 4. Field Devices

βœ… A. Traffic Light (SemΓ‘foro)

Three individual lamps (Red, Yellow, Green).

Connected to the PLC digital outputs:

Q0.0 β†’ Red light

Q0.1 β†’ Yellow light

Q0.2 β†’ Green light

The PLC turns these ON/OFF based on the programmed sequence.

βœ… B. Selector Switch (ON-OFF)

Connected to Input I0.0 of the PLC.

Provides a manual control signal to start or stop the traffic light sequence.

Also powered by the +24VDC line for operation.

🧩 5. System Operation Summary

1. Power On:

Circuit breakers are closed.

24V DC is supplied to the PLC and devices.

2. Selector ON:

When the selector is turned ON, a signal is sent to PLC input I0.0.

3. PLC Logic Ex*****on:

The PLC program processes the input.

Activates outputs in sequence:

Red β†’ Yellow β†’ Green (typical traffic light cycle).

4. Output Control:

Output terminals Q0.0, Q0.1, Q0.2 energize the respective lights via the terminal block.

βœ… Safety: Circuit breakers and grounding ensure electrical protection.

βœ… Modularity: Terminal blocks and DIN rail mounting support expandability.

βœ… Industrial Grade: Uses industry-standard components (Siemens, Mean Well, ABB, CHINT).

βœ… Training Friendly: Perfect for control logic training or simulation environments.

βš™οΈ Working Principle (Proportional Control):   Transmitter (FT):  1.Measures the flow in the pipeline.  2.Sends analog s...
19/06/2025

βš™οΈ Working Principle (Proportional Control):

Transmitter (FT):

1.Measures the flow in the pipeline.

2.Sends analog signal (4-20mA) to AI (Analog Input) of the controller.

PID Controller (in DCS or PLC):

1.Receives process variable (PV) from AI (Flow Transmitter).
2.Compares it to the Setpoint (SP).

3.Generates control output based on PID logic.

(Analog Output) Module:

1.Sends analog control signal (4-20mA) to the control valve positioner.

Valve & Positioner:

1.The valve position is adjusted by the positioner to control the flow.

βœ… Two Possible Configurations:

1️⃣ Configuration 1:
AI βž” PID βž” AO βž” Valve Positioner

AO receives the PID output directly.

Clean, direct control.

2️⃣ Configuration 2:
AI βž” PID βž” CAS_IN of AO βž” Valve Positioner

AO is in cascade mode (CAS_IN), meaning the AO block is aware that its setpoint comes from the PID.

Useful for advanced diagnostics and control schemes.

⚑ :

AI (Analog Input): Brings in process measurement.

PID Block: Executes Proportional-Integral-Derivative algorithm.

AO (Analog Output): Converts PID output to 4-20mA for the valve positioner.

Valve + Positioner: Adjusts flow to maintain the process variable at the desired setpoint.

πŸ“ Why Use It?
βœ” Smooth & stable control
βœ” Reduces process fluctuations
βœ” Improves product quality
βœ” Saves energy and maintenance costs

πŸ“ˆ Used in:
βœ” Chemical Plants
βœ” Oil & Gas
βœ” Water Treatment
βœ” Power Plants

βš™οΈ Inverter (VFD) Wiring Diagram – Professional ExplanationA Variable Frequency Drive (VFD) is used to control the speed...
17/06/2025

βš™οΈ Inverter (VFD) Wiring Diagram – Professional Explanation
A Variable Frequency Drive (VFD) is used to control the speed, torque, and direction of a 3-phase AC motor. This diagram illustrates a complete VFD control system setup with manual controls, indication lights, and braking system for efficient motor management.

πŸ”Œ 1. Power Supply
Source: 3-phase AC power is supplied through a circuit breaker for protection.

Connection Points on VFD:

R (L1), S (L2), T (L3) β†’ Incoming AC lines.

Purpose: Provides power to the VFD, which converts it into controlled voltage/frequency for the motor.

πŸŽ›οΈ 2. Control System
Speed Control:

Potentiometer connected to 10V (VFD Supply) and AVI (Analog Voltage Input).

Adjusts the output frequency to control motor speed.

Direction & Operation:

Push Buttons (Digital Inputs):

M0 (Green): Start motor – Forward rotation.

M1 (Blue): Start motor – Reverse rotation.

M2 (Red): Stop motor.

Ground (GND):

Provides common return path for control circuits.

βš™οΈ 3. Motor Output
Terminals U, V, W:
Connected to a 3-phase induction motor.

Function: Delivers controlled output (variable frequency and voltage) to drive the motor as per commands.

🚨 4. Warning/Status Indication
RA, RB, RC Terminals:

Connected to a stack light (tower light) with Red, Yellow, Green indicators.

Purpose: Real-time display of machine status (running, warning, fault).

πŸ›‘ 5. Braking System
Braking Resistor (B1, B2):

Helps quickly decelerate the motor.

Essential for applications requiring rapid stopping to protect machinery or improve efficiency.

πŸ“Œ Advantages of This Setup
βœ”οΈ Safe operation with overload protection
βœ”οΈ Manual speed control for flexible operation
βœ”οΈ Forward/Reverse direction selection
βœ”οΈ Visual indication of machine status
βœ”οΈ Fast stopping with dynamic braking resistor

βœ… Professional Applications:
Industrial automation

Conveyor systems

HVAC control

Machine tools

Pumps & fans

πŸ”§ Proportional Description of the PLC System DiagramThis diagram illustrates the core architecture of a Programmable Log...
12/06/2025

πŸ”§ Proportional Description of the PLC System Diagram
This diagram illustrates the core architecture of a Programmable Logic Controller (PLC) system, showcasing the flow of power, data, and control signals in an automated industrial setup.

πŸ–₯️ 1. Application Software (Top Center)
Function: Interface for programming and monitoring the PLC.

Interaction:

Download: Control logic/program is sent from the application to the PLC.

Upload: Real-time data or existing programs are retrieved from the PLC.

Connection: Communicates with the PLC via the Ethernet card.

🧠 2. PLC Unit (Center Block)
The central control unit that manages all system operations. It consists of:

βš™οΈ Central Processing Unit (CPU)
Executes control logic based on input conditions.

Sends decisions to output devices.

πŸ’Ύ Memory (ROM/RAM)
ROM: Stores the system firmware and permanent program data.

RAM: Temporarily stores variables and runtime logic.

🌐 Ethernet Card
Enables communication between the PLC and external devices like HMI, SCADA, or PCs for programming and diagnostics.

πŸ”Œ 3. Power Supply (Bottom Center)
Input: 220V AC (main supply).

Outputs:

5V DC ➝ Supplies the PLC internal circuits (CPU and Memory).

24V DC ➝ Powers the Input and Output Modules.

Purpose: Converts AC to regulated DC power for the entire PLC system.

πŸ”„ 4. Input Module (Left Side)
Function: Receives signals from field devices.

Types of Input:

Digital Inputs: From pushbuttons, limit switches, proximity sensors, etc.

Analog Inputs: From temperature sensors, pressure transmitters, etc.

Signal Flow: Sends sensor data to the PLC CPU for processing.

⚑ 5. Output Module (Right Side)
Function: Sends control signals to field devices based on PLC logic.

Types of Output:

Digital Outputs: ON/OFF signals to relays, lights, contactors.

Analog Outputs: Varying voltage or current signals to actuators or drives.

Signal Flow: Receives processed signals from the CPU to control devices.

πŸ” Overall Process Flow:
Inputs (Digital/Analog) β†’ Input Module β†’ CPU.

CPU processes logic β†’ Determines required outputs.

CPU sends results β†’ Output Module β†’ Actuators.

Application uploads/downloads program and monitoring data.

Power Supply ensures stable operation of all modules.

  (Programmable Logic Controller)Purpose: Designed for industrial automation and control.Pogramming: Uses ladder logic, ...
11/06/2025

(Programmable Logic Controller)
Purpose: Designed for industrial automation and control.

Pogramming: Uses ladder logic, function block diagrams, structured text.

Environment: Rugged, reliable, and built to withstand harsh industrial conditions (vibration, dust, temperature, EMI).

I/O Support: Has built-in or expandable digital/analog I/O for industrial sensors and actuators.

Real-Time Control: Excellent for real-time processing in automation tasks.

Communication: Supports industrial protocols (Modbus, PROFIBUS, Ethernet/IP).

of Use: Plug-and-play design, easy to install and maintain.

: More expensive than MCUs, but optimized for industry.

(Microcontroller Unit)

Purpose: General-purpose embedded control for consumer and small-scale projects.

Programming: Uses C/C++, Arduino IDE, Assembly, or other languages depending on platform.

Environment: Not typically ruggedized for industrial use (some exceptions exist).

I/O Support: Has GPIO, ADC, PWM, UART, I2C, SPI for connecting to peripherals.

Real-Time Control: Capable, but needs careful design for complex timing or multitasking.

Communication: Supports common digital protocols, fewer industrial interfaces natively.

of Use: Requires circuit design, power supply, and often programming/debugging tools.

: Very low cost, ideal for hobby, prototyping, or embedded product development.

 Purpose: Used for switching high-power electrical circuits (e.g., motors, lighting, heaters).Current Rating: Typically ...
11/06/2025


Purpose: Used for switching high-power electrical circuits (e.g., motors, lighting, heaters).

Current Rating: Typically higher (10A to 1000A or more).

Size: Larger in physical size.

Durability: Designed for frequent switching (millions of operations).

Auxiliary Contacts: Often has extra contacts for control or feedback.

Applications: Industrial machines, HVAC systems, electric motors.



Purpose: Used for switching lower-power circuits or for signal control.

Current Rating: Usually lower (less than 10A).

Size: Compact and smaller in design.

Durability: Less robust, suitable for moderate use.

Auxiliary Contacts: Fewer or simpler than contactors.

Applications: Automation systems, home electronics, control panels.

Summary:

contactors for high power and industrial switching.

relays for lower power and signal-level control.

Address

Mirpur

Website

Alerts

Be the first to know and let us send you an email when Anwar Automation Technology posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Share

Category