-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
IAM that supports AR coating like Fresnel #1501
Comments
+1. This reference might be relevant. |
I seem to recall from somewhere that PVsyst actually interpolates from a fixed set of pre-calculated values when simulating. |
PVsyst allows a user specified custom IAM v AOI lookup table in the module PAN file, but that presupposes there exist qualified IAM measurements either from a lab or the manufacturer. Otherwise they use Fresnel as of v6.67. See https://www.pvsyst.com/help/iam_loss.htm |
Yes, what I meant is that they use the Fresnel equations to populate the table for interpolation. At least this is my recollection. |
In #1616 I submitted a proposal to extend the Main differences with the code proposed above by @mikofski :
Main differences with the previous code of
Main differences with PVSyst:
|
For fun you could try using
I don't think they do the internal reflections. |
I didn't know about I still don't think it matters as:
Nevertheless, maybe pvlib should in general use these
Results are actually closer to PVSyst when taking internal reflections into account compared to when not taking them into account. Compare e.g. the results for
So, I'd guess also PVSyst takes internal reflections into account. |
Are all the relevant parameter values documented in PVsyst? I can't find them on their web site. |
I’m -1 on great to see closer agreement with PVsyst, not that it’s the reference, but still it’s de facto. Their online help says they consider reflections, but in my pseudo-code I ignored it. What is L parameter? |
L is the thickness of the glass. It's an optional parameter of |
The refractive index for the glass and AR coating can be selected in the tool and its default values (n_glass=1.526, n_ar=1.29) for the Incidence Angle mode 'Fresnel, Glass with AF' can be seen in some threads on the PVsyst forum, e.g. here and here. I couldn't find any values for the other two parameters (glazing thickness |
Well, from my perspective if it is clear you implement these formulas correctly for a two-layer window then it doesn't need to match PVsyst or claim that it is doing the same as PVsyst. |
PVWatts v5 and SAM both have the option of a second snell & fresnel iteration for AR coatings, although I don't think either of them consider repeated internal reflections. I point these out as potentially useful inclusions in the references and possible influences on the name of the new function. |
This is one default that has always bothered me out of principle. For the incorrect value there is an academic paper that can be referenced, thus giving someone else the responsibility, but for the correct value we haven't got one! |
I'd be OK changing it, assuming explanatory comments are added. The only reason to stick with L=0.002 m is to stay consistent with the reference. The basis for that value: it was what W. De Soto used in his Master's thesis (same title as the paper), with no further discussion provided. So we shouldn't regard 2mm as the result of any concerted research. |
FYI, the yearly 'International Technology Roadmap for Photovoltaics (ITRPV)' (donwloadable from https://www.vdma.org/international-technology-roadmap-photovoltaic) has a figure about the "world market share of front glass thickness in modules". Below you find the relevant figure in the latest report from November 2022. |
Good reference to have. I suspect that the increasing fraction of thinner front glass is related to an increasing fraction of glass-glass modules. |
Problem
Currently pvlib supports the DeSoto physical model (similar to normal glass), ASHRAE, Martin & Ruiz, and SAPM polynomial, but it doesn't have a pure Fresnel model that allows additional interfaces like an AR coating.
a_r
were known. The default ofa_r=0.16
is slightly above the normal glass Fresnel IAM, but ana_r=0.14
seems to match an AR coating with index of refraction of 1.2 most closely.Proposal
a new method in
pvl.iam.fresnel_ar(aoi, n_ar=1.2, n_air=1.0, n_glass=1.56)
that implements the Fresnel equationAlternative
Suggest readers to use Martin & Ruiz with
a_r=0.14
instead of default.additional content
PVsyst has switched to Fresnel equations. We can duplicate their methods ignoring additional reflections and the encapsulant layer:

The text was updated successfully, but these errors were encountered: