Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 1.45 KB

README.md

File metadata and controls

42 lines (30 loc) · 1.45 KB

Synthetic Solar

Synthetic Solar is a set of Python tools for generating synthetic sequences of hourly solar irradiances.

Example

import synthsolar
import matplotlib.pyplot as plt

Ktm = [0.49, 0.48, 0.50, 0.51, 0.51, 0.54, 0.54, 0.57, 0.56, 0.54, 0.51, 0.51]
lat = -34.8
G0 = synth_solar.Aguiar_hourly_G0(Ktm, lat)

plt.plot(G0)
plt.show()

screenshot of sample output

References

Credits

License

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.