2018/7/28 – Wayne Nixalo
Source: https://www.nrel.gov/grid/solar-resource/spectra.html: 2000 ASTM Standard Extraterrestrial Spectrum Reference E-490-00
In [11]:
%matplotlib inline
In [23]:
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
In [7]:
df = pd.read_csv('spectral_irradiance.csv')
In [37]:
plt.style.use('ggplot'); plt.figure(figsize=(12,12))
plt.plot(df['Wavelength nm'].values,df['Wehrli W/m2/nm'].values, lw=0.9);
In [43]:
10e-2 / 1e-6
Out[43]:
In [41]:
total_energy = df[df.columns[1]].sum(axis=1)
In [42]:
total_energy.sum(axis=0)
Out[42]:
In [ ]: