Loading header...

HART - Digital Data on a 4-20 mA Loop

HART stands for Highway Addressable Remote Transducer. It is used in process plants where 4-20 mA analog loops are already trusted, installed, and easy to maintain. HART keeps the analog current signal and adds a small digital signal on top of it.

That is the key idea: the primary process value can still be read as 4-20 mA, while digital data carries configuration, diagnostics, and extra variables.


Learning Objectives

By the end of this lesson, you should be able to:

  • Explain how HART overlays digital data on a 4-20 mA loop.
  • Identify the 1200 Hz and 2200 Hz FSK tones used by HART.
  • Understand point-to-point and multidrop HART operation.
  • Distinguish primary analog value, digital process variables, and diagnostics.
  • Recognize common installation and troubleshooting checks.

HART Overlay Principle

HART uses Bell 202 frequency-shift keying (FSK):

  • Logic 1 is represented by 1200 Hz.
  • Logic 0 is represented by 2200 Hz.
  • The digital signal is about 0.5 mA peak.
  • The FSK waveform averages to zero, so it does not change the DC 4-20 mA measurement.
  • The data rate is 1200 bit/s.
flowchart TD classDef analog fill:#dcfce7,stroke:#16a34a,color:#14532d classDef digital fill:#dbeafe,stroke:#2563eb,color:#1e3a5f classDef loop fill:#fef9c3,stroke:#ca8a04,color:#713f12 P["Pressure transmitter"]:::loop A["4-20 mA analog current\nPrimary value"]:::analog H["HART FSK overlay\n1200/2200 Hz digital data"]:::digital DCS["DCS / HART communicator"]:::loop P --> A --> DCS P --> H --> DCS

Why HART Exists

A basic 4-20 mA loop gives one value. HART lets a smart transmitter provide much more:

Data Example
Primary variable Pressure = 6.2 bar
Secondary variable Sensor temperature = 42 degC
Device configuration Range, damping, tag name
Calibration data Zero trim, span trim
Diagnostics Sensor fault, electronics fault, maintenance required
Identity Manufacturer, model, device revision

This is why HART became so important in process instrumentation: it upgrades analog loops without replacing all wiring and control system input cards.


Point-to-Point Mode

Most HART loops are point-to-point. The analog current still represents the primary variable.

sequenceDiagram participant DCS as DCS Analog Input + HART Master participant TX as Smart Pressure Transmitter Note over DCS,TX: 4-20 mA continuously carries primary value DCS->>TX: HART command 0 - read unique identifier TX-->>DCS: Manufacturer, device type, revision DCS->>TX: HART command 3 - read dynamic variables TX-->>DCS: PV, current, percent range, status

The analog input can still control the plant even if the HART polling is temporarily unavailable.


Multidrop Mode

HART also supports multidrop. Multiple devices share the same pair of wires, and each device is addressed digitally. In classic multidrop, the loop current is fixed at about 4 mA, so the analog value is no longer used as the process measurement.

Mode Current behavior Typical use
Point-to-point 4-20 mA carries primary value Normal transmitter loop
Multidrop Fixed low current, digital addressing Several smart devices on one pair

Multidrop is useful, but slower polling and compatibility limits mean point-to-point remains more common.


Worked Example - Scaling the Analog Value

Suppose a pressure transmitter is ranged from 0 to 10 bar.

Formula:

Process value = Lower range + ((I - 4 mA) / 16 mA) x span

If loop current is 13.6 mA:

Process value = 0 bar + ((13.6 - 4) / 16) x 10 bar
Process value = 6.0 bar

At the same time, HART may report:

Digital field Value
Primary variable 6.01 bar
Loop current 13.62 mA
Sensor temperature 41.8 degC
Device status Good

The analog value and digital primary variable should agree within expected tolerance.


Practical Checks

  • Verify the loop has enough resistance for HART communication. Many systems need about 250 ohm minimum load.
  • Confirm the analog loop works before troubleshooting HART.
  • Check shield grounding and noise if communication is intermittent.
  • Confirm the communicator, DCS input card, or HART modem supports the device revision.
  • Compare analog current with the digital primary variable.
  • Record tag, range, units, damping, and alarm settings after commissioning.

Common Mistakes

  • Thinking HART replaces 4-20 mA; in point-to-point mode it complements it.
  • Ignoring the minimum loop resistance required for the FSK signal.
  • Expecting high-speed data from a 1200 bit/s protocol.
  • Forgetting that multidrop fixes the analog current.
  • Calibrating only the control system scaling and not checking transmitter trim.
  • Treating every HART command as universal; many useful commands are device-specific.

Summary

HART is a practical bridge between analog process instrumentation and digital diagnostics. It keeps the reliability and simplicity of 4-20 mA while adding configuration, identity, calibration, and health data. Its low speed is not a weakness for its purpose: it is designed for smart field instruments, not high-speed control networks.


Further Reading

  • FieldComm Group - HART Communication Protocol resources.
  • IEC 61158 / IEC 61784 industrial communication profile references.
  • Instrument vendor HART command and device description manuals.
  • Control system manuals for HART-enabled analog input modules.

Mind Map

mindmap root((HART)) Core concept Digital over 4-20 mA Bell 202 FSK 1200 bit/s Applications Smart transmitters Calibration Diagnostics Asset management Formulas PV = LRV + ((I-4mA)/16mA)*span 4 mA live zero 20 mA full scale Design rules Need loop resistance Keep analog fallback Use correct DD files Practical checks Compare analog and digital Check device status Verify tag and range Common mistakes No 250 ohm load Expecting high speed Multidrop current fixed