Solar Irradiance Data

You might also like

Download as odt, pdf, or txt
Download as odt, pdf, or txt
You are on page 1of 3

Solar Irradiance data

Renewable Energy
EE414

Submitted by
Abdus Samad 2019027

Instructor: Dr. Hadeed Ahmed Sher

Faculty of Electrical Engineering


GIK Institute of Engineering Sciences and Technology
Topi, District Swabi, Khyber Pakhtunkhwa, Pakistan. www.giki.edu.pk

October 2022

Problem Statement
1|Page
Download Solar Irradiance data from NREL’s website. Compute the integral of the
data over all values of the wavelength. Plot both the instantaneous irradiance and
accumulated/integrated irradiance over the entire range of available
wavelengths.

Solar Irradiance
Solar irradiance is often integrated over a given time period in order to report
the radiant energy emitted into the surrounding environment during that time
period. This integrated solar irradiance is called solar irradiation, solar
exposure, solar insolation, or insolation.

Code
Wavelength_imp = readtable(‘astmg173.xls’,’Range’,’A3:A2004’);

%Wavelength = table2array(Wavelength_imp);

Etr_imp = readtable(‘astmg173.xls’,’Range’,’B3:A2004’);

%Etr = table2array(Etr_imp);

Irr = int(Wavelength_imp, Etr_imp);

Subplot(2,1,1);

Plot(Wavelength_imp, Etr_imp);

Subplot(2,1,2);

Plot(Wavelength_imp, Irr);

Graph

2|Page
Conclusion
This graph shows the instantaneous irradiance and accumulated/integrated
irradiance over the entire range of available wavelengths.

3|Page

You might also like