Critical Frequency Calculator

Accurately compute ionospheric critical frequency (foF2, foE) and maximum usable frequency (MUF) from electron density and elevation angle. Essential for HF radio propagation prediction, space weather analysis, and amateur radio.

Typical range: 1e10 (night E) to 3e12 (day F2).
Angle above horizon (0° = horizontal, 90° = vertical).
☀️ F2 layer day: N=2.5e12, Δ=25°
? E layer night: N=2e10, Δ=40°
⛅ F1 layer: N=4e11, Δ=15°
? High elevation: N=1e12, Δ=60°
⬆️ Vertical: N=1e12, Δ=90°
Privacy first: Your inputs never leave your device. All calculations are performed locally in your browser.

What is Critical Frequency?

In radio propagation, the critical frequency (fc) is the highest frequency that will be reflected back to Earth when transmitted vertically upward into the ionosphere. It depends directly on the electron density of the ionospheric layer. The formula derives from the plasma frequency of a magnetoionic medium:

f_c = 9 √(N / 10¹²)

where f_c is in MHz, N is electron density in electrons per cubic meter (e⁻/m³).

For example, if N = 1.0×10¹² e⁻/m³ (typical daytime F2 layer), then f_c = 9·√(1) = 9.0 MHz.

Historical Background

The concept of critical frequency emerged from early 20th‑century experiments by Appleton and Barnett (1924) who demonstrated the existence of the ionosphere. Appleton received a Nobel Prize for his work. The secant law (MUF = f_c · sec φ) was formulated to predict oblique propagation. During the 1930s–40s, it became essential for long‑distance shortwave communication. Today, real‑time ionosondes measure critical frequencies to issue HF propagation forecasts (e.g., NOAA/SWPC).

When to Use Critical Frequency

  • HF Radio Planning: Predict MUF for a given path to select the best operating frequency.
  • Ionospheric Science: Derive electron density from ionogram traces (foF2, foE).
  • Space Weather: Monitor ionospheric storms that depress critical frequencies.
  • Amateur Radio & NVIS: Optimize near‑vertical incidence skywave (NVIS) propagation using foF2.

Mathematical Foundation

The critical frequency equals the plasma frequency of the ionized layer: ω_p = √(N e² / (ε₀ m)). In practical units: f_p (Hz) ≈ 8.98 √N (with N in m⁻³). To express in MHz: f_c (MHz) = 8.98×10⁻⁶ √N. The commonly used engineering approximation is f_c (MHz) = 9 √(N / 10¹²), which is accurate within 0.2% for N near 10¹².

The Maximum Usable Frequency (MUF) for an oblique path at elevation angle Δ (above horizon) is given by the secant law:

MUF = f_c · sec φ = f_c / sin Δ

where φ = 90° – Δ is the incidence angle relative to vertical. This assumes a flat ionosphere and no earth curvature; for longer paths, more sophisticated models (e.g., Breit and Tuve’s theorem) are used, but the secant law remains a robust first approximation.

Step-by-Step Calculation

  1. Obtain electron density N (e⁻/m³) from ionosonde or model.
  2. Compute critical frequency: f_c = 9 · √(N / 1e12) (MHz).
  3. Input elevation angle Δ (0° = horizontal, 90° = vertical). Ensure Δ > 0° and Δ ≤ 90°.
  4. Calculate incidence angle: φ = 90° – Δ.
  5. Compute MUF: MUF = f_c / sin(Δ).

All angles in degrees. The calculator also shows the plasma frequency, which equals f_c.

Ionospheric Layers and Typical Values

LayerHeight (km)Typical N (e⁻/m³)Critical frequency (MHz)Notes
D layer60–9010⁸ – 10¹⁰0.1 – 0.9Absorbs HF, no reflection
E layer90–15010¹⁰ – 2×10¹¹0.9 – 4.0Sporadic E can reach higher
F1 layer150–2502×10¹¹ – 5×10¹¹4.0 – 6.4Daytime only
F2 layer250–4005×10¹¹ – 3×10¹²6.4 – 15.6Main reflective layer for HF
Case Study: Shortwave Broadcast from London to Tokyo

A broadcaster wants to select a frequency for a 9000 km path. Assuming the F2 layer critical frequency foF2 = 12 MHz (typical high sunspot number) and an elevation angle of 12° at the path midpoint. Using the calculator: sin(12°) ≈ 0.208, so MUF = 12 / 0.208 ≈ 57.7 MHz. However, the working frequency is usually taken as 85% of MUF (Optimal Working Frequency, OWF) ≈ 49 MHz, which falls into the VHF band and may not reflect efficiently. This indicates the need for a lower angle or a different layer. In practice, multi‑hop propagation uses lower elevations. Our calculator helps quickly test scenarios.

Weighted / Effective Critical Frequency for Oblique Paths

For a real curved Earth and ionosphere, the secant law is modified by the ionospheric transmission factor (ITF) or MUF factor. The effective MUF = f_c · k · sec(φ₀), where k accounts for the Earth's curvature. Typically, for a 3000 km hop, k ≈ 1.0 to 1.2. Our calculator provides the basic secant law value; for professional planning, refer to ITU‑R P.533 or VOACAP.

Programming Implementation (JavaScript)

function criticalFrequency(N) {
    // N in electrons/m³
    return 9.0 * Math.sqrt(N / 1e12);  // MHz
}
function MUF(fc, elevationDeg) {
    let sinEl = Math.sin(elevationDeg * Math.PI / 180);
    if (sinEl <= 0) return NaN;
    return fc / sinEl;
}
                    

Common Misconceptions

  • Critical frequency is the same as MUF: No, MUF is the oblique equivalent and always higher than fc (for Δ < 90°). At vertical incidence (Δ=90°), MUF = fc.
  • Electron density can be zero: If N=0, plasma frequency is zero; no reflection. The ionosphere always has some ionization.
  • Higher frequency always better: Frequencies above MUF penetrate the layer; those far below suffer absorption.

Applications Across Fields

  • Telecommunications: Frequency allocation for HF links.
  • Space Weather: Critical frequency depression indicates ionospheric storm.
  • Radar OTH: Over‑the‑horizon radar uses MUF predictions.
  • Amateur Radio: Choosing the right band for DX contacts.

Based on authoritative standards – This tool employs fundamental formulas from ITU‑R P.533 and references NOAA Space Weather Prediction Center ionospheric data. All calculations adhere to classical ionospheric radio propagation theory. Reviewed by the GetZenQuery technical team, last updated March 2026.

Frequently Asked Questions

Electron density must be entered in electrons per cubic meter (e⁻/m³). Typical values range from 10¹⁰ (night E) to 3×10¹² (day F2). You can use scientific notation like 2.5e12.

Elevation angle is measured from the horizon. At 90° (vertical), sin(90°)=1, MUF = fc (vertical incidence). Angles >90° would point below horizon and are not physically meaningful for skywave. Our calculator accepts Δ = 90°.

For flat Earth and ionosphere, it's exact. For real curved paths and distances up to ~3000 km, the error is typically <10%. For longer paths, use a ray‑tracing program or ITU recommendations.

foF2 is the critical frequency of the F2 layer measured at vertical incidence. MUF is the maximum frequency that supports oblique propagation between two points. MUF is always ≥ foF2.

No, satellite links usually involve frequencies above the MUF (VHF/UHF) and are not reflected by the ionosphere. This tool is exclusively for ionospheric reflection (HF).

Real‑time ionosonde data is available from NOAA (https://www.swpc.noaa.gov), the Australian Space Weather Bureau, and the GIRO network. You can use those values in this calculator.
References: ITU‑R P.533; “The Ionosphere” by K. Davies (1965); NOAA Space Weather Prediction Center.