System Architecture in Industrial Automation: A Complete Design Guide

Share:
Industrial Automation
System Architecture in Industrial Automation: A Complete Design Guide

If you are supplying, buying, or commissioning an industrial automation system, the system architecture drawing is one of the most important documents you need to produce and understand.

It shows every major device, how they connect, and which communication protocol links them. Without it, you cannot troubleshoot a network fault or verify that the system was built correctly.

System Architecture PLC and IO Modules SCADA and HMI Network Topology Communication Protocols

System architecture in industrial automation is not optional. You need it before you write a single line of PLC code, before you order a network switch, and before commissioning.

Hello everyone, today we are going to learn about system architecture in industrial automation.

We will cover what a system architecture drawing is, what devices you must include, how to design the drawing step by step, how to choose communication protocols and network topology, and how to document spare ports and redundancy correctly.
System Architecture in Industrial Automation

What Is System Architecture in Industrial Automation?

System architecture is a design drawing that shows which devices are used in your automation system and how they are interconnected.

You must understand what system architecture is not. It does not show electrical panel wiring or PLC ladder logic. It shows only the major communication devices and the data paths between them.

You must show: PLC (CPU and IO modules), SCADA servers, HMI panels, IO modules, network switches, VFDs, energy meters, and any device that has a communication port.

What you do not include are things like contactor coils, fuse terminals, cable trays, or power supplies. Those belong in the electrical panel drawing, not the system architecture.

Advertisement

System Architecture in Industrial Automation: The Layer Model

Before you start drawing, understand the layer model. Every device belongs to one of six layers. This tells you which devices communicate with each other and in which direction data flows.

LayerDevices at This LayerTypical Protocol
Layer 5: EnterpriseERP systems, MES, cloud platformsOPC UA, REST API
Layer 4: SupervisionSCADA server, historian, engineering workstationEthernet, OPC UA
Layer 3: ControlPLC, DCS, PACEthernet/IP, PROFINET, Modbus TCP
Layer 2: HMITouchscreen panels, local operator stationsEthernet, RS-485
Layer 1: IO and Smart DevicesRemote IO modules, VFDs, energy meters, positionersPROFIBUS, Modbus RTU, CANopen
Layer 0: FieldSensors, transmitters, actuators, final elements4-20 mA, HART, Digital IO

Your system architecture drawing must show devices from Layer 0 to Layer 4 at minimum. Include Layer 5 only if your system integrates with a business software system like SAP.

Step 1: List All Your Devices Before You Draw Anything

The first step in building a system architecture in industrial automation is your device list. Do not open a drawing tool until you have a complete list.

Go through your automation requirements document and list every device that has a communication port. For each device, capture four things: the device type, model number, quantity, and the communication ports available.

1
PLC CPU
Note the exact model number and every communication port it has. Also note the IO count separately: total DI, DO, AI, AO available across all IO modules.
2
IO Modules
List both local IO (plugged directly into the PLC rack) and remote IO (connected via a fieldbus). Remote IO appears as a separate device on the network. Show it separately in the drawing.
3
SCADA and HMI
Note whether SCADA runs on a dedicated server or shared workstation. A local HMI connected directly to the PLC is drawn differently from a SCADA PC connected through an Ethernet switch.
4
Smart Field Devices
VFDs, energy meters, soft starters, and smart positioners with a communication port must all appear in the drawing. These are often the source of communication faults during commissioning.
5
Network Switches
Include every managed and unmanaged Ethernet switch. Note the number of ports and how many are used versus spare. In larger systems, managed switches form a ring for redundancy.

Step 2: Know the Communication Protocols Before You Draw Lines

You must know the communication protocol for every connection before you draw a single line. A line without a protocol label is not a complete drawing.

Do not assume that every device connects by Ethernet. Many automation devices use serial protocols. Get this right before you start drawing.

Ethernet TCP/IP The most common protocol between PLC, SCADA server, HMI, and network switches. Specify the Ethernet standard in larger systems: 100 Mbps or 1 Gbps. See the HART protocol guide for comparison with field-level protocols.
PROFIBUS DP A serial fieldbus used to connect remote IO, VFDs, and smart instruments to the PLC in older or mid-range systems. Uses a daisy-chain topology with a 9-pin D-sub connector at each node. Mark bus termination points on your drawing.
PROFINET The Ethernet-based successor to PROFIBUS. Runs at 100 Mbps using standard Ethernet cable and switches. Each PROFINET device has a device name and IP address. Document these in the architecture drawing.
Modbus RTU The most common protocol for connecting energy meters, VFDs, and temperature controllers to a PLC over RS-485. Each device has a unique slave address. Draw the RS-485 bus as a separate line and label every device with its slave address.
Modbus TCP The Ethernet version of Modbus. Runs over standard TCP/IP with no serial cable needed. Newer VFDs and analysers support Modbus TCP directly. These connect through the Ethernet switch, not the serial bus segment.
OPC UA Used to connect the PLC or SCADA system to higher-level systems: MES, ERP, cloud historians, or analytics platforms. Label this connection in the upper part of your architecture drawing where the SCADA server connects to the enterprise network.
Advertisement

Step 3: Draw the Architecture Starting from the PLC

Your system architecture in industrial automation drawing starts from the PLC. Place it at the centre, because more devices hang off it than any other single component.

Draw the PLC CPU block first. Then draw each IO module: local IO on the rack, and remote IO on the fieldbus. Label every module with its model number and IO type.

In a small system with one PLC and one HMI, draw a direct Ethernet line between them with no switch needed.

In a system with multiple devices on the same Ethernet segment, all those devices connect to the switch, not directly to each other.

Once the PLC and switch are placed, draw the SCADA server and connect it to the same switch. Label the connection protocol: S7 (Siemens), EtherNet/IP (Allen-Bradley), or Modbus TCP.

Then draw the HMI panels and connect them the same way.

After the supervision layer, draw the serial bus devices below the PLC. Draw the RS-485 bus line for each Modbus network and label each device with its model number and slave address.

Label every connection with the protocol name and the port used. If the PLC Ethernet port 1 connects to the control network switch and Ethernet port 2 connects to the engineering network, label both. An unlabelled connection wastes the next engineer's time during a fault.

Step 4: Choose the Right Network Topology

Define the network topology for your system architecture in industrial automation once you know your devices and protocols. The topology is the physical arrangement of the network.

Star Topology
All devices connect to a central switch. The most common topology for the Ethernet segment. A cable fault only takes one device offline. The switch is a single point of failure, so for critical systems use a redundant switch or a managed switch with ring capability.
Ring Topology
Managed Ethernet switches connected in a ring using PROFINET Media Redundancy Protocol (MRP). If one cable is cut, communication routes around the ring within milliseconds. You need managed switches that support MRP to use this topology.
Daisy Chain (Serial Bus)
PROFIBUS DP and Modbus RTU use a daisy-chain topology. Devices are connected one after another on the same cable. The cable must be terminated at both ends. A fault anywhere in the chain can take all downstream devices offline.
Redundant Topology
For safety-critical systems, you need redundant PLCs and network paths. A hot-standby PLC pair runs in parallel and the backup takes over within one scan cycle if the primary fails. See the PLC redundancy hot standby guide for the full detail.

Step 5: Document Spare Ports and Future Expansion

This step is one that many engineers skip, and they regret it later. Every communication port that is not currently used must be labelled as spare in your system architecture drawing.

When a maintenance engineer needs to add a VFD later, the drawing must show which ports are spare. Without this, they may attempt to use a port already allocated to something else.

For the PLC, document DI, DO, AI, and AO channels separately: installed, used, and spare. See the IO modules in industrial automation guide for correct IO sizing.

Do not leave any port or connection without a label. An unlabelled port creates ambiguity. During fault-finding, engineers waste time tracing cables because the drawing does not clearly show what is connected where. Every device, every connection line, every protocol, and every spare port must be explicitly labelled.
Advertisement

Comparing System Architecture for Small, Medium, and Large Systems

AspectSmall System (1 PLC, 1 HMI)Medium System (1-3 PLCs, SCADA)Large System (Multiple PLCs, DCS)
Typical topologyDirect Ethernet between PLC and HMI. No switch needed in many cases.Star Ethernet with managed switch. SCADA server on same network as PLC.Ring Ethernet with multiple switches. Separate control and supervision networks with a firewall.
PLC to SCADA protocolProprietary driver (S7, EtherNet/IP) over Ethernet.OPC UA preferred for vendor-neutral data exchange. Redundant SCADA servers.OPC UA to MES and ERP. Separate OT and IT networks. IEC 62443 security zones.
Remote IOLocal IO only, plugged directly into PLC rack.Mix of local and remote IO on PROFIBUS or PROFINET drops.Fully distributed IO across large plant areas. IO in Ex-rated enclosures for hazardous areas.
RedundancyNot typically required. Single CPU, single power supply.Redundant power supplies. Possibly redundant PLC CPU for critical processes.Fully redundant PLCs (hot standby), redundant network switches, redundant SCADA servers.
Serial bus devices1 to 2 Modbus devices on RS-485 (energy meter, VFD).Multiple Modbus RTU networks and possibly PROFIBUS DP for remote IO.Legacy PROFIBUS retained for installed base. New devices on PROFINET. Serial bridges where needed.

Watch: Complete Guide to the Automation Architecture Stack

System Architecture in Industrial Automation Questions

What is system architecture in industrial automation?
System architecture shows all communication devices (PLC, SCADA, HMI, IO, switches) and the protocols connecting them. It does not show wiring or PLC code.
What devices must appear in a system architecture drawing?
Every device with a communication port: PLC, IO modules, SCADA, HMI, network switches, VFDs, energy meters. Electrical components without communication ports are excluded.
Which communication protocol connects PLC to SCADA?
OPC UA is the recommended vendor-neutral protocol. Proprietary drivers (S7 for Siemens, EtherNet/IP for Allen-Bradley) are also common. The choice depends on the PLC brand.
What is the difference between PROFIBUS and PROFINET in system architecture?
PROFIBUS DP is serial over RS-485. PROFINET is Ethernet-based and faster. Both connect remote IO to the PLC but appear differently in the drawing.
Why must spare ports be documented in system architecture?
Spare ports allow future expansion without guesswork. Without this documentation, engineers adding new devices may use already-allocated ports and cause communication conflicts.

Related Articles on This Site

External References

Advertisement

What We Learn Today

  • System architecture in industrial automation shows every communication device and the protocols connecting them. It must be produced before any other design document. It includes PLC, IO modules, SCADA, HMI, network switches, and smart field devices. Electrical panel components are not included.
  • Start by listing all devices with model numbers and communication ports. Then identify the protocol for each connection: Ethernet for PLC to SCADA, PROFINET or PROFIBUS for remote IO, Modbus RTU for serial devices, OPC UA for enterprise integration.
  • Label every connection with its protocol name and port. Mark every unused port as spare. Document DI, DO, AI, and AO counts separately for future expansion. A drawing without complete labelling fails its purpose as a commissioning and troubleshooting reference.
I hope you like above blog. There is no cost associated in sharing the article in your social media. Thanks for reading!! Happy Learning!!

Leave a Reply

Your email address will not be published. Required fields are marked *