pvlib.ivtools.sdm.fit_desoto_sandia¶
-
pvlib.ivtools.sdm.fit_desoto_sandia(ivcurves, specs, const=None, maxiter=5, eps1=0.001)[source]¶ Estimate parameters for the De Soto module performance model.
Parameters: - ivcurves (dict) –
- i : array
- One array element for each IV curve. The jth element is itself an array of current for jth IV curve (same length as v[j]) [A]
- v : array
- One array element for each IV curve. The jth element is itself an array of voltage for jth IV curve (same length as i[j]) [V]
- ee : array
- effective irradiance for each IV curve, i.e., POA broadband irradiance adjusted by solar spectrum modifier [W / m^2]
- tc : array
- cell temperature for each IV curve [C]
- i_sc : array
- short circuit current for each IV curve [A]
- v_oc : array
- open circuit voltage for each IV curve [V]
- i_mp : array
- current at max power point for each IV curve [A]
- v_mp : array
- voltage at max power point for each IV curve [V]
- specs (dict) –
- cells_in_series : int
- number of cells in series
- alpha_sc : float
- temperature coefficient of Isc [A/C]
- beta_voc : float
- temperature coefficient of Voc [V/C]
- const (dict) –
- E0 : float
- effective irradiance at STC, default 1000 [W/m^2]
- T0 : float
- cell temperature at STC, default 25 [C]
- k : float
- 1.38066E-23 J/K (Boltzmann’s constant)
- q : float
- 1.60218E-19 Coulomb (elementary charge)
- maxiter (int, default 5) – input that sets the maximum number of iterations for the parameter updating part of the algorithm.
- eps1 (float, default 1e-3) – Tolerance for the IV curve fitting. The parameter updating stops when absolute values of the percent change in mean, max and standard deviation of Imp, Vmp and Pmp between iterations are all less than eps1, or when the number of iterations exceeds maxiter.
Returns: dict –
- I_L_ref : float
light current at STC [A]
- I_o_ref : float
dark current at STC [A]
- EgRef : float
effective band gap at STC [eV]
- R_s : float
series resistance at STC [ohm]
- R_sh_ref : float
shunt resistance at STC [ohm]
- cells_in_series : int
number of cells in series
- iph : array
light current for each IV curve [A]
- io : array
dark current for each IV curve [A]
- rs : array
series resistance for each IV curve [ohm]
- rsh : array
shunt resistance for each IV curve [ohm]
- u : array
boolean for each IV curve indicating that the parameter values are deemed reasonable by the private function
_filter_params
Notes
The De Soto module performance model is described in [1]. The fitting method is documented in [2], [3]. Ported from PVLib Matlab [4].
References
[1] W. De Soto et al., “Improvement and validation of a model for photovoltaic array performance”, Solar Energy, vol 80, pp. 78-88, 2006. [2] C. Hansen, Parameter Estimation for Single Diode Models of Photovoltaic Modules, Sandia National Laboratories Report SAND2015-2065 [3] C. Hansen, Estimation of Parameters for Single Diode Models using Measured IV Curves, Proc. of the 39th IEEE PVSC, June 2013. [4] PVLib MATLAB https://github.com/sandialabs/MATLAB_PV_LIB - ivcurves (dict) –