Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Possible factors for constructing synthetic I-V curves #3

Open
markcampanelli opened this issue Jul 31, 2022 · 2 comments
Open

Possible factors for constructing synthetic I-V curves #3

markcampanelli opened this issue Jul 31, 2022 · 2 comments

Comments

@markcampanelli
Copy link

In no particular order, here are some options for synthetic curves:

  • I-V curves with points equally spaced in voltage vs. points "bunched" up around Isc and Voc or around Pmp.
  • I-V curves with roughly equal noise in I and V, vs. more noise in I than V (or vice versa). Greater noise in I can occur from solar simulators that "flicker" during the measurement. (This intensity variability is often corrected along with the spectral correction, and such corrections may introduce bias.)
  • Curves that try to show how a fitting algorithm handles model error, such as fitting a single-diode model to a double-diode model physics. This can be done "cleanly" or with the additional complication of measurement noise.
  • Single curves vs. IEC 61853-1 sets of curves.

I note that "raw" I-V curves from calibration labs (e.g., using solar simulators) can have different irradiance levels for every point on the I-V curve. (Less often have I seen temperature measurements for each I-V point, but rather pre- and post- temperature measurements to give some idea of heating during the measurement.) These raw curves are often corrected to a single temperature and irradiance, with the likely introduction of some level of correction bias.

@cwhanse
Copy link
Owner

cwhanse commented Aug 1, 2022

If you have suggestions for modeling current and/or voltage noise, I'm all ears. My impression is that current measurement is either less precise, or current is "noisier", than voltage.

That's a good idea to simulate a full IEC 61853 set, but I think we only do that for some of the parameter combinations we currently have in the case1 (representative of cSi) and case2 (representative of thin-film) curve sets.

I don't want to introduce model uncertainty (one vs. two diode, superposition principle holds or not) as a factor affecting curve fitting. The point here is focus on verifying the fitting algorithm, and excluding other factors that affect that verification, such as model uncertainty.

@markcampanelli
Copy link
Author

This is flexing my memory banks from uncertainty analyses I did at NREL, but I recall a few broad options to consider:

(1) Additive noise
(2) Multiplicative noise
(3) Bias

Additive noise, typically normal and independent and identically distributed (i.i.d.), usually matches the statistical assumptions behind many standard (linear) regression methods (although we generally have a non-linear, error-in-variables model here). For example, "such and such" a method produces the maximum likelihood estimator (MLE) on linear problems under certain noise assumptions.

Multiplicative noise, IIRC, seemed to better match the physics of the voltage measurements that underlie the voltage AND current measurements in I-V curves. The relative magnitude of the noise is constant, but the absolute magnitude of the noise grows with the signal size. Note that these voltage measurements may have bias and noise correlation, say due to temperature fluctuations between I-V curve measurements. It is usually hard to quantify this based solely on manufacturer's specifications, but is often assumed small and/or ignored.

For the current measurement, the conversion from voltage to current (e.g., via a current shunt resistor) adds more uncertainty, which may add more bias than random noise (e.g., an imperfectly known resistance biases all conversions in I = V/R). Furthermore, any spectral- and/or light-level correction in the current also add bias (e.g., from, the spectral-correction using the imperfect factor M) and random noise (e.g., from the flickering of a continuous solar simulator), which is why the "noise" is often larger in the current channel.

I have typically used multiplicative i.i.d. normal noise without bias in my SDM calibration work. After picking a noise model, I would suggest doing all combinations of zero, low, and high noise levels in the I and V channels (via the variance parameter in the normal distribution), e.g., 0, 0.01, and 0.025. (Maybe leave out the highest noise level for voltage?)

I am happy to provide some further implementation examples/details in Python code.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants