top of page
Writer's pictureLMS Solution

Horse Herd Optimization MPPT for PV System

Horse Herd Optimization MPPT for PV System

Introduction

We will delve into Horse Herd Optimization (HHO) MPPT for solar PV systems, focusing particularly on how it handles partial shading effects. We will base our discussion and implementation on a paper published in the Knowledge-Based Systems journal, titled "Horse Herd Optimization Algorithm." The link to this paper is provided in the description of our video.

Implementation Overview

The HHO algorithm is implemented following a specific flowchart. Here’s a step-by-step breakdown:

  1. Random Generation of Positions: We start by randomly generating the positions of the horses.

  2. Fitness Function Calculation: Calculate the fitness function for each horse.

  3. Age Calculation: Determine the ages of the horses, categorized as Alpha, Beta, Gamma, and Delta.

  4. Velocity Function Application: Apply the velocity function to update the positions based on the horses' ages.

  5. Stopping Criteria: Repeat the process until the stopping criteria are met.

This algorithm is used to extract the maximum power from the PV panel.



MATLAB Code Explanation

The MATLAB code provided in the paper is essential for calculating the age of the horses and updating their velocities. Here’s a brief overview of the process:

  • The age categorization is determined based on specific conditions:

  • If CCO≤0.1×Number of Horses\text{CCO} \leq 0.1 \times \text{Number of Horses}CCO≤0.1×Number of Horses, it is classified as Alpha.

  • If 0.1×Number of Horses<CCO≤0.3×Number of Horses0.1 \times \text{Number of Horses} < \text{CCO} \leq 0.3 \times \text{Number of Horses}0.1×Number of Horses<CCO≤0.3×Number of Horses, it is classified as Beta.

  • If 0.3×Number of Horses<CCO≤0.6×Number of Horses0.3 \times \text{Number of Horses} < \text{CCO} \leq 0.6 \times \text{Number of Horses}0.3×Number of Horses<CCO≤0.6×Number of Horses, it is classified as Gamma.

  • Otherwise, it is classified as Delta.

Using these age classifications, the velocity of each horse is updated, which in turn updates the duty cycle for the PV system.

Simulink Model for HHO MPPT

The Simulink model tests the HHO algorithm for MPPT in a PV system. It receives two inputs: PV voltage (VPVV_{PV}VPV​) and PV current (IPVI_{PV}IPV​). The model calculates the PV power and applies the HHO algorithm to find the optimal duty cycle. This duty cycle controls a boost converter to maximize power extraction.

Key Components:

  1. PV Panel: Consisting of 60 cells, with 20 cells connected in series, and a total rating of 250 watts.

  2. Boost Converter: Controlled by the duty cycle from the HHO algorithm to maximize power extraction.

  3. Load: The load connected to the PV system to test power output.

Simulation Results

Uniform Irradiation Condition

Initially, we tested the model under uniform irradiation conditions, with all panels receiving 1000 W/m². The maximum power output was around 249.8 watts. The HHO MPPT algorithm successfully extracted the maximum power from the PV panel under these conditions.

Partial Shading Condition

Next, we tested the model under partial shading conditions. The second panel's irradiation was set to 300 W/m², while the others remained at 1000 W/m². The theoretical maximum power was 160.9 watts, and the HHO MPPT algorithm extracted this maximum power efficiently.

We then tested another condition with irradiation values set to 1000 W/m², 1000 W/m², and 800 W/m². The global peak power for this condition was 215.2 watts, and the HHO MPPT algorithm once again successfully extracted the maximum power.

Conclusion

The Horse Herd Optimization MPPT algorithm proves effective in extracting maximum power from a PV panel, both under uniform and partial shading conditions. This robust algorithm ensures optimal performance, enhancing the efficiency of solar PV systems.

1 view0 comments

Comments


bottom of page