Skip to main content

Datasets

Standard Dataset

Hybrid Renewable Energy System (HRES) Dataset for Smart Grid Stability under Variable Renewable Fluctuations Using Machine Learning

Citation Author(s):
Mukesh Kumar (Department of Electrical Engineering Jaipur Engineering College, Kukas, Jaipur (India))
Bharat Bhushan Jain (Department of Electrical Engineering Jaipur Engineering College, Kukas, Jaipur (India))
Submitted by:
MUKESH KUMAR
Date Created:
Last updated:
DOI:
10.21227/4nrp-kn51
Data Format:
AI-Powered Dataset Intelligence is available for this dataset exclusively to institutional subscribers.

Abstract

The current dataset paper presents a comprehensive collection of simulation results generated using HOMER software to support advanced research in grid-integrated hybrid renewable systems. The present dataset captures the operational dynamics of a smart grid framework that integrates solar photovoltaic (PV), wind turbines, and the main grid through a bidirectional converter. The base configuration represents an HRES system supplying a daily electrical demand of 3950 kWh with a peak load of 479.38 kW, as illustrated in the schematic diagram. To study the effect of renewable intermittency on grid stability and optimization performance, two distinct random variability scenarios were modeled: a low variability case (5%) and a high variability case (20%) for both day-to-day and timestep fluctuations. Each variability condition was simulated under multiple operational settings, resulting in a total of 2000 simulation cases per scenario, thereby providing 4000 complete data instances. Each case records key parameters such as power generation, grid interaction, energy conversion efficiency, renewable penetration, and system cost metrics. The present dataset aims to serve as a benchmark resource for researchers focusing on machine learning-based stability analysis, forecasting models, and optimization algorithm validation in renewable energy networks. By incorporating nature-inspired optimization frameworks such as Particle Swarm Optimization (PSO), Grey Wolf Optimizer (GWO), and Adaptive Genetic Algorithms the dataset can be utilized to test dynamic adaptation mechanisms under fluctuating renewable inputs.

Current research work contributes to the ongoing efforts in smart grid stability enhancement, renewable energy integration, and data-driven optimization. It enables users to explore how random variability impacts grid resilience, system losses, and reliability indices, providing a foundation for developing adaptive control strategies and prediction models. The dataset supports both academic and industrial applications related to energy system optimization, hybrid microgrid planning, and renewable resource management, offering a real-world simulation environment that bridges the gap between theoretical modeling and practical implementation.

Instructions:

Two CSV files were provided in this dataset:

Mukesh-Grid-25-HRES-2000 Cases Data (Min-RV).csv – represents simulation results for the 5% random variability case (low variability).

Mukesh-Grid-25-HRES-2000 Cases Data (Max-RV).csv – represents simulation results for the 20% random variability case (high variability).

Each file contained 2000 simulated cases generated using HOMER Pro software. Every row represented one simulation case, and each column described a system parameter or performance metric.

To read the dataset, users simply opened the CSV file using:

Microsoft Excel or Google Sheets for a quick view, or

Python (Pandas) / MATLAB / R for advanced analysis.

In Python, the files were read as follows:

import pandas as pd

min_rv = pd.read_csv("Mukesh-Grid-25-HRES-2000 Cases Data (Min-RV).csv")
max_rv = pd.read_csv("Mukesh-Grid-25-HRES-2000 Cases Data (Max-RV).csv")

print(min_rv.head())
print(max_rv.head())
 

Both datasets shared the same structure, including columns for:

Power Generation (kW) from PV, wind, and grid

Load Demand (kWh/day)

Energy Conversion Efficiency (%)

Renewable Penetration (%)

Grid Exchange (Import/Export)

Total Cost (INR/kWh)

System Losses and Reliability Indicators

Users analyzed, visualized, or modeled the data to study smart grid stability, renewable variability effects, and optimization algorithm performance.