Topic > Simulation of current-voltage (iv) and power voltage (pv) characteristics

IndexIntroductionMatlab script file for photovoltaic moduleConclusionAcknowledgmentsSummary: This article simulates the mathematical model of photovoltaic (PV) module based on MATLAB script file with all parameters are involved. Modeling this device requires environmental factors such as irradiance and temperature as input variables. The yield of the photovoltaic module varies depending on environmental factors. Any changes in the entries immediately imply changes in the output. Physical parameters (series and shunt resistance, ideality factor, current and voltage temperature coefficient, etc.) have significant effects on the operating curves of the solar PV module. The chosen model is the single diode model with both series and shunt resistors for precise output and analyzes all the parameters that influence the operation of the solar PV module and focuses on a program developed in the MATLAB/M file of the PV module by 50 W. If you compare the two program simulation results and the manufacturer's data sheets you find that they are identical. Say no to plagiarism. Get a tailor-made essay on "Why Violent Video Games Shouldn't Be Banned"? Get an original essay Keywords: solar energy, photovoltaic module, IV and PV characteristics, irradiance, temperature Introduction Valuable energy can be extracted from the surrounding environment in several ways. These include extracting energy from sunlight, wind, biomass, sea level, etc. All these ways are renewable in nature. The energy source itself is renewed, which can provide energy forever. Among all renewable energy strategies, photovoltaic system has several key advantages over others. Using semiconductor devices, solar energy has been identified as a static, silent and motion-free alternative energy that can lead to a long-term, low-maintenance renewable system. Solar cells can directly convert sunlight into electricity. This produces DC voltage and DC electricity. A photovoltaic module is made up of numerous solar cells connected in series or parallel depending on the amount of voltage or current desired. A typical photovoltaic cell can produce 0.5V (2-3W). The photovoltaic module is the fundamental conversion unit of a photovoltaic generation system. Therefore, it is necessary to model the photovoltaic module for maximum power point tracking (MPPT) design and simulation for applications in photovoltaic systems because the photovoltaic module has nonlinear characteristics. For certain environmental conditions, there is the maximum power point (MPP), an optimal point on the VI curve, where the maximum power output is reached. So, in MPP the efficiency will be optimized. The performance of the photovoltaic module is specified under standard test conditions (STC), where the irradiance is 1000 W/m2, the module temperature is 25°C and the air mass is 1.5. This article presents the modeling and simulation method of photovoltaic (PV) module. The parameters of the photovoltaic module are based on the values ​​of the manufacturers' data sheets. A solar cell is a basic unit of a solar module. A photovoltaic module is composed of numerous solar cells in series and parallel. Considering only a single solar cell, it is possible to model it using a current source, a diode and two resistors. This model represents a single diode model of a solar cell. A diode is connected antiparallel to the photocurrent in Figure 2, and the output current is obtained from Kirchhoff's law; Where is the photocurrent, is the current in theshunt resistor, and is the saturation current of the diode and is given by the equation;Where V is the voltage imposed on the diode. is the saturation current of the diode, it is the thermal voltage which depends exclusively on the temperature. is the number of photovoltaic cells connected in series. A is the ideal factor of the diode and depends on the technology of the photovoltaic cell. [2]Where is the effective cell temperature (K), k is the Boltzmann constant (1.3805x10-23 J/K) and q is the electron charge (1.6021x10-19 C). So, the output current is the power produced by a single PV cell and not enough for almost all applications. Therefore, cells can be configured in series and parallel to increase the capacity of overall PV systems. Equation (4) can be expressed as;Where, as the number of cells connected in parallel, and are the series and shunt resistance of the solar cell.Modeling photovoltaic devices, if the number of unknown parameters increases the results are far from being the ideal form. Most manufacturer datasheets do not provide sufficient information on weather-dependent parameters. Five parameters ( , , A, , ) are considered which depend on the irradiation and cell temperature. The ideality factor (A) is chosen 1.3 for silicon.[2]The output of the photovoltaic module is unstable when the weather conditions change. Therefore, the appropriate nonlinear methods such as simple fixed point method, Newton-Raphson method and secant method should be used for these unstable conditions. In this proposed model, the Newton-Raphson method is chosen. Where is the actual amount of the function, is the derivation of the function, is the current amount, and is the next amount. The Newton-Raphson method requires an iteration loop that continues its operation until the stopping point condition is satisfied. Depending on the saturation, the stopping condition in two different ways is: (1) Once the pre-specified iteration numbers are completed (2) Once the current error that can be obtained from equation (21) is less to the pre-specified error. [5] Parameter Values ​​Maximum Power (Pmax) 50 W. Power Tolerance ± 3% Maximum Supply Voltage (Vmp) 17.9 V Maximum Power Current (Imp) 2.79 AT Open Circuit Voltage (Voc) 22.1 V Current short circuit voltage (Isc) 2.97 ATMaximum system voltage 1000 V DCOperating temperature -40˚ C to + 85˚CProduct application class AWeight 4.5KGDimensions 760x510x30mmAll technical data under standard test conditions: AM = 1.5 ,G=1000W/m², T=25˚C.Matlab script file for photovoltaic module%%Information from RL-6P050/ Data sheet 18 solar modules %%clear; clc;Vocn = 22.1; %Rated open circuit voltage (V)Iscn = 2.97; %Rated short-circuit current (A)Vmp = 17.9; %Maximum voltage (V)Imp = 2.79; %Maximum current (A)Eg = 1.12; % Band gap energy (eV)Np = 1; % Number of parallel cellsNs = 36; % Number of cells in the seriesPmax_e = Vmp*Imp; %Maximum output power of the module (W)Ki = 0.0013; % Current temperature coefficient (A/K)Kv = -0.0079;% Voltage temperature coefficient (V/K)Gn = 1000; % Nominal irradiance (W/m²)Tn = 298; %Nominal operating temperature (K)Tc = Ta+273; % Cell temperature (K)%% Constants %%k = 1.3805*10^(-23); Boltzmann constant % (J/K)q = 1.6021*10^(-19); % Electron charge (C)A = 1.3; % Diode ideality factor Vtn = (k*Tn)/q; % Thermal junction voltage (nominal)Vt = (k*T)/q; %Thermal junction voltage (current temperature)G = input ('G:'); % Effective irradiance (W/m²)Ta = input ('Ta:'); % Actual temperature (K)%% Reference values ​​of Rs and Rp %%Rs_max = (Vocn-Vmp)/Imp;Rp_min = Vmp/(Iscn-Imp)-Rs_max;Rs = 0; %Initial value of RsIph =.