Measuring Solar Radiation with Arduino

Want to measure solar radiation but cant afford a Pyranometers? Well, make your own device with your Arduino board using this guide.
ORIGINAL POST
By Jeffrey
components
Hardware Components
Arduino UNO
X 1
Arduino Ethernet Shield 2
X 1
Solar cell
X 1
digital multimeter
X 1
Software Apps and online services
arduino code editor
details

schema_001_wnfXyYyEOh.png

ABOUT THIS PROJECT

About

There are a lot of sensors available for measuring all sorts of weather conditions like temperature, humidity, light intensity etc., but there are no easily available sensors for measuring amounts of solar radiation. This is because solar radiation can be difficult to measure, even though we feel it every day on our skin.

Solar irradiance is the power per unit area received from the Sun in the form of electromagnetic radiation in the wavelength range of the measuring instrument. The wide range of the Sun’s wavelength is another factor that makes it difficult to measure.

The instrument for measuring solar radiation is called a Pyranometer. Pyranometers can cost anywhere from $200 -$800, even from Chinese suppliers, making them inaccessible for the average hobbyist. You can read more about them here: https://en.wikipedia.org/wiki/Pyranometer

I was recently looking into buying a solar panel for my home and wanted to know if it would be worthwhile and so wanted to estimate the amount of solar energy available where I live.

I wasn’t interested in buying a Pyranometer so I thought I could save some money and have some fun at the same time by making my own.

This is how I came to make my own cool gadget that is a lot cheaper and it can help estimate the amount of Solar Radiation. It uses some easily accessible components and the Arduino for the calculations. I got most of my component from Chinavasion but there are plenty of other places you can source the tools and equipment as all are commonly available.

Setup

1. Your solar cell should have 2 wires, one ground (black) and the other live (red). If you have different color codes or you cannot differentiate them, check with your multimeter. Connect the probes of your multimeter to both wires, if the voltage displayed is positive , then the wire to which your black multimeter probe is connected is the ground, while the red one is live, if the voltage is negative, It is the other way around.

2. Connect the ground wire of your solar cell to the Arduino ground and the VCC wire to any analog pin through the resistor we have chosen. For this project we will use analog pin A0. The resistor is very important for our calculations as we expect it to be many times greater than the internal resistance of the cell.

That is all we need for now. Moving over to the coding part. Solar cells generate energy by converting solar energy from the Sun into electrical energy, the higher the energy (radiation and light energy) from the Sun. The higher the voltage produced will be. We will use this directly proportional relationship to estimate the solar Radiation.

The following parameters will be needed:

  • Arduino Analog Reference voltage = 5V (Maybe different on your Board)
  • Maximum Voltage output of your solar cell ( This will vary depending on the solar panel you are using, you have to check to confirm this as it is very essential to our calculation, for the average calculator solar cell it is around 5V).
  • Dimension of solar cell. You can measure this using a ruler (length and with or any parameters you need to find the area).

So we will estimate our solar radiation by calculating power from the solar cell and dividing by its area.

  • Power = pow (analogRead(A0), 2) / Resistance
  • Area = length * width ( assuming we have a rectangle )
  • solar radiation = power / area

schema_001_wnfXyYyEOh.png

ABOUT THIS PROJECT

About

There are a lot of sensors available for measuring all sorts of weather conditions like temperature, humidity, light intensity etc., but there are no easily available sensors for measuring amounts of solar radiation. This is because solar radiation can be difficult to measure, even though we feel it every day on our skin.

Solar irradiance is the power per unit area received from the Sun in the form of electromagnetic radiation in the wavelength range of the measuring instrument. The wide range of the Sun’s wavelength is another factor that makes it difficult to measure.

The instrument for measuring solar radiation is called a Pyranometer. Pyranometers can cost anywhere from $200 -$800, even from Chinese suppliers, making them inaccessible for the average hobbyist. You can read more about them here: https://en.wikipedia.org/wiki/Pyranometer

I was recently looking into buying a solar panel for my home and wanted to know if it would be worthwhile and so wanted to estimate the amount of solar energy available where I live.

I wasn’t interested in buying a Pyranometer so I thought I could save some money and have some fun at the same time by making my own.

This is how I came to make my own cool gadget that is a lot cheaper and it can help estimate the amount of Solar Radiation. It uses some easily accessible components and the Arduino for the calculations. I got most of my component from Chinavasion but there are plenty of other places you can source the tools and equipment as all are commonly available.

Setup

1. Your solar cell should have 2 wires, one ground (black) and the other live (red). If you have different color codes or you cannot differentiate them, check with your multimeter. Connect the probes of your multimeter to both wires, if the voltage displayed is positive , then the wire to which your black multimeter probe is connected is the ground, while the red one is live, if the voltage is negative, It is the other way around.

2. Connect the ground wire of your solar cell to the Arduino ground and the VCC wire to any analog pin through the resistor we have chosen. For this project we will use analog pin A0. The resistor is very important for our calculations as we expect it to be many times greater than the internal resistance of the cell.

That is all we need for now. Moving over to the coding part. Solar cells generate energy by converting solar energy from the Sun into electrical energy, the higher the energy (radiation and light energy) from the Sun. The higher the voltage produced will be. We will use this directly proportional relationship to estimate the solar Radiation.

The following parameters will be needed:

  • Arduino Analog Reference voltage = 5V (Maybe different on your Board)
  • Maximum Voltage output of your solar cell ( This will vary depending on the solar panel you are using, you have to check to confirm this as it is very essential to our calculation, for the average calculator solar cell it is around 5V).
  • Dimension of solar cell. You can measure this using a ruler (length and with or any parameters you need to find the area).

So we will estimate our solar radiation by calculating power from the solar cell and dividing by its area.

  • Power = pow (analogRead(A0), 2) / Resistance
  • Area = length * width ( assuming we have a rectangle )
  • solar radiation = power / area
documents
Schematics
hardware arrangement

COMMENTS

Please Login to comment
  Subscribe  
Notify of
POSTED BY
Reusable S/W