If you need to calculate the reactive power in an AC circuit, the fundamental reactance power formula is Q = Vrms × Irms × sin(θ), which yields a result in Volt-Amps Reactive (VAR). For purely reactive components where you know the reactance (X) directly, you can use the derived forms Q = Irms² × X or Q = Vrms² / X. Unlike real power (Watts) which performs work and generates heat, reactive power represents energy oscillating back and forth between the source and the magnetic or electric fields of inductors and capacitors. Getting this calculation right is the difference between a properly sized power factor correction bank and a utility penalty or a melted capacitor dielectric.
The Core Reactance Power Formula and Symbol Definitions
Reactive power (Q) is the imaginary component of complex power in AC systems. It dictates the sizing of conductors, transformers, and correction capacitors, even though it does zero net work over a complete AC cycle. Below is the primary trigonometric formula alongside its Ohm's Law-derived siblings, followed by a strict definition of every symbol.
| Symbol | Parameter | Standard Unit | Definition & Bench Notes |
|---|---|---|---|
| Q | Reactive Power | VAR | Volt-Amps Reactive. Positive (+Q) for inductive loads, negative (-Q) for capacitive loads. |
| Vrms | RMS Voltage | Volts (V) | Root Mean Square AC voltage. For a 120V nominal US outlet, this is 120V (not the 170V peak). |
| Irms | RMS Current | Amperes (A) | Root Mean Square AC current. Measured with a clamp meter on a single conductor. |
| θ | Phase Angle | Degrees (°) or Radians | The angular difference between the voltage and current waveforms. Current lags voltage in inductors (+θ). |
| X | Reactance | Ohms (Ω) | Frequency-dependent opposition to AC. XL = 2πfL (inductive); XC = 1 / (2πfC) (capacitive). |
For a deeper look at how this fits into the broader power triangle alongside real and apparent power, the Electronics Tutorials guide on Reactive Power provides excellent phasor diagrams.
Rearranged Forms and Application Boundaries
On the bench, you rarely have all variables handed to you. You usually know the target VARs and the line voltage, and need to find the required reactance. Here are the rearranged forms of the reactance power formula solving for each specific variable:
- Solving for Current (Irms): I = √(Q / X) — Useful for sizing wire ampacity when adding a capacitor bank.
- Solving for Reactance (X): X = Vrms² / Q — The most common design equation for selecting power factor correction capacitors.
- Solving for Voltage (Vrms): V = √(Q × X) — Used to verify the voltage drop across a known reactor carrying a specific reactive load.
- Solving for Phase Angle (θ): θ = arcsin(Q / (Vrms × Irms)) — Used when diagnosing motor loads with a power analyzer to find the exact power factor angle.
Application Boundaries and Assumptions
This formula assumes sinusoidal steady-state AC. If your circuit is driven by a variable frequency drive (VFD) outputting a pulse-width modulated (PWM) waveform, or if you have severe harmonic distortion from non-linear loads (like LED drivers or switching power supplies), the basic reactance power formula will yield inaccurate results. In those environments, you must use a true-RMS power analyzer that calculates Q by integrating the instantaneous voltage and current over time, accounting for harmonic reactive power (Budeanu's concept).
Realistic Answer Magnitudes
Knowing what a 'normal' number looks like prevents decimal-place disasters. Hobbyist audio crossovers and small AC coils typically operate in the mVAR to low VAR range (0.001 to 10 VAR). Residential HVAC compressors and well pumps pull between 500 VAR and 3 kVAR. Industrial manufacturing plants with large induction motors require capacitor banks rated in the hundreds of kVAR, while utility-scale grid compensation uses STATCOMs rated in MVAR (Mega-VARs).
Solved Problems with Strict Unit Tracking
Let's run two calculations. Notice how we track units at every step to ensure the final dimension collapses correctly into VARs.
Problem 1: Finding Reactive Power of an Inductive Motor
Given: A single-phase 240V AC compressor motor draws 18Arms. A power analyzer shows the current waveform lags the voltage waveform by 35°.
Find: The reactive power (Q) in VAR and kVAR.
- Select Formula: Q = Vrms × Irms × sin(θ)
- Substitute Values: Q = 240 V × 18 A × sin(35°)
- Calculate Sine: sin(35°) ≈ 0.5736
- Multiply: Q = 240 × 18 × 0.5736
- Unit Check: [Volts] × [Amperes] × [dimensionless] = [Volt-Amps]
- Final Result: Q = 2,477.9 VAR, or 2.48 kVAR (Inductive, so +2.48 kVAR).
Problem 2: Sizing a Capacitor for Power Factor Correction
Given: You need a capacitor to absorb 5 kVAR of reactive power on a 480Vrms, 60 Hz single-phase line.
Find: The required capacitive reactance (XC) and the capacitance (C) in microfarads (μF).
- Select Formula for X: XC = Vrms² / Q
- Convert Q to base units: 5 kVAR = 5,000 VAR
- Substitute: XC = (480 V)² / 5,000 VAR
- Calculate X: XC = 230,400 / 5,000 = 46.08 Ω
- Select Formula for C: XC = 1 / (2πfC) → C = 1 / (2πfXC)
- Substitute: C = 1 / (2 × π × 60 Hz × 46.08 Ω)
- Calculate C: C = 1 / 17,367.5 ≈ 0.0000575 Farads
- Convert to μF: 57.5 μF (Select a standard 60 μF, 600VAC oil-filled run capacitor).
The Unit Mistakes That Break Your Calculations
When the math doesn't match the bench measurements, it is almost always one of these three unit errors:
1. Peak vs. RMS Voltage Confusion
The formula Q = V² / X strictly requires RMS voltage. If you are looking at an oscilloscope trace and use the peak-to-peak or zero-to-peak voltage (e.g., using 170V instead of 120V for a standard US outlet), your calculated Q will be exactly double what it actually is. This leads to buying capacitors that are half the size you actually need.
2. Degrees vs. Radians in the Sine Function
If you are using a calculator or writing a Python/C++ script to compute Q = V × I × sin(θ), ensure your math library is set to the correct angular mode. The sin(35°) is 0.573. But if your calculator is in radian mode, sin(35 rad) is -0.428. A negative sign here flips an inductive load to a capacitive one on paper, completely ruining power factor correction designs.
3. Confusing Watts (W) and VARs
Real power (Watts) dissipates as heat or mechanical work. Reactive power (VARs) just sloshes back and forth. If you measure a motor drawing 1500W and 1500VAR, the apparent power (VA) is 2121 VA. Sizing a breaker or wire based on the 1500W real power will result in a tripped breaker or melted wire, because the conductors must carry the current for the full 2121 VA. Always size wires for apparent power (VA), not real or reactive power alone.
For practical field measurement techniques to verify these calculations, the Fluke guide on Power Factor and measurements is an essential reference for using power quality analyzers.
Real-World Scenario: The Melted Power Factor Correction Capacitor
Formulas on a whiteboard are clean; the jobsite is not. Here is a scenario that illustrates why understanding the non-linear relationship in the reactance power formula is critical for hardware survival.
The Setup
A small CNC woodworking shop was getting hit with a $150/month 'reactive power penalty' by their utility because their 3-phase dust collector and air compressor were dragging the facility power factor down to 0.72. The shop owner, an experienced DIYer, calculated the required kVAR to bring the PF up to 0.95. He used the formula XC = V² / Q, targeting a 15 kVAR correction bank. He ordered three 5 kVAR, 480V-rated oil-filled capacitors and wired them in a delta configuration across the 480V service.
The Numbers
On paper, at exactly 480V, each capacitor would draw exactly 5 kVAR. Total correction = 15 kVAR. The math was flawless for the nominal voltage.
The Outcome
Three weeks later, the shop smelled like burning fish (the distinct odor of vaporized PCB-free dielectric oil). One of the capacitors had ruptured its pressure interrupter and melted the terminal lugs. The utility penalty was slightly reduced, but the replacement cost and downtime ate the savings.
What Went Wrong: The V² Trap and Harmonics
The failure wasn't in the basic arithmetic; it was in ignoring the physical realities behind the variables. First, the shop was located at the end of a long utility feeder. At night, when the neighborhood load dropped, the line voltage at the shop's panel rose to 515V. Because the reactance power formula scales with the square of the voltage (Q = V² / X), that 7.3% increase in voltage resulted in a 15.1% increase in reactive power output (515² / 480² = 1.151). The 5 kVAR capacitor was suddenly trying to push 5.75 kVAR. Second, the shop's VFD-driven CNC routers were injecting 5th and 7th harmonics into the bus. Capacitors have lower reactance at higher frequencies (XC = 1 / 2πfC). The capacitor bank acted as a low-impedance sink for high-frequency harmonic currents, causing severe internal dielectric heating that the fundamental 60Hz Q calculation completely failed to predict. The Fix: For environments with VFDs and voltage swells, you must use detuned reactor-capacitor combinations (e.g., a 7% detuned choke in series with the capacitor) and rate the capacitor's voltage at least 10-15% above the nominal line voltage to handle the V² scaling and harmonic thermal stress.






