A brownfield retrofit means upgrading or modifying an existing industrial plant or control system while reusing most of the old infrastructure. This typically includes existing field instruments (valves, VFDs, actuators), old wiring and marshalling panels, partially reused control philosophy, and new PLC, HMI, or DCS hardware replacing legacy systems.
Unlike greenfield projects, brownfield retrofits are done on systems that have been running for years or decades, often with undocumented changes, workarounds, and field adjustments. The main goal is to modernize the control system without disturbing plant operation.
PLC Hidden Problems With AO Scaling

One of the most underestimated problem areas in such projects is analog output (AO) scaling. On drawings, AO scaling looks simple, but in reality, it carries years of hidden assumptions that can break process behavior after a retrofit. Analog outputs directly control final elements such as control valves, dampers, heaters, and variable-speed drives. Any mismatch in AO scaling immediately affects the physical process.
In brownfield systems, AO scaling is rarely pure; it has evolved over time to compensate for mechanical wear, device limitations, and operational habits. Below are the most common hidden AO scaling problems encountered during brownfield retrofits.
Legacy field devices rarely match standard scaling
In old plants, many valves, drives, or actuators were never meant to use their full range. Even though everyone says 4-20 mA = 0-100%, in real life, the plant people often decided like don’t fully close this valve as it gets stuck, don’t run this motor below this speed or don’t open this damper fully as it vibrates. So they intentionally changed the meaning of the analog signal.
For example:
- 4 mA might actually mean 20% valve open
- 20 mA might mean 90% open
- The dangerous or unstable part is simply never used
This adjustment may be done:
- Inside the valve positioner
- Inside the VFD parameters
- Or mechanically during commissioning
Now comes the retrofit problem. When a new PLC is installed, engineers usually assume: 4 mA = fully closed, 20 mA = fully open. So the PLC sends 0%, but the valve never closes fully. Or it sends 100%, but the valve still stops short. In short, the old system worked because everyone quietly agreed not to use the full range, and the new system breaks it by assuming the full range is allowed.
Resolution mismatch between old and new AO hardware
In brownfield retrofits, the problem is not that the analog output scaling changes, but that the resolution of the analog output hardware changes while the scaling remains the same. Consider a standard control signal where 0% output corresponds to 4 mA and 100% corresponds to 20 mA, giving a total span of 16 mA.
In an older PLC system with a low-resolution AO card (for example, 8-bit resolution), this 16 mA span is divided into only 256 steps, meaning each step is approximately 0.0625 mA. When the PLC commands 20% output, the mathematically correct value is 7.2 mA, but the old AO card cannot generate this exact value and instead rounds it to the nearest available step, such as 7.25 mA.
Field devices like valves and drives were tuned over the years to respond reliably to these relatively large output jumps. In a retrofit, the old AO card is replaced with a modern high-resolution card (for example, 16-bit), where the same 16 mA span is divided into 65,536 steps, making each step only about 0.00024 mA.
Now, at 20% output, the PLC can generate the exact 7.2 mA value and can change the output in extremely small increments, such as 7.20, 7.22, or 7.24 mA. Importantly, the output will still reach the full 20 mA at 100% command; the scale is not compressed or reduced in any way.
However, many older field devices have mechanical friction, deadband, or internal filtering and simply do not react to such small current changes. As a result, the PLC output is electrically correct and continuously changing, but the physical device remains stationary until enough small increments accumulate to cross its minimum movement threshold, at which point it suddenly moves.
This creates a control behavior that feels sluggish at first and then jumpy, leading engineers to suspect tuning or logic errors when the real issue is a mismatch between modern high-resolution analog outputs and legacy mechanical equipment that was designed around coarser signal steps.
Hidden Offsets Due to Aging Wiring and Hardware
In brownfield systems, analog output signals are rarely as clean as the PLC assumes, because the physical loop has aged over many years of operation. Issues such as increased cable resistance, corroded terminals, loose connections, power supply loading, and gradual drift in old analog cards all introduce small but consistent offsets in the actual current reaching the field device.
For example, a PLC may correctly generate 12.0 mA for a 50% command, but due to loop losses and aging components, the valve positioner may only receive 11.6 mA. In the original system, this mismatch was often compensated informally; operators learned to bias setpoints, technicians adjusted scaling limits, and engineers modified logic so the process would still hit its targets. These compensations were rarely documented because the plant was running acceptably.
During a retrofit, new PLC hardware produces accurate outputs, and old compensation logic is removed or rewritten, unintentionally exposing the hidden electrical losses that were always present. The result is a system that appears correct in software but consistently underperforms in the field, with valves failing to reach expected positions or drives falling short of commanded speeds. Because the problem is gradual and not fault-based, it is frequently misdiagnosed as mechanical wear or process drift, when in reality it is an offset introduced by aging analog infrastructure that the old system had silently adapted to.
In this way, we saw hidden problems with AO scaling in brownfield retrofits.