A radon gas detector for monitoring indoor radiation levels addresses a largely unknown but significant indoor air quality risk in India. Radon is a naturally occurring radioactive gas that seeps into buildings from soil and building materials containing uranium and radium. While India’s vast granite deposits (particularly in Rajasthan, Andhra Pradesh, and parts of the Western Ghats) release significant radon, awareness remains low. This guide covers radon detection methods, DIY electronic detectors, and professional solutions suitable for Indian homes and basements.
Table of Contents
- What is Radon Gas and Why Monitor It?
- Radon Risk Zones in India
- Types of Radon Detection Methods
- Building a DIY Radon Detector
- Using a Geiger Counter for Radiation Monitoring
- Professional Radon Measurement Options
- Radon Mitigation in Indian Buildings
- Frequently Asked Questions
What is Radon Gas and Why Monitor It?
Radon (Rn-222) is a colourless, odourless, radioactive noble gas formed from the decay of radium-226, which itself comes from uranium-238. It is naturally present in soil and can accumulate in enclosed spaces. Radon decays into radioactive polonium, bismuth, and lead isotopes (radon progeny) that attach to airborne particles and, when inhaled, irradiate lung tissue with alpha radiation.
Health impacts:
- Radon is the second leading cause of lung cancer globally after cigarette smoking
- WHO recommends action at 100 Bq/m³; the reference level is 300 Bq/m³
- India does not yet have a national radon monitoring programme or building code requirement
- Basement and ground-floor rooms in high-radon zones can exceed 1,000 Bq/m³ without ventilation
Radon concentration is measured in Becquerels per cubic metre (Bq/m³). Background outdoor levels are typically 5-15 Bq/m³. Indoor levels depend strongly on building construction, ventilation, and underlying geology.
Radon Risk Zones in India
India has several geological regions with elevated radon potential:
- Rajasthan: Granite-rich areas around Jaipur, Kota, and the Aravalli Range have elevated uranium concentrations. Some areas show indoor radon levels of 200-500 Bq/m³.
- Andhra Pradesh and Telangana: Granite formations in and around Hyderabad have reported elevated radon in some residential surveys.
- Kerala (Western Ghats): Monazite-bearing coastal sands contain thorium and uranium; indoor radon can be elevated in areas near these deposits.
- Punjab and Haryana: Some studies have reported elevated radon in ground-floor rooms due to basement construction practices that seal radon in.
- Jharkhand and Chhattisgarh: Mining regions with uranium ore processing facilities may have locally elevated radon.
The Bhabha Atomic Research Centre (BARC) has conducted radon surveys in several Indian states, though comprehensive national data remains limited.
Types of Radon Detection Methods
Four main approaches detect radon:
- Alpha track detectors (passive): Plastic film (CR-39 or LR-115) placed in a room for 90 days. Alpha particles from radon decay leave microscopic tracks in the plastic. Sent to a laboratory for etching and track counting. Very accurate, inexpensive (₹500-1,500 per test), but results take 3+ months. Used for regulatory compliance testing.
- Electret ion chambers (passive): A charged electret disc in a small chamber. Radon progeny ions gradually discharge the electret. Voltage measured before and after deployment gives integrated radon exposure. Available for short-term (2-7 day) and long-term (90-day) deployment.
- Continuous electronic monitors: Active devices that measure radon in real-time using solid-state detectors or alpha spectroscopy. Examples: Airthings Wave (₹8,000-12,000), RadonEye (₹9,000-15,000). These IoT-enabled devices provide smartphone app integration and hourly readings.
- DIY Geiger counter + ion chamber: A homemade detector using a PIN photodiode or ion chamber can detect radon decay products. Less accurate than commercial devices but provides real-time indication of radioactivity changes.
Building a DIY Radon Detector
A simple DIY radon monitor uses a reverse-biased PIN photodiode as an alpha particle detector. Alpha particles from radon progeny (polonium-218 and polonium-214) create electron-hole pairs in the photodiode that generate a detectable current pulse. Key components:
- BPW34 or SFH2030F PIN photodiode (₹50-150)
- OPA128 or AD8428 transimpedance amplifier
- Arduino Uno for pulse counting
- Sealed aluminium can to exclude visible light and reduce background radiation
Important limitations: DIY alpha detectors have high false positive rates from electronic noise, cosmic rays, and thoron (radon-220 from thorium). Professional calibration is required to convert pulse counts to Bq/m³. Treat DIY detector readings as relative indicators rather than absolute measurements. For accurate assessment, always supplement with a laboratory-analysed passive track detector.
Using a Geiger Counter for Radiation Monitoring
A Geiger-Mueller tube measures beta and gamma radiation but cannot directly detect alpha particles (alpha particles cannot penetrate the tube window). However, radon progeny that deposit on surfaces do emit gamma radiation (bismuth-214 at 609 keV), so a Geiger counter placed near a surface accumulating radon progeny will show elevated readings in high-radon environments.
// Simple Geiger counter pulse counter for Arduino
// Connects Geiger tube output to INT0 (Pin 2) via appropriate HV circuit
volatile unsigned long pulseCount = 0;
unsigned long countStart;
const int MEASURE_TIME_MS = 60000; // Count for 60 seconds
void IRAM_ATTR countPulse() {
pulseCount++;
}
void setup() {
Serial.begin(9600);
pinMode(2, INPUT);
attachInterrupt(digitalPinToInterrupt(2), countPulse, FALLING);
countStart = millis();
}
void loop() {
if (millis() - countStart >= MEASURE_TIME_MS) {
float cpm = pulseCount; // Counts per minute
float uSv = cpm / 153.8; // Approximate for SBM-20 tube
Serial.printf("CPM: %.0f Est. dose rate: %.3f µSv/h
", cpm, uSv);
pulseCount = 0;
countStart = millis();
}
}
Note: This code requires a complete Geiger counter circuit with a Geiger-Mueller tube (SBM-20 is popular and available for ₹800-1,500), high voltage power supply (400V), and pulse shaping circuit. Do not attempt high voltage construction without appropriate electrical safety knowledge.
Professional Radon Measurement Options
For accurate indoor radon assessment in India, these options are available:
- BARC Radon Dosimetry: BARC (Mumbai) conducts radon measurements for research and some public health programmes. Contact their Radiological Physics and Advisory Division for information.
- Third-party laboratories: Some NABL-accredited environmental testing laboratories in India offer alpha track detector analysis. Cost: ₹1,500-3,000 including detector kit and analysis.
- Airthings Wave Plus: Consumer IoT radon monitor with smartphone app, available from Indian electronics importers. Provides real-time radon readings alongside CO2, humidity, and temperature. Approximately ₹12,000-18,000.
Radon Mitigation in Indian Buildings
If radon testing reveals elevated levels (above 100 Bq/m³), these mitigation approaches apply to Indian building construction:
- Increased ventilation: Opening windows for 1-2 hours daily reduces indoor radon by 40-70%. Simple and cost-free for most Indian buildings.
- Sub-slab depressurisation: A pipe installed through the concrete floor slab draws radon from beneath the building and exhausts it outside. Very effective (reduces radon by 80-99%) but requires drilling and a small fan (₹5,000-15,000 installation cost).
- Positive pressure: Supply fans maintain slightly higher indoor air pressure than outdoor, preventing radon entry. Less effective than sub-slab systems but simpler to install in existing buildings.
- Sealing cracks: Seal cracks in floors and foundation walls with polyurethane caulk. Moderate effectiveness (reduces radon by 20-40%) when combined with other methods.
- Ventilated crawl spaces: If the building has a crawl space, ensure it is well-ventilated with cross-ventilation vents to prevent radon accumulation beneath the floor.
Frequently Asked Questions
Is radon a significant risk in Indian apartments compared to ground-floor homes?
Higher-floor apartments have significantly lower radon risk than ground-floor or basement rooms. Radon enters buildings primarily from the soil below. In a 10-storey building, the 8th-floor apartment may have radon levels close to outdoor background (5-15 Bq/m³), while the ground-floor apartment in the same building could have 200+ Bq/m³ if it sits on uranium-rich granite. If you live or work on the ground floor in Rajasthan or Andhra Pradesh, radon testing is worth considering.
How do I know if my area has elevated radon risk without buying a detector?
Check the underlying geology: areas overlying granite, uranium ore deposits, or phosphate-bearing rock have higher radon potential. The Geological Survey of India (GSI) provides geological maps that show rock types. Areas overlying black basalt (much of Maharashtra’s Deccan Trap) generally have lower radon than granite areas. The Central Ground Water Board’s data on groundwater uranium concentration is also a useful indirect indicator.
Can plants reduce indoor radon levels?
No. Indoor plants have no measurable effect on radon concentration. Despite claims circulating in Indian social media, plants cannot remove radioactive gases. Radon mitigation requires physical interventions (ventilation, sub-slab depressurisation) as described above. Plants do improve other aspects of indoor air quality (CO2 levels, certain VOCs) but not radon.
How often should I test for radon in my home?
WHO recommends testing every 5 years or after major renovations. After any mitigation system is installed, test again 30 days post-installation to verify effectiveness. Radon levels vary seasonally (higher in winter when buildings are sealed) — for the most conservative assessment, test during winter months when windows are kept closed.
What is the difference between radon in air and radon in water?
Both are concerns but through different pathways. Radon in groundwater (common in well water from granite areas) releases into indoor air when water is used for showering, cooking, and dishwashing. Showering with high-radon water can temporarily elevate bathroom radon 5-10x. Test well water separately from air testing. Aeration (running water through a packed tower) removes radon from water effectively.
Add comment