Radio Frequency Bands

The radio spectrum is conventionally [1] divided into frequency bands that seem arbitrary at first glance. For example, VHF runs from 30 to 300 MHz. All the frequency band boundaries are 3 times a power of 10.

Why all the 3’s? Two reasons: 3 is roughly the square root of 10, and the speed of light is 300,000 km/s. The former matters when you think in terms of frequencies, and the latter matters when you think in terms of wavelengths.

Frequencies

The frequency bands are centered (on a log scale) on powers of 10. The band centered at 10n runs from

3 × 10n-1 Hz

to

3 × 10n Hz.

Since 100.5 ≈ 3, this means that the log base 10 of the frequency band runs from roughly n – 1/2 to n + 1/2.

    |--------+-------+-----------------------------|
    | Center | Short | Long                        |
    |--------+-------+-----------------------------|
    |  10^0  | TLF   | Tremendously Low Frequency  |
    |  10^1  | ELF   | Extremely Low Frequency     |
    |  10^2  | SLF   | Super Low Frequency         |
    |  10^3  | ULF   | Ultra Low Frequency         |
    |  10^4  | VLF   | Very Low Frequency          |
    |  10^5  |  LF   | Low Frequency               |
    |  10^6  |  MF   | Medium Frequeny             |
    |  10^7  |  HF   | High Frequency              |
    |  10^8  | VHF   | Very High Frequency         |
    |  10^9  | UHF   | Ultra High Frequency        |
    |  10^10 | SHF   | Super High Frequency        |
    |  10^11 | EHF   | Extremely High Frequency    |
    |  10^12 | THF   | Tremendously High Frequency |
    |--------+-------+-----------------------------|

The table is easier to remember if you read it from the middle because it’s symmetric about 1 MHz.

From MF you either go up to HF or down to LF. Above HF is VHF and below LF is VLF. Above VHF is UHF, and below VLF and ULF. And so on.

The following bit of Python code computes the name of a frequency’s band following the discussion above.

    from math import log10

    def frequency_band(freq):
        decade = round(log10(freq))
        if decade in [5, 6, 7]:
            name = "LMH"[decade-5]
        else:
            name = "VUSET"[abs(decade-6)-2]
            name += "H" if decade > 6 else "L"
        return name + "F"

Wavelengths

A radio wave with frequency f has wavelength c/f. As noted above, The band centered at 10n runs from 3 × 10n-1 to 3 × 10n. This means the wavelengths vary from

3 × 108 m / 3 × 10n

to

3 × 108 m / 3 × 10n-1

and so the wavelength is between 108-n and 109-n meters.

To change the code above take wavelength as an argument, calculate the decade as

    decade = 8 - int(log10(wavelength))

Note that casting to integer truncates floats, taking the floor before changing the type.

Related posts

[1] Specifically, these are the conventions established by the International Telecommunications Union (ITU).

3 thoughts on “Radio Frequency Bands

  1. In practice, TLF, SLF, and ULF are uncommonly used (everything below LF is either “VLF” or “ELF”), as are SHF, EHF, and THF (stuff above 1GHz being more commonly called microwave, mm-wave, terahertz, and/or infrared). LF through UHF are the real core that mostly everyone agrees on.

  2. Following a tweet about the ELT and VLT telescopes, I fell into a moment of madness and put together a list of optical telescope sizes as though following the naming scheme for radio frequencies. ELT would be about 1000m^2 and VLT is about 100m^2. So these points are 10^3 and 10^2 respectively. ULT: 10^{2.3}, SLT: 10^{2.7} and the extrapolation TLT: 10^{3.3} or 2000m^2. Extrapolating the other way MT: 10^{1.3} or 20m^2, SST (super small): 10^0 or 1m^2; then EST: 10^{-1 + 0.7} or 0.5m^2 [16 inches] and TST: 10^{-1 +0.3} or 0.2m^2 [10 inches].

    At least I can feel a little better about my 12inch dob.

Comments are closed.