We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9b9816 commit 3df13aeCopy full SHA for 3df13ae
1 file changed
pvlib/spectrum/mismatch.py
@@ -786,4 +786,8 @@ def spectral_factor_polo(precipitable_water, airmass_absolute, aod500, aoi,
786
# Ground albedo correction
787
g = c_albedo[0] * (albedo/0.2)**2 \
788
+ c_albedo[1] * (albedo/0.2) + c_albedo[2]
789
+ # if aoi > 90 no ilumination, no spectral correction
790
+ if aoi > 90:
791
+ g=1
792
+ smm=1
793
return g*smm
0 commit comments