WiMAX Technology — Broadband Wireless Access Guide
In this tutorial, you'll learn about WiMAX Technology. We cover key concepts, practical examples, and best practices.
WiMAX (Worldwide Interoperability for Microwave Access) is a broadband wireless access technology based on IEEE 802.16 that delivers metro-area wireless connectivity at up to 75 Mbps over 50 km ranges using OFDMA and adaptive modulation.
What You'll Learn
- Fixed vs Mobile WiMAX (802.16d vs 802.16e)
- WiMAX OFDMA physical layer and adaptive modulation
- QoS scheduling classes: UGS, rtPS, nrtPS, BE
- How WiMAX competed with LTE and its lasting influence on 5G
Why WiMAX Matters
WiMAX was the first major deployment of OFDMA-based broadband wireless — the same technology that powers LTE and 5G NR. While WiMAX lost the 4G standards war to LTE, its technical innovations (adaptive modulation, QoS scheduling, all-IP architecture) directly influenced 5G design. WiMAX networks still operate in rural broadband, backhaul, and public safety markets.
Durga Antivirus Pro applies WiMAX-style QoS scheduling for prioritizing threat detection traffic over routine system scans, ensuring security alerts always get guaranteed bandwidth.
Learning Path
flowchart LR A[Broadband Wireless Concepts] --> B[Fixed WiMAX 802.16d] B --> C[Mobile WiMAX 802.16e
You are here] C --> D[LTE / 4G] D --> E[5G NR] style C fill:#f90,color:#fff
WiMAX Network Architecture
flowchart LR SS[Subscriber Station] --> BS[Base Station] BS --> ASN[ASN - Access Service Network] ASN --> ASN_GW[ASN Gateway] ASN_GW --> CSN[CSN - Connectivity Service Network] CSN --> HA[Home Agent / Mobile IP] CSN --> AAA[AAA Server] CSN --> DN[Public Internet] BS --> BS --> ASN_GW
| Component | Role |
|---|---|
| SS/MS | Subscriber station (fixed) or mobile station |
| BS | Base station — manages radio resources, scheduling, handovers |
| ASN | Access Service Network — radio-related functions, BS aggregation |
| ASN-GW | ASN Gateway — mobility anchor, paging, DHCP relay |
| CSN | Connectivity Service Network — IP allocation, AAA, internet connectivity |
Physical Layer
WiMAX uses OFDMA (Orthogonal Frequency Division Multiple Access) with scalable channel bandwidth from 1.25 MHz to 20 MHz:
FFT Size (proportional to channel width):
128-point FFT -> 1.25 MHz channel (128 subcarriers)
512-point FFT -> 5 MHz channel (512 subcarriers)
1024-point FFT -> 10 MHz channel (1024 subcarriers)
2048-point FFT -> 20 MHz channel (2048 subcarriers)
Each OFDMA symbol contains:
- Data subcarriers: Carry user data
- Pilot subcarriers: Channel estimation and synchronization
- Guard subcarriers: To reduce adjacent channel interference
Adaptive Modulation and Coding (AMC)
WiMAX dynamically selects modulation based on signal quality:
| CINR (dB) | Modulation | Code Rate | DL Throughput (10 MHz) |
|---|---|---|---|
| 4-8 | QPSK | 1/2 | 4 Mbps |
| 8-12 | QPSK | 3/4 | 6 Mbps |
| 12-16 | 16-QAM | 1/2 | 12 Mbps |
| 16-20 | 16-QAM | 3/4 | 18 Mbps |
| 20-24 | 64-QAM | 2/3 | 24 Mbps |
| 24+ | 64-QAM | 3/4 | 27 Mbps |
class WiMAX_AMC:
def __init__(self):
self.schemes = [
{"modulation": "QPSK", "rate": "1/2", "min_cinr": 4, "throughput_mbps": 4},
{"modulation": "QPSK", "rate": "3/4", "min_cinr": 8, "throughput_mbps": 6},
{"modulation": "16-QAM", "rate": "1/2", "min_cinr": 12, "throughput_mbps": 12},
{"modulation": "16-QAM", "rate": "3/4", "min_cinr": 16, "throughput_mbps": 18},
{"modulation": "64-QAM", "rate": "2/3", "min_cinr": 20, "throughput_mbps": 24},
{"modulation": "64-QAM", "rate": "3/4", "min_cinr": 24, "throughput_mbps": 27},
]
def select_scheme(self, cinr_db):
best = self.schemes[0]
for scheme in self.schemes:
if cinr_db >= scheme["min_cinr"]:
best = scheme
return best
amc = WiMAX_AMC()
for cinr in [5, 15, 25]:
s = amc.select_scheme(cinr)
print(f"CINR={cinr}dB -> {s['modulation']} {s['rate']} @ {s['throughput_mbps']} Mbps")
Expected output:
CINR=5dB -> QPSK 1/2 @ 4 Mbps
CINR=15dB -> 16-QAM 3/4 @ 18 Mbps
CINR=25dB -> 64-QAM 3/4 @ 27 Mbps
QoS Scheduling
WiMAX defines five scheduling classes, each with specific QoS parameters:
| Class | Application | Guarantee | Priority |
|---|---|---|---|
| UGS | Voice (VoIP) | Constant bit rate, fixed latency | Highest |
| rtPS | Video streaming | Variable bit rate, real-time | High |
| ertPS | VoIP with silence suppression | Extended rtPS with grant-free | High |
| nrtPS | FTP, web browsing | Minimum rate, non-real-time | Medium |
| BE | Email, P2P | Best effort, no guarantees | Lowest |
Handover in Mobile WiMAX
Mobile WiMAX (802.16e) supports three handover types:
flowchart LR MS[Mobile Station] --> BS1[Base Station A] BS1 -- "HHO (Hard Handover)" --> BS2[Base Station B] BS1 -. "FBSS (Fast BS Switching)" .-> BS2 BS1 -. "MDHO (Macro Diversity HO)" .-> BS2 MS -.-> BS2
- HHO (Hard Handover): Break-before-make — MS disconnects from BS A, then connects to BS B. Simplest but has ~50ms interruption.
- FBSS (Fast Base Station Switching): MS maintains a diversity set of BSs, selects the best for active communication.
- MDHO (Macro Diversity Handover): MS communicates with multiple BSs simultaneously — the network combines signals for better quality.
Common Errors
1. Assuming WiMAX Is Dead
WiMAX never achieved mass-market mobile adoption, but it survives in fixed wireless access (FAA, Clearwire spinoffs), rural broadband (India, Africa), and military communications.
2. Confusing WiMAX and Wi-Fi
WiMAX is a wide-area (WAN) technology for metro/regional coverage. Wi-Fi is a local-area (LAN) technology optimized for indoor use. They serve different purposes.
3. Ignoring the TDD Advantage
WiMAX uses TDD (Time Division Duplex), allowing asymmetric bandwidth allocation. LTE initially focused on FDD. TDD makes WiMAX better for asymmetric traffic like web browsing.
4. Overlooking WiMAX in 5G Standards
WiMAX's OFDMA, subchannelization, and QoS framework directly influenced 5G NR design. Many 5G engineers worked on WiMAX before moving to LTE/5G.
Practice Questions
What are the two main WiMAX standards? 802.16d (Fixed WiMAX) and 802.16e (Mobile WiMAX). Fixed uses OFDM, mobile uses scalable OFDMA.
How does WiMAX QoS differ from LTE? WiMAX has five scheduling classes (UGS, rtPS, ertPS, nrtPS, BE) with explicit bandwidth grants. LTE uses EPS bearers with QCI.
What is the maximum range of WiMAX? Fixed WiMAX covers up to 50 km (LOS). Mobile WiMAX covers 1-5 km (NLOS) depending on frequency and power.
Challenge: Design a 20 MHz WiMAX sector in a rural area serving 200 subscribers. Calculate: (1) total sector throughput, (2) number of subscribers per modulation class assuming typical CINR distribution, (3) backhaul requirements.
FAQ
Built by the developers of Doda Browser, DodaZIP, and Durga Antivirus Pro. Updated 2026-06-24.
Built by the developers of DodaTech
Doda Browser, DodaZIP & Durga Antivirus Pro