Welcome to the Industrial Automation website!

NameDescriptionContent
XING-Automation
E-mail  
Password  
  
Forgot password?
  Register
当前位置:

OMRON C-series AD/DA module configuration

F: | Au:FANS | DA:2026-05-29 | 48 Br: | 🔊 点击朗读正文 ❚❚ | Share:


OMRON SYSMAC C-series Analog I/O Modules: From Basic Configuration to Advanced Functionality Practice

In the field of industrial automation, the processing of analog signals - whether it is collecting temperature, pressure, and flow signals from sensors or outputting precise control instructions to actuators - is a core capability of control systems. OMRON's SYSMAC C series, CVM1, and CV series PLCs have been widely used in various industrial scenarios, and their accompanying analog input/output (Analog I/O) units, with their modular design, rich functionality, and high precision, have become the "nerve endings" of many old automation systems. For engineers who are maintaining or upgrading such systems, a deep understanding of the configuration, data exchange, and advanced functions of these modules is key to ensuring stable production line operation, troubleshooting, and system optimization.


Overview of Product Matrix and Core Competencies

OMRON has designed a series of analog units for C-series PLCs to meet the requirements of different accuracies and signal types. At the input end, from the basic 3G2A5-AD001 to the high-performance C500-AD501, it covers flexible choices from 2 channels to 16 channels. At the output end, the 3G2A5-DA001 series to C500-DA501 provide analog control capabilities from 2 channels to 8 channels.

1. Characteristics of core analog input unit

Basic type (3G2A5-AD001~AD007): Provides 2 to 4 input points, with 12 bit (1/4095) or 10 bit (1/1023) resolution. The key is that its model directly determines the input range, for example, AD001 supports 1-5V or 4-20mA, while AD004 supports ± 10V bipolar input. This is crucial for the replacement of spare parts in old systems - precise matching with the original model is necessary to ensure consistency in signal processing.

High performance model (C500-AD101): Provides 8 input points with a resolution of 1/4095. Its breakthrough lies in allowing independent input ranges of 0-10V or 0-20mA for each channel, and integrating practical functions such as mean, peak hold, wire breakage detection, and scaling.

Intelligent type (C500-AD501): This is the most powerful analog input unit in the series, with 16 differential input points. It has a built-in microprocessor that can independently complete advanced data processing tasks such as scaling, filtering, averaging, peak holding, and high/low limit alarms. The core value of this design lies in greatly reducing the computational burden on the CPU unit, especially in systems that require a large amount of analog processing, which can significantly improve the scanning speed and response performance of the entire PLC. Its data format can be either signed BCD or binary complement, which is very flexible.

2. Characteristics of core analog output unit

Basic type (3G2A5-DA001~DA005): Provides 2 output points and 12 bit resolution. Similarly, the model determines the output range, for example, DA001 corresponds to 1-5V or 4-20mA, and DA004 corresponds to ± 10V.

Multi functional (C500-DA101/DA103): Provides 4 output points. DA101 supports 1-5V, 0-10V, and 4-20mA outputs, while DA103 focuses on ± 10V bipolar output, suitable for control scenarios that require positive and negative swing, such as servo valve control.

High density intelligent type (C500-DA501): This is the flagship model of analog output unit, with 8 output points. Its core advantages lie in:

Independent configuration for each point: Each channel can independently select 6 output ranges, including 0-10V, ± 10V, 0-20mA, or 4-20mA.

Built in advanced features: support for scaling, output ramp, and upper/lower limit clipping. The output ramp function is particularly practical. When the set value undergoes a step change, the module will automatically change the output value at a preset rate (such as how many engineering units change per second), thereby avoiding impact on valve and other actuators and achieving smooth control.

Dual mode operation: Supports two conversion modes: standard speed (13.4ms/8 points) and high speed (3.4ms/8 points), and can save configuration parameters through EEPROM to achieve power-off holding.

Physical configuration and signal access: an essential first step that cannot be ignored

Correct hardware settings are the foundation for stable system operation. For maintenance engineers, when replacing or installing modules, the following process must be strictly followed.

1. Input range setting

For C500-AD501: The input range is set through a set of DIP switches and sliding switches. Under the terminal block of the module, 6 DIP switch pins (5-8) and 1 sliding switch are provided for each channel. For example, to configure a 0-10V voltage input channel, all DIP switch pins 5, 6, 7, and 8 need to be set to OFF, and the corresponding sliding switch needs to be turned to the "voltage input" side. There is a common misconception here: for bipolar inputs ranging from -10V to 10V, the corresponding DIP switch pin must be set to ON, which is completely different from the setting for unipolar inputs. Confusion can lead to AD conversion data errors.

For C500-AD101: its settings are more flexible, but require an external signal source. The user needs to enter the "setting mode" by turning on the DIP switch of the corresponding channel on SW1, then sequentially entering the lower limit value (Offset) and upper limit value (Gain) of the analog quantity, and confirming through the onboard SW2 dip switch. This method allows users to customize the zero and full range of input signals, for example, mapping a non-standard sensor signal of 2-8V to the full range of 0-4095.

2. Output range setting

Taking C500-DA501 as an example, setting the output range is more intuitive. Each output corresponds to a set of DIP switches. For example, to configure channel 1 as a 4-20mA output, pin 1 of the DIP switch on the back board needs to be set to OFF, pin 2 to ON, pin 3 to OFF, and pin 4 to OFF. At the same time, it is necessary to ensure that all DIP switches corresponding to the voltage output range on the front panel are set to OFF to avoid mutual interference. Please note: If current output is configured, it should be confirmed that the load resistance does not exceed 750 Ω; If it is a voltage output, the load resistance should not be less than 10k Ω, otherwise it may cause a decrease in output accuracy or even module damage.


The soul of data exchange: IR/CIO bit allocation and READ/WRIT instructions

The data exchange method between C-series analog units and CPU units is the core difficulty in programming and the key to achieving efficient control.

1. Two working modes

Double word operation mode: This is the recommended mode for most large PLCs such as C500 and C1000H. In this mode, the CPU directly accesses the internal RAM of the analog unit by executing two dedicated instructions, READ and WRIT. This method is highly efficient, as a single instruction can transfer up to 127 words of data in bulk.

Four character operation mode: Used when the module is installed on the SYSMAC BUS slave rack or when the CPU does not support the READ/WRIT instructions. In this mode, the CPU interacts with four I/O words (such as n, n+1, n+2, n+3) assigned to the module through general-purpose instructions such as MOV. Although the programming is slightly more complex, it has better compatibility.

2. Analysis of IR/CIO bit allocation

Each analog unit will be assigned specific input and output words. Taking C500-AD501 as an example, it uses one word (such as n) as the output word from CPU to module, and another word (such as n+1) as the input word from module to CPU.

Key bits of output word (n):

Bit 03 (EEPROM write bit): When this bit changes from OFF to ON, the module will write all configuration parameters in the current RAM to the EEPROM, achieving power-off saving.

Bit 05 (high/low alarm reset bit): Used to reset the high/low alarm flag.

Bits 08-15 (Peak Hold Reset Bit): Used to reset the peak hold register of the corresponding input channel. Among them, Bit 07 serves as the "library selection bit", which can control whether these reset bits are for channels 1-8 or channels 9-16.

Key positions for input word (n+1):

Bit 00 (A/D busy flag): When this bit is ON, it indicates that the module is performing A/D conversion and should not initiate a new data exchange at this time.

Bit 07 (Unit Normal Flag): This is a square wave pulse signal that is 0.5 seconds ON and 0.5 seconds OFF. The CPU program can determine whether the analog unit is working properly by monitoring this pulse. If this signal disappears or the frequency is abnormal, it usually means that there is a serious fault inside the module.

Bits 08-15 (Peak Hold Confirmation Flag): As a response to the peak reset command issued by the CPU.

3. Practice of READ/WRIT Instruction Programming

These two instructions serve as a bridge to access the internal memory maps of intelligent units such as C500-AD501.

WRIT instruction: used to write configuration parameters or conversion data to the RAM of the module.

When writing a word: the data of this word will be written to the module's "pointer word" (usually address 12). This pointer word will determine from which address the subsequent READ instruction starts reading data.

When writing multiple words: the first word is interpreted as a temporary pointer, specifying the starting address for subsequent data writing to the module RAM. For example, to configure scaling parameters, the first word can be set to # 0047, followed by scaling upper and lower limit data for several words, thus completing the update of multiple parameters at once.

Read instruction: used to read data from a module.

The READ instruction always reads data from the address specified by the pointer word. Therefore, before reading, it is usually necessary to set the pointer through a 1-word WRIT operation.

A standard reading process is: ① Execute the WRIT instruction and write # 0000 to module address 12 (pointing the pointer to the starting point of memory). ② Execute the READ instruction to read, for example, 46 words, to obtain all key operational information such as conversion data, peak values, alarm flags, etc. for channels 1-16.

Unleashing Hardware Value: Application of Advanced Features

When the basic signal acquisition and output no longer meet the requirements, the advanced functions built into the module become a powerful tool for optimizing the system.

1. Scaling

The zoom function solves the conversion problem between "physical quantities" and "digital quantities". For example, a flow meter with a measurement range of 0-5000L/min outputs a 4-20mA signal. If it is connected to C500-AD501, it can be implemented directly through configuration without any programming calculations:

Set the lower scaling limit of this channel to 0.

Set the scaling limit for this channel to 5000.

Enable the zoom function of this channel.

Afterwards, the numbers read directly from the module's memory are no longer from 0-4095, but from 0-5000 engineering values (BCD code or binary). The underlying principle is that the module performs a linear transformation on the original AD value based on the scaling upper and lower limits, and directly stores the result in the mapping area. This not only simplifies the program, but also improves data consistency and readability.

2. Output slope

For C500-DA501, the output ramp function is a "magic weapon" for smooth control. Imagine a scenario where the PID output value suddenly jumps from 20% to 80% while controlling the valve opening, causing the valve actuator to withstand a huge impact. After enabling the ramp function, engineers can set an "output ramp setting time" for each output channel, such as 5 seconds.

The module will automatically calculate to ensure that the output signal transitions linearly from 20% to 80% within 5 seconds. If the set value changes again during this process, the module will immediately start the ramp transition from the current output value to the new target value. This mechanism is crucial for protecting expensive regulating valves and preventing water hammer effects in pipelines.

3. Wire breakage detection and alarm

The integrity of signal lines is crucial for process control. C500-AD101 and AD501 both support wire breakage detection function. For example, for a 4-20mA input channel, when the current is detected to be below 2mA, the module will automatically set the corresponding "wire breakage detection flag" (such as IR n+1, Bit 00 of C500-AD101).

The program logic can immediately respond to this flag, issue an alarm on the HMI, and control according to pre designed safety logic (such as maintaining the last value, switching to manual mode, or outputting safety values), thereby avoiding misoperations and safety risks caused by signal loss.


Application scenarios and precautions

1. System compatibility

This is the most common problem encountered by engineers in project renovation.

The READ/WRIT command cannot be used on the SYSMAC BUS slave rack. Therefore, the C500-AD501 instruction dependent unit must be installed on the CPU rack, expansion I/O rack, or SYSMAC BUS/2 slave rack.

If C500-AD101 is used in SYSMAC BUS slave rack or CPU systems such as C500 that do not support dedicated instructions, it must be switched to "four word operation mode" and data exchange must be performed through MOV instructions.

2. Power supply and grounding

The C500-DA501 high-density output unit requires an external 24V DC power supply with a maximum current of 0.8A. When planning the system, it is necessary to ensure that there is a margin for this power supply and to pay attention to its isolation from the PLC system power supply.

Grounding is the lifeline of anti-interference for analog systems. It is strongly recommended to use shielded twisted pair cables for all analog signal lines. The manual clearly states that the shielding layer should be connected to the "shielding" terminal of the module, which is connected to the simulated ground plane inside the module, rather than the Chassis Ground of the rack. This is a technical detail, incorrect grounding may introduce severe common mode noise into the signal circuit.

3. Shutdown and startup behavior

For C500-DA501, when the 5V power supply of the PLC is cut off, the analog output will change to 0V or 0mA. However, users can choose whether the output signal will change to 0 or maintain the value at the moment of power failure by using a dip switch on the back. This function is crucial in some application scenarios that require "positioning", but in other scenarios it may lead to danger and must be carefully set according to process requirements.

  • HMS Anybus AB7646-F Gateway Manual
  • Schneider ATV930D75N4 Inverter Manual
  • Mitsubishi Q2ASHCPU-S1 System Manual
  • Fanuc A20B-3300-0319 Board Specification
  • Mitsubishi QD60P8-G Counter Module Guide
  • Nidec Unidrive M701 Inverter Manual
  • ABB AO895 Analog Output Module Guide
  • Mitsubishi Q2ASHCPU Controller System Manual
  • ABB Pluto S20 v2 Safety PLC Manual
  • Omron CJ1W-NC413 Position Module Manual
  • B&R X20AI4632 Analog Input Module 4 Channel
  • OMRON CS1G-CPU44H Ver. 4.1 CPU Unit PLC
  • Beckhoff EL2911-2200 TwinSAFE Logic Terminal for EtherCAT
  • Mitsubishi 2D-TZ368 Parallel I/O Interface Card
  • Mitsubishi A3ACPU PLC CPU Module for MELSEC A Series
  • Mitsubishi NF630-SEW 4P Adjustable Circuit Breaker 300-630A
  • Keyence XG-8700L Multi-camera Vision System for Inspection
  • Beckhoff C6017-0010 Ultra Compact Industrial PC
  • B&R 3AT660.6 PLC Module from Automation Panel Series
  • GE F31X300CCHALG2 PC Board with 531X133PRUAPG1 Card
  • STMicroelectronics STM32L100R8T6ATR MCU Arm Cortex-M3
  • Omron CS1W-CLK13 Controller Link Unit
  • Schneider BMENOC0301 Ethernet Communication Module
  • HELUKABEL Braids PLC-30 40 E2UK Braided Cable Sleeve
  • Pe323 h0102de323a0 PLC I/O Module
  • Mitsubishi GT2512-STBA GT2512-STBD HMI 12.1 Inch Touch Screen
  • Samsung LTM213UP01 21.3 Inch LCD Monitor Panel
  • Allen-Bradley 440R-W23219 Guardmaster Safety Relay
  • Beckhoff EL2535 EtherCAT Terminal PWM Output
  • HELUKABEL Braids PLC-40 55 E2UK Braided Cable Sleeve
  • Allen Bradley 1769-OB16 16-Point Sourcing Output Module
  • Balluff BES 516-604-DZ-3 Delay Safety Relay for Industrial Timing
  • Siemens 6GK7542-1AX10-0XE0 PROFIBUS Communication Module for S7-1500
  • GE IC693BEM340 FIP Controller for Series 90-30 PLC
  • OMRON C200HG-CPU63-E Programmable Logic Controller CPU Unit
  • Schneider EOCR-PMZ Relay Manual
  • Honeywell C36TC0UA21D0 Controller Specifications
  • Emerson Ovation VE4001S2T2B4 Input Module
  • Omron CJ1M-CPU22 CPU Specifications
  • Grundig NEA02 AES 0 Card Specifications
  • Omron CJ1W-AD081-V1 Analog Input Specifications
  • IDEC FS1A-C21S Safety Controller Manual
  • IFM O3D303 Smart 3D Sensor Specifications
  • Siemens 6SN1123-1AB00-0BA2 Power Module Guide
  • B&R 4PP035.0300-01 Power Panel Manual
  • Siemens 6ES7 153-2BA10-0XB0 IM Module
  • Beckhoff EL3356-0010 Analog Input Module
  • Siemens 3RW4037-1BB04 Soft Starter
  • Lenze EVF8216-E VFD
  • Mitsubishi GT2310-VTBA GT2310-VTBD HMI
  • Allen-Bradley 1764-28BXB PLC MicroLogix 1500
  • SP-RDM2 Relay Module Dual Reader Interface
  • Keyence GC-S84 Programmable Safety Controller
  • Mitsubishi GT2310-VTBA GT2310-VTBD HMI 10.4 Inch
  • Eurotherm MINI8 PLC Temperature Controller
  • Mitsubishi GT2512-STBA GT2512-STBD HMI 12.1 Inch
  • ABB ACS380-040S-02A6-4 VFD 0.75kW 480V
  • Dage PC514 ISSUE A PLC O.P.I Board
  • ROBICON 460T46.01 REV C Printed Circuit Board
  • Omron NX502-1300 Controller Unit NX5 CPU
  • B&R X20CM0985 PLC Module
  • Banner XS26-2DE 85064 Safety Controller
  • Siemens 3SK2122-1AA10 Safety Relay
  • HMS Anybus AB7646-F Gateway PROFIBUS EtherNet/IP
  • Siemens 6SN1118-0DM11-0AA0 SIMODRIVE 611 Card
  • Siemens C98043-A7001-L2-4 CUD1 Control Board
  • Stein Sohn E 083.1 PLC Rack Module 0010026-054100A
  • Allen Bradley 800H-2HA7P Push Button Station
  • Schneider BMXNRP0200 M340 PLC Module
  • KEPCO BOP 200-1M Bipolar Power Supply Amplifier
  • Mitsubishi Q2ASHCPU PLC Module with A1SX42 A1SY42 QC24-R2 A1SD75P2-S3
  • Siemens Siprotec 7SJ61 Overcurrent Protection
  • Keyence LJ-V7000 Controller Laser Profiler
  • Siemens 6EP3437-8SB00-0AY0 Power Supply 20A
  • Pasaban MC-2006 03 CAN Bus PLC Card
  • ETAS ES600.2 PLC Module Prototyping
  • ABB ACS800-01-0005-3+P901 Frequency Converter
  • Omron NX102-1100 PLC Module Machine Automation
  • Square D BMXCPS3500 PLC Power Supply Module
  • Allen-Bradley 96657704 Fiber Optic Converter 1771-AF
  • Corcom 20VK1 Power Line Filter
  • Novellus 2805-11407 PLC Rack Assembly
  • Sick RLY3-EMSS100 Safety Relay Module
  • Microchip PIC12F508-I/P Microcontroller
  • Fanuc A02B-0098-B511 Motherboard
  • Merlin Gerin PB80 PLC Rack Module
  • ABB Pluto S20 V2 CFS Safety PLC
  • Honeywell TK-PRR021 Redundancy Module
  • B&R 7XX419L.50-1 Bus Controller
  • Mitsubishi NV400-SW 3P 300A Breaker
  • B&R X20AT2222 Temperature Module
  • Corcom 20VK1 EMI RFI Filter
  • Novellus 2805-11407 PLC Rack Assy
  • Mitsubishi FXAOM01BD Analog Output Module 4CH
  • NORIS A1-91 PCB Rack Module A1-91-4 A1-91-5 A1-91-6 A1-91-7 A1-91-8
  • Omron ZFV-SC50 Smart Camera Vision Sensor
  • Schneider Electric EOCR-PMZ Motor Protection Relay
  • B&R X20 SO 6300 PLC Module Safety Output
  • Mitsubishi A2ACPU21-S1 CPU Module MELSEC
  • Siemens 6ES7405-0KA02-0AA0 PS405 10A Power Supply
  • Samsung PVU-2424 Power Supply Unit DC24V 24W
  • ATTO controlSYS ATT0-CPU44 PLC with Display
  • Lenze EPZ-10203 CANPT010W3E Absolute Encoder
  • GE IS215WEMAH1A+IS210BPPBH2CAA Mark VIe Embedded Processor and Backplane Power Distribution Board
  • GE IS215AEPAH1CH+IS210BPPBH2CAA Mark VIe Application Processor and Backplane Power Distribution Board
  • GE IS215WECAH1B+IS210BPPBH2CAA Mark VIe Control Platform
  • GE PCM Regulator for EX2100e Power Conversion Module 151X1235DB15SA1
  • Lenze ECSEA048C4B servo drive
  • ABB PM665 3BDS005799R1 redundant CPU module
  • BAUMULLER b maXX 3000 Servo Controller BM3401-LIFBO-ACOOOCB-G-02-O-02
  • R&S EPL10200-W EMI Test Receiver
  • Schneider M522220000 16 way relay output module
  • ABB 3HAC031851-001 SMB Unit Technical Manual
  • Fuji NB1U56X-01 Programmable Controller Guide
  • Siemens 6AG1153-2BA02-7XB0 SIPLUS IM 153-2 Manual
  • Beckhoff EL6631 PROFINET Terminal Manual
  • Lenze E82EV302-4C Frequency Inverter Manual
  • Siemens 6SE7038-6EK84-1JC2 IGD8 Board Specifications
  • Pilz 774595 Safety Relay Specifications
  • Fanuc A20B-8200-0847 PLC Board Specification
  • Allen Bradley 1785-L60B/E PLC CPU Manual
  • PASABAN MC-2006 03 PLC Card Specifications
  • B&R X20CP1382 PLC Control Module X20 CPU
  • B&R X20DC2395 PLC Module Digital Output
  • AS-2P-70M-B Industrial PLC Communication Cable 70M
  • Siemens 6ES7136-6BA00-0CA0 PLC Module ET 200SP
  • Siemens 1FK7083-5AF71-1EB3 Servo Motor SIMOTICS S
  • WAGO 750 Series I/O Modules 750-842 750-530 750-430 750-602 750-514 750-600