Arduino based MPPT Controller

Data’s Guide of “Development of a low-cost PV system using an improved INC algorithm and a PV panel Proteus model” research paper

Mar 19, 2020

63127 views

19 respects

Components and supplies

1

Arduino UNO

1

TDC-M20-36PV panel

1

TC4420 Driver

1

B25 0 to 25V Voltage Sensor Module

1

Resistor, 70 ohm

1

INA169 Analog DC Current Sensor

1

DC-DC Switching Boost, Inverting Regulator

Apps and platforms

1

Proteus 8.6

1

Arduino IDE

Project description

Code

INC_Code.ino

c_cpp

Below the code of incremental conductance algorithm, to compile it, please go to "Sketch" menu and click on "Export compiled Binary". Then the ".hex" will be generated in the Sketch Folder.

PandO_Code.ino

c_cpp

Below the code of perturb and observe algorithm, to compile it, please go to "Sketch" menu and click on "Export compiled Binary". Then the ".hex" will be generated in the Sketch Folder.

INC_Code.ino

c_cpp

Below the code of incremental conductance algorithm, to compile it, please go to "Sketch" menu and click on "Export compiled Binary". Then the ".hex" will be generated in the Sketch Folder.

PandO_Code.ino

c_cpp

Below the code of perturb and observe algorithm, to compile it, please go to "Sketch" menu and click on "Export compiled Binary". Then the ".hex" will be generated in the Sketch Folder.

Downloadable files

Costless and effective Embedded system based control for PV system

As shown in the incremntal conductance (INC) structure (figure below), it contains several division computations which require a stronger microcontroller including large memory, high clock frequency, and floating-point computation, and this reduces the opportunity to use a low-cost development board as Arduino UNO which is based on ATMEGA328P because it does not contain a hardware divider, but it provides a one-chip 2 cycle multiplier as shown in the figure below (datasheet of ATMEGA328P). Therefore, to design a costless and effective MPPT embedded software, a modified INC algorithm is presented through the elimination of all division computations occurring in the conventional NC method. As a result, the complication of the algorithm operation can be reduced and consequently, minimize the real-time processing with faster response. This, makes the utilization of low-cost microcontrollers possible.

Costless and effective Embedded system based control for PV system

Image

Modified Incremental conductance algorithm

Modified Incremental conductance algorithm

Image

The experimental setup of the PV system using Arduino

The experimental setup of the PV system using Arduino

Proteus PV panel model simulation

• Please, open \Proteus\Proteus_PV_Panel_Model. • Please, go to graph menu and click on simulate graph as follows:

Proteus PV panel model simulation

Image

Experimental results

Figure below (a) and (b) presents the experimental results of both methods under fast varying of insolation (from 1000 W/m2 to 500 W/m2). A zoom in the results is made. As shown in (a), the conventional method generates more oscillations around the peak of power compared to the modified method as presented in (b). On the other hand, the modified method presents a faster tracking speed with response time equals to 0.1 s which is very lower than the response time obtained by the conventional method (0.36 s).

Experimental results

Image

Add Arduino into Proteus:

• Unzip Arduino Library for Proteus.rar file, you will find two files in it. • These two files are named as ArduinoTEP.LIB and ArduinoTEP.IDX. • Copy these two files and place them in the libraries folder of your Proteus software. • Now, restart your Proteus software and in components section search for ArduinoTEP as shown in below figure:

Add Arduino into Proteus:

Image

Experimental results

Figure below (a) and (b) presents the experimental results of both methods under fast varying of insolation (from 1000 W/m2 to 500 W/m2). A zoom in the results is made. As shown in (a), the conventional method generates more oscillations around the peak of power compared to the modified method as presented in (b). On the other hand, the modified method presents a faster tracking speed with response time equals to 0.1 s which is very lower than the response time obtained by the conventional method (0.36 s).

Experimental results

Image

MPPT-in-Proteus

Download data from gethub

https://github.com/motahhir/MPPT-in-Proteus

Simulate the MPPT controller in Proteus under variable irradiance

• Please, open Proteus\Proteus_MPPT_Irradiance Variation • Load the .hex file in the Arduino Uno. • Click on play to simulate the PV system or go to graph menu and click on simulate graph to generate Ppv(t) curve.

Simulate the MPPT controller in Proteus under variable irradiance

Simulate the MPPT controller in Proteus under stable irradiance

• Please, open Proteus\Proteus_MPPT_stable irradiance • Load the .hex file in the Arduino Uno. • Click on play to simulate the PV system or go to graph menu and click on simulate graph to generate Ppv(t) curve.

Simulate the MPPT controller in Proteus under stable irradiance

Conventional Incremental conductance algorithm

Conventional Incremental conductance algorithm

Image

Proteus PV panel model simulation

• Please, open \Proteus\Proteus_PV_Panel_Model. • Please, go to graph menu and click on simulate graph as follows:

Proteus PV panel model simulation

Image

Add Arduino into Proteus:

• Unzip Arduino Library for Proteus.rar file, you will find two files in it. • These two files are named as ArduinoTEP.LIB and ArduinoTEP.IDX. • Copy these two files and place them in the libraries folder of your Proteus software. • Now, restart your Proteus software and in components section search for ArduinoTEP as shown in below figure:

Add Arduino into Proteus:

Image

Simulate the MPPT controller in Proteus under variable irradiance

• Please, open Proteus\Proteus_MPPT_Irradiance Variation • Load the .hex file in the Arduino Uno. • Click on play to simulate the PV system or go to graph menu and click on simulate graph to generate Ppv(t) curve.

Simulate the MPPT controller in Proteus under variable irradiance

MPPT-in-Proteus

Download data from gethub

https://github.com/motahhir/MPPT-in-Proteus

Conventional Incremental conductance algorithm

Conventional Incremental conductance algorithm

Image

Modified Incremental conductance algorithm

Modified Incremental conductance algorithm

Image

Simulate the MPPT controller in Proteus under stable irradiance

• Please, open Proteus\Proteus_MPPT_stable irradiance • Load the .hex file in the Arduino Uno. • Click on play to simulate the PV system or go to graph menu and click on simulate graph to generate Ppv(t) curve.

Simulate the MPPT controller in Proteus under stable irradiance

The experimental setup of the PV system using Arduino

The experimental setup of the PV system using Arduino

Comments

Only logged in users can leave comments

Image
Image

s2024ard

a year ago

i tried to write this PSO code, that uses the duty cycle of a PWM signal to control a DC-DC converter and adjust the voltage output to achieve the maximum power point.the results should show in the LCD: #include <LiquidCrystal.h> LiquidCrystal lcd(12, 11, 5, 4, 3, 2); int opto_pin = 6; float sensorValue1 = 0; float sensorValue2 = 0; float voltageValue = 0; float currentValue = 0; float Power_now = 0; float delta = 3; float pwm = 128; #include <stdio.h> #include <stdlib.h> #include <math.h> #include <time.h> #define NUM_PARTICLES 5 #define MAX_ITERATIONS 50 #define INERTIA_WEIGHT 0.7 #define PERSONAL_WEIGHT 1.5 #define SOCIAL_WEIGHT 1.5 #define MIN_POSITION 0 // Set minimum position to ensure positive values #define MAX_POSITION 240 #define TARGET_ERROR 0.000001 typedef struct { double position; double velocity; double personal_best_position; double personal_best_value; } Particle; Particle particles[NUM_PARTICLES]; // Declare particles array here void setup() { pinMode(opto_pin, OUTPUT); lcd.begin(16, 2); Serial.begin(9600); } double random_double(double min, double max) { return ((double)rand() / RAND_MAX) * (max - min) + min; } void initialize_particle(Particle *particle) { particle->position = random_double(MIN_POSITION, MAX_POSITION); particle->velocity = random_double(0, 1); // Ensure positive velocity particle->personal_best_position = particle->position; //particle->personal_best_value = Power_now; // Corrected line } void loop() { // Seed the random number generator srand(time(NULL)); // Initialize particles for (int i = 0; i < NUM_PARTICLES; i++) { initialize_particle(&particles[i]); } analogWrite(6, pwm); if (pwm < 20) pwm = 20; if (pwm > 250) pwm = 250; pwm = pwm + 10; delay(20); // Placeholder sensor readings (replace with actual sensor readings) sensorValue1 = analogRead(A0); sensorValue2 = analogRead(A1); // Placeholder calculations for voltage and current (replace with actual calculations) voltageValue = (sensorValue1 * 5.0 / 1023.0) * 5;// Assuming a 5V reference voltage currentValue = (sensorValue2 * 5.0 / 1023.0);// Assuming a 5V reference voltage Power_now = voltageValue * currentValue; // Placeholder calculation for power (replace with actual power calculation) Power_now = voltageValue * currentValue; // Ensure positive values for Power_now, voltageValue, and currentValue Power_now = max(0, Power_now); voltageValue = max(0, voltageValue); currentValue = max(0, currentValue); // Display values on LCD lcd.setCursor(0, 0); lcd.print("Ppv="); lcd.print(Power_now); lcd.print("W"); lcd.print(pwm); lcd.setCursor(0, 1); lcd.print("V="); lcd.print(voltageValue); lcd.print("V I="); lcd.print(currentValue); lcd.print("A"); }

Image
Image

Anonymous user

2 years ago

Can you Please Tell Me the Technical Specification of this Project

Image
Image

motahhir

2 years ago

Please, refer to this paper: https://www.sciencedirect.com/science/article/pii/S0959652618325952

Image
Image

Anonymous user

2 years ago

Thanks much. Your system is magnificent. It works well for the Boost converter. I am trying to implement one with a Buck (Step-down) DC-DC converter it is not going. Please what could be the problem. Thanks for the Kind reply

Image
Image

motahhir

2 years ago

Many thanks for your comment, to you it with buck converter, you have redesign the whole system.

Image
Image

Anonymous user

2 years ago

how can we replace it from sepic converter

Image
Image

Anonymous user

2 years ago

Thankyou. It is really helpful. Can you please provide the proteus model of solar mppt for multiple panels in series (say 3) under partial shading condition using PSO technique with arduino. I really need it.

Image
Image

motahhir

2 years ago

https://github.com/motahhir/MPPT-in-Proteus

Image
Image

Anonymous user

2 years ago

Very useful, I liked it. I'm trying to recreate your work, so would like to know where did you find the INA169 Sensor and the model of PWM. Thank you.

Image
Image

Anonymous user

2 years ago

Can I please get a Matlab simulation of this project

Image
Image

motahhir

2 years ago

https://www.mathworks.com/matlabcentral/fileexchange/74365-mppt-algorithm

Image
Image

Anonymous user

3 years ago

how can we replace it from sepic converter

Image
Image

Anonymous user

3 years ago

Thankyou. It is really helpful. Can you please provide the proteus model of solar mppt for multiple panels in series (say 3) under partial shading condition using PSO technique with arduino. I really need it.

Image
Image

motahhir

2 years ago

https://github.com/motahhir/MPPT-in-Proteus

Image
Image

Anonymous user

3 years ago

Great work & thanks for sharing it! One question: Do you think this code/algorithm could be implemented with a Buck-Boost topology? Kind regards!

Image
Image

motahhir

2 years ago

I think you have revise the code

Image
Image

Anonymous user

3 years ago

Can you Please Tell Me the Technical Specification of this Project

Image
Image

motahhir

2 years ago

Please, refer to this paper: https://www.sciencedirect.com/science/article/pii/S0959652618325952

Image
Image

Anonymous user

4 years ago

Can I please get a Matlab simulation of this project

Image
Image

motahhir

2 years ago

https://www.mathworks.com/matlabcentral/fileexchange/74365-mppt-algorithm

Image
Image

Anonymous user

4 years ago

Thanks much. Your system is magnificent. It works well for the Boost converter. I am trying to implement one with a Buck (Step-down) DC-DC converter it is not going. Please what could be the problem. Thanks for the Kind reply

Image
Image

motahhir

2 years ago

Many thanks for your comment, to you it with buck converter, you have redesign the whole system.

Image
Image

Anonymous user

4 years ago

Very useful, I liked it. I'm trying to recreate your work, so would like to know where did you find the INA169 Sensor and the model of PWM. Thank you.