RF Power Density Calculator

Compute far‑field power density (W/m², mW/cm²) and electric field strength from transmit power, antenna gain, and distance. Essential for EMF exposure assessment, RF safety compliance (ICNIRP/FCC), and wireless system planning.

Peak envelope power (PEP) or average power.
dBi (decibels relative to isotropic) or linear ratio.
Distance to the point of interest (far‑field assumed).
? Wi‑Fi AP: 0.1 W, 3 dBi, 2 m
? Smartphone: 0.5 W, 0 dBi, 0.5 m
? FM broadcast: 5000 W, 6 dBi, 100 m
? 5G mmWave: 10 W, 24 dBi, 10 m
? Ham radio: 100 W, 2 dBi, 5 m
Privacy first: Your inputs never leave your device. All calculations are performed locally in your browser.

What is RF Power Density?

Power density (S) describes the amount of radio frequency power per unit area passing through a point in space. In the far‑field of an antenna, it is given by the classical formula for an isotropic radiator modified by antenna gain:

S = P · G / (4π R²)

where P = transmit power (W), G = antenna gain (linear), R = distance (m). Gain from dBi: G_lin = 10(G_dBi/10).

For example, a 0.1 Wi‑Fi access point with 3 dBi antenna at 2 m: G_lin = 100.3 ≈ 2.0, S = (0.1·2) / (4π·4) ≈ 0.004 W/m² = 0.0004 mW/cm².

Regulatory & Safety Background

RF exposure limits are set by international bodies like ICNIRP (International Commission on Non‑Ionizing Radiation Protection) and national authorities such as the FCC (USA). For frequencies above 400 MHz, the ICNIRP public reference level for power density is 2 W/m² (0.2 mW/cm²) averaged over 30 min; occupational limit is 10 W/m². The FCC uses similar values in OET Bulletin 65. These limits prevent excessive heating of tissue (thermal effects). Our calculator helps compare computed power density against these benchmarks.

When to Use This Calculator

  • EMF compliance: Assess whether a transmitter meets safety guidelines at a given distance.
  • Antenna siting: Determine exclusion zones around broadcast towers or base stations.
  • Laboratory measurements: Compare theoretical power density with probe measurements.
  • Amateur radio / RF design: Estimate field strength near high‑power antennas.

Mathematical Foundation

The power density formula derives from the Poynting vector magnitude for a plane wave: S = E×H. In free space, E/H = 377 Ω, and S = E²/377 = 377 H². Therefore, if you have computed S, the rms electric field strength (far‑field) is:

E = √(377 · S) (V/m)

For example, S = 1 W/m² yields E ≈ 19.4 V/m. This relation holds for a single carrier in the far‑field (Fraunhofer region).

Antenna gain conversion: Gain in dBi is often provided by manufacturers. Use G_linear = 10^(G_dBi/10). Isotropic gain (0 dBi) means G_linear = 1. A directional antenna focuses power, increasing power density in the main lobe.

Step-by-Step Calculation

  1. Input transmit power P (W). For modulated signals, use average power unless peak is relevant (e.g., pulsed radar).
  2. Enter antenna gain G in dBi. The calculator converts it to linear.
  3. Specify distance R (m) from the antenna phase center.
  4. Compute S (W/m²): S = P · 10^(G_dBi/10) / (4π R²).
  5. Convert to mW/cm²: 1 W/m² = 0.1 mW/cm².
  6. Estimate E-field: E = √(377 · S).

All results are shown in the panel above. A reference exposure limit (ICNIRP public) is displayed for quick comparison, but always consult local regulations.

Typical Exposure Limits

Authority Exposure type Frequency range Power density limit
ICNIRP (2020) General public 400–2000 MHz 2 W/m² (0.2 mW/cm²)
ICNIRP (2020) Occupational 400–2000 MHz 10 W/m² (1 mW/cm²)
FCC OET‑65 General population / uncontrolled 1500–100,000 MHz 1 mW/cm² (10 W/m²)
FCC OET‑65 Occupational / controlled 1500–100,000 MHz 5 mW/cm² (50 W/m²)
EU Council Rec. General public 2 GHz – 300 GHz 10 W/m²
Case Study: 5G Base Station Exclusion Zone

A mobile operator installs a 5G massive‑MIMO antenna with total radiated power of 200 W (average) and maximum array gain 24 dBi. To ensure public exposure below ICNIRP’s 2 W/m² limit, what is the minimum safe distance? Using the calculator with P=200, G=24 dBi (linear ≈251), we adjust R until S ≤ 2 W/m². For R=20 m, S = (200·251)/(4π·400) ≈ 200·251/(5026) ≈ 10 W/m² → too high. At R=40 m, S ≈ 2.5 W/m² (slightly above). At R=45 m, S ≈ 1.98 W/m². Thus a 45 m clearance is recommended in the main beam direction. This quick estimate helps site planners and regulators.

Near‑Field vs. Far‑Field

The formula used assumes far‑field (Fraunhofer) conditions, typically valid for distances R > 2D²/λ (where D is antenna diameter, λ wavelength). Inside the near‑field, power density varies unpredictably and may be higher or lower; our calculator gives an approximate value. Always use professional assessment for compliance near large antennas.

JavaScript Implementation

function linearGain(dBi) { return Math.pow(10, dBi/10); }
function powerDensity(P, gainLin, R) { return (P * gainLin) / (4 * Math.PI * R * R); }
// P in W, R in m → S in W/m²
function mWpercm2(S) { return S * 0.1; }   // 1 W/m² = 0.1 mW/cm²
function eField(S) { return Math.sqrt(377 * S); }
                    

Common Misconceptions

  • Higher gain increases power density in all directions: No, it focuses energy, increasing S in the main lobe but reducing it elsewhere.
  • Power density drops linearly with distance: It drops with 1/R² (inverse square law).
  • mW/cm² is 10× W/m²: Actually 1 mW/cm² = 10 W/m², so convert carefully.

Applications Across Industries

  • Telecom: Base station compliance reports.
  • Broadcasting: AM/FM/TV tower safety zones.
  • Industrial RF: RF heaters, dielectric sealers.
  • Research: Anechoic chamber verification.

Based on authoritative standards – This tool implements formulas from ITU‑R P.525 (calculation of free‑space attenuation) and exposure limits from ICNIRP (2020) guidelines and FCC OET Bulletin 65. Reviewed by GetZenQuery technical team, March 2026.

Frequently Asked Questions

1 W/m² = 0.1 mW/cm². To convert, multiply W/m² by 0.1 to get mW/cm², or divide by 10. Our calculator shows both.

Gain describes how much power is concentrated in a direction. A directional antenna (e.g., 10 dBi) increases power density in the main lobe by a factor of 10 compared to an isotropic radiator, raising exposure risk in that direction.

For R > 2D²/λ (D antenna diameter, λ wavelength) the error is typically below 0.5 dB. At closer distances, fields can be reactive or radiating near‑field – our result there is only indicative.

This calculator assumes free‑space propagation. Reflections may increase or decrease local power density. For compliance, often a worst‑case 4 dB enhancement is considered (ITU‑R SM.1708).

No, SAR requires detailed tissue models. Power density is an incident field measure, used for far‑field exposure limits above 6 GHz (where SAR is hard to define).

ICNIRP (2020) and FCC OET‑65 are primary sources. Many countries adopt them with minor variations. Check your local regulator’s website.
References: ICNIRP (2020) RF Guidelines; FCC OET Bulletin 65 ; ITU‑R P.525: Calculation of free‑space attenuation.