

The RIKA RS-TBQ Pyranometer is a precision instrument designed to measure solar radiation received on a surface. It is widely used in meteorology, solar energy monitoring, and environmental research. By quantifying the intensity of sunlight in watts per square meter (W/m²), the RS-TBQ pyranometer provides critical data for applications such as solar panel efficiency analysis, weather forecasting, and climate studies.








The following table outlines the key technical details of the RIKA RS-TBQ Pyranometer:
| Parameter | Specification |
|---|---|
| Manufacturer | RIKA |
| Part ID | RS-TBQ |
| Measurement Range | 0 to 2000 W/m² |
| Spectral Range | 300 nm to 2800 nm |
| Sensitivity | 7 to 14 µV/W/m² |
| Response Time | ≤ 5 seconds |
| Operating Temperature | -40°C to +80°C |
| Output Signal | Analog voltage (mV) |
| Power Supply | Not required (passive sensor) |
| Accuracy | ±2% (daily total) |
| Ingress Protection | IP65 |
The RS-TBQ pyranometer typically has a simple two-wire connection for its analog output. The pin configuration is as follows:
| Pin | Description | Notes |
|---|---|---|
| Red | Positive Output (Signal) | Connect to the analog input of a microcontroller or data logger. |
| Black | Ground | Connect to the ground of the circuit. |
Mounting the Pyranometer:
Wiring:
Calibration:
Data Conversion:
The RS-TBQ pyranometer can be easily interfaced with an Arduino UNO to measure solar radiation. Below is an example code snippet:
// Example code for interfacing the RS-TBQ Pyranometer with Arduino UNO
// This code reads the analog voltage from the pyranometer and calculates
// the solar radiation in W/m² based on the sensor's sensitivity.
const int pyranometerPin = A0; // Analog pin connected to the pyranometer
const float sensitivity = 10.0; // Sensitivity in µV/W/m² (example value, check datasheet)
void setup() {
Serial.begin(9600); // Initialize serial communication
pinMode(pyranometerPin, INPUT); // Set the analog pin as input
}
void loop() {
int rawValue = analogRead(pyranometerPin); // Read the analog value (0-1023)
float voltage = (rawValue / 1023.0) * 5.0; // Convert to voltage (assuming 5V reference)
float solarRadiation = (voltage * 1000) / sensitivity;
// Convert voltage (mV) to solar radiation (W/m²)
// Print the results to the Serial Monitor
Serial.print("Voltage (mV): ");
Serial.print(voltage * 1000); // Convert to mV for display
Serial.print(" | Solar Radiation (W/m²): ");
Serial.println(solarRadiation);
delay(1000); // Wait for 1 second before the next reading
}
Note: Replace the sensitivity value in the code with the actual sensitivity value provided in the datasheet of your RS-TBQ pyranometer.
No Output Signal:
Inaccurate Readings:
Fluctuating Readings:
Output Voltage Exceeds Expected Range:
Q1: Can the RS-TBQ pyranometer be used indoors?
A1: The pyranometer is designed for outdoor use to measure solar radiation. However, it can be used indoors to measure artificial light intensity, though the readings may not be as accurate.
Q2: How often should the pyranometer be recalibrated?
A2: Recalibration is recommended every 1-2 years, depending on usage and environmental conditions.
Q3: Can the pyranometer be used in extreme weather conditions?
A3: Yes, the RS-TBQ operates in temperatures from -40°C to +80°C and is rated IP65 for water and dust resistance.
Q4: What is the lifespan of the RS-TBQ pyranometer?
A4: With proper maintenance, the pyranometer can last for many years. Regular cleaning and recalibration will ensure long-term accuracy.