SlideShare une entreprise Scribd logo
1  sur  7
Télécharger pour lire hors ligne
International Journal of Engineering Research and Development
e-ISSN : 2278-067X, p-ISSN : 2278-800X, www.ijerd.com
Volume 2, Issue 7 (August 2012), PP. 73-79


      A Comparison of Two MPPT Techniques for PV System in
                        Matlab Simulink
                              Ms. Sangita S. Kondawar1, U. B. Vaidya2
                                      1
                                        Student of M.Tech(EMS), RCERT, Chandrapur.
                                  2
                                   Professor, Electrical Department, RCERT, Chandrapur.



Abstract––In the context of renewable energy, this study treats the case of the conversion of solar energy, which is one
part of non pollutant energy, to electrical one. In this paper, two different methods are used to maximize the generated
power. Thus, a comparison between the ‘perturb and observe’ control method and the ‘incremental conductance’ control
method are given, analyzed and discussed.

Keywords––Renewable energy, solar panel, photovoltaic cell, modeling and control.

                                             I.        INTRODUCTION
           In general, the Earth has two global movements that affect the reception of the solar energy to its surface: the
rotation that it does once on itself per day and the yearly revolution that it does around the sun. The combination of these
movements implies daily changes in the receipt of the solar light to particular places. The reason for which the energizing
flux received to soil hardly passes 1000 W/m2 is that the atmosphere modifies in an important way the direct radiance of the
sun. The phenomenon named "photovoltaic effect" consists mainly in transforming the solar light in electric energy by
means of the semiconductor devices named photovoltaic cells. The solar panel, or photovoltaic generator, is itself constituted
of an association of series and parallel of the necessary number of modules to assure the requisite energy. Maximum Power
Point Trackers (MPPTs) play an important role in photovoltaic (PV) power systems because they maximize the power output
from a PV system for a given set of conditions, and therefore maximize the array efficiency. Thus, an MPPT can minimize
the overall system cost. MPPTs find and maintain operation at the maximum power point, using an MPPT algorithm. Many
such algorithms have been proposed. However, one particular algorithm, the perturb-and-observe (P&O) method, continues
to be by far the most widely used method in commercial PV MPPTs. Part of the reason for this is that the published MPPT
methods do not include comparisons between multiple existing algorithms. [4][8][10]

II.       IMPLEMENTATION IN SIMULINK (PROGRAMMING & ALGORITHMS OF TWO
                                TECHNIQUES.)
Implementation of Perturb & Observe Method using MatLab Simulink. [4][5][6][7][9]
           Applying a variation on the voltage (or on the current) towards the biggest or the smallest value, its influence
appears on the power value. If the power increases, one continues varying the voltage (or the current) in the same direction,
if not, one continues in inverse direction as shown in figure 1.




                                                             73
A Comparison of Two MPPT Techniques for PV System in Matlab Simulink




                                       Fig. 1 Flow diagram of P&O MPPT method

Figure below shows the block diagram of this MPPT method and the coding of P & O block is shown below the figure. In
this coding, the duty cycle ( D) of used DC – DC converter is calculated by the following expression.
D = Dold + deltaD
Where deltaD is the duty cycle step.

The different steps of the ‘Perturb and Observe’ method are :
    1. Take current and voltage measurements, power calculation,
    2. If the power is constant, return to take new measurement,
    3. If power decreased or increased, test the voltage variation,
    4. According to the direction of voltage variation, modify the current.

The simulink block of MPPT technique (P & O) is shown below in fig. 2.




                                      Fig. 2. Block Diagram of P&O MPPT method
Coding of P & O Block
function D = PandO(Param, Enabled, V, I)
% MPPT controller based on the Perturb & Observe algorithm.
% D output = Duty cycle of the boost converter (value between 0 and 1)
% Enabled input = 1 to enable the MPPT controller
% V input = PV array terminal voltage (V)
% I input = PV array current (A)
% Param input:
Dinit = Param(1); %Initial value for D output
Dmax = Param(2); %Maximum value for D
Dmin = Param(3); %Minimum value for D
deltaD = Param(4); %Increment value used to increase/decrease the duty cycle D
% ( increasing D = decreasing Vref )

persistent Vold Pold Dold;
dataType = 'double';
if isempty(Vold)
    Vold=0;
    Pold=0;
    Dold=Dinit;
end
                                                           74
A Comparison of Two MPPT Techniques for PV System in Matlab Simulink

P= V*I;
dV= V - Vold;
dP= P - Pold;

if dP ~= 0 & Enabled ~=0
   if dP < 0
      if dV < 0
         D = Dold - deltaD;
      else
         D = Dold + deltaD;
      end
   else
      if dV < 0
         D = Dold + deltaD;
      else
         D = Dold - deltaD;
      end
   end
else D=Dold;
end

if D >= Dmax | D<= Dmin
   D=Dold;
end

Dold=D;
Vold=V;
Pold=P;

Implementation of Incremental Conductance Method using MatLab Simulink.
         This method consists in using the slope of the derivative of the current with respect to the voltage in order to reach
the maximum power point. To obtain this point, dI/dV must be equal to –I/V as shown in figure 3




                                   Fig. 3. V-P Characteristics of PV module (IC method)

           In fact, applying a variation on the voltage toward the biggest or the smallest value, its influence appears on the
power value. If the increases, one continues varying the voltage in the same direction, if not, one continues in the inverse
direction. The simplified flow chart of this method is given in figure 4.




                                                             75
A Comparison of Two MPPT Techniques for PV System in Matlab Simulink




                                 Fig. 4. Flow diagram of Incremental Conductance method

In addition, by using power formula, P=V.I, its derivative becomes :
dP = V dI + I dV
In general, the duty cycle (D) of used DC – DC converter is calculated by the following expression.
D = Dold + deltaD
Where deltaD is the duty cycle step.

The simulink block of MPPT technique (IC method)
The simulink block of MPPT technique (IC method) is shown below in fig. 5.




                                  Fig.5. Simulink Block of MPPT technique (IC method)

Comparison of Two MPPT Techniques (P&O method and IC method) [3][4][5][8][10]
          This paper presents in details comparative study between two most popular algorithms technique which is Perturb
& Observe algorithm and Incremental Conductance algorithm. The Boost converter is used for comparison. Few
comparisons such as voltage, current and power output has been traced. Multi changes in irradiance by keeping voltage and
current as main sensed parameter been done in simulation. Matlab simulink tools have been used.
          In order to compare the accuracy and efficiency of two MPPT algorithms selected in this paper Matlab/Simulink is
used to implement the task of modeling and simulation. The specifications of PV model used in PV system is shown in
following Table tested by the factory under 1000W/m2, AM 1.5 and 250C conditions.




                                                            76
A Comparison of Two MPPT Techniques for PV System in Matlab Simulink




         The block diagram of the PV simulation system used in this paper by using Perturb & Observe Method and
Incremental Conductance Method is shown in fig. 6 and fig. 7




                        Fig. 6. The block dia. Of PV simulation using Perturb & Observe Method




Fig. 7. The block dia. of PV simulation using Incremental Conductance Method

           Fig 6 & 7 are comparison diagrams of output current, voltage and power for the PV system with two selected
MPPT algorithms under the conditions 1000W/m2, 250C and the load 10 by using the boost converter.
It can be observed that output power s with MPPT algorithm are obviously greater than those without MPPT algorithms.

                                                III.      RESULT
         Result of comparison of o/p current, voltage and power with and without Perturb and observe method and
Incremental conductance method is shown in figure below.




                                                          77
A Comparison of Two MPPT Techniques for PV System in Matlab Simulink




              Fig. 8 Comparison diagram of o/p current, voltage & power without perturb & observe method




                Fig. 9. Comparison diagram of o/p current, voltage & power with perturb & observe method




          Fig. 10. Comparison diagram of o/p current, voltage & power without Incremental conductance method




            Fig. 11. Comparison diagram of o/p current, voltage & power with Incremental conductance method

           From the simulation show that voltage input for both controller is almost the same. Perturb and Observe Controller
shows a not stable condition. During the simulation the current and voltage decrease rapidly and lastly came to same value at
the initial stage. From the simulation result is shows that controller that connected with Boost converter which will give a
stable output is the incremental conductance controller. Perturb and Observe controller can achieve maximum output value
at 23.66 V that better than incremental conductance controller.

                                               IV.       CONCLUSION
         This paper has presented a comparison of two most popular MPPT controller, Perturb and Observe Controller with
Incremental Conductance Controller. This paper focus on comparison of two different MPPT techniques using Boost
converter which will connected with the controller. One simple solar panel that has standard value of insolation and

                                                            78
A Comparison of Two MPPT Techniques for PV System in Matlab Simulink

temperature has been included in the simulation circuit. From all the cases, the best controller for MPPT is Perturb &
Observe controller.

                                                    REFERENCES
  [1].    S. Rustemli, F. Dincer, Modeling of Photovoltaic Panel and Examining Effects of Temperature in Matlab/Simulink, ISSN
          1392 – 1215 2011. No. 3(109)
  [2].    Geoff Walker, EVALUATING MPPT CONVERTER TOPOLOGIES USING A MATLAB PV MODEL
  [3].    Francisci M. Gonzalez-Longatt, Model of PhotovoltaicModule in MatlabTM, 2DO CONGRESO IBEROAMERICANO DE
          ESTUDIANTES DE INGENIERIA ELECTRICA, ELECTRONICA Y COMPUTACION (II CIBELEC 2005
  [4].    Ting-Chung Yu Yu-Cheng Lin, A Study on Maximum Power Point Tracking Algorithms for Photovoltaic Systems, A Study
          on Maximum Power Point Tracking Algorithms for Photovoltaic Systems
  [5].    Mohamed Azab, A New Maximum Power Point Tracking for Photovoltaic System, proceedings of World Academy of
          Science, Engineering and Technology volume 34 October 2008 ISSN 2070-3740.
  [6].    ROBERTO FARANDA, SONIA LEVA,                  Energy comparison of MPPT techniques for PV Systems, WSEAS
          TRANSACTIONS on POWER SYSTEMS.
  [7].    Trishan Esram, Student Member, IEEE, and Patrick L. Chapman, Senior Member, IEEE, Comparison of Photovoltaic Array
          Maximum Power Point Tracking Techniques, IEEE TRANSACTIONS ON ENERGY CONVERSION, VOL. 22, NO. 2,
          JUNE 2007
  [8].    Nazih Moubayed, Ali El-Ali, Rachid Outbib, A comparison of two MPPT techniques for PV system, WSEAS
          TRANSACTIONS on ENVIRONMENT and DEVELOPMENT
  [9].    Hairul Nissah Zainudin, Saad Mekhilef, Comparison Study of Maximum Power Point Tracker Techniques for PV Systems,
          Proceedings of the 14th International Middle East Power Systems Conference (MEPCON’10), Cairo University, Egypt,
          December 19-21, 2010, Paper ID 278..
  [10].   D. P. Hohm and M. E. Ropp*,y, Comparative Study of Maximum Power Point Tracking Algorithms, PROGRESS IN
          PHOTOVOLTAICS: RESEARCH AND APPLICATIONS, Prog. Photovolt: Res. Appl. 2003; 11:47–62 (DOI: 10.1002/pip.459)
  [11].   M. Calavia1, J.M. Perié1, J.F. Sanz2 and J. Sallán2, Comparison of MPPT strategies for solar modules, International
          Conference on Renewable Energies and Power Quality (ICREPQ’10), Granada (Spain), 23th to 25th March, 2010, European
          Association for the Development of Renewable Energies, Environment and Power Quality (EA4EPQ)




                                                             79

Contenu connexe

Tendances

Attou. photovoltaic grid Boost Converter
Attou. photovoltaic grid Boost ConverterAttou. photovoltaic grid Boost Converter
Attou. photovoltaic grid Boost Converter
Attou
 
Comparison of P&O and fuzzy MPPT Methods for Photovoltaic System
Comparison of P&O and fuzzy MPPT Methods for Photovoltaic SystemComparison of P&O and fuzzy MPPT Methods for Photovoltaic System
Comparison of P&O and fuzzy MPPT Methods for Photovoltaic System
LOUKRIZ Abdelouadoud
 
An improved luo converter for high power applications
An improved luo converter for high power applicationsAn improved luo converter for high power applications
An improved luo converter for high power applications
eSAT Journals
 
Modelling and Simulation of Perturbation and Observation MPPT Algorithm for P...
Modelling and Simulation of Perturbation and Observation MPPT Algorithm for P...Modelling and Simulation of Perturbation and Observation MPPT Algorithm for P...
Modelling and Simulation of Perturbation and Observation MPPT Algorithm for P...
IJMTST Journal
 
Attou pub pv_mppt
Attou pub pv_mpptAttou pub pv_mppt
Attou pub pv_mppt
Attou
 
1 s2.0-s1364032117311978-main
1 s2.0-s1364032117311978-main1 s2.0-s1364032117311978-main
1 s2.0-s1364032117311978-main
AhmedAljabari
 

Tendances (20)

Attou. photovoltaic grid Boost Converter
Attou. photovoltaic grid Boost ConverterAttou. photovoltaic grid Boost Converter
Attou. photovoltaic grid Boost Converter
 
MPPT for PV System Based on Variable Step Size P&O Algorithm
MPPT for PV System Based on Variable Step Size P&O AlgorithmMPPT for PV System Based on Variable Step Size P&O Algorithm
MPPT for PV System Based on Variable Step Size P&O Algorithm
 
Fast photovoltaic IncCond-MPPT and backstepping control, using DC-DC boost c...
Fast photovoltaic IncCond-MPPT and backstepping control,  using DC-DC boost c...Fast photovoltaic IncCond-MPPT and backstepping control,  using DC-DC boost c...
Fast photovoltaic IncCond-MPPT and backstepping control, using DC-DC boost c...
 
Comparison of Maximum Power Point Technique for Solar Photovoltaic Array
Comparison of Maximum Power Point Technique for Solar Photovoltaic ArrayComparison of Maximum Power Point Technique for Solar Photovoltaic Array
Comparison of Maximum Power Point Technique for Solar Photovoltaic Array
 
Development and Analysis of Fuzzy Control for MPPT Based Photovoltaic System
Development and Analysis of Fuzzy Control for MPPT Based Photovoltaic SystemDevelopment and Analysis of Fuzzy Control for MPPT Based Photovoltaic System
Development and Analysis of Fuzzy Control for MPPT Based Photovoltaic System
 
Comparison of P&O and fuzzy MPPT Methods for Photovoltaic System
Comparison of P&O and fuzzy MPPT Methods for Photovoltaic SystemComparison of P&O and fuzzy MPPT Methods for Photovoltaic System
Comparison of P&O and fuzzy MPPT Methods for Photovoltaic System
 
Maximum Power Point Tracking of PV Arrays using Different Techniques
Maximum Power Point Tracking of PV Arrays using Different TechniquesMaximum Power Point Tracking of PV Arrays using Different Techniques
Maximum Power Point Tracking of PV Arrays using Different Techniques
 
An improved luo converter for high power applications
An improved luo converter for high power applicationsAn improved luo converter for high power applications
An improved luo converter for high power applications
 
Modelling and Simulation of Perturbation and Observation MPPT Algorithm for P...
Modelling and Simulation of Perturbation and Observation MPPT Algorithm for P...Modelling and Simulation of Perturbation and Observation MPPT Algorithm for P...
Modelling and Simulation of Perturbation and Observation MPPT Algorithm for P...
 
Maximum power point tracking of pv arrays under partial shading condition usi...
Maximum power point tracking of pv arrays under partial shading condition usi...Maximum power point tracking of pv arrays under partial shading condition usi...
Maximum power point tracking of pv arrays under partial shading condition usi...
 
Attou pub pv_mppt
Attou pub pv_mpptAttou pub pv_mppt
Attou pub pv_mppt
 
Partial Shading Detection and MPPT Controller for Total Cross Tied Photovolta...
Partial Shading Detection and MPPT Controller for Total Cross Tied Photovolta...Partial Shading Detection and MPPT Controller for Total Cross Tied Photovolta...
Partial Shading Detection and MPPT Controller for Total Cross Tied Photovolta...
 
Performance Evaluation of Photo-Voltaic fed Brushless Direct Current Motor fo...
Performance Evaluation of Photo-Voltaic fed Brushless Direct Current Motor fo...Performance Evaluation of Photo-Voltaic fed Brushless Direct Current Motor fo...
Performance Evaluation of Photo-Voltaic fed Brushless Direct Current Motor fo...
 
A new High Speed and Accurate FPGA-based Maximum Power Point Tracking Method ...
A new High Speed and Accurate FPGA-based Maximum Power Point Tracking Method ...A new High Speed and Accurate FPGA-based Maximum Power Point Tracking Method ...
A new High Speed and Accurate FPGA-based Maximum Power Point Tracking Method ...
 
T4102160166
T4102160166T4102160166
T4102160166
 
Grid Interfaced 3-phase Solar Inverter with MPPT by using Boost Converter
Grid Interfaced 3-phase Solar Inverter with MPPT by using Boost ConverterGrid Interfaced 3-phase Solar Inverter with MPPT by using Boost Converter
Grid Interfaced 3-phase Solar Inverter with MPPT by using Boost Converter
 
Modeling of Photo Voltaic Module under Partial Shaded Conditions Using PSO MP...
Modeling of Photo Voltaic Module under Partial Shaded Conditions Using PSO MP...Modeling of Photo Voltaic Module under Partial Shaded Conditions Using PSO MP...
Modeling of Photo Voltaic Module under Partial Shaded Conditions Using PSO MP...
 
IEEEpaper.
IEEEpaper.IEEEpaper.
IEEEpaper.
 
Maximum Power Point Tracking Method for Single Phase Grid Connected PV System...
Maximum Power Point Tracking Method for Single Phase Grid Connected PV System...Maximum Power Point Tracking Method for Single Phase Grid Connected PV System...
Maximum Power Point Tracking Method for Single Phase Grid Connected PV System...
 
1 s2.0-s1364032117311978-main
1 s2.0-s1364032117311978-main1 s2.0-s1364032117311978-main
1 s2.0-s1364032117311978-main
 

En vedette

Buck boost converter
Buck boost converterBuck boost converter
Buck boost converter
Sathiya kumar
 

En vedette (8)

International Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentInternational Journal of Engineering Research and Development
International Journal of Engineering Research and Development
 
Comparative study and implementation of incremental conductance method and pe...
Comparative study and implementation of incremental conductance method and pe...Comparative study and implementation of incremental conductance method and pe...
Comparative study and implementation of incremental conductance method and pe...
 
Simulation and analysis of perturb and observe mppt algorithm for array using...
Simulation and analysis of perturb and observe mppt algorithm for array using...Simulation and analysis of perturb and observe mppt algorithm for array using...
Simulation and analysis of perturb and observe mppt algorithm for array using...
 
Perturb and observe maximum power point tracking for photovoltaic cell
Perturb and observe maximum power point tracking for photovoltaic cellPerturb and observe maximum power point tracking for photovoltaic cell
Perturb and observe maximum power point tracking for photovoltaic cell
 
Iitbombay report
Iitbombay reportIitbombay report
Iitbombay report
 
MPPT
MPPTMPPT
MPPT
 
Buck boost converter
Buck boost converterBuck boost converter
Buck boost converter
 
Maximum power point tracking.......saq
Maximum power point tracking.......saqMaximum power point tracking.......saq
Maximum power point tracking.......saq
 

Similaire à IJERD (www.ijerd.com) International Journal of Engineering Research and Development

Analysis and Implement of Hybrid ANN PandO Based MPPT Controller to Enhance E...
Analysis and Implement of Hybrid ANN PandO Based MPPT Controller to Enhance E...Analysis and Implement of Hybrid ANN PandO Based MPPT Controller to Enhance E...
Analysis and Implement of Hybrid ANN PandO Based MPPT Controller to Enhance E...
ijtsrd
 

Similaire à IJERD (www.ijerd.com) International Journal of Engineering Research and Development (20)

Simulation and hardware implementation of change in
Simulation and hardware implementation of change inSimulation and hardware implementation of change in
Simulation and hardware implementation of change in
 
IJER_2013_308
IJER_2013_308IJER_2013_308
IJER_2013_308
 
Enhanced MPPT Technique For DC-DC Luo Converter Using Model Predictive Contro...
Enhanced MPPT Technique For DC-DC Luo Converter Using Model Predictive Contro...Enhanced MPPT Technique For DC-DC Luo Converter Using Model Predictive Contro...
Enhanced MPPT Technique For DC-DC Luo Converter Using Model Predictive Contro...
 
G1102034148
G1102034148G1102034148
G1102034148
 
Performance enhancement of maximum power point tracking for grid-connected ph...
Performance enhancement of maximum power point tracking for grid-connected ph...Performance enhancement of maximum power point tracking for grid-connected ph...
Performance enhancement of maximum power point tracking for grid-connected ph...
 
Maximum Power Point Tracking Technologies for Photovoltaic Efficiency Improve...
Maximum Power Point Tracking Technologies for Photovoltaic Efficiency Improve...Maximum Power Point Tracking Technologies for Photovoltaic Efficiency Improve...
Maximum Power Point Tracking Technologies for Photovoltaic Efficiency Improve...
 
Design of Hybrid Solar Wind Energy System in a Microgrid with MPPT Techniques
Design of Hybrid Solar Wind Energy System in a Microgrid with MPPT Techniques Design of Hybrid Solar Wind Energy System in a Microgrid with MPPT Techniques
Design of Hybrid Solar Wind Energy System in a Microgrid with MPPT Techniques
 
Analysis and Implement of Hybrid ANN PandO Based MPPT Controller to Enhance E...
Analysis and Implement of Hybrid ANN PandO Based MPPT Controller to Enhance E...Analysis and Implement of Hybrid ANN PandO Based MPPT Controller to Enhance E...
Analysis and Implement of Hybrid ANN PandO Based MPPT Controller to Enhance E...
 
New Microsoft PowerPoint Presentation.pptx
New Microsoft PowerPoint Presentation.pptxNew Microsoft PowerPoint Presentation.pptx
New Microsoft PowerPoint Presentation.pptx
 
Grid Connected Solar Photovoltaic Array with MPPT Matlab Simulation
Grid Connected Solar Photovoltaic Array with MPPT Matlab SimulationGrid Connected Solar Photovoltaic Array with MPPT Matlab Simulation
Grid Connected Solar Photovoltaic Array with MPPT Matlab Simulation
 
Comparative study of new MPPT control approaches for a photovoltaic system
Comparative study of new MPPT control approaches for a photovoltaic systemComparative study of new MPPT control approaches for a photovoltaic system
Comparative study of new MPPT control approaches for a photovoltaic system
 
40220130406008
4022013040600840220130406008
40220130406008
 
IRJET- Arduino UNO Controlled DC Weaving Machine Powered by Solar Energy
IRJET- Arduino UNO Controlled DC Weaving Machine Powered by Solar EnergyIRJET- Arduino UNO Controlled DC Weaving Machine Powered by Solar Energy
IRJET- Arduino UNO Controlled DC Weaving Machine Powered by Solar Energy
 
A novel MPPT Tactic with fast convergence speed .pdf
A novel MPPT Tactic with fast convergence speed .pdfA novel MPPT Tactic with fast convergence speed .pdf
A novel MPPT Tactic with fast convergence speed .pdf
 
Nv3424352438
Nv3424352438Nv3424352438
Nv3424352438
 
IRJET- Classification and Comparison of Maximum Power Point Tracking Algo...
IRJET-  	  Classification and Comparison of Maximum Power Point Tracking Algo...IRJET-  	  Classification and Comparison of Maximum Power Point Tracking Algo...
IRJET- Classification and Comparison of Maximum Power Point Tracking Algo...
 
IRJET-Maximum Power Point Tracking Techniques for Photovoltaic Systems - A Re...
IRJET-Maximum Power Point Tracking Techniques for Photovoltaic Systems - A Re...IRJET-Maximum Power Point Tracking Techniques for Photovoltaic Systems - A Re...
IRJET-Maximum Power Point Tracking Techniques for Photovoltaic Systems - A Re...
 
A REVIEW OF VARIOUS MPPT TECHNIQUES FOR PHOTOVOLTAIC SYSTEM
A REVIEW OF VARIOUS MPPT TECHNIQUES FOR PHOTOVOLTAIC SYSTEMA REVIEW OF VARIOUS MPPT TECHNIQUES FOR PHOTOVOLTAIC SYSTEM
A REVIEW OF VARIOUS MPPT TECHNIQUES FOR PHOTOVOLTAIC SYSTEM
 
DESIGN A TWO STAGE GRID CONNECTED PV SYSTEMS WITH CONSTANT POWER GENERATION A...
DESIGN A TWO STAGE GRID CONNECTED PV SYSTEMS WITH CONSTANT POWER GENERATION A...DESIGN A TWO STAGE GRID CONNECTED PV SYSTEMS WITH CONSTANT POWER GENERATION A...
DESIGN A TWO STAGE GRID CONNECTED PV SYSTEMS WITH CONSTANT POWER GENERATION A...
 
IRJET - Study of Technical Parameters in Grid-Connected PV System
IRJET -  	  Study of Technical Parameters in Grid-Connected PV SystemIRJET -  	  Study of Technical Parameters in Grid-Connected PV System
IRJET - Study of Technical Parameters in Grid-Connected PV System
 

Plus de IJERD Editor

A Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
A Novel Method for Prevention of Bandwidth Distributed Denial of Service AttacksA Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
A Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
IJERD Editor
 
Gold prospecting using Remote Sensing ‘A case study of Sudan’
Gold prospecting using Remote Sensing ‘A case study of Sudan’Gold prospecting using Remote Sensing ‘A case study of Sudan’
Gold prospecting using Remote Sensing ‘A case study of Sudan’
IJERD Editor
 
Gesture Gaming on the World Wide Web Using an Ordinary Web Camera
Gesture Gaming on the World Wide Web Using an Ordinary Web CameraGesture Gaming on the World Wide Web Using an Ordinary Web Camera
Gesture Gaming on the World Wide Web Using an Ordinary Web Camera
IJERD Editor
 
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
IJERD Editor
 
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
IJERD Editor
 

Plus de IJERD Editor (20)

A Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
A Novel Method for Prevention of Bandwidth Distributed Denial of Service AttacksA Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
A Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
 
MEMS MICROPHONE INTERFACE
MEMS MICROPHONE INTERFACEMEMS MICROPHONE INTERFACE
MEMS MICROPHONE INTERFACE
 
Influence of tensile behaviour of slab on the structural Behaviour of shear c...
Influence of tensile behaviour of slab on the structural Behaviour of shear c...Influence of tensile behaviour of slab on the structural Behaviour of shear c...
Influence of tensile behaviour of slab on the structural Behaviour of shear c...
 
Gold prospecting using Remote Sensing ‘A case study of Sudan’
Gold prospecting using Remote Sensing ‘A case study of Sudan’Gold prospecting using Remote Sensing ‘A case study of Sudan’
Gold prospecting using Remote Sensing ‘A case study of Sudan’
 
Reducing Corrosion Rate by Welding Design
Reducing Corrosion Rate by Welding DesignReducing Corrosion Rate by Welding Design
Reducing Corrosion Rate by Welding Design
 
Router 1X3 – RTL Design and Verification
Router 1X3 – RTL Design and VerificationRouter 1X3 – RTL Design and Verification
Router 1X3 – RTL Design and Verification
 
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...
 
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVR
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVRMitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVR
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVR
 
Study on the Fused Deposition Modelling In Additive Manufacturing
Study on the Fused Deposition Modelling In Additive ManufacturingStudy on the Fused Deposition Modelling In Additive Manufacturing
Study on the Fused Deposition Modelling In Additive Manufacturing
 
Spyware triggering system by particular string value
Spyware triggering system by particular string valueSpyware triggering system by particular string value
Spyware triggering system by particular string value
 
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...
 
Secure Image Transmission for Cloud Storage System Using Hybrid Scheme
Secure Image Transmission for Cloud Storage System Using Hybrid SchemeSecure Image Transmission for Cloud Storage System Using Hybrid Scheme
Secure Image Transmission for Cloud Storage System Using Hybrid Scheme
 
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...
 
Gesture Gaming on the World Wide Web Using an Ordinary Web Camera
Gesture Gaming on the World Wide Web Using an Ordinary Web CameraGesture Gaming on the World Wide Web Using an Ordinary Web Camera
Gesture Gaming on the World Wide Web Using an Ordinary Web Camera
 
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
 
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
 
Moon-bounce: A Boon for VHF Dxing
Moon-bounce: A Boon for VHF DxingMoon-bounce: A Boon for VHF Dxing
Moon-bounce: A Boon for VHF Dxing
 
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...
 
Importance of Measurements in Smart Grid
Importance of Measurements in Smart GridImportance of Measurements in Smart Grid
Importance of Measurements in Smart Grid
 
Study of Macro level Properties of SCC using GGBS and Lime stone powder
Study of Macro level Properties of SCC using GGBS and Lime stone powderStudy of Macro level Properties of SCC using GGBS and Lime stone powder
Study of Macro level Properties of SCC using GGBS and Lime stone powder
 

Dernier

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Dernier (20)

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 

IJERD (www.ijerd.com) International Journal of Engineering Research and Development

  • 1. International Journal of Engineering Research and Development e-ISSN : 2278-067X, p-ISSN : 2278-800X, www.ijerd.com Volume 2, Issue 7 (August 2012), PP. 73-79 A Comparison of Two MPPT Techniques for PV System in Matlab Simulink Ms. Sangita S. Kondawar1, U. B. Vaidya2 1 Student of M.Tech(EMS), RCERT, Chandrapur. 2 Professor, Electrical Department, RCERT, Chandrapur. Abstract––In the context of renewable energy, this study treats the case of the conversion of solar energy, which is one part of non pollutant energy, to electrical one. In this paper, two different methods are used to maximize the generated power. Thus, a comparison between the ‘perturb and observe’ control method and the ‘incremental conductance’ control method are given, analyzed and discussed. Keywords––Renewable energy, solar panel, photovoltaic cell, modeling and control. I. INTRODUCTION In general, the Earth has two global movements that affect the reception of the solar energy to its surface: the rotation that it does once on itself per day and the yearly revolution that it does around the sun. The combination of these movements implies daily changes in the receipt of the solar light to particular places. The reason for which the energizing flux received to soil hardly passes 1000 W/m2 is that the atmosphere modifies in an important way the direct radiance of the sun. The phenomenon named "photovoltaic effect" consists mainly in transforming the solar light in electric energy by means of the semiconductor devices named photovoltaic cells. The solar panel, or photovoltaic generator, is itself constituted of an association of series and parallel of the necessary number of modules to assure the requisite energy. Maximum Power Point Trackers (MPPTs) play an important role in photovoltaic (PV) power systems because they maximize the power output from a PV system for a given set of conditions, and therefore maximize the array efficiency. Thus, an MPPT can minimize the overall system cost. MPPTs find and maintain operation at the maximum power point, using an MPPT algorithm. Many such algorithms have been proposed. However, one particular algorithm, the perturb-and-observe (P&O) method, continues to be by far the most widely used method in commercial PV MPPTs. Part of the reason for this is that the published MPPT methods do not include comparisons between multiple existing algorithms. [4][8][10] II. IMPLEMENTATION IN SIMULINK (PROGRAMMING & ALGORITHMS OF TWO TECHNIQUES.) Implementation of Perturb & Observe Method using MatLab Simulink. [4][5][6][7][9] Applying a variation on the voltage (or on the current) towards the biggest or the smallest value, its influence appears on the power value. If the power increases, one continues varying the voltage (or the current) in the same direction, if not, one continues in inverse direction as shown in figure 1. 73
  • 2. A Comparison of Two MPPT Techniques for PV System in Matlab Simulink Fig. 1 Flow diagram of P&O MPPT method Figure below shows the block diagram of this MPPT method and the coding of P & O block is shown below the figure. In this coding, the duty cycle ( D) of used DC – DC converter is calculated by the following expression. D = Dold + deltaD Where deltaD is the duty cycle step. The different steps of the ‘Perturb and Observe’ method are : 1. Take current and voltage measurements, power calculation, 2. If the power is constant, return to take new measurement, 3. If power decreased or increased, test the voltage variation, 4. According to the direction of voltage variation, modify the current. The simulink block of MPPT technique (P & O) is shown below in fig. 2. Fig. 2. Block Diagram of P&O MPPT method Coding of P & O Block function D = PandO(Param, Enabled, V, I) % MPPT controller based on the Perturb & Observe algorithm. % D output = Duty cycle of the boost converter (value between 0 and 1) % Enabled input = 1 to enable the MPPT controller % V input = PV array terminal voltage (V) % I input = PV array current (A) % Param input: Dinit = Param(1); %Initial value for D output Dmax = Param(2); %Maximum value for D Dmin = Param(3); %Minimum value for D deltaD = Param(4); %Increment value used to increase/decrease the duty cycle D % ( increasing D = decreasing Vref ) persistent Vold Pold Dold; dataType = 'double'; if isempty(Vold) Vold=0; Pold=0; Dold=Dinit; end 74
  • 3. A Comparison of Two MPPT Techniques for PV System in Matlab Simulink P= V*I; dV= V - Vold; dP= P - Pold; if dP ~= 0 & Enabled ~=0 if dP < 0 if dV < 0 D = Dold - deltaD; else D = Dold + deltaD; end else if dV < 0 D = Dold + deltaD; else D = Dold - deltaD; end end else D=Dold; end if D >= Dmax | D<= Dmin D=Dold; end Dold=D; Vold=V; Pold=P; Implementation of Incremental Conductance Method using MatLab Simulink. This method consists in using the slope of the derivative of the current with respect to the voltage in order to reach the maximum power point. To obtain this point, dI/dV must be equal to –I/V as shown in figure 3 Fig. 3. V-P Characteristics of PV module (IC method) In fact, applying a variation on the voltage toward the biggest or the smallest value, its influence appears on the power value. If the increases, one continues varying the voltage in the same direction, if not, one continues in the inverse direction. The simplified flow chart of this method is given in figure 4. 75
  • 4. A Comparison of Two MPPT Techniques for PV System in Matlab Simulink Fig. 4. Flow diagram of Incremental Conductance method In addition, by using power formula, P=V.I, its derivative becomes : dP = V dI + I dV In general, the duty cycle (D) of used DC – DC converter is calculated by the following expression. D = Dold + deltaD Where deltaD is the duty cycle step. The simulink block of MPPT technique (IC method) The simulink block of MPPT technique (IC method) is shown below in fig. 5. Fig.5. Simulink Block of MPPT technique (IC method) Comparison of Two MPPT Techniques (P&O method and IC method) [3][4][5][8][10] This paper presents in details comparative study between two most popular algorithms technique which is Perturb & Observe algorithm and Incremental Conductance algorithm. The Boost converter is used for comparison. Few comparisons such as voltage, current and power output has been traced. Multi changes in irradiance by keeping voltage and current as main sensed parameter been done in simulation. Matlab simulink tools have been used. In order to compare the accuracy and efficiency of two MPPT algorithms selected in this paper Matlab/Simulink is used to implement the task of modeling and simulation. The specifications of PV model used in PV system is shown in following Table tested by the factory under 1000W/m2, AM 1.5 and 250C conditions. 76
  • 5. A Comparison of Two MPPT Techniques for PV System in Matlab Simulink The block diagram of the PV simulation system used in this paper by using Perturb & Observe Method and Incremental Conductance Method is shown in fig. 6 and fig. 7 Fig. 6. The block dia. Of PV simulation using Perturb & Observe Method Fig. 7. The block dia. of PV simulation using Incremental Conductance Method Fig 6 & 7 are comparison diagrams of output current, voltage and power for the PV system with two selected MPPT algorithms under the conditions 1000W/m2, 250C and the load 10 by using the boost converter. It can be observed that output power s with MPPT algorithm are obviously greater than those without MPPT algorithms. III. RESULT Result of comparison of o/p current, voltage and power with and without Perturb and observe method and Incremental conductance method is shown in figure below. 77
  • 6. A Comparison of Two MPPT Techniques for PV System in Matlab Simulink Fig. 8 Comparison diagram of o/p current, voltage & power without perturb & observe method Fig. 9. Comparison diagram of o/p current, voltage & power with perturb & observe method Fig. 10. Comparison diagram of o/p current, voltage & power without Incremental conductance method Fig. 11. Comparison diagram of o/p current, voltage & power with Incremental conductance method From the simulation show that voltage input for both controller is almost the same. Perturb and Observe Controller shows a not stable condition. During the simulation the current and voltage decrease rapidly and lastly came to same value at the initial stage. From the simulation result is shows that controller that connected with Boost converter which will give a stable output is the incremental conductance controller. Perturb and Observe controller can achieve maximum output value at 23.66 V that better than incremental conductance controller. IV. CONCLUSION This paper has presented a comparison of two most popular MPPT controller, Perturb and Observe Controller with Incremental Conductance Controller. This paper focus on comparison of two different MPPT techniques using Boost converter which will connected with the controller. One simple solar panel that has standard value of insolation and 78
  • 7. A Comparison of Two MPPT Techniques for PV System in Matlab Simulink temperature has been included in the simulation circuit. From all the cases, the best controller for MPPT is Perturb & Observe controller. REFERENCES [1]. S. Rustemli, F. Dincer, Modeling of Photovoltaic Panel and Examining Effects of Temperature in Matlab/Simulink, ISSN 1392 – 1215 2011. No. 3(109) [2]. Geoff Walker, EVALUATING MPPT CONVERTER TOPOLOGIES USING A MATLAB PV MODEL [3]. Francisci M. Gonzalez-Longatt, Model of PhotovoltaicModule in MatlabTM, 2DO CONGRESO IBEROAMERICANO DE ESTUDIANTES DE INGENIERIA ELECTRICA, ELECTRONICA Y COMPUTACION (II CIBELEC 2005 [4]. Ting-Chung Yu Yu-Cheng Lin, A Study on Maximum Power Point Tracking Algorithms for Photovoltaic Systems, A Study on Maximum Power Point Tracking Algorithms for Photovoltaic Systems [5]. Mohamed Azab, A New Maximum Power Point Tracking for Photovoltaic System, proceedings of World Academy of Science, Engineering and Technology volume 34 October 2008 ISSN 2070-3740. [6]. ROBERTO FARANDA, SONIA LEVA, Energy comparison of MPPT techniques for PV Systems, WSEAS TRANSACTIONS on POWER SYSTEMS. [7]. Trishan Esram, Student Member, IEEE, and Patrick L. Chapman, Senior Member, IEEE, Comparison of Photovoltaic Array Maximum Power Point Tracking Techniques, IEEE TRANSACTIONS ON ENERGY CONVERSION, VOL. 22, NO. 2, JUNE 2007 [8]. Nazih Moubayed, Ali El-Ali, Rachid Outbib, A comparison of two MPPT techniques for PV system, WSEAS TRANSACTIONS on ENVIRONMENT and DEVELOPMENT [9]. Hairul Nissah Zainudin, Saad Mekhilef, Comparison Study of Maximum Power Point Tracker Techniques for PV Systems, Proceedings of the 14th International Middle East Power Systems Conference (MEPCON’10), Cairo University, Egypt, December 19-21, 2010, Paper ID 278.. [10]. D. P. Hohm and M. E. Ropp*,y, Comparative Study of Maximum Power Point Tracking Algorithms, PROGRESS IN PHOTOVOLTAICS: RESEARCH AND APPLICATIONS, Prog. Photovolt: Res. Appl. 2003; 11:47–62 (DOI: 10.1002/pip.459) [11]. M. Calavia1, J.M. Perié1, J.F. Sanz2 and J. Sallán2, Comparison of MPPT strategies for solar modules, International Conference on Renewable Energies and Power Quality (ICREPQ’10), Granada (Spain), 23th to 25th March, 2010, European Association for the Development of Renewable Energies, Environment and Power Quality (EA4EPQ) 79