When configuring an analog converter (such as an AC power transducer with a 4-20mA output or an ADC front-end like the Texas Instruments ADS1115) to measure a 1500W load on a standard 120V single-phase circuit with a unity power factor (PF = 1.0), the direct converted answer is 12.5 Amps. The foundational formula used to derive this is I = P / (V × PF). Substituting our exact query values yields: I = 1500W / (120V × 1.0) = 12.5A. If your analog converter expects a 0-20A input range to scale to a 4-20mA output, this 12.5A load will output exactly 14mA to your PLC or microcontroller.
The Assumptions That Fix Your Conversion
An analog converter's internal scaling dip-switches or software parameters rely on fixed assumptions to map physical current to a standardized signal. The three variables that lock in your conversion are voltage, phase, and power factor (PF).
If you are measuring an unknown inductive load and attempt to convert real power (Watts) to current (Amps) without knowing the power factor, the conversion is mathematically meaningless. For example, a 1500W resistive space heater (PF = 1.0) draws exactly 12.5A. However, a 1500W inductive motor with a lagging power factor of 0.75 will draw 16.67A to do the same real work. The analog converter's current transformer (CT) will physically see 16.67A, but if your downstream SCADA system blindly assumes PF = 1.0 to back-calculate real power, it will incorrectly display 2000W. Always verify the load's nameplate PF before hardcoding your converter's scaling parameters.
Furthermore, when interfacing the analog signal with a microcontroller, you must account for the ADC's architecture. As noted in Texas Instruments' ADS1115 datasheet, precision 16-bit ADCs measure instantaneous voltage across a burden resistor. If your CT circuit lacks a true-RMS calculation in firmware, non-linear loads will introduce massive scaling errors compared to the analog converter's hardware RMS output.
Voltage and Phase Shifts: 120V vs 230V vs 3-Phase
The 12.5A answer above is strictly bound to a 120V single-phase North American residential circuit. When you shift the voltage or introduce multiple phases, the current drops significantly because the power is distributed across higher potentials or multiple conductors. Here is how the 1500W (PF=1.0) answer shifts across common global and industrial topologies:
- 120V Single-Phase (US Residential): I = 1500 / (120 × 1.0) = 12.50A
- 230V Single-Phase (EU/UK/AU Standard): I = 1500 / (230 × 1.0) = 6.52A
- 208V Three-Phase (US Commercial): I = 1500 / (208 × √3 × 1.0) = 4.16A
- 400V Three-Phase (EU Industrial): I = 1500 / (400 × √3 × 1.0) = 2.17A
Notice the inclusion of the square root of 3 (≈1.732) in the three-phase formulas. This constant accounts for the 120-degree phase shift between the three line conductors. If you are configuring a 3-phase analog power converter and forget to divide by 1.732 in your scaling math, your calculated amperage will be off by roughly 73%, leading to undersized breaker selections and nuisance trips.
Neighboring Values Reference Table (±20% Range)
When calibrating an analog converter on the bench, it is highly useful to have a quick-reference cheat sheet for loads surrounding your target value. The table below maps a ±20% range around our 1500W baseline (1200W to 1800W) across the three most common supply topologies, assuming a strict unity power factor (PF = 1.0).
| Real Power (W) | 120V 1-Phase (A) | 230V 1-Phase (A) | 208V 3-Phase (A) |
|---|---|---|---|
| 1200W (-20%) | 10.00A | 5.22A | 3.33A |
| 1300W | 10.83A | 5.65A | 3.61A |
| 1400W | 11.67A | 6.09A | 3.89A |
| 1500W (Base) | 12.50A | 6.52A | 4.16A |
| 1600W | 13.33A | 6.96A | 4.44A |
| 1700W | 14.17A | 7.39A | 4.72A |
| 1800W (+20%) | 15.00A | 7.83A | 5.00A |
Bench Tip: If your analog converter uses a 100A:50mA current transformer with a 10Ω burden resistor, a 12.50A primary current will induce 6.25mA on the secondary. Multiply that by the 10Ω burden resistor, and your ADC will read exactly 62.5mV RMS. Ensure your ADC's programmable gain amplifier (PGA) is set to a ±256mV or ±512mV range to maximize resolution without clipping.
FAQ: Analog Converter Scaling & Unit Conversions
How do I calibrate a 4-20mA analog converter for a 3-phase motor?
First, determine the motor's full-load amperage (FLA) from the nameplate, not just its wattage. Motors have high inrush currents and lagging power factors (often 0.80 to 0.85). If the motor draws 10A at full load, set your analog converter's dip-switches or software span to 0-15A to give a 50% buffer for startup transients. At 10A running load, the converter will output 17.33mA. Wire a precision 250Ω shunt resistor at your PLC's analog input to convert that 4-20mA signal into a 1-5V signal that standard microcontrollers can read safely.
Why does my analog converter read higher amps than my calculated wattage?
This almost always points to a power factor mismatch or harmonic distortion. As Fluke's technical literature on True-RMS measurements explains, standard averaging meters and cheap analog converters will misread non-linear loads (like VFDs or LED drivers). The analog converter is measuring the true RMS current, which includes reactive and harmonic components, while your manual calculation only accounted for real power (Watts). To fix this, you must measure the apparent power (VA) or apply the correct PF multiplier to your scaling formula.
Can I use a DC analog converter formula for AC RMS measurements?
No. The formula I = P / V works perfectly for DC circuits because voltage and current are constant and perfectly in phase. In AC circuits, the voltage and current waveforms are continuously crossing zero and may be out of phase. If you feed an AC signal into a DC-calibrated analog converter without a true-RMS rectifier circuit, the converter will likely read the average value of the rectified sine wave (which is roughly 0.637 times the peak voltage) rather than the heating-equivalent RMS value (0.707 times peak). This will result in a roughly 11% scaling error on purely resistive loads, and much worse on reactive loads.






