Footstep Power Generation Tile Data
The new era of renewable energy
@kaggle.ishanshrivastava28_footstep_power_generation_tile_data
The new era of renewable energy
@kaggle.ishanshrivastava28_footstep_power_generation_tile_data
Competition: DJ STRIKE 2023
Published: Research Paper (ISBN: 978- 93-5768-409-5)
Awarded: 3rd Place
Proceedings: AVISHKAR 2023
Other participations: Schneider Electric GO GREEN Competition
Developed a piezoelectric tile generating an average of 1mW per step. Data extracted from sensors(Voltage sensor, Current sensor) was sent to Firebase with respect to Exploratory Data Analysis (EDA) for pattern identification. The power stored in the battery could charge a phone for 10 minutes.
The dataset was manually created over a period of 3 weeks with prototype and product testing. The dataset was made in college with the help of different students from various branches.
It contains 3 numerical features voltage (V), current (mA), and weight (kgs). 1 categorical feature that is the step location of the person on the square tile - center, edge, or corner.
It also contains null values so be sure to find and drop them with your data analysis skills. Null values occurred due to loose connection of sensors or internal tile connection.
CREATE TABLE power_tile_data (
"voltage_v" DOUBLE -- Voltage(v),
"current_ua" DOUBLE -- Current(uA),
"weight_kgs" BIGINT -- Weight(kgs),
"step_location" VARCHAR,
"power_mw" DOUBLE -- Power(mW)
);
Anyone who has the link will be able to view this.