This is the index page for the mobile wireless comprehensive review series. It covers cellular network architecture (LTE/5G components, NB-IoT vs LTE-M selection), scenario-based analysis (agriculture, interference, link budgets), and a comprehensive quiz. Use this page to navigate between the three review sections based on your study needs.
16.1 Learning Objectives
By the end of this review series, you will be able to:
Evaluate Wireless Technologies: Justify frequency band and protocol selection for specific IoT application requirements
Calculate Coverage Requirements: Derive range, data rate, and battery trade-offs for real-world deployments
Architect Agricultural Systems: Design smart agriculture networks that achieve 5+ year battery life under given constraints
Differentiate Technology Options: Contrast Wi-Fi, Zigbee, LoRaWAN, and cellular IoT across performance, cost, and coverage dimensions
Estimate Power Budgets: Compute expected battery life from transmission patterns, duty cycles, and sleep-mode parameters
Synthesize Protocol Knowledge: Integrate wireless fundamentals into scenario-based deployment decisions
What is this chapter? This is an index page for the comprehensive review of mobile and wireless communication technologies for IoT. The content has been organized into focused sections for easier navigation.
A city installs 2,000 smart parking sensors embedded in pavement. Each sensor transmits a 20-byte occupancy status every 5 minutes. Sensors must last 8+ years on battery and require deep-indoor-grade penetration through concrete. Which technology fits best?
LTE-M – supports mobility and moderate data rates
NB-IoT – optimized for stationary deep-indoor sensors with ultra-low power
Wi-Fi HaLow (802.11ah) – sub-GHz with IP connectivity
Answer
B) – NB-IoT is the best fit. The sensors are stationary (no handover needed), embedded in concrete (NB-IoT achieves a maximum coupling loss of 164 dB, roughly 20 dB better than legacy GPRS and about 8 dB better than LTE-M, enabling deep penetration through concrete), and transmit tiny payloads infrequently (ideal for PSM/eDRX power modes). While LoRaWAN could also work, a city-wide deployment of 2,000 sensors benefits from existing cellular infrastructure without deploying and maintaining private gateways.
Sensor Squad: Mobile Wireless Review Guide!
Sammy Sensor: “Think of cellular networks like a postal system! Each cell tower is a post office covering a neighborhood. When you move to a new area, your mail gets forwarded to the nearest post office – that is handoff!”
Lila the Light Sensor: “NB-IoT is like sending postcards – small messages, no rush. LTE-M is like express mail – faster and works while you are moving. 5G is like overnight delivery – super fast but costs more!”
Max the Motion Detector: “The most important thing I learned: always match the technology to what you need. A temperature sensor does not need a video-streaming connection!”
Bella the Button: “Before picking any wireless technology, ask three questions: How far? How much data? How long must the battery last? The answers will point you to the right choice!”
16.6 Knowledge Check
Q1: A logistics company needs to track packages across a city. Devices must support handover between cell towers and occasional voice alerts. Which cellular IoT technology is most appropriate?
NB-IoT – optimized for stationary deep-indoor sensors
LTE-M – supports mobility, handover, and voice (VoLTE)
5G mmWave – highest bandwidth for real-time tracking
2G GPRS – cheapest legacy option
Answer
B) – LTE-M supports handover for mobile devices and includes VoLTE for voice alerts. NB-IoT lacks mobility support, 5G mmWave is overkill and has coverage gaps, and 2G networks are being sunset globally.
16.7 Knowledge Check
Q2: What is the primary advantage of Power Saving Mode (PSM) in cellular IoT devices?
It increases the data transmission speed
It allows the device to remain registered on the network while consuming near-zero power during sleep
It enables the device to connect to multiple cell towers simultaneously
It reduces the subscription cost per device
Answer
B) – PSM allows the device to enter deep sleep (microamp-level current) while remaining registered with the network, avoiding the power-expensive re-attach procedure on each wake-up. This is critical for achieving multi-year battery life in IoT sensors.
Critical requirement match: Handover support at highway speeds is non-negotiable for fleet tracking; NB-IoT would drop connections during cell transitions
Voice capability: VoLTE enables emergency driver-dispatcher communication without separate systems
Real-time performance: 10-100ms latency meets real-time tracking SLA; NB-IoT’s 1-10 second delays would cause map lag
Future-proofing: LTE-M supports higher data rates for future features (dash cameras, streaming diagnostics)
TCO comparison uses formula \(\text{TCO} = (\text{module cost} \times N) + (\text{subscription} \times N \times \text{years})\) where \(N = 500\) devices. Worked example: NB-IoT = ($9 × 500) + ($2.50 × 500 × 10) = $4,500 + $12,500 = $17,000 vs LTE-M = ($13 × 500) + ($4 × 500 × 10) = $26,500. The $9,500 delta ($950/year) is 56% higher but delivers mobility + voice vs NB-IoT stationary-only.
Trade-off justification: The $9,500 premium buys critical mobility features and voice support. Alternative (NB-IoT + separate voice radios) would cost $15,000+ and increase complexity.
Answer these questions to get a technology recommendation:
Show code
viewof sel_mobility = Inputs.select( ["stationary","low","high"], {label:"Device mobility",value:"stationary",format: x => x ==="stationary"?"Stationary (fixed location)": x ==="low"?"Low (walking speed)":"High (vehicle speed)"})viewof sel_battery = Inputs.select( ["1","5","10"], {label:"Battery life requirement (years)",value:"5"})viewof sel_latency = Inputs.select( ["relaxed","moderate","critical"], {label:"Latency requirement",value:"relaxed",format: x => x ==="relaxed"?"Relaxed (seconds OK)": x ==="moderate"?"Moderate (< 1 sec)":"Critical (< 100 ms)"})viewof sel_voice = Inputs.select( ["no","yes"], {label:"Voice support needed?",value:"no",format: x => x ==="yes"?"Yes":"No"})
Show code
{let tech ="NB-IoT";let reason ="";if (sel_mobility ==="high"|| sel_voice ==="yes") { tech ="LTE-M"; reason = sel_mobility ==="high"?"LTE-M supports handover between cell towers at vehicle speeds.":"LTE-M is the only cellular IoT option with VoLTE voice support."; } elseif (sel_latency ==="critical") { tech ="LTE-M"; reason ="LTE-M provides 10-100 ms latency vs NB-IoT's 1-10 seconds."; } elseif (sel_battery ==="10"&& sel_mobility ==="stationary") { tech ="NB-IoT"; reason ="NB-IoT's optimized PSM and eDRX modes deliver the lowest power consumption for stationary deep-indoor sensors."; } elseif (sel_mobility ==="stationary"&& sel_latency ==="relaxed") { tech ="NB-IoT"; reason ="For stationary sensors with relaxed latency, NB-IoT offers the best combination of deep indoor coverage and low cost ($2-3/yr subscription)."; } else { tech ="LTE-M"; reason ="LTE-M provides a good balance of mobility support, moderate latency, and power efficiency."; }const colors = {"NB-IoT":"#16A085","LTE-M":"#3498DB"};returnhtml`<div style="background: #f8f9fa; border-left: 4px solid ${colors[tech]}; padding: 12px 16px; border-radius: 4px; font-family: Arial, sans-serif;"> <div style="font-size: 18px; font-weight: bold; color: ${colors[tech]};">Recommendation: ${tech}</div> <div style="margin-top: 6px; font-size: 14px;">${reason}</div> </div>`;}
Common Pitfalls
1. Reviewing Mobile Wireless in Isolation From Application Requirements
Mobile wireless technology selection always depends on the application. A comprehensive review should always anchor analysis to specific IoT use cases. Reviewing modulation, frequency, and protocols without connecting to concrete applications produces theoretical knowledge without practical insight.
2. Confusing Coverage and Capacity Limitations
Coverage issues manifest as poor RSSI or high packet error rate at the edge of the deployment area. Capacity issues appear as congestion and high latency even with good signal strength. Different solutions apply: coverage needs more transmitters or higher power; capacity needs more channels, smaller cells, or better modulation.
3. Not Connecting Propagation Theory to Deployment Practice
Understanding path loss models without translating them to practical rules (e.g., 10 dB loss per concrete wall, 20 dB additional loss for sub-basement sensors) leaves gaps between theory and deployment. Review should include both the mathematical models and their practical approximations.
4. Memorizing Technology Specs Without Understanding Trade-offs
Knowing that NB-IoT has -130 dBm sensitivity without understanding how this translates to 20 dB better coverage than GPRS, what that means for underground deployments, and why it enables water meter deployments in basements — is superficial knowledge. Review to understand trade-offs and application implications, not just numbers.
🏷️ Label the Diagram
💻 Code Challenge
16.10 Summary
This comprehensive review chapter covers advanced mobile wireless concepts for IoT:
Key Concepts:
Electromagnetic waves enable wireless communication through space
Frequency, wavelength, and energy are interrelated properties
The electromagnetic spectrum ranges from radio to gamma rays
IoT primarily uses radio frequencies (sub-GHz to 5 GHz)