Modeling Solar Modules Performance Under Temperature and Solar Radiation of Western Iraq
Modeling Solar Modules Performance Under Temperature and Solar Radiation of Western Iraq
Modeling Solar Modules Performance Under Temperature and Solar Radiation of Western Iraq
net/publication/328850480
CITATIONS READS
3 61
3 authors:
Amer Saeed
Tikrit University
15 PUBLICATIONS 13 CITATIONS
SEE PROFILE
Some of the authors of this publication are also working on these related projects:
All content following this page was uploaded by Zaid H. Ali on 02 January 2019.
Corresponding Author:
Zaid H. Ali,
Northern Technical University,
Technical Institute of Hawija, Kirkuk, Iraq.
Email: [email protected]
1. INTRODUCTION
Nowadays, rising environmental pollution problems based on classic energy forms causes the planet
to be hostile due to the climate changes and other geo and hydro contaminations. The problems are
apprehended about the way of energy harnessing and utilization. In this point, fast pace revolutionary
techniques are invented to solve these problems, renewable energy resources trans-form the passive energy to
a clean active energy used to generate electricity with no emissions such as PV systems [1], wind energy
generators, tidal generators, biomass systems, thermal panels, and geothermal systems. This paper will
concentrate on the analysis of PV panels used in PV systems. The subject is gaining huge attention since PV
panels are the most popular renewable energy resource. PV panel depends on the photo-radiation, weather,
and the load's conditions. Thus, the output current, voltage, and wattage of PV panel can be fluctuating
rapidly and sharply depending on the mentioned affecting condones. Therefore, power converters are used in
the PV systems to provide a reliable useful energy to the customers stabilizing and improving the PV penal
output energy. Thus, various control techniques have been proposed and invented one of them Clipped
Sinusoidal Pulse Width Modulation CSPWM technique [2] which proved to reduce the harmonic currents
and provide best possible electrical energy. To prove any proposed method effectiveness, operation
characteristics should be compared and tested under same affecting conditions. However, the design, control,
monitor, and evaluation of PV system performance with experimental equipment, preparing multi
specification parameters are experimentally necessary but difficult to be found to prove the performance.
Thus, the economic burden will be very high. Therefore, from an economic perspective, the MATLAB
simulation and mathematical analysis can be more effective and accurate. In this paper, a detailed simulation
model of solar PV cell and hence PV panel has been coded with simulation analysis, creating actual and
accurate simulation analysis technique, required to address the above economic and experimental setbacks.
This paper also investigated photovoltaic simulation with MPPT converter to evaluate hence predict
the behaviors of the whole photovoltaic DC current generation using PSIM Power Electronics program. The
model focuses on the basic components in PV systems; The panel and the DC-DC converter.
One diode model equivalent circuit is popular model used to evaluate the performance data which
are represented by P-V characteristic curves of a typical BP Solar and Synthesis Power PV modules. The
solar module model P-V characteristic compared with the field performance test data, in the area of Anbar
irradiance conditions and temperature degrees. Afterward, PSIM model of a photovoltaic system with MPPT
DC-DC buck converter, developed by the perturbation and observation P&O switching control method. The
modeling simulation by MATLAB and modeled circuit by PSIM are useful for PV systems designers, due to
the simplicity, accuracy, and easy-to-use simulation and modeling method. The data extraction and model
assessment has been demonstrated to indicate the input/output data of the model such as; weather conditions,
converters effectivity, control methods, and solar physical parameters.
As previously mentioned, BP Solar PV and Synthesis Power PV modules have been tested under the
conditions of radiation and temperature in the west of Iraq, these modules are suitable for traditional
operations of photovoltaic systems. BP Solar PV and Synthesis Power PV modules provide 60W and 150W
respectively. Both modules consist of 36 silicon cells connected in series. The data sheet main specifications
are demonstrated in Table (1). The MATLAB math modeling is implemented using climate and physical
parameters with modeling equations [4]. As a result, the operation current (I) can be calculated depending on
typical panel specification mentioned in the table (1) [5]
(ISC, VOC), Irradiation (G), Series resistance (Rs), and Temperature (T). This modeling provides analytical
simulation outcomes to evaluate the panels. The model has many constants and variable to cover the physical
and electrical parameters, as shown below:
Va: Operation voltage
K: Boltzmann constant
q: Electron Charge
A: quality coefficient (=2 for Crystalline Silicon, <2 for Amorphous Silicon)
Solar Modules Performance Under Temperature and Solar Radiation of Western Iraq (Zaid Hussein Ali)
1844 ISSN: 2088-8694
Vg: Diode Band Gap voltage (=1.12eV for Crystalline Silicon, <1.75 for Amorphous Silicon)
Ns: Number of panel PV cells
T1: Minimum operation temperature
Voc: Open Circuit voltage for each PV cell
1sc: Short Circuit Current for each PV cell
T2: Maximum operation temperature
Tak: Actual operation temperature
The parameters above are used in math modeling equations below:
IL_T1=Isc_T1*G (1)
I0=IT1 * (Tak/Tac) (3/N) *exp (-q * Vg / (Ns * K) * ((1 / Tak) - (1/Tac)) (5)
Rs=dV\dI_Voc-(1/X)=Xv (9)
Newton Raphson iteration numerical method has been applied to extract the value of current for
every working voltage to find P-V curves under the effect of Temperature and irradiation of Anbar province
west Iraq, as shown in equation (10) [6].
Ia=Ia-(IL-Ia-I0*(exp((Voc+Ia*Rs)/Vt_Ta)-1))/(-1-(I0*(exp((Vc+Ia*Rs)/(Vt_Ia)1))*Rs/Vt_Ia (10)
MATLAB Code
Va=[0:0.5:21.5];
G=1;
k=1.38e-23; % Boltzman constant
q=1.60e-19; % Electron charge
A=2; Vg=1.12; Ns=36 T=25;
Voc_T1=22.1 /Ns; Isc_T1=3.99;
T2=273 + 75; Voc_T2=17.05 /Ns;
Isc_T2=2.99; TaK(n)=T1;
Iph_T1=Isc_T1 * (G);
for n=1:4
a(n)=(Isc_T2 - Isc_T1)/Isc_T1*1 /(T2 - T1(n));end
for n=1:4
Iph(n)=Iph_T1* (1 + a(n)*(TaK(n) - T1(n)));end
for n=1:4
Vt_T1(n)=k*T1(n)/q;end %=A*kT/q
for n=1:4
Ir_T1(n)=(exp(Voc_T1/(A* Vt_T1(n)))-1);end
for n=1:4
Ir_T2(n)=Isc_T2/(exp(Voc_T2/ (A*Vt_T1(n)))-1); End
b=Vg * q/(A*k);
for n=1:4
Ir(n)=Ir_T1(n)*(TaK(n)/T1(n)).*(3 /A) .* exp(-b.*(1./TaK(n) -(1/T1(n))));end
for n=1:4
X2v=Ir_T1(n)/(A*Vt_T1(n))*exp(Voc_T1/(A*Vt_T1(n)));end
dVdI_Voc=- 1.15/Ns / 2; % dV/dI at Voc per cell
Int J Pow Elec & Dri Syst, Vol. 9, No. 4, December 2018 : 1842 – 1850
Int J Pow Elec & Dri Syst ISSN: 2088-8694 1845
3. SIMULATION RESULTS
Typically, the electrical properties and specifications of PV panels is provided in its datasheet by the
manufacturers. However, before purchasing any PV panel brand, it is highly recommended to make
confirmation measurements to assure there is no deviation from nominal values. In some brands, the
deviation from promised values is large and expected due to lack of efficiency and manufacturing
malfunctions. The specifications of tested models are listed in Table 1.
3.1. Irradiance
PV generation resource depends basically on the ability of silicon or other certain materials of
transferring the photo-radiation energy from the sun or any other source into moving to charge hence
electrical energy. Irradiance (G) is energy amount that applied energy on a given area (watts per square meter
(W/m²)). Thus, it is instantaneous value averaged over a defined period [7]. Therefore, commonly the
irradiance is specified per hour, day, or even month. In this paper, after applying the simulation of the last
section the P-V curves is plotted in different colors to differentiate them. Each curve explains the electrical
behavior produced by a panel under different G which varies from (0.7 to 1.2) W/m² the amount of solar
radiation during the year seasons in Anbar. The data of radiation is collected from solar maximum radiation
tracker installed in the University of Anbar where G=1.2, 1, 1, 0.7 suns during the Summer, Spring, Autumn,
and Winter respectively.
Figure 2 depicts the effect of different G on the power generation of BP Solar module when the
temperature is fixed at the standard value 25 Celsius degree. Despite the given Maximum power of the panel
which is 60 watts, the power obtained at winter (when G=0.7) is the minimum equal 41 watts, whereas the
maximum power can be obtained at summer (G=1.2) is the maximum equal 73 watts. It should be noted, the
power value in the Table 1 for BP Solar module is 60 which is the value power at the most of spring and
Autumn (when G=1) which is standard used to test and determine the module electrical performance.
In Figure 3, the effect of G variation on Synthesis Power module performance. Despite the given
Maximum power of the panel which is 60 watts, the power obtained at winter (when G=0.7) is the minimum
equal 32 watts, whereas the maximum power can be obtained at summer (G=1.2) is the maximum equal 57.5
watts. It should be noted that power value in the table (1) for Synthesis Power module is 50 Watts which is
the value power at the most of spring and Autumn (when G=1) which is standard G used to test the module
electrical Performance [8].
Solar Modules Performance Under Temperature and Solar Radiation of Western Iraq (Zaid Hussein Ali)
1846 ISSN: 2088-8694
90
G=0.7 sun
G=1 sun
80
G=1.2 sun
70
60
50
P(watt)
40
30
20
10
0
0 2 4 6 8 10 12 14 16 18 20 22
V(volt)
Int J Pow Elec & Dri Syst, Vol. 9, No. 4, December 2018 : 1842 – 1850
Int J Pow Elec & Dri Syst ISSN: 2088-8694 1847
T1=25
70
T2=50
T3=75
60
50
p(watt)
40
30
20
10
0
0 2 4 6 8 10 12 14 16 18 20 22
V(volt)
60
T1=25
T2=50
T3=75
50
40
p(watt)
30
20
10
0
0 2 4 6 8 10 12 14 16 18 20 22
V(volt)
Figure 5. The P-V curve of synthesis power module under temperature variation
Solar Modules Performance Under Temperature and Solar Radiation of Western Iraq (Zaid Hussein Ali)
1848 ISSN: 2088-8694
In this section, a PV panel cascaded by a buck converter controlled by the P&O algorithm is
simulated by PSIM. This simulation aims to extract the MPP in the P-V curves of the tested modules under
the fixed value of G=1 Sun and T=25 °C. In the PV systems, the main functions of buck DC-DC converter
are stepping down module generated DC voltage to connect it to the batteries and act as intermediate power
processor to track MPP from the connected PV array [11]. The converters change output voltage and current
to interface a fixed source to a variable load. The P&O algorithm is popular since it has a very fast response
with the best result because it reaches steady state operating stage quickly it is implemented in Figure 6. In
Figure 7, MPPT converter using P&O Method in its swiching gate is built and executed by PSIM. The
temperature T=25 °C and G=1 sun are assumed and considered in PSIM simulation.
Figure 6. Perturb and observe method to observe the maximum power (when dP=0)
The voltage is perturbed and observe the change of output power. The gating sub-circuit is P&O
method controlling the converter switching circuit to change the switch gate (transistor) achieving MPP from
tested BP Solar and Synthesis Power panels [12]. Figure 7 depicts the output power from DC-DC buck
converter shown above. The maximum power is 60 Watt for BP Solar and 47 which are identical to the
maximum power in the P-V curve. Figure 8 shows the MPPT buck converter with P&O method output.
Int J Pow Elec & Dri Syst, Vol. 9, No. 4, December 2018 : 1842 – 1850
Int J Pow Elec & Dri Syst ISSN: 2088-8694 1849
5. CONCLUSION
Mathematical modeling of two modules is presented by MATLAB coding and PSIM power
electronics program to analyze the performance of BP Solar and Synthesis Power PV panels. This paper has
introduced the effect of Temperature and sun Irradiation of the west of Iraq area. This simulation work will
be employed as a reference to assess the performance of any PV module used in this area to compare their
practical and actual results.
REFERENCES
[1] Abdelkader Mezouari, R. Elgouri, M. Alareqi, K. Mateur, H. Dahou4, L. Hlou, ―A New Photovoltaic Blocks
Mutualization System for Micro-Grids Using an Arduino Board and Labview‖ International Journal of Power
Electronics and Drive System (IJPEDS), Vol. 9, No. 1, March 2018, pp. 98-104
[2] Hiroshi Yamashita, Keita Tamahashi, Masakazu Michihira Akira Tsuyoshi, Kuniyuki Amako, and Minwon Park,
"A Novel Simulation Technique of the PV Generation System using Real Weather Conditions," PCC-Osaka 2002,
Vol. 2, pp. 839 – 844 (2002).
[3] Mohammed Qasim Taha, Aymen Lpiza, "Design a New PWM Switching Technique in Multilevel Converters",
IEEE Connecticut Conference on Industrial Electronics Technology & Automation 2016, University of Bridgeport,
CT, United States of America, October 14, 2016 – October 15, 2016.
[4] Karteek Gummi and Mehdi Ferdows,‖ Double-Input DC–DC Power Electronic Converters for Electric-Drive
Vehicles—Topology Exploration and Synthesis Using a Single-Pole Triple-Throw Switch‖, IEEE Transactions on
Industrial Electronics, VOL. 57, NO. 2, FEBRUARY 2010.
[5] S. Samal and P. K. Hota, ―Power Quality Improvement by Solar Photo-voltaic / Wind Energy Integrated System
Using Unified Power Quality Conditioner,‖ International Journal of Power Electronics and Drive System (IJPEDS),
Vol. 8, No. 3, September 2017, pp. 1416–1426.
[6] Ashish Kumar Singhal, and Rakesh Narvey, "PSIM and MATLAB Based Simulation of PV Array for Enhance the
Performance by Using MPPT Algorithm", International Journal of Electrical Engineering (IEEE), Vol. 4, No. 5, pp.
511-520, (2011).
[7] A. Lavanya, K. Vijaya kumar, J. Divya Navamani, ― Topological Comparison of Dual-Input DC-DC Converters‖,
International Journal of Power Electronics and Drive System (IJPEDS), Vol. 8, No. 2, June 2017, pp. 804~811
[8] Ting-Chung Yu and Tang-Shiuan Chien, "Analysis and Simulation of Characteristics and Maximum Power Point
Tracking for Photovoltaic Systems",PEDS2009, pp. 1339-1344, (2009).
Solar Modules Performance Under Temperature and Solar Radiation of Western Iraq (Zaid Hussein Ali)
1850 ISSN: 2088-8694
[9] A. Elkholy, F. H. Fahmy and A. Abu Elela, "A New Technique for Photovoltaic Module Performance
Mathematical Model", International Conference on Chemistry and Chemical Engineering (ICCCE 2010), pp.6-10,
(2010).
[10] Mohammed Q. Taha, Qusay H. Eesse and Salih Mohammed Salih, ―Mathematical Modeling of different
Photovoltaic Modules‖, Journal of telecommunications, Volume 11, Issue 2, pp. 59-64, December, (2011).
[11] Geoff Walker. ―Evaluating MPPT Converter Topologies Using Matlab PV Model‖, Department of Computer
Science and Electrical Engineering, University of Queensland.
[12] A. Cheknane , S. Bensmain , B. Benyoucef, J.-P. Charles, and R. Zerdoum." Series Resistance of SnO2/SiO2/Si(n)
Solar Cells
BIOGRAPHIES OF AUTHORS
Zaid H. Ali: Currently, he is a lecturer at the Northern Technical University – Iraq, Technical
Institute of Hawija. He received MS.c degree from the University of New Haven - USA in 2017
and received B.S. Degree in Electrical Engineering from the University of Tikrit-Iraq in 2009.
He is interested in Power System Engineering, and Digital Signal Processing (DSP), Power
Electronics, Power Distribution Systems, and Renewable Energy Resources. He has published
many papers in international and local conferences and journals.
Int J Pow Elec & Dri Syst, Vol. 9, No. 4, December 2018 : 1842 – 1850