Wind Power Forecasting
Two-and-half years data for a windmill
@kaggle.theforcecoder_wind_power_forecasting
Two-and-half years data for a windmill
@kaggle.theforcecoder_wind_power_forecasting
Here's data of a certain windmill. The aim was to predict the wind power that could be generated from the windmill for the next 15 days. A long term wind forecasting technique is thus required.
It contains various weather, turbine and rotor features. Data has been recorded from January 2018 till March 2020. Readings have been recorded at a 10-minute interval.
https://www.hindawi.com/journals/mpe/2010/684742/
https://www.sciencedirect.com/science/article/abs/pii/S0925231201007020
Renewable energy remains one of the most important topics for a sustainable future. Wind, being a perennial source of power, could be utilized to satisfy our power requirements. With the rise of wind farms, wind power forecasting would prove to be quite useful.
CREATE TABLE turbine_data (
"unnamed_0" VARCHAR -- Unnamed: 0,
"activepower" DOUBLE,
"ambienttemperatue" DOUBLE,
"bearingshafttemperature" DOUBLE,
"blade1pitchangle" DOUBLE,
"blade2pitchangle" DOUBLE,
"blade3pitchangle" DOUBLE,
"controlboxtemperature" DOUBLE,
"gearboxbearingtemperature" DOUBLE,
"gearboxoiltemperature" DOUBLE,
"generatorrpm" DOUBLE,
"generatorwinding1temperature" DOUBLE,
"generatorwinding2temperature" DOUBLE,
"hubtemperature" DOUBLE,
"mainboxtemperature" DOUBLE,
"nacelleposition" DOUBLE,
"reactivepower" DOUBLE,
"rotorrpm" DOUBLE,
"turbinestatus" DOUBLE,
"wtg" VARCHAR,
"winddirection" DOUBLE,
"windspeed" DOUBLE
);Anyone who has the link will be able to view this.