Zbotic Logo Zbotic Logo
  • Home
  • Shop
  • Sale
  • 3D Print Service
  • PCB Service
  • B2B
  • Blogs
  • Contact Us
0 0

View Wishlist Add all to cart

0 0
0 Shopping Cart
Shopping cart (0)
Subtotal: ₹0.00

View cartCheckout

  • Shop
  • About Us
  • Contact Us
  • Reseller
  • Blogs
020 69134444
1800 209 0998
[email protected]
Help Desk
Facebook Twitter Instagram Linkedin YouTube
Zbotic Logo Zbotic Logo
0 0

View Wishlist Add all to cart

0 0
0 Shopping Cart
Shopping cart (0)
Subtotal: ₹0.00

View cartCheckout

All departments
  • 3D Print Service
  • 3D Printer
  • Batteries & Chargers
  • Development Boards
  • Drone Parts
  • EBike parts
  • Sensor Modules
  • Electronic Components
  • Electronic Modules
  • IoT and Wireless
  • Mechanical Parts and Workbench Tools
  • Motors & Drivers & Pumps & Actuators
  • DIY and Robot Kits
  • Show more
  • Home
  • Shop
  • Sale
  • 3D Print Service
  • PCB Service
  • B2B
  • Blogs
  • Contact Us
Return to previous page
Home Weather & Environmental Monitoring

Solar Radiation Sensor: Pyranometer for Weather Stations

Solar Radiation Sensor: Pyranometer for Weather Stations

March 11, 2026 /Posted byJayesh Jain / 0

Solar Radiation Sensor: Pyranometer for Weather Stations

A pyranometer measures solar radiation (irradiance) in watts per square meter — the most fundamental parameter for solar energy assessment, agricultural evapotranspiration modeling, and weather research. India, with its 300+ sunny days per year in most regions, has exceptional solar resources, making pyranometers crucial for the booming solar power sector and smart agriculture. This guide covers both commercial pyranometer interfacing (4-20mA outputs) and DIY solar radiation measurement using photodiodes and Arduino, with calibration methods for Indian solar conditions.

Table of Contents

  1. Solar Radiation Fundamentals
  2. Pyranometer Types and Accuracy Classes
  3. DIY Solar Sensor: BPW21 Photodiode Circuit
  4. Arduino Measurement Code
  5. Industrial Pyranometer: 4-20mA Interface
  6. Calibration Against Reference
  7. Solar Energy Applications in India
  8. Frequently Asked Questions

Solar Radiation Fundamentals

Solar radiation at Earth’s surface is measured as irradiance in W/m² (watts per square meter) or as insolation (energy per unit area per day) in kWh/m²/day.

  • Solar Constant: 1361 W/m² at top of atmosphere
  • Peak irradiance at surface: 950-1050 W/m² (clear sky noon, India)
  • Global Horizontal Irradiance (GHI): Total radiation on horizontal surface — used for PV system design
  • Direct Normal Irradiance (DNI): Direct beam component — used for concentrated solar thermal
  • Diffuse Horizontal Irradiance (DHI): Scattered sky radiation — important during monsoon

India’s solar resource is outstanding: most of the country receives 4-7 kWh/m²/day (annual average). Rajasthan and Gujarat top at 6-7 kWh/m²/day, while northeastern states receive 4-4.5 kWh/m²/day. These are among the best solar resources globally, comparable to the Sahara Desert and Middle East.

Pyranometer Types and Accuracy Classes

Thermopile Pyranometers (Reference Standard)

Kipp & Zonen CM11, Hukseflux SR20 — use a thermopile detector beneath a glass dome. Measure 280-3000nm (full solar spectrum). WMO Class A/B/C accuracy. Price: ₹50,000-₹2,50,000. Used at IMD stations and NIWE (National Institute of Wind Energy) solar measurement sites.

Silicon Photodiode Pyranometers

Apogee SP-110, Davis 6450 — silicon solar cell measures 300-1100nm (most of solar spectrum). Lower accuracy (Class C) but cost ₹5,000-15,000. Popular for agricultural weather stations and building-integrated PV monitoring.

DIY Arduino-Based Sensors

Using BPW21 photodiode or TEMT6000 light sensor with I-V conversion circuit. Accuracy ±10-20% but cost under ₹500. Suitable for educational projects, relative monitoring, and solar panel performance tracking where absolute accuracy isn’t critical.

DIY Solar Sensor: BPW21 Photodiode Circuit

/* DIY Pyranometer Circuit using BPW21 Photodiode
 * BPW21 is a silicon PIN photodiode with flat glass window
 * Spectral range: 400-1100nm (covers ~70% of solar spectrum)
 *
 * Trans-impedance amplifier (converts photocurrent to voltage):
 * Op-amp: LM358 or TL071
 *
 *              Rf = 1MΩ (feedback resistor)
 *          _____|_____
 *         |           |
 * BPW21(+)┘           └─── Output voltage (0-3V range for 0-1000W/m²)
 *         |
 *       (-) LM358 (+) → VCC/2 virtual ground (2.5V with 5V supply)
 *
 * Calibration:
 * In full sun (clear noon): output should be ~1200mV
 * Calibration factor K: K = 1000 W/m² / 1200mV = 0.833 W/m² per mV
 *
 * Component list:
 * BPW21 photodiode (₹30-60)
 * LM358 op-amp (₹5-10)
 * 1MΩ resistor (feedback)
 * 10kΩ × 2 (VCC/2 divider)
 * 100nF capacitors
 * Total: ₹150-200
 */

// Alternate simple approach: TEMT6000 ambient light sensor
// TEMT6000 responds to 440-800nm, output proportional to lux
// Convert lux to W/m²: 1 W/m² ≈ 120 lux (for solar spectrum)
// TEMT6000 module: ₹80-120 — simple 3-pin (VCC/GND/OUT)

Arduino Measurement Code

// Solar Radiation Measurement with Arduino
// Assumes photodiode-based DIY sensor on analog input

#define SOLAR_PIN     A0
#define TEMP_PIN      A1  // LM35 for temperature correction
#define LOG_INTERVAL  60000  // Log every 60 seconds

// Calibration: Adjust based on your sensor calibration
// K_FACTOR: W/m² per ADC count (depends on circuit design)
// Calibrate by pointing at noon sun and matching to known irradiance
float K_FACTOR = 1.2; // W/m² per ADC count (initial estimate)
float OFFSET = 0;     // Zero offset in W/m² (dark current correction)

float totalEnergy_Wh = 0;  // Daily energy accumulation (Wh/m²)
unsigned long lastLogTime = 0;
unsigned long lastEnergyCalc = 0;

void setup() {
  Serial.begin(115200);
  analogReference(DEFAULT);
  
  Serial.println("Solar Radiation Monitor Ready");
  Serial.println("Time(s), Irradiance(W/m2), Temp(C), DailyEnergy(Wh/m2)");
}

void loop() {
  // Average 100 ADC readings to reduce noise
  long sum = 0;
  for (int i = 0; i  0) {
    float dt_hours = (now - lastEnergyCalc) / 3600000.0;
    totalEnergy_Wh += irradiance * dt_hours; // Wh/m² increment
  }
  lastEnergyCalc = now;
  
  // Log data every minute
  if (now - lastLogTime >= LOG_INTERVAL) {
    lastLogTime = now;
    Serial.print(now/1000); Serial.print(", ");
    Serial.print(irradiance, 1); Serial.print(", ");
    Serial.print(tempC, 1); Serial.print(", ");
    Serial.println(totalEnergy_Wh, 2);
    
    // Peak sun hours estimate: Energy / 1000 W/m²
    float peakSunHours = totalEnergy_Wh / 1000.0;
    Serial.print("Peak Sun Hours today: "); Serial.println(peakSunHours, 2);
  }
  
  delay(1000);
}

// Reset daily energy counter at midnight
void resetDailyEnergy() {
  totalEnergy_Wh = 0;
  Serial.println("Daily energy counter reset.");
}

Recommended Product

4-20mA to 5V Converter for Arduino
Interface professional pyranometers with 4-20mA output directly to Arduino — essential for integrating certified solar radiation sensors into industrial weather station data acquisition systems.
Category: Sensors & Modules

Industrial Pyranometer: 4-20mA Interface

// Interfacing industrial pyranometer with 4-20mA output
// Common range: 0-2000 W/m² → 4-20mA
// Use 4-20mA to 5V converter module (shunt resistor method)

// With 250Ω shunt resistor:
// 4mA → 1.0V (0 W/m²)
// 20mA → 5.0V (2000 W/m²)
// Arduino reads 0-5V via A0

float readPyranometer_4_20mA() {
  int adcRaw = analogRead(A0);
  float voltage = adcRaw * (5.0 / 1023.0);
  
  // Convert 1V-5V to 0-2000 W/m²
  // At 4mA = 1V → 0 W/m²
  // At 20mA = 5V → 2000 W/m²
  float irradiance = (voltage - 1.0) / 4.0 * 2000.0;
  return max(irradiance, 0.0f); // Clamp to positive values
}

// Alternative: Modbus RTU pyranometers (increasingly common in India)
// Read via RS-485 → Arduino MAX485 module
// Register map varies by manufacturer (Kipp & Zonen, Hukseflux, EKO)
// Most use Modbus function 03 (read holding registers)
// Register 0x0000: Solar radiation in W/m² × 0.1

Calibration Against Reference

// Calibration procedure for DIY solar sensor
//
// Step 1: Clear day calibration at solar noon
//   - Solar noon in India: 12:15-13:00 (seasonal variation)
//   - Clear sky irradiance model: Haurwitz formula:
//     GHI_clear = 1098 × cos(zenith) × exp(-0.057/cos(zenith))
//     Where zenith angle depends on latitude, date, and time
//
// Step 2: Zenith angle calculation for India
float calculateSolarZenith(float lat, int dayOfYear, int hour, int minute) {
  // Simplified solar position (accurate to ~0.1°)
  float decl = 23.45 * sin(PI/180 * (360/365.0) * (dayOfYear - 81));
  float hourAngle = 15.0 * (hour + minute/60.0 - 12);
  float zenith = acos(
    sin(lat*PI/180) * sin(decl*PI/180) +
    cos(lat*PI/180) * cos(decl*PI/180) * cos(hourAngle*PI/180)
  ) * 180 / PI;
  return zenith;
}

// Step 3: Compare sensor reading to Haurwitz model at solar noon
// Calibration factor = ModelValue / SensorReading
// Example: Model = 950 W/m², Sensor reads 780 ADC
//          K = 950 / 780 = 1.218 W/m² per ADC count

// Seasonal recalibration recommended:
// India summer (May-June): aerosol optical depth lower → higher clear sky radiation
// India monsoon (July-Sept): heavy cloud/aerosol → calibration not possible
// Post-monsoon (Oct-Nov): ideal calibration weather

Solar Energy Applications in India

Rooftop Solar Performance Monitoring

India’s PM-SURYA GHAR scheme targets 10 million rooftop solar installations by 2027. A ₹500 DIY pyranometer helps homeowners monitor performance ratio (PR = actual yield / theoretical yield from irradiance). Low PR indicates shading, soiling, or panel degradation — actionable intelligence for maintenance scheduling.

Agricultural Evapotranspiration Calculation

The FAO Penman-Monteith ET₀ formula requires solar radiation as a key input. Accurate ET₀ enables precision irrigation — a critical need as India faces worsening groundwater depletion. Pyranometer data combined with temperature and humidity (from SHT31) provides the complete parameter set for daily irrigation scheduling.

// Simplified FAO Penman-Monteith ET0 calculation
// ET0 in mm/day = reference evapotranspiration
float calculateET0(float Rn_MJ, float temp, float humidity, float windSpeed) {
  // Rn: Net radiation in MJ/m²/day (approximately 0.75 × GHI × 0.0036 for India)
  float delta = 4098 * 0.6108 * exp(17.27*temp/(temp+237.3)) / pow(temp+237.3, 2);
  float gamma = 0.000665; // Psychrometric constant (kPa/°C, sea level)
  float es = 0.6108 * exp(17.27*temp/(temp+237.3)); // Saturation vapor pressure
  float ea = humidity/100 * es; // Actual vapor pressure
  float G = 0; // Soil heat flux (≈0 for daily calculations)
  
  float ET0 = (0.408*delta*(Rn_MJ - G) + gamma*(900/(temp+273))*windSpeed*(es-ea)) /
               (delta + gamma*(1 + 0.34*windSpeed));
  return ET0;
}

Recommended Product

5V Modbus RTU 4-Channel Relay Module
Connect pyranometer-based ET0 irrigation controller to this Modbus relay module for fully automated field irrigation based on calculated water requirements.
Category: Industrial Automation

Solar Radiation Data Logging for MNRE Compliance

India’s Ministry of New and Renewable Energy (MNRE) requires solar radiation monitoring at utility-scale solar plants (>500kW) under the Solar Energy Corporation of India (SECI) guidelines. While commercial Class C pyranometers are required for compliance, DIY monitoring provides real-time visibility between calibration periods and helps validate logger data integrity.

Recommended Product

8-Channel Solid State Relay Module for Arduino
Control solar tracker actuators, shade covers, or soiling detection sprinklers based on pyranometer irradiance data — automated solar plant maintenance control.
Category: Industrial Automation

Frequently Asked Questions

Q: What is a pyranometer and how is it different from a lux meter?

A: A lux meter measures visible light (380-780nm) weighted by human eye sensitivity. A pyranometer measures total solar radiation (280-3000nm for thermopile, 300-1100nm for silicon) in energy units (W/m²). For solar energy applications, pyranometers are essential — about 50% of solar energy is in infrared (above 780nm) which lux meters miss. However, lux meters are cheaper and can provide rough correlation (1 W/m² ≈ 120 lux for solar light).

Q: How much does a certified pyranometer cost in India?

A: Entry-level Class C (secondary standard): ₹8,000-20,000 (brands: RoHS, Apogee, Davis Instruments). Class B (first class): ₹25,000-80,000 (Kipp & Zonen CS300). Class A (secondary standard reference): ₹80,000-2,50,000 (Kipp & Zonen CM21, CM22). All require ISO 17025-accredited NABL calibration certificates for MNRE/SECI compliance — calibration costs ₹3,000-8,000 per year.

Q: Can I measure solar irradiance with a BH1750 light sensor?

A: BH1750 measures lux (visible light only, 400-700nm). It can provide rough solar irradiance estimates with a conversion factor, but accuracy is only ±15-20% due to spectral mismatch. It saturates above ~65,000 lux (corresponding to ~540 W/m²) — missing peak Indian solar irradiance (900-1050 W/m²). For proper pyranometry, use dedicated solar sensors. For relative monitoring and educational projects, BH1750 is acceptable.

Q: How do I account for panel soiling in pyranometer calculations?

A: Dust soiling reduces pyranometer and solar panel output by 3-25% in India (highest in Rajasthan, lowest in monsoon-washed coastal areas). Install pyranometer horizontally (measuring GHI) and calculate expected panel output = GHI × panel efficiency × derating factors. The ratio of actual vs expected power indicates soiling level. When ratio drops below 90%, clean panels — typically 2-4 times per year in most Indian locations.

Q: What is the daily solar radiation pattern in Indian cities?

A: Typical clear-sky pattern: radiation rises from 0 at sunrise (6:00-6:30 AM) to peak 900-1050 W/m² at solar noon (12:30-13:00 IST in summer), then decreases symmetrically to 0 at sunset (18:00-19:00 PM). Daily GHI integral: 5.5-7.5 kWh/m²/day in summer, 3.5-5.5 kWh/m²/day in monsoon. Mumbai winter may have 3 peak sun hours while Delhi summer has 8+ hours above 500 W/m².

Shop Weather Monitoring Sensors at Zbotic.in
Tags: Arduino pyranometer, GHI measurement, pyranometer, solar energy India, solar irradiance Arduino, solar radiation sensor, weather station solar
Share Post
  • Facebook
  • Linkedin
  • Whatsapp
FPC and ZIF Connector: Flat Fl...
blog fpc and zif connector flat flex cable interface guide 599829
blog camera lens types varifocal vs fixed for cctv coverage 599844
Camera Lens Types: Varifocal v...

Related posts

Svg%3E
Read more

Climate Education Kit: Build and Learn About Weather

April 1, 2026 0
Table of Contents Weather Education in Indian Schools Designing a STEM Weather Kit Sensor Experiments for Students Curriculum-Aligned Activities Arduino... Continue reading
Svg%3E
Read more

Citizen Science Weather: Contribute Data to IITM Pune

April 1, 2026 0
Table of Contents Citizen Science Weather in India Data Quality Standards for Contribution Setting Up a WMO-Compatible Station Calibration and... Continue reading
Svg%3E
Read more

Weather Station Network: Multiple Stations with Gateway

April 1, 2026 0
Table of Contents Why Build a Weather Station Network LoRa Communication for Sensor Nodes Gateway Design with Raspberry Pi Sensor... Continue reading
Svg%3E
Read more

Cyclone Tracker Display: Real-Time IMD Data on Screen

April 1, 2026 0
Table of Contents Cyclone Tracking in India IMD Cyclone Data Sources ESP32 and TFT Display Setup Fetching and Parsing Cyclone... Continue reading
Svg%3E
Read more

Monsoon Onset Predictor: Historical Data Analysis India

April 1, 2026 0
Table of Contents Understanding Monsoon Onset in India Key Indicators for Monsoon Prediction Sensor Package for Monsoon Monitoring Collecting Baseline... Continue reading

Add comment Cancel reply

Your email address will not be published. Required fields are marked

Facebook Twitter Instagram Pinterest Linkedin Youtube

Get the latest deals and more.

Download on Google Play Download on the App Store

Call us: 020 69134444 / 1800 209 0998

Monday - Saturday 09:30 AM - 06:00 PM
For Technical Supports Email: [email protected]
For Sales / Enquiries Email: [email protected]

  • My Account

    • Cart

    • Wishlist

    • Checkout

    • My Orders

    • Track Order

    • My Account

  • Information

    • FAQs

    • Blogs

    • Career

    • About Us

    • Contact Us

    • Payment Options

  • Policies

    • Privacy Policy

    • Terms & Conditions

    • GST Input Tax Credit

    • Shipping Return Policy

    • E-Waste Collection Points

    • Our Sitemap

© Zbotic.in is registered trademark of Moxie Supply Pvt Ltd – All Rights Reserved
Login
Use Phone Number
Use Email Address
Not a member yet? Register Now
Reset Password
Use Phone Number
Use Email Address
Register
Already a member? Login Now