Next Article in Journal
Analytical Point-Cloud Based Geometric Modeling for Additive Manufacturing and Its Application to Cultural Heritage Preservation
Previous Article in Journal
Deep Neural Networks for Document Processing of Music Score Images
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Photovoltaic Cell and Module I-V Characteristic Approximation Using Bézier Curves

Applied Electronics Department, Politehnica University Timisoara, Timisoara 300006, Romania
*
Author to whom correspondence should be addressed.
Appl. Sci. 2018, 8(5), 655; https://doi.org/10.3390/app8050655
Submission received: 23 March 2018 / Revised: 30 March 2018 / Accepted: 12 April 2018 / Published: 24 April 2018
(This article belongs to the Section Energy Science and Technology)

Abstract

:
The aim of this work was to introduce new ways to model the I-V characteristic of a photovoltaic (PV) cell or PV module using straight lines and Bézier curves. This is a complete novel approach, Bézier curves being previously used mainly for computer graphics. The I-V characteristic is divided into three sections, modeled with lines and a quadratic Bézier curve in the first case and with three cubic Bézier curves in the second case. The result proves to be accurate and relies on the fundamental points usually present in the PV cell datasheets: V o c (the open circuit voltage), I s c (the short circuit current), V m p (the maximum power corresponding voltage) and I m p (the maximum power corresponding current), and the parasitic resistances R s h 0 (shunt resistance at I s c ) and R s 0 (series resistance at V o c ). The proposed algorithm completely defines all the implied control points and the error is analyzed. The temperature and irradiance influence is also analyzed. The model is also compared using the least squares fitting method. The final validation shows how to use Bézier cubic curves to accurately represent the I-V curves of an extensive range of PV cells and arrays.

Graphical Abstract

1. Introduction

The forecast of the total photovoltaic (PV) installations, offered by Bloomberg New Energy Finance (BNEF) predicts an optimistic growth at 111 GW in 2018, rising to 121 GW in 2019, along with a polysilicon factory growth boom and module prices drop to US$ 0.30/W [1,2]. This robust growth explains the high interest in PV research, modeling, and simulation–along with design and development of PV equipment.
The electrical characteristics of the PV cell and PV modules have been of interest for several decades, and different models have been proposed. Phang and Chan [3] were among the first to propose a solution for PV cell parameter extraction. Garrido-Alzar [4] uses a double exponential model to extract the PV cell parameters using the experimental I-V curve. Villalva et al. [5] developed an algorithm to find the parameters defining the I-V characteristic for the single diode model of a PV cell, using the Newton-Raphson method and imposing a minimum error threshold for the maximum power point. Babu and Gurjar [6] introduced a simplified two-diode model for the PV module, while Cubas et al. [7] used the Lambert W-Function for finding the solar panel equivalent circuit parameters and also proposed an LTSpice model according to their findings. Temperature influence has been studied by Chander et al. [8]. Ishaque and Salam [9] use differential evolution to find the PV modules parameters.
Franzitta et al. provided extensive studies of the most widely used models both in single diode case [10] and for the double-diode version [11], introducing a criterion for rating the accuracy and usability of the analyzed models. In our previous paper [12], we proposed a complete SPICE model including all the parameters variation and selfheating. In a recent work, Cuce et al. [13] claim a good accuracy for their electrical model for a PV module and they also discuss energy and exergy efficiency as a reliable substitute for the fill factor. All the aforementioned works use an electrical model to describe the behavior of the circuit and rely on a specific circuit to generate the I-V characteristic of the PV cell or module.
This paper introduces a new approach. This time, the cell or module are not involved at the electrical level, being defined by just the specific points P s c ,   P m p ,   P o c and by the parallel and series resistances R s h 0 and R s 0 , specified at I s c and V o c , respectively. Careful inspection of the typical I-V characteristic of the PV module or PV cell (Figure 1a,b) shows a similar pattern in all curves. Our aim was to find a way to model it using smooth curves and the datasheet information currently available.
Bernstein polynomials have been studied since the beginning of the 20th century and they form the foundation for Bézier curves [14]. The core applications for graphics came first in 1959 when the French mathematician Paul de Casteljau developed an algorithm able to evaluate a family of specific curves at Citroën. In 1962 the French engineer Pierre Bézier also used them to design automobile bodies at Renault and afterwards they achieved wide acceptance [15].
Bézier curves are largely used in computer graphics [16,17] and also in the time domain for smoothing the trajectory of the robotic arms, for an accurate gluing or welding path or for trajectory generation [18]. Further development for shape representation was proposed by Jalba et al. [19].
The current proposal analyses the use of Bézier curves [20] in order to accurately represent the I-V characteristic of a PV cell or module. Although Bézier curves are commonly used as 2D curves (which are usually not functions) [21], our approach uses such curves to approximate an I-V characteristic (a function). A complete mathematical solution is provided, separately validated for a PV cell and a PV module and the error is analyzed. The results are also studied for different temperature and irradiances and finally compared with the ones offered by the least squares fitting method. In depth analysis of Bézier cubic curves fitting for 18 PV arrays and cells (from various manufacturers and different technologies) is also performed.
There are other possible approaches, for example spline fitting [22,23], well known Hermite interpolation, or spiral curve fitting [24]. Our aim was solely the Bézier curves.
The remainder of this paper is organized as follows: Section 2 briefly analyzes the definition of the quadratic and cubic Bézier curves and their equations, focusing on the basic knowledge needed in the subsequent paragraphs. Section 3 deals with the information usually provided by the PV cell or module manufacturers in their datasheets. The proposed models are covered in Section 4, with Section 4.1. introducing the approximation with two segments and one quadratic Bézier curve, while Section 4.2. deals with the better approximation based on three Bézier cubic curves. The models are rated at the reference temperature, 25 °C. The results are also compared with the least squares fitting method in Section 4.3. In Section 4.4. the influence of the external parameters is analyzed. The proposal is verified in Section 4.5. against a large range of PV cells and modules and the results show a good fit. Discussion and conclusions are provided in the next Sections.

2. Definition of the Bézier Curves

A quadratic Bézier curve (Figure 2) can be specified by three control points [15]: the curve goes through the ends P 0 and P 2 and approximates P 1 .
The curve equation is as follows [20]:
B 2 ( t ) = ( 1 t ) 2 P 0 + 2 t ( 1 t ) P 1 + t 2 P 2
where t varies between 0 and 1. Equation (1) can be expressed for the x and y coordinates:
{ x ( t ) = ( 1 t ) 2 x 0 + 2 t ( 1 t ) x 1 + t 2 x 2 y ( t ) = ( 1 t ) 2 y 0 + 2 t ( 1 t ) y 1 + t 2 y 2
The derivative of (1) is:
B 2 ( t ) = 2 ( 1 t ) ( P 1 P 0 ) + 2 t ( P 2 P 1 )
At the end points, (3) becomes (4):
{ B 2 ( t ) | t = 0 = 2 P 1 2 P 0 B 2 ( t ) | t = 1 = 2 P 2 2 P 1
A cubic Bézier curve (Figure 3) can be specified by four control points [15]: the curve goes through the ends P 0 and P 3 and approximates P 1 and P 2 . The analytical expression of the curve is a cubic polynomial. The curve is tangent at P 0 to P 0 P 1 ¯ and at P 3 to P 3 P 2 ¯ .
The equation for the Bézier cubic curve is [20]:
B 3 ( t ) = ( 1 t ) 3 P 0 + 3 t ( 1 t ) 2 P 1 + 3 t 2 ( 1 t ) P 2 + t 3 P 3
The previous equation can be expressed for the x and y coordinates:
{ x ( t ) = ( 1 t ) 3 x 0 + 3 t ( 1 t ) 2 x 1 + 3 t 2 ( 1 t ) x 2 + t 3 x 3 y ( t ) = ( 1 t ) 3 y 0 + 3 t ( 1 t ) 2 y 1 + 3 t 2 ( 1 t ) y 2 + t 3 y 3
The derivative of (5) is:
B 3 ( t ) = 3 ( 1 t ) 2 ( P 1 P 0 ) + 6 t ( 1 t ) ( P 2 P 1 ) + 3 t 2 ( P 3 P 2 )
At the end points, (7) becomes (8):
{ B 3 ( t ) | t = 0 = 3 P 1 3 P 0 B 3 ( t ) | t = 1 = 3 P 3 3 P 2

3. Materials and Methods

The first PV cell used in our work is a high efficiency, silicon monocrystalline 156 × 156 mm2 cell [25] and has the main characteristics summarized in Table 1.
The MSMD290AS-36_EU Monocrystalline PV module formerly manufactured by MünchenSolar Germany [26] has been well documented and studied by Cubas et al. [6]. Its main electrical data is listed in Table 2 and this information is used in Section 4.4. to evaluate the influence of the temperature and irradiance to our Bézier curves based model.
For studying and representing Bézier curves, an interesting application which allows draggable control points was developed by Mugnaini [27]. For computing the coordinates on the curves we used the Kronecker tensor product found as in [28]. An example for the Bézier least square fitting method is given in [29].

4. Results

It must be stressed that all the physical actual values involved in Section 4.1., Section 4.2., and Section 4.3. are specified at 25 °C, being reference values. The irradiance is also standard (1000 W/m2). As it is demonstrated in Section 4.4., the same method is suitable for different temperatures and irradiances.

4.1. I-V Characteristic Approximation with Two Segments and a Quadratic Bézier Curve

The first approximation implies five control points: P s c ( 0 ,   I s c ) ,   P a ( x a , y a ) ,   P b ( x b , y b ) ,   P c ( x c , y c ) , and P o c ( V o c , 0 ) and is made of two segment lines I s c P a ¯ and P b V o c ¯ and one quadratic Bézier curve defined by the endpoints P a and P b and the control point P c (Figure 4).
It has already been proven [3] that the slopes of the lines can be written as (9) and (10):
d I d V | V = 0 = 1 R s h 0
d I d V | V = V o c = 1 R s 0
Thus, the equation for first line is (11):
I = I s c V R s h 0
By choosing x a in the linear region (eg 0.6 V o c ), one can find y a from the above equation, so P a is completely defined.
For the second line, the next equation is valid (12):
I = V o c V R s 0
The P c ( V c , I c ) control point has therefore the coordinates defined by (13):
( x c = V c = V o c R s h 0 I s c R s h 0 R s 0 R s h 0 R s 0 , y c = I c = I s c R s h 0 V o c R s h 0 R s 0 )
For x b , it must be emphasized that its position is on the end of the curve, a realistic value being 0.9 V o c . The maximum power point is positioned on the second curve, so solving (14) gives t m p :
t m p 2 ( x a + x b 2 x c ) + 2 t m p ( x c x a ) + x a V m p = 0
Replacing the positive solution for t m p in (2) yields y b as in (15):
y b = ( 2 t m p t m p 2 1 ) y a + 2 t m p ( t m p 1 ) y c + I m p t m p 2
Now all the control points of the plot are completely defined. The results are summarized in Table 3. The application code written for the coordinate finding can be retrieved from [30].
The final plot is represented in Figure 5, where one can observe an excellent correspondence between the actual PV cell I-V characteristic, represented with black dots and the P s c P a ¯ segment (blue line), a fair correlation for the second range, approximated by the Bézier quadratic curve (red line) and some modest results in the third region (magenta line).
The same conclusion arises from Figure 6, where the relative error has been plotted. It is worth mentioning that although the relative error is quite high above 0.64 V ( 0.92 V o c ) , the absolute error is in fact less than 0.7 A in a region where the cell normally should not operate.
Looking for a more accurate model is the reason we came up with the second scenario, where the I-V characteristic is entirely modeled with cubic Bézier curves.

4.2. I-V Characteristic Approximation with Three Cubic Bézier Curves

In order to have a general solution, we analyzed the case where all three regions are covered with cubic Bézier curves. This implies 12 control points (Figure 7), i.e. 24 coordinates to be found.
The first curve, represented in Figure 8, is described by the control points P 00 ( 0 , I s c ) ,   P 01 ,   P 02 , and P 03 . It turns out that the linear approximation of the first region of the I-V curve has an error below 0.5% if P 03 x = V o c 2 . During various simulations we also discovered that all P j , k points can be evenly arranged, with j = { 1 , 2 } ;   k = { 1 , 2 , 3 } . This leads to P 01 x = P 03 x 3 and P 02 x = 2 P 03 x 3 . For the y coordinates, P 0 k y = I s c P 0 k x R s h 0 , with k = { 1 , 2 , 3 } . Now the first curve is completely defined.
The second curve (Figure 7) is described by the control points P 10 = P 03 ,   P 11 ,   P 12 , and P 13 . We observed that P 13 x = 0.75 V o c offers a very good fit of the curve for this type of PV cell. With the same evenly arrangement for the x coordinates, P 1 k x = P 10 x + k ( P 13 x P 10 x ) 3 , with k = { 1 , 2 } . P 11 is also located in the linear region of the I-V curve, so P 11 y = P 03 y P 11 x R s h 0 . This leaves P 12 y and P 13 y as unknowns at this stage.
The third curve (Figure 7) is described by the control points P 20 = P 13 ,   P 21 ,   P 22 , and P 23 ( V o c , 0 ) . Using the same assumptions as for the second curve, P 2 k x = P 20 x + k ( P 23 x P 20 x ) 3 , with k = { 1 , 2 } . It is obvious that P 20 x = P 13 x and P 23 x = V o c . The segment P 22 P 23 ¯ is tangent to the curve at the point P 23 , so P 22 y = ( V o c P 22 x ) R s 0 . This leaves P 21 y as an additional unknown at this step.
For continuity reasons, P 12 P 13 ¯ and P 20 P 21 ¯ segments belong to the same line. This implies that the derivatives of the second curve at P 13 and of the third curve at P 20 are equal (16):
3 P 13 y 3 P 12 y = 3 P 21 y 3 P 20 y
Which means that:
P 21 y = 2 P 13 y P 12 y
The control point P 11 is placed on the second curve, so (18) can be written:
V 11 = P 11 x = ( 1 t 11 ) 3 P 10 x + 3 t 11 ( 1 t 11 ) 2 P 11 x + 3 t 11 2 ( 1 t 11 ) P 12 x + t 11 3 P 13 x
Solving the previous equation and keeping only the real solution for t 11 , (19) is also valid:
I 11 = P 11 y = ( 1 t 11 ) 3 P 10 y + 3 t 11 ( 1 t 11 ) 2 P 11 y + 3 t 11 2 ( 1 t 11 ) P 12 y + t 11 3 P 13 y
Finally, the graph also goes through the maximum power point P m p ( V m p , I m p ) , yielding Equation (20):
V m p = ( 1 t m p ) 3 P 20 x + 3 t m p ( 1 t m p ) 2 P 21 x + 3 t m p 2 ( 1 t m p ) P 22 x + t m p 3 P 23 x
Keeping only the real solution for t m p , (21) is also valid:
I m p = ( 1 t m p ) 3 P 20 y + 3 t m p ( 1 t m p ) 2 P 21 y + 3 t m p 2 ( 1 t m p ) P 22 y
The linear system made of equations (17), (19), and (21) give the last three unknown coordinates P 12 y , P 13 y , and P 21 y . The results are summarized in Table 4. The application code written for coordinate finding can be retrieved from [30].
Figure 9 shows the location of the control points with respect to the I-V characteristic of the PV cell. The control points P 00 ,   P 01 ,   P 02 ,   P 03 = P 10 and P 11 are collinear and with P m p , are all placed on the I-V characteristic.
Figure 10 shows the modeled characteristic (red, green, and blue lines) overlapping in most areas with the practical I-V characteristic (black markers). The application code can also be retrieved from [30].
The relative error of the Bézier modeled I-V characteristic against the actual data taken from [12] is shown in Figure 11. It must be emphasized that in the 0–0.94 V o c range, the relative error is below 1%. Above 0.94 V o c the absolute error is less than 72 mA, while the reference I s c = 9.207 A .

4.3. Data Fitting Using the Least Squares Method

Data fitting using the least squares method is a standard approach in data analysis [31,32]. A good overview of curve fitting using Bézier cubic curves in image processing is given by Shao et al. in [33], while Zhao et al. [34] extend this method using a genetic algorithm for parameter optimization for Bézier curve fitting. In Section 4.2. we have shown that for the studied PV cell, the best results arise when the x coordinates of the middle end points are set at 0.5 V o c and 0.75 V o c respectively. A similar conclusion arises if the least squares method is used for the same cell modeling. Running the least squares method for the MSMD290AS-36_EU Monocrystalline PV module proved that the minimum error occurs when the control end points are set again at 0.5 V o c and 0.75 V o c respectively. Table 5 summarizes the data fitting results for the same PV cell used in Section 4.1. and Section 4.2., where the results from the two approaches are very close. The graphical representation of the date fitting is given in Figure 12, where only the endpoints are represented.
Figure 13 depicts the relative error of the modeled I-V characteristic compared with the actual data taken from our previous work [12]. In the 0 0.96 V o c range, the relative error is below 2%. Furthermore, above 0.96 V o c , the absolute error is less than 66 mA, while the reference short circuit current is 9.207 A.

4.4. Parameter Variation

In order to further validate the proposed method, in this section we analyze the temperature and irradiance influence for the MSMD290AS-36_EU Monocrystalline PV module. An extensive study of the parameter influence over the PV cell can be found in [12]. It is important to notice that the Bézier approximation is not related to any of the parameter variation, just to the specified points P s c ,   P m p ,   P o c and the parasitic resistances R s h 0 and R s 0 as already stated. The challenge becomes in this case the finding of the new position for the control points and the new values for the parasitic resistances.
Villalva et al. [5] accurately describe the short circuit current variation as in (22):
I s c = ( R s h + R s R s h I s c , r e f + k I Δ T ) G G r e f ( I s c , r e f + k I Δ T ) G G r e f
Ishaque and Salam [9] propose for the V o c , c e l l the following variation (23):
V o c , c e l l = V 0 c , c e l l , r e f + a k T q l n G G r e f + k v Δ T
Equation (23) proved to be too conservative in this case, as larger V o c , c e l l variations were observed. A better approximation is the empirical law (24):
V o c = 29.579 + 2.1934 ln G
A possible way for defining R s h behavior is suggested in [12], as in (25) with k R s h estimated as 8 for the best fit.
R s h = R s h , r e f ( T r e f T ) k R s h
For R s , a linear variation law (26) is given in [12] with α R s = 0.01 K 1 , again for the best fit:
R s = R s , r e f [ 1 + α R s ( T T r e f ) ]
Figure 14 shows the irradiance influence for the I-V module characteristic, where the approximated data using our proposed method is plotted with solid lines and the experimental data is represented with markers. I s c ,   V o c ,   R s h , and R s were computed using (22), (24–26) respectively.
The temperature dependent Bézier curves resulted from our algorithm compared with the actual data are introduced in Figure 15. Once again, the results show a very good correlation between the modeled data and the actual data.

4.5. Final Validation

In order to definitely test whether the proposed method is applicable to common PV cells and modules, a selection of 18 cases were analyzed at reference conditions, based on information found in their technical data [35,36,37,38,39,40,41,42,43,44,45,46,47,48,49], synthesized in Table 6. The selection includes three mono-crystalline PV arrays (1–3), nine poly-crystalline arrays (4–11 and 13) and one poly-crystalline PV cell (12), a thin-film array (14), one Heterojunction with Intrinsic Thin layer (HIT, 15) two amorphous silicon glass arrays (with different see-through degrees, respectively 10% and 30%, 16 and 17) and eventually an amorphous silicon cell (18).
Using the Villalva algorithm [5], the main parameters were computed and are listed in Table 7. For the last three cases, due to different technology, interesting values for the diode ideality factor a occur.
Table 8 lists the control points computed for Bézier curve fitting, where in all cases the control end points are set at 0.5 V o c and 0.75 V o c respectively. Only two x coordinates are presented, as the others are evenly spaced and can be easily computed. Selected plots of the PV devices are presented in Figure 16.
In the second column of Table 9, the average of the current ( I ) relative error is displayed in order to evaluate the fit quality. Maximum current error (absolute and relative, listed as positive values) is associated in each case with the coordinates where it appears. The maximum power point is also investigated as an absolute and relative error and finally the computed value is listed. The current ( I ) relative error is below 1.18% in all cases, and the P m p relative error is even better (lower than 1%).
An additional plot of the relative error is introduced in Figure 17a,b for two of the analyzed PV devices. The same pattern arises as in Figure 11, with small errors up to 0.94 V o c . The curvature plots from Figure 17c,d were computed using the Herman and Klette method [50], with 20 forward and backward points, using an adapted script from [51].

5. Discussion

In all studied cases, the x coordinates can be evenly spaced. Both for the PV cells and for the PV modules, the first Bézier cubic curve was very close to a straight line and ended at x 03 = 0.5 V o c , while the middle curve ended at x 13 = 0.75 V o c . The relative error is less than or equal to 1.18% for all the studied PV devices, while neglecting the values in the 0.94 V o c   V o c region, where the absolute error is tens of mA and the relative error is misleading, (Figure 11 and Figure 17).
The differences between the results obtained with the proposed method and the least squares method are negligible (less than 1% for all coordinates). R s and R s h can be easily derived from the manufacturer’s datasheet, using for example the method proposed by Vilallva et al. [5]. In most cases R s h is close to R s h o (Table 7). Larger differences occur for the series parasitic resistance: for the same PV cell. For different irradiances and temperatures, Section 4.4 provides all the necessary formulae.
In most cases V m p > P 13 x . The method was also valid for Onyx Ref 10, Onyx Ref 30, and 6.5 Wp L Cell, where the previous relation was not satisfied.
In relation to the Maximum Power Point Tracking (MPPT), it must be emphasized that the Bézier curves are inherently smooth. This reduces the risk for the algorithm of becoming stuck in some false area/minimum of the curve. Furthermore, as the generation of the Bézier curves is so easy, the MPPT simulation can be further simplified.

6. Conclusions

A novel method for modeling a PV cell or a PV module I-V characteristic was introduced. To the best of our knowledge, Bézier curves have not been used to model the I-V characteristic of PV devices before. The method proved high accuracy and was validated both in the case of a single PV cell and in the case of a whole PV module, for different technologies and manufacturers. The method was also used in the case of varying irradiance and temperature. The proposed method can be used for implementing hardware solar array simulators, for teaching or remote study. It is far easier to use the proposed method to find the I-V characteristic of a PV cell or module when compared with solving the exponential equations associated with the single or double diode model largely used today. A common microcontroller can compute the points on the I-V curve with a minimum of resources, inherently increasing the computing speed and the response of the system.
The advantage of our method relies on the ease of I-V characteristic generation: if we exclude V o c and I s c , only 10 different values ( P 23 x = V o c , P 00 y = I s c , P 01 y , P 02 y , P 03 y , P 11 y , P 12 y , P 13 y , P 21 y , P 22 y ) have to be stored—SAS manufacturers usually use 1024 or more double points to accurately define the I-V characteristic. Alternate use is for any graphical plot of the I-V (and subsequently P-V) curves. Furthermore, little knowledge of the device itself is required, as only common data from the datasheet is needed.
As future work, fitting spiral segments will be investigated and compared with our current method.

Supplementary Files

Supplementary File 1

Acknowledgments

This work was supported by both the Romanian National Authority for Scientific Research and Innovation, CNCS/CCCDI-UEFISCDI within PNCDI III, project number PN-III-P2-2.1-PED-2016-0074 and by the Politehnica University Timisoara, according to the Administration Board research policy.

Author Contributions

Both authors contributed to this research. Aurel Gontean conceived and designed the study and carried out the simulations. Roland Szabo analyzed the data. Aurel Gontean wrote the paper and reviewed the manuscript. Both authors read and approved the manuscript.

Conflicts of Interest

The authors declare no conflict of interest.

Nomenclature

Main Symbols
a Diode ideality factor
G   Actual irradiance
G r e f Reference irradiance, 1000 W/m2
I Output current
I m p Output current at maximum power point
I s c Short circuit current
I s c , r e f Short circuit current 25 °C
k Boltzmann constant
k I Current temperature coefficient, A/K
k V Voltage temperature coefficient, V/K
k R s h R s h temperature exponent
n s Number of series cells
P m p = V m p I m p Maximum output power
q Electron charge
R s Series resistance
R s , r e f Series resistance at 25 °C
R s 0 Series resistance based on I-V characteristic slope close to V o c
R s h Parallel (shunt) resistance
R s h , r e f Parallel (shunt) resistance, at 25 °C
R s h 0 Parallel (shunt) resistance based on I-V characteristic slope close to I s c
T Internal temperature, (K)
T r e f Reference temperature 298.15 K
Δ T = T T r e f Temperature difference
V Output voltage
V o c Open circuit voltage
V o c , r e f Open circuit reference voltage at 25 °C
V o c , c e l l Solar cell open circuit voltage
V o c , c e l l , r e f Solar cell open circuit reference voltage at 25 °C
V m p Output voltage at maximum power point
Abbreviations
AMAir Mass
MPPTMaximum Power Point Tracking
PVPhotovoltaic
SASSolar Array Simulator
STCStandard Test Conditions (cell temp. 25 °C; irradiance 1000 W/m2; air mass 1.5)
Greek Symbols
α R s Series resistance temperature coefficient (linear law)

References

  1. 4Q 2017 Frontier Power Market Outlook. Available online: https://about.bnef.com/blog/4q-2017-frontier-power-market-outlook/ (accessed on 3 January 2018).
  2. Solar PV 2018. Available online: https://www.pv-magazine.com/2017/12/01/solar-pv-2018-installs-of-111-gw-a-polysilicon-factory-boom-and-0-30w-for-modules-2/ (accessed on 3 January 2018).
  3. Phang, J.C.H.; Chan, D.S.H.; Phillips, J.R. Accurate Analytical Method for the Extraction of Solar Cell Model Parameters. Electron. Lett. 1984, 20, 406–408. [Google Scholar] [CrossRef]
  4. Garrido-Alzar, C.L. Algorithm for extraction of solar cell parameters from I–V curve using double exponential mode. Renew. Energy 1997, 10, 125–128. [Google Scholar] [CrossRef]
  5. Villalva, M.G.; Gazoli, J.R.; Filho, E.R. Comprehensive Approach to Modeling and Simulation of Photovoltaic Arrays. IEEE Trans. Power Electr. 2009, 24, 1198–1208. [Google Scholar] [CrossRef]
  6. Babu, B.C.; Gurjar, S. A novel simplified two-diode model of photovoltaic (PV) module. IEEE J. Photovolt. 2014, 4, 1156–1161. [Google Scholar] [CrossRef]
  7. Cubas, J.; Pindado, S.; de Manuel, C. Explicit Expressions for Solar Panel Equivalent Circuit Parameters Based on Analytical Formulation and the Lambert W-Function. Energies 2014, 7, 4098–4115. [Google Scholar] [CrossRef]
  8. Chander, S.; Purohit, A.; Sharma, A.; Nehra, S.P.; Dhaka, M.S. A study on photovoltaic parameters of mono-crystalline silicon solar cell with cell temperature. Energy Rep. 2015, 1, 104–109. [Google Scholar] [CrossRef]
  9. Ishaque, K.; Salam, Z. An improved modeling method to determine the model parameters of photovoltaic (PV) modules using differential evolution (DE). Sol. Energy 2011, 85, 2349–2359. [Google Scholar] [CrossRef]
  10. Franzitta, V.; Orioli, A.; Di Gangi, A. Assessment of the Usability and Accuracy of the Simplified One-Diode Models for Photovoltaic Modules. Energies 2016, 9, 1019. [Google Scholar] [CrossRef]
  11. Franzitta, V.; Orioli, A.; Gangi, A.D. Assessment of the Usability and Accuracy of Two-Diode Models for Photovoltaic Modules. Energies 2017, 10, 564. [Google Scholar] [CrossRef]
  12. Gontean, A.; Lica, S.; Bularka, S.; Szabo, R.; Lascu, D. A Novel High Accuracy PV Cell Model Including Self Heating and Parameter Variation. Energies 2018, 11, 36. [Google Scholar] [CrossRef]
  13. Cuce, E.; Cuce, P.M.; Karakas, I.H.; Bali, T. An accurate model for photovoltaic (PV) modules to determine electrical characteristics and thermodynamic performance parameters. Energy Convers. Manag. 2017, 146, 205–216. [Google Scholar] [CrossRef]
  14. Farin, G. A History of Curves and Surfaces in CAGD. In Handbook of Computer Aided Geometric Design; Farin, G.E., Hoschek, J., Kim, M.S., Eds.; Elsevier: Amsterdam, The Netherlands, 2002; pp. 1–22. ISBN 978-0-444-51104-1. [Google Scholar] [CrossRef]
  15. Farin, G. Curves and Surfaces for CAGD. A Practical Guide, 5th ed.; Academic Press: San Francisco, CA, USA, 2002; pp. 81–95. ISBN 1-55860-737-4. [Google Scholar] [CrossRef]
  16. Mortenson, M.E. Geometric Modeling, 3rd ed.; Industrial Press: South Norwalk, CT, USA, 2006; ISBN 978-0-831-13298-9. [Google Scholar]
  17. Farin, G. Shape Representation. In Wiley Encyclopedia of Electrical and Electronics Engineering; 13 July 2007; ISBN 978-0-471-34608-1. Available online: http://onlinelibrary.wiley.com/doi/10.1002/047134608X.W7525.pub2/full (accessed on 30 March 2018). [CrossRef]
  18. Tromba, D.; Munteanu, L.; Schneider, V.; Holzapfel, F. Approach trajectory generation using Bézier curves. In Proceedings of the 2015 IEEE International Conference on Aerospace Electronics and Remote Sensing Technology (ICARES), Bali, Indonesia, 3–5 December 2015. [Google Scholar] [CrossRef]
  19. Jalba, A.C.; Wilkinson, M.; Roerdink, J. Shape representation and recognition through morphological curvature scale spaces. IEEE Trans. Image Process. 2006, 15, 331–341. [Google Scholar] [CrossRef] [PubMed]
  20. Prautzsch, H.; Boehm, W.; Paluszny, M. Bézier and B-Spline Techniques; Spinger: Berlin, Germany, 2002; pp. 9–57. ISBN 3-540-43761-4. [Google Scholar]
  21. Farin, G. Class A Bézier curves. Comput. Aided Geom. Des. 2006, 23, 573–581. Available online: https://pdfs.semanticscholar.org/1412/bd2310c3f76a31e49129402895564b751e8d.pdf (accessed on 30 March 2018). [CrossRef]
  22. De Boor, C.; Rice, J.R. Least Squares Cubic Spline Approximation I-Fixed Knots; Dept. of Computer Sciences, Purdue University: West Lafayette, IN, USA, 1968; Available online: ftp://ftp.cs.wisc.edu/Approx/tr20.pdf (accessed on 30 March 2018).
  23. Levien, R.; Séquin, C. Interpolating Splines: Which is the fairest of them all? Comput. Aided Des. Appl. 2009, 6, 91–102. Available online: http://levien.com/phd/LevienSequinCAD09_014.pdf (accessed on 30 March 2018). [CrossRef]
  24. Bartoň, M.; Gershon, E. Spiral fat arcs—Bounding regions with cubic convergence. Graph. Models 2011, 73, 50–57. Available online: http://www.cs.technion.ac.il/~gershon/papers/SpiralFatArcs.pdf (accessed on 30 March 2018). [CrossRef]
  25. 156 mm Monocrystalline Mono Solar Cell 6x6. Available online: https://www.aliexpress.com/item/50pcs-lot-4-6W-156mm-mono-solar-cells-6x6-150feet-Tabbing-Wire-15feet-Busbar-Wire-1pc/1932804007.html (accessed on 21 September 2017).
  26. MünchenSolar. M Series Monocrystalline MSMDxxxAS-36.EU Datasheet. Available online: https://cdn.enf.com.cn/Product/pdf/Crystalline/559cd7e85436f.pdf (accessed on 31 January 2018).
  27. Mugnaini, D. Bézier Curve with Draggable Control Points. Draw, Manipulate and Reconstruct Bézier Curves, Version 1.11. Available online: https://www.mathworks.com/matlabcentral/fileexchange/51046-bézier-curve-with-draggable-control-points (accessed on 30 December 2017).
  28. Garrity, M. Bézier Curves and Kronecker’s Tensor Product. 13 October 2014. Available online: https://blogs.mathworks.com/graphics/2014/10/13/bézier-curves/ (accessed on 31 December 2017).
  29. Khan, M. Cubic Bézier Least Square Fitting, Version 1.4. Available online: https://www.mathworks.com/matlabcentral/fileexchange/15542-cubic-bézier-least-square-fitting (accessed on 30 December 2017).
  30. Thermo-Electric Hybrid Solar System (TESS), Grant PN-III-P2-2.1-PED-2016-0074. Available online: http://tess.upt.ro (accessed on 12 April 2018).
  31. Wolberg, J. Data Analysis Using the Method of Least Squares. Extracting the Most Information from Experiments; Springer: Berlin/Heidelberg, Germany, 2006; ISBN 978-3-540-25674-8. [Google Scholar] [CrossRef]
  32. Hansen, P.C.; Pereyra, V.; Scherer, G. Least Squares Data Fitting with Applications; JHU Press: Baltimore, ML, USA, 2013; ISBN 978-1-421-40786-9. [Google Scholar]
  33. Shao, L.; Zhou, H. Curve Fitting with Bézier Cubics. Graph.l Models Image Process. 1996, 58, 223–232. [Google Scholar] [CrossRef]
  34. Zhao, L.; Jiang, J.; Song, C.; Bao, L.; Gao, J. Parameter Optimization for Bézier Curve Fitting Based on Genetic Algorithm. In Advances in Swarm Intelligence; Tan, Y., Shi, Y., Mo, H., Eds.; Springer: Berlin, Germany, 2013; Volume 7928. [Google Scholar] [CrossRef]
  35. Shell SP70 Photovoltaic Solar Module, Product Information Sheet. Available online: http://www.solenerg.com.br/files/SP70.pdf (accessed on 15 March 2018).
  36. Isofoton I-150 InDach Solar Panel Specifications. Available online: http://www.posharp.com/i-150-indach-solar-panel-from-isofoton_p337595585d.aspx (accessed on 15 March 2018).
  37. Bosch Solar Module c-Si M 60 Model M245 3BB. Available online: http://www.bosch-solarenergy.de/media/us/alle_pdfs_1/technische_dokumente_3/datenblaetter_1/kristalline_module_6/p_60_eu30014_1/Bosch_Solar_Module_c_Si_M_60_EU30014_en_Europe.pdf (accessed on 16 March 2018).
  38. München Solarenergie GmbH MSP300AS-36.EU. Available online: http://www.secondsol.de/handelsplatz/herstellerdatenblatt/photovoltaikmodule/Polykristallin/M%C3%BCnchen%20Solarenergie%20GmbH/MSP300AS-36.EU.htm (accessed on 16 March 2018).
  39. Kyocera KC200GT. High Efficiency Multicrystal Photovoltaic Module. Available online: https://www.kyocerasolar.com/dealers/product-center/archives/spec-sheets/KC200GT.pdf (accessed on 16 March 2018).
  40. Kyocera KC85T. High Efficiency Multicrystal Photovoltaic Module. Available online: https://www.kyocerasolar.com/dealers/product-center/archives/spec-sheets/KC85T.pdf (accessed on 17 March 2018).
  41. Kyocera KD245GH-4FB2 High Efficiency Multi-Crystalline Photovoltaic Module. Available online: http://www.australiansolar.com.au/images/KD245GH-4FB2.pdf (accessed on 17 March 2018).
  42. Kyocera KD135SX_UPU Technical Data. Available online: http://www.datasheetspdf.com/pdf/846173/KYOCERA/KD135SX-UPU/1 (accessed on 17 March 2018).
  43. Sharp ND-224UC1 (224W) Solar Panel Technical Data. Available online: http://files.sharpusa.com/Downloads/Solar/Products/sol_dow_ND224UC1.pdf (accessed on 17 March 2018).
  44. Shell Solar Revised 2nd ed. Available online: http://www.efn-uk.org/l-street/renewables-lib/solar-reports/index_files/Shell-Solar.pdf (accessed on 18 March 2018).
  45. Solarex MSX-60 and MSX-64 Photovoltaic Modules Technical Data. Available online: https://www.solarelectricsupply.com/media/custom/upload/Solarex-MSX64.pdf (accessed on 18 March 2018).
  46. Amerisolar AS-6P Technical Data. Available online: https://www.acosolar.com/amfilerating/file/download/file_id/448/?___store=solar_all (accessed on 18 March 2018).
  47. Sanyo HIT-240 HDE4 Technical Data. Available online: http://future-energy-solutions.co.uk/wp-content/uploads/2014/10/Panasonic-Datasheet-HIT-240W.pdf (accessed on 18 March 2018).
  48. Onyx 1200x600 ref10 Technical Data. Available online: http://onyxsolardownloads.com/docs/ALL-YOU-NEED/Technical_Guide.pdf (accessed on 17 March 2018).
  49. 6.5Wp L Cell a-Si cell Technical Data. Available online: https://www.enfsolar.com/pv/cell-datasheet/1696 (accessed on 19 March 2018).
  50. Hermann, S.; Klette, R. Multigrid Analysis of Curvature Estimators. In Proceedings of the Image and Vision Computing ’03, Palmerston North, New Zealand, 26–28 November 2003; pp. 108–112. Available online: https://pdfs.semanticscholar.org/c7c4/d51563997009797bb83211a34687203c5e3c.pdf (accessed on 29 March 2018).
  51. Jianfei, P. Curvature Estimation. Available online: https://www.mathworks.com/matlabcentral/fileexchange/40920-curvature-estimation (accessed on 29 March 2018).
Figure 1. Typical photovoltaic (PV) module I-V characteristics, with 30 cells connected in series. (a) at different temperatures (0–80 °C); (b) at different irradiances (200–1000 W/m2).
Figure 1. Typical photovoltaic (PV) module I-V characteristics, with 30 cells connected in series. (a) at different temperatures (0–80 °C); (b) at different irradiances (200–1000 W/m2).
Applsci 08 00655 g001
Figure 2. A quadratic Bézier curve representation. P 0 and P 2 are the end points, the control point P 1 is approximated and the curve is tangent to P 0 P 1 ¯ and P 2 P 1 ¯ segments at P 0 and P 2 respectively.
Figure 2. A quadratic Bézier curve representation. P 0 and P 2 are the end points, the control point P 1 is approximated and the curve is tangent to P 0 P 1 ¯ and P 2 P 1 ¯ segments at P 0 and P 2 respectively.
Applsci 08 00655 g002
Figure 3. A cubic Bézier curve representation. P 0 and P 3 are the end points, the control points P 1 and P 2 are approximated, and the curve is tangent to P 0 P 1 ¯ and P 2 P 1 ¯ segments at P 0 and P 3 respectively.
Figure 3. A cubic Bézier curve representation. P 0 and P 3 are the end points, the control points P 1 and P 2 are approximated, and the curve is tangent to P 0 P 1 ¯ and P 2 P 1 ¯ segments at P 0 and P 3 respectively.
Applsci 08 00655 g003
Figure 4. Projected PV cell I-V characteristic approximation with two straight line segments and one quadratic Bézier curve.
Figure 4. Projected PV cell I-V characteristic approximation with two straight line segments and one quadratic Bézier curve.
Applsci 08 00655 g004
Figure 5. PV cell I-V characteristic approximation with two straight lines and one quadratic Bézier curve—results.
Figure 5. PV cell I-V characteristic approximation with two straight lines and one quadratic Bézier curve—results.
Applsci 08 00655 g005
Figure 6. Approximation errors are high over 0.64 V.
Figure 6. Approximation errors are high over 0.64 V.
Applsci 08 00655 g006
Figure 7. Projected PV cell I-V characteristic approximation with three cubic Bézier curves.
Figure 7. Projected PV cell I-V characteristic approximation with three cubic Bézier curves.
Applsci 08 00655 g007
Figure 8. First Bézier curve with the associated control points. The slope is exaggerated for a better understanding.
Figure 8. First Bézier curve with the associated control points. The slope is exaggerated for a better understanding.
Applsci 08 00655 g008
Figure 9. PV cell I-V characteristic (black line, continuous) and the position of the 12 computed control points (red markers).
Figure 9. PV cell I-V characteristic (black line, continuous) and the position of the 12 computed control points (red markers).
Applsci 08 00655 g009
Figure 10. I-V characteristic of a PV cell modeled with three cubic Bézier curves, defined by 12 control points.
Figure 10. I-V characteristic of a PV cell modeled with three cubic Bézier curves, defined by 12 control points.
Applsci 08 00655 g010
Figure 11. The relative error of our model compared with the actual data. Good performance can be observed in the 0–0.5 V interval and near V m p . Higher errors occur near V o c for low output currents.
Figure 11. The relative error of our model compared with the actual data. Good performance can be observed in the 0–0.5 V interval and near V m p . Higher errors occur near V o c for low output currents.
Applsci 08 00655 g011
Figure 12. Bézier approximation using the least squares method.
Figure 12. Bézier approximation using the least squares method.
Applsci 08 00655 g012
Figure 13. The relative error of the least squares method Bézier based approximation compared with the actual data. The absolute error Δ I = I B e z i e r I is also indicated.
Figure 13. The relative error of the least squares method Bézier based approximation compared with the actual data. The absolute error Δ I = I B e z i e r I is also indicated.
Applsci 08 00655 g013
Figure 14. Bézier approximation of the I-V irradiance dependent characteristics for the MSMD290AS-36_EU monocrystalline PV module. The lines represent the computed curves, whereas the markers represent the actual data.
Figure 14. Bézier approximation of the I-V irradiance dependent characteristics for the MSMD290AS-36_EU monocrystalline PV module. The lines represent the computed curves, whereas the markers represent the actual data.
Applsci 08 00655 g014
Figure 15. Bézier approximation of the I-V temperature dependent characteristics for the MSMD290AS-36_EU Monocrystalline PV module. The lines represent the computed curves, whereas the markers represent the actual data.
Figure 15. Bézier approximation of the I-V temperature dependent characteristics for the MSMD290AS-36_EU Monocrystalline PV module. The lines represent the computed curves, whereas the markers represent the actual data.
Applsci 08 00655 g015
Figure 16. Bézier approximation of the I-V curves using the proposed method (left) and the least squares method (right). The lines represent the computed curves, whereas the markers represent the actual data. Control points are represented with black dots. (a) Bosch M245 3BB Mono-Crystalline PV module; (b) Kyocera KD135SX_UPU Poly-Crystalline PV module; (c) Shell S36 Poly-Crystalline PV module; (d) Solarex MSX-60 Poly-Crystalline PV Cell; (e) Onyx Ref 10 amorphous Silicon PV Glass module; (f) 6.5Wp L amorphous Silicon PV Cell.
Figure 16. Bézier approximation of the I-V curves using the proposed method (left) and the least squares method (right). The lines represent the computed curves, whereas the markers represent the actual data. Control points are represented with black dots. (a) Bosch M245 3BB Mono-Crystalline PV module; (b) Kyocera KD135SX_UPU Poly-Crystalline PV module; (c) Shell S36 Poly-Crystalline PV module; (d) Solarex MSX-60 Poly-Crystalline PV Cell; (e) Onyx Ref 10 amorphous Silicon PV Glass module; (f) 6.5Wp L amorphous Silicon PV Cell.
Applsci 08 00655 g016aApplsci 08 00655 g016bApplsci 08 00655 g016c
Figure 17. Relative error (a,b) and curvature plots (c,d) for Shell ST40 Thin film PV module (a,c) and 6.5 Wp L amorphous Silicon PV Cell (b,d).
Figure 17. Relative error (a,b) and curvature plots (c,d) for Shell ST40 Thin film PV module (a,c) and 6.5 Wp L amorphous Silicon PV Cell (b,d).
Applsci 08 00655 g017aApplsci 08 00655 g017b
Table 1. PV Cell main specifications on STC (1000 W/m2, AM 1.5, 25 °C).
Table 1. PV Cell main specifications on STC (1000 W/m2, AM 1.5, 25 °C).
SymbolDescriptionValue
V o c , c e l l , r e f Cell open circuit voltage0.699 V
I s c , r e f Short circuit current9.207 A
V m p Maximum power voltage0.572 V
I m p Maximum power current8.756 A
R s h 0 Shunt resistance at I s c 73.19 Ω
R s 0 Series resistance at V o c 3.8 mΩ
Table 2. MSMD290AS-36_EU Module main specifications on STC (1000 W/m2, AM 1.5, 25 °C).
Table 2. MSMD290AS-36_EU Module main specifications on STC (1000 W/m2, AM 1.5, 25 °C).
SymbolDescriptionValue
V o c , m o d u l e , r e f Cell open circuit voltage44.68 V
I s c , r e f Short circuit current8.24 A
V m p Maximum power voltage37.66 V
I m p Maximum power current7.70 A
R s h 0 Shunt resistance at I s c 316 Ω
R s 0 Series resistance at V o c 130 mΩ
k I Current temperature coefficient3.296 mA/K
k V Voltage temperature coefficient−146.256 mV/K
n s Number of series cell72
Table 3. The control point coordinates when using two lines and one quadratic Bézier curve.
Table 3. The control point coordinates when using two lines and one quadratic Bézier curve.
Point x coordinate (V) y coordinate (A)
First line segment
P s c 09.207
P a 0.48939.2003
Quadratic Bézier Curve
P a 0.48939.2003
P c 0.60709.1987
P b 0.62917.0181
Second line segment
P b 0.62917.0181
P o c 0.6990
Table 4. The control point coordinates when using three cubic Bézier curves.
Table 4. The control point coordinates when using three cubic Bézier curves.
Point x coordinate (V) y coordinate (A)
First Bézier cubic curve
P 00 09.207
P 01 0.11659.206
P 02 0.23309.204
P 03 0.34959.202
Second Bézier cubic curve
P 10 0.34959.202
P 11 0.40789.197
P 12 0.46609.210
P 13 0.52439.074
Third Bézier cubic curve
P 20 0.52439.074
P 21 0.58258.939
P 22 0.64088.616
P 23 0.69900
Table 5. Control point coordinates comparison. On the left, the least squares method is used for computation, on the right the same values as in Table 4 are listed.
Table 5. Control point coordinates comparison. On the left, the least squares method is used for computation, on the right the same values as in Table 4 are listed.
Least Squares MethodProposed Method
Point x coordinate (V) y coordinate (A) x coordinate (V) y coordinate (A)
First Bézier cubic curve
P 00 09.20709.207
P 01 0.11659.2060.11659.206
P 02 0.23309.2040.23309.204
P 03 0.34959.2020.34959.202
Second Bézier cubic curve
P 10 0.34959.2020.34959.202
P 11 0.40769.1830.40789.197
P 12 0.46589.2450.46609.210
P 13 0.52399.1030.52439.074
Third Bézier cubic curve
P 20 0.52399.1030.52439.074
P 21 0.58238.96460.58258.939
P 22 0.64068.67240.64088.616
P 23 0.69900.0040.69900
Table 6. Datasheet technical data for the analyzed 18 PV cells and modules [35,36,37,38,39,40,41,42,43,44,45,46,47,48,49].
Table 6. Datasheet technical data for the analyzed 18 PV cells and modules [35,36,37,38,39,40,41,42,43,44,45,46,47,48,49].
No.PV TypeTech n s V o c
( V )
V m p
( V )
I m p
( A )
I s c
( A )
k V  
( V / K )
k I  
( A / K )
1Shell SP-70Mono3621.416.54.244.7−0.0760.002
2Isofoton I150 InDachMono3622.618.58.128.7−0.10260.00365
3Bosch M245 3BBMono6037.830.118.148.72−0.117180.002703
4MSP300AS-36.EUPoly7244.4837.428.028.58−0.146780.003432
5Kyocera KG200GTPoly5432.926.37.618.21−0.1230.00318
6Kyocera KC85TPoly3621.717.45.025.34−0.08210.00212
7Kyocera KD135SX_UPUPoly3622.117.77.638.37−0.080.00502
8Kyocera KD245GH-4FB2Poly6036.929.88.238.91−0.1330.00535
9Sharp ND-224uC1Poly6036.629.37.668.33−0.131760.004415
10Shell S36Poly3621.416.52.182.3−0.0760.001
11Solarex MSX-60Poly3621.117.13.53.8−0.080.003
12Solarex MSX-60—cellPoly10.5860.475−0.00222
13Amerisolar AS-6P 300WPoly7244.736.78.198.68−0.147514.86E-03
14Shell ST40Thin-Film3623.316.62.412.68−0.10.00035
15Sanyo HIT-240 HDE4HIT6043.635.56.777.37−0.1090.00221
16Onyx 1200 × 600 Ref10aSi glass7247320.91.11−0.08930.000999
17Onyx 1200 × 600 Ref300.630.740.000666
186.5 Wp L CelaSi cell12.21.64.095.1−0.008360.00612
Table 7. Computed values for main parameters of the analyzed PV cells and modules.
Table 7. Computed values for main parameters of the analyzed PV cells and modules.
No. R s ( Ω ) R s h ( Ω ) I 0 ( A ) I p v ( A ) a R s 0 ( Ω ) R s h 0 ( Ω )
10.50674.306.57 × 10−104.7321.0220.69195.27
20.109284.832.17 × 10−88.7031.2340.233304.09
30.378220.452.55 × 10−108.7351.0120.535266.54
40.142192.595.23 × 10−108.5861.0230.372202.92
50.308193.052.15 × 10−98.2231.0760.463225.66
60.277439.461.63 × 10−95.3431.0710.437502.34
70.1951.831.51 × 10−98.4011.0670.316160.474
80.28140.261.56 × 10−98.9281.0670.438161.66
90.317108.981.41 × 10−98.3541.0570.501127.07
100.9681.24E+063.41 × 10−102.31.0221.332151053
110.316146.081.22 × 10−93.8081.0450.557164.26
120.0094.191.21 × 10−93.8091.0450.0164.788
130.264405.655.50 × 10−108.6861.0300.458450.79
141.555210.333.30 × 10−92.71.232.168300.48
150.437117.721.75 × 10−117.3971.0580.637138.19
1611.57186.221.21 × 10−131.1790.85613.60204.51
1716.639418.798.60 × 10−140.7690.85619.50459.43
180.0792.061.52 × 10−95.2963.9380.1032.13
Table 8. Control points coordinates of the analyzed PV cells and modules.
Table 8. Control points coordinates of the analyzed PV cells and modules.
No.x Coordinates (V)y Coordinates (A)
0313000102031112132122
110.62815.9314.7324.6844.6374.5884.5384.6064.3604.2122.575
211.29516.9308.7038.6908.6788.6638.6358.6968.5088.2108.125
318.87028.2858.7358.7068.6788.6498.6048.6978.4538.5295.997
422.22433.3128.5868.5478.5098.4708.4438.4538.3707.6849.991
516.42524.6208.2238.1948.1678.1378.0948.1787.9307.9095.930
610.84516.2565.3435.3355.3275.3185.2985.3505.2125.2004.168
710.97516.4518.4018.33018.2608.1898.1288.1787.9467.9186.273
818.41527.6038.9288.8838.8418.7968.7498.8128.5958.5817.029
918.22827.3628.3548.2988.2438.1878.1338.1917.9677.9546.288
1010.94016.3992.3002.3002.3002.2992.2872.3312.2262.1801.367
1110.52715.7793.8083.7843.7603.7363.7153.7333.6493.5993.241
120.2930.4383.8093.7863.7633.7393.7183.7383.6523.6083.204
1322.33633.4798.6868.6678.6498.6308.6068.6508.5258.4118.209
1411.56517.3352.7002.6802.6662.6422.6062.6692.2751.8680.969
1521.72032.5577.3977.3367.2747.2137.1687.1857.0637.2005.950
1623.50035.2251.1101.07171.03430.9950.9710.9780.7750.5780.289
1723.50035.2250.7400.7230.7070.6890.6770.6860.5420.4030.201
181.1001.6495.1004.9284.7604.5844.4564.5063.9493.3721.786
Table 9. Computed errors for the analyzed PV cells and modules.
Table 9. Computed errors for the analyzed PV cells and modules.
No.Current ( I ) ErrorMax. Power ( P m p ) Error
Avg.Rel.
(%)
CoordinatesAbs.
(mA)
Rel.
(%)
Abs.
(W)
Rel.
(%)
Comp.
(W)
V (V) I (A)
1−0.1118.4233.24716.63 0.52−0.363−0.5270.32
2−0.0820.3986.32521.970.35−0.246−0.16150.47
3−0.2132.9526.61559.850.90−1.80−0.74246.90
40.1034.6388.31992.811.12−1.99−0.66302.10
5−0.1928.7886.18350.700.82−1.223−0.61201.37
6−0.2019.0774.10533.650.82−0.481−0.5587.83
7−0.2019.3066.22552.580.84−0.227−0.17135.28
8−0.2032.4326.80157.570.85−1.242−0.51246.50
9−0.2032.1036.24853.400.86−1.308−0.58225.75
10−0.1318.5481.6759.2000.55−0.240−0.6736.21
11−0.1718.6972.86719.970.70−0.215−0.3660.07
12−0.170.5192.87220.600.72−0.006−0.381.669
13−0.1739.9096.78847.910.71−0.914−0.30301.49
140.0312.2552.6353.320.130.0930.2339.91
15−0.2738.2535.73067.471.18−1.253−0.52241.59
160.0430.9660.9250.940.100.0150.0528.79
170.0430.8160.6500.790.120.0100.0520.15
180.0141.5784.1427.090.170.010.166.53
Avg. Rel. = the average of the relative error, Abs. = absolute error, Rel. = relative error, Comp. = computed value

Share and Cite

MDPI and ACS Style

Szabo, R.; Gontean, A. Photovoltaic Cell and Module I-V Characteristic Approximation Using Bézier Curves. Appl. Sci. 2018, 8, 655. https://doi.org/10.3390/app8050655

AMA Style

Szabo R, Gontean A. Photovoltaic Cell and Module I-V Characteristic Approximation Using Bézier Curves. Applied Sciences. 2018; 8(5):655. https://doi.org/10.3390/app8050655

Chicago/Turabian Style

Szabo, Roland, and Aurel Gontean. 2018. "Photovoltaic Cell and Module I-V Characteristic Approximation Using Bézier Curves" Applied Sciences 8, no. 5: 655. https://doi.org/10.3390/app8050655

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop