29  LPWAN Regulatory Assessment

In 60 Seconds

EU868 duty cycle limits airtime, not message count – at SF7 a device can send 878 messages/hour within the 1% limit, but at SF12 only 35. This assessment covers duty cycle compliance calculations, scaling challenges when high-frequency updates violate regulatory constraints, and operator risk mitigation strategies when LPWAN providers face bankruptcy.

29.1 Introduction

This chapter provides comprehensive assessment scenarios covering regulatory compliance, duty cycle calculations, scaling challenges, and operator risk mitigation for LPWAN deployments.

Learning Objectives
  • Calculate duty cycle compliance for high-frequency LPWAN applications
  • Diagnose scaling challenges when expanding LPWAN deployments beyond duty-cycle boundaries
  • Design risk mitigation strategies for operator-dependent LPWAN networks
  • Apply regulatory knowledge to evaluate deployment planning decisions
  • Justify technology selection choices based on regulatory constraints and operator risk profiles

Radio frequencies are regulated by governments, just like driving speeds on roads. This assessment covers the rules that LPWAN devices must follow – which frequencies they can use, how much power they can transmit, and how often they can send data. Understanding these rules is essential for legal, real-world IoT deployments.

“Can I transmit on any frequency I want?” asked Sammy the Sensor innocently.

“Absolutely not!” Max the Microcontroller warned. “Radio frequencies are like roads – there are speed limits and lanes. In Europe, LoRaWAN uses 868 MHz with a 1% duty cycle, meaning you can only transmit for 36 seconds every hour. In the US, it’s 915 MHz with different rules. Break the rules, and you could get fined – or worse, jam emergency communications!”

Lila the LED explained further: “Duty cycle is the most important rule. If your message takes 1 second to transmit, you have to wait 99 seconds before sending again. That limits how often Sammy can report. You have to design your entire system around these limits.”

Bella the Battery saw the bright side: “The regulations actually help me! If Sammy can only transmit 36 seconds per hour, that means the radio is off 99% of the time. Regulatory limits and energy efficiency go hand in hand. Understanding the rules isn’t just about compliance – it’s about designing smarter systems!”

29.2 Duty Cycle Compliance Quiz

Understanding regulatory constraints is critical for legal LPWAN operation.

Complete Calculation (EU868, 1% Duty Cycle, SF7, 20-byte payload):

Step Calculation Result Notes
1. Allowed airtime 3600s x 1% 36 seconds/hour ETSI 1% limit
2. Convert to ms 36s x 1000 36,000 ms/hour -
3. Message airtime SF7, 20 bytes 41 ms/message From Semtech formula
4. Max messages 36,000 ms / 41 ms 878 messages/hour Floor(878.04)
5. Verify compliance 878 x 41 ms = 35,998 ms 0.9999% duty cycle Compliant
6. Optimal interval 3600s / 878 4.1 seconds Even distribution

Conclusion: With 1% duty cycle and SF7, a LoRaWAN device can send 878 messages/hour (one every 4.1 seconds) while remaining compliant.

Mathematical proof:

Given: - Duty cycle limit: 1% per hour - Hour duration: 3600 seconds = 3,600,000 milliseconds - Message airtime: 41 milliseconds - Payload: 20 bytes at SF7

Calculate maximum messages: 1. Allowed airtime = 3,600,000 ms x 1% = 36,000 ms 2. Messages per hour = 36,000 ms / 41 ms/message = 878.04 messages 3. Round down to integer: 878 messages 4. Remaining airtime = 36,000 - (878 x 41) = 2 ms (insufficient for another message)

Spreading Factor Impact on Capacity:

SF Airtime Max Msg/Hour Interval Range
7 41 ms 878 4.1s 2km
8 72 ms 500 7.2s 3km
9 144 ms 250 14.4s 5km
10 267 ms 134 26.7s 7km
11 524 ms 68 52.4s 11km
12 1024 ms 35 102.4s 15km

Trade-off: Lower SF = more messages but shorter range; Higher SF = fewer messages but longer range

Why other options are incorrect:

Option A: 36 messages/hour (WRONG) This confuses SECONDS of airtime with NUMBER of messages: - 36 seconds of transmission allowed per hour - Each message takes 41 milliseconds = 0.041 seconds - 36,000 ms / 41 ms = 878 messages

Option C: 1440 messages/hour (WRONG)

  • 1440 x 41 ms = 59,040 ms = 59.04 seconds
  • Duty cycle: 59.04 / 3600 = 1.64%
  • EXCEEDS LIMIT BY 64% - regulatory violation

Option D: 140 messages/hour (WRONG) This is Sigfox’s DAILY limit divided by 24 hours: - Sigfox: 140 messages per DAY - But this question is about LoRaWAN, not Sigfox

Summary: With 1% duty cycle (36 seconds/hour) and 41ms airtime per message: - Maximum messages = 36,000 ms / 41 ms = 878 messages/hour - The key insight is that duty cycle limits AIRTIME, not message count

29.3 Duty Cycle Calculator

Use this interactive tool to explore the relationship between spreading factor, payload size, and maximum messages per hour under EU868 1% duty cycle rules.

Knowledge Check: Spreading Factor Trade-offs

29.4 Scaling Challenge Scenario

## Operator Risk Mitigation

When deploying 10,000+ IoT devices, choosing between cellular LPWAN (NB-IoT/LTE-M) and private LPWAN (LoRaWAN) dramatically impacts 10-year total cost of ownership. Use this framework:

Decision Factor Private LoRaWAN Wins Cellular LPWAN Wins
Geographic Distribution Concentrated (single campus, farm, facility) Dispersed (city-wide, regional, national)
Device Mobility Stationary sensors (fixed locations) Mobile assets (vehicles, shipping containers)
Reliability SLA 95-98% acceptable (unconfirmed uplinks) 99.9%+ required (billing, safety-critical)
Data Sovereignty Sensitive data must stay on-premises Cloud-managed acceptable
Coverage Availability No cellular coverage OR desire for control Good cellular coverage already exists
Scale Economics >5,000 devices (gateway cost amortizes) <1,000 devices (subscription cheaper than infrastructure)
Deployment Timeline Can wait 3-6 months for gateway rollout Need immediate deployment
IT Resources Have network operations team Prefer operator-managed service

Cost Comparison Framework (50,000 devices, 10 years):

Private LoRaWAN Calculation:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Gateways: 200 × €1,500 = €300,000 (Year 1)
Sensors: 50,000 × €15 = €750,000 (Year 1)
Network server: €300/month × 12 × 10 = €36,000
Gateway maintenance: €100/gateway/year × 200 × 10 = €200,000
Gateway replacement (Year 7): 200 × €1,500 = €300,000
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Total 10-year: €1,586,000 (€3.17/device/year)

NB-IoT Calculation:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Sensors: 50,000 × €20 = €1,000,000 (Year 1)
Subscription: 50,000 × €2.50/month × 12 × 10 = €15,000,000
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Total 10-year: €16,000,000 (€32/device/year)

Savings with LoRaWAN: €14,414,000 (90% reduction)
Break-even point: Year 2 (after gateway infrastructure pays for itself)

When to Choose Private LoRaWAN:

  • ✅ Utility smart meters (fixed, dense, data privacy required)
  • ✅ Agricultural sensors (rural, no cellular, cost-sensitive)
  • ✅ Smart building/campus (controlled premises, IT team available)
  • ✅ Industrial monitoring (hazardous zones, no cellular allowed)

When to Choose Cellular LPWAN:

  • ✅ Fleet tracking (global mobility, roaming required)
  • ✅ Smart city meters (carrier SLA for billing accuracy)
  • ✅ Medical devices (99.9% uptime, regulatory compliance)
  • ✅ Small pilots (<500 devices, test market before committing)

Hybrid Approach: Some deployments use both: Private LoRaWAN for 90% of fixed devices + NB-IoT for 10% of mobile/remote devices. This optimizes cost while ensuring ubiquitous coverage.

29.5 Further Reading and Resources

LPWAN Comparisons:

  • “LPWAN Technologies for IoT and M2M Applications” by Bhaumik et al.
  • LoRa Alliance Technical Marketing Workgroup whitepapers
  • Sigfox technical documentation

Standards Bodies:

  • LoRa Alliance: www.lora-alliance.org
  • Weightless SIG: www.weightless.org
  • ETSI (European regulations)
  • FCC (US regulations)

Online Resources:

  • The Things Network: Community-driven LoRaWAN resources
  • TTN Mapper: Global LoRaWAN coverage maps
  • Sigfox coverage: www.sigfox.com/coverage

29.6 Concept Relationships

This assessment covers regulatory and operational aspects of LPWAN deployment:

Regulatory Frameworks:

  • Spectrum Management: Unlicensed ISM bands require duty cycle compliance. See Wireless Regulations for global spectrum rules.
  • Duty Cycle Mathematics: ETSI 1% limit translates differently across spreading factors. See LoRaWAN Architecture for airtime calculations.

Scaling Challenges:

  • Network Capacity: Gateway capacity limits and collision probability at scale. See LPWAN Architectures for capacity planning.
  • Interference Management: Shared spectrum congestion in dense deployments. See Wireless Sensor Networks for multi-access strategies.

Risk Management:

  • Operator Dependency: Single-provider lock-in risks vs multi-carrier cellular. See LPWAN Comparison for vendor risk analysis.
  • Technology Migration: Switching costs when operators fail or technologies evolve. See Technology Lifecycle.

Global Deployment:

29.7 See Also

Assessment Series:

Technical Deep Dives:

Deployment Planning:

Regulatory Resources:

Learning Hubs:

Common Pitfalls

LoRaWAN frequency plans are region-specific (EU868, US915, AU915, AS923, IN865). Using the wrong region’s frequency plan violates local regulations and may interfere with other users. Configure devices with the correct regional plan before deployment.

EU868 allows maximum 1% duty cycle per sub-band. An application sending 1 packet/minute at SF7 (61ms air time) uses 0.1% of its 1% budget — compliant. At SF12 (2.5s air time) the same rate uses 4.2% — non-compliant. Always calculate actual duty cycle.

A device with FCC/CE approval for one antenna may lose approval if a different antenna is used. Verify that any antenna modifications or substitutions are covered by the device’s regulatory approval.

:

29.8 What’s Next

Chapter Focus Why Read It
LPWAN Comprehensive Assessment Index Full assessment overview Navigate all three assessment parts in sequence
LPWAN Assessment: Fundamentals Core LPWAN concepts Review key principles before attempting advanced scenarios
LPWAN Assessment: Technology Selection Technology choice scenarios Apply selection criteria to realistic deployment cases
LoRaWAN Architecture Network components and message flow Deepen understanding of airtime and ADR mechanisms
Sigfox Fundamentals Ultra-narrowband technology Assess Sigfox message limits and operator model trade-offs
Cellular IoT Fundamentals NB-IoT and LTE-M details Evaluate cellular as a migration path when duty cycles are too restrictive