Photovoltaic Data
Household generation data every 1 minute (10kw/h).
@kaggle.pablofuku_photovoltaic
Household generation data every 1 minute (10kw/h).
@kaggle.pablofuku_photovoltaic
This file is intended to study power generation from one house, not from a full country or region.
The file includes power generation data every minute with the following information:
The idea would be to predict the generative expected power and detect problems with the photovoltaic sets or with the inverter.
Enjoy the dataset! ππ
CREATE TABLE house_generation_10kw (
"tiempo" VARCHAR,
"style" VARCHAR,
"v_1_mppt_v" DOUBLE -- V 1 MPPT(V),
"v_2_mppt_v" DOUBLE -- V 2 MPPT(V),
"v_3_mppt_v" DOUBLE -- V 3 MPPT(V),
"i_1_mppt_a" DOUBLE -- I 1 MPPT(A),
"i_2_mppt_a" DOUBLE -- I 2 MPPT(A),
"i_3_mppt_a" DOUBLE -- I 3 MPPT(A),
"ua_v" DOUBLE -- Ua(V),
"i_ca_1_a" DOUBLE -- I CA 1(A),
"fac_1_hz" DOUBLE -- FAC 1(Hz),
"power" BIGINT,
"inverter_temp" DOUBLE,
"daily_generation" DOUBLE,
"uptime" BIGINT,
"rssi" BIGINT
);
Anyone who has the link will be able to view this.